Version Description
24/Sep/2019 =
TWEAK: Cache - Purge cache files when updating menu, saving the customizer and editing widgets
TWEAK: Cache - Do not show the reason for not caching when the request is DOING_CRON
TWEAK: Premium - Unused images feature - Improved detection on sites with many posts/images
TWEAK: Automatically delete smush image backups option
TWEAK: Premium - Unused images feature - Better detection of featured images
TWEAK: Cache - Ability to purge single page or post from cache
TWEAK: Cache - Display the content of advanced-cache.php to the user if it was not writable when enabling cache
TWEAK: Image compression - Automatically delete image backups option
TWEAK: Image compression - metabox now inherits the settings from the main screen
TWEAK: Image compression - Added feature to mark images as already compressed by another tool
TWEAK: Image compression - Added detailed log information when image compression fails.
TWEAK: Premium - Unused images feature - Improved detection on sites with many posts/images
TWEAK: Premium - Unused images feature - Better detection of featured images
TWEAK: Premium - Lazy load - Added WooCommerce support
TWEAK: Premium - Increased warning level and visibility when deleting unused database tables and unused images
TWEAK: Prevent a couple of unwanted PHP notices being logged when running cron via the command-line
TWEAK: Tweaked update notice wording
Release Info
Developer | DavidAnderson |
Plugin | WP-Optimize |
Version | 3.0.12 |
Comparing to | |
See all releases |
Code changes from version 3.0.11 to 3.0.12
- cache/class-cache-commands.php +5 -0
- cache/class-wpo-cache-rules.php +10 -1
- cache/class-wpo-page-cache.php +149 -12
- cache/file-based-page-cache-functions.php +4 -1
- cache/file-based-page-cache.php +2 -2
- css/admin-3-0-11.min.css.map +0 -1
- css/{admin-3-0-11.min.css → admin-3-0-12.min.css} +2 -2
- css/admin-3-0-12.min.css.map +1 -0
- css/admin.css +3 -1
- css/smush-3-0-11.min.css +0 -2
- css/smush-3-0-11.min.css.map +0 -1
- css/smush-3-0-12.min.css +2 -0
- css/smush-3-0-12.min.css.map +1 -0
- css/smush.css +18 -1
- css/wp-optimize-admin-3-0-11.min.css +0 -2
- css/wp-optimize-admin-3-0-11.min.css.map +0 -1
- css/wp-optimize-admin-3-0-12.min.css +2 -0
- css/wp-optimize-admin-3-0-12.min.css.map +1 -0
- css/wp-optimize-admin.css +27 -6
- css/{wp-optimize-notices-3-0-11.min.css → wp-optimize-notices-3-0-12.min.css} +1 -1
- css/{wp-optimize-notices-3-0-11.min.css.map → wp-optimize-notices-3-0-12.min.css.map} +1 -1
- includes/class-commands.php +0 -1
- includes/class-updraft-abstract-logger.php +1 -2
- includes/class-updraft-file-logger.php +2 -3
- includes/class-updraft-nitrosmush-task.php +12 -1
- includes/class-updraft-resmushit-task.php +12 -1
- includes/class-updraft-smush-manager-commands.php +71 -1
- includes/class-updraft-smush-manager.php +139 -26
- includes/wp-optimize-database-information.php +0 -1
- js/cache-3-0-11.min.js +0 -1
- js/cache-3-0-12.min.js +1 -0
- js/cache.js +16 -0
- js/handlebars/handlebars.js +658 -412
- js/handlebars/handlebars.min.js +4 -4
- js/handlebars/handlebars.runtime.js +38 -20
- js/handlebars/handlebars.runtime.min.js +2 -2
- js/{queue-3-0-11.min.js → queue-3-0-12.min.js} +0 -0
- js/queue.js +1 -1
- js/{wpoadmin-3-0-11.min.js → wpoadmin-3-0-12.min.js} +0 -0
- js/wpoadmin.js +2 -2
- js/wposmush-3-0-11.min.js +0 -1
- js/wposmush-3-0-12.min.js +1 -0
- js/wposmush.js +139 -7
- languages/wp-optimize.pot +256 -179
- plugin.json +0 -1
@@ -66,6 +66,11 @@ class WP_Optimize_Cache_Commands {
|
|
66 |
$return['result'] = $save_settings_result;
|
67 |
$return['enabled'] = !empty($data['cache-settings']['enable_page_caching']);
|
68 |
|
|
|
|
|
|
|
|
|
|
|
69 |
return $return;
|
70 |
|
71 |
}
|
66 |
$return['result'] = $save_settings_result;
|
67 |
$return['enabled'] = !empty($data['cache-settings']['enable_page_caching']);
|
68 |
|
69 |
+
if (is_wp_error($enabled) && WPO_Page_Cache::instance()->advanced_cache_file_writing_error) {
|
70 |
+
$return['advanced_cache_file_writing_error'] = true;
|
71 |
+
$return['advanced_cache_file_content'] = WPO_Page_Cache::instance()->advanced_cache_file_content;
|
72 |
+
}
|
73 |
+
|
74 |
return $return;
|
75 |
|
76 |
}
|
@@ -41,7 +41,16 @@ class WPO_Cache_Rules {
|
|
41 |
add_action('wp_trash_post', array($this, 'purge_post_on_update'), 10, 1);
|
42 |
add_action('comment_post', array($this, 'purge_post_on_comment'), 10, 3);
|
43 |
add_action('wp_set_comment_status', array($this, 'purge_post_on_comment_status_change'), 10, 1);
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
/**
|
41 |
add_action('wp_trash_post', array($this, 'purge_post_on_update'), 10, 1);
|
42 |
add_action('comment_post', array($this, 'purge_post_on_comment'), 10, 3);
|
43 |
add_action('wp_set_comment_status', array($this, 'purge_post_on_comment_status_change'), 10, 1);
|
44 |
+
|
45 |
+
/**
|
46 |
+
* List of hooks for which when executed, the cache will be purged
|
47 |
+
*
|
48 |
+
* @param array $actions The actions
|
49 |
+
*/
|
50 |
+
$purge_on_action = apply_filters('wpo_purge_cache_hooks', array('after_switch_theme', 'wp_update_nav_menu', 'customize_save_after', 'wp_ajax_save-widget'));
|
51 |
+
foreach ($purge_on_action as $action) {
|
52 |
+
add_action($action, array($this, 'purge_cache'));
|
53 |
+
}
|
54 |
}
|
55 |
|
56 |
/**
|
@@ -68,6 +68,27 @@ class WPO_Page_Cache {
|
|
68 |
*/
|
69 |
public static $instance;
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
/**
|
73 |
* Set everything up here
|
@@ -85,6 +106,12 @@ class WPO_Page_Cache {
|
|
85 |
*/
|
86 |
add_action('wpo_cache_flush', array($this, 'update_cache_config'));
|
87 |
add_action('wpo_cache_flush', array($this, 'delete_cache_size_information'));
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
/**
|
@@ -101,6 +128,77 @@ class WPO_Page_Cache {
|
|
101 |
}
|
102 |
}
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
/**
|
105 |
* Enables page cache
|
106 |
*
|
@@ -129,8 +227,8 @@ class WPO_Page_Cache {
|
|
129 |
return true;
|
130 |
}
|
131 |
|
132 |
-
if (!$this->write_advanced_cache()) {
|
133 |
-
$already_ran_enable = new WP_Error("write_advanced_cache", "The request to write the
|
134 |
return $already_ran_enable;
|
135 |
}
|
136 |
|
@@ -140,7 +238,7 @@ class WPO_Page_Cache {
|
|
140 |
}
|
141 |
|
142 |
if (!$this->verify_cache()) {
|
143 |
-
$already_ran_enable = new WP_Error("verify_cache", "Could not verify if cache was enabled. Turn on logging to find the reason.");
|
144 |
return $already_ran_enable;
|
145 |
}
|
146 |
|
@@ -149,7 +247,6 @@ class WPO_Page_Cache {
|
|
149 |
return true;
|
150 |
}
|
151 |
|
152 |
-
|
153 |
/**
|
154 |
* Disables page cache
|
155 |
*
|
@@ -158,7 +255,7 @@ class WPO_Page_Cache {
|
|
158 |
public function disable() {
|
159 |
$ret = true;
|
160 |
|
161 |
-
$advanced_cache_file =
|
162 |
|
163 |
// We only touch advanched-cache.php and wp-config.php if it appears that we were in control of advanced-cache.php
|
164 |
if (!file_exists($advanced_cache_file) || false !== strpos(file_get_contents($advanced_cache_file), 'WP-Optimize advanced-cache.php')) {
|
@@ -264,6 +361,15 @@ class WPO_Page_Cache {
|
|
264 |
return true;
|
265 |
}
|
266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
/**
|
268 |
* Writes advanced-cache.php
|
269 |
*
|
@@ -279,8 +385,6 @@ class WPO_Page_Cache {
|
|
279 |
$config_file_basename = 'config-'.$url['host'].'.php';
|
280 |
}
|
281 |
|
282 |
-
$file = untrailingslashit(WP_CONTENT_DIR) . '/advanced-cache.php';
|
283 |
-
$contents = '';
|
284 |
$cache_file_basename = untrailingslashit(plugin_dir_path(__FILE__));
|
285 |
$plugin_basename = basename(WPO_PLUGIN_MAIN_PATH);
|
286 |
$cache_path = '/wpo-cache';
|
@@ -289,8 +393,8 @@ class WPO_Page_Cache {
|
|
289 |
$wpo_version = WPO_VERSION;
|
290 |
|
291 |
// CS does not like heredoc
|
292 |
-
//
|
293 |
-
$
|
294 |
<?php
|
295 |
|
296 |
if (!defined('ABSPATH')) die('No direct access allowed');
|
@@ -335,14 +439,34 @@ if (empty(\$GLOBALS['wpo_cache_config']) || empty(\$GLOBALS['wpo_cache_config'][
|
|
335 |
if (false !== \$plugin_location) { include_once(\$plugin_location.'/file-based-page-cache.php'); }
|
336 |
|
337 |
EOF;
|
338 |
-
//
|
339 |
-
if (!file_put_contents($
|
|
|
340 |
return false;
|
341 |
}
|
342 |
|
|
|
343 |
return true;
|
344 |
}
|
345 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
/**
|
347 |
* Set WP_CACHE on or off in wp-config.php
|
348 |
*
|
@@ -518,7 +642,7 @@ EOF;
|
|
518 |
$file_count += $sub_dir_infos['file_count'];
|
519 |
} elseif (is_file($current_file)) {
|
520 |
$dir_size += filesize($current_file);
|
521 |
-
$file_count
|
522 |
}
|
523 |
}
|
524 |
|
@@ -556,6 +680,19 @@ EOF;
|
|
556 |
|
557 |
}
|
558 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
/**
|
560 |
* Delete cached files for single post.
|
561 |
*
|
68 |
*/
|
69 |
public static $instance;
|
70 |
|
71 |
+
/**
|
72 |
+
* Store last advanced cache file writing status
|
73 |
+
* If true then last writing finished with error
|
74 |
+
*
|
75 |
+
* @var bool
|
76 |
+
*/
|
77 |
+
public $advanced_cache_file_writing_error;
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Path with advanced cache file name used last time
|
81 |
+
*
|
82 |
+
* @var string
|
83 |
+
*/
|
84 |
+
public $advanced_cache_file;
|
85 |
+
|
86 |
+
/**
|
87 |
+
* Last advanced cache file content
|
88 |
+
*
|
89 |
+
* @var string
|
90 |
+
*/
|
91 |
+
public $advanced_cache_file_content;
|
92 |
|
93 |
/**
|
94 |
* Set everything up here
|
106 |
*/
|
107 |
add_action('wpo_cache_flush', array($this, 'update_cache_config'));
|
108 |
add_action('wpo_cache_flush', array($this, 'delete_cache_size_information'));
|
109 |
+
|
110 |
+
// Add purge cache link to admin bar.
|
111 |
+
add_action('admin_bar_menu', array($this, 'wpo_admin_bar_purge_cache'), 100);
|
112 |
+
|
113 |
+
// Handle single page purge.
|
114 |
+
add_action('wp_loaded', array($this, 'handle_purge_single_page_cache'));
|
115 |
}
|
116 |
|
117 |
/**
|
128 |
}
|
129 |
}
|
130 |
|
131 |
+
/**
|
132 |
+
* Add Purge from cache in admin bar.
|
133 |
+
*
|
134 |
+
* @param WP_Admin_Bar $wp_admin_bar
|
135 |
+
*/
|
136 |
+
public function wpo_admin_bar_purge_cache($wp_admin_bar) {
|
137 |
+
global $pagenow;
|
138 |
+
|
139 |
+
if (!$this->is_enabled()) return;
|
140 |
+
|
141 |
+
if (!is_admin() || 'post.php' == $pagenow) {
|
142 |
+
$wp_admin_bar->add_menu(array(
|
143 |
+
'id' => 'wpo_purge_cache',
|
144 |
+
'title' => 'Purge from cache',
|
145 |
+
'href' => add_query_arg('_wpo_purge', wp_create_nonce('wpo_purge_single_page_cache')),
|
146 |
+
'meta' => array(
|
147 |
+
'title' => __('Purge from cache', 'wp-optimize'),
|
148 |
+
),
|
149 |
+
'parent' => false,
|
150 |
+
));
|
151 |
+
}
|
152 |
+
}
|
153 |
+
|
154 |
+
/**
|
155 |
+
* Check if purge single page action sent and purge cache.
|
156 |
+
*/
|
157 |
+
public function handle_purge_single_page_cache() {
|
158 |
+
if (isset($_GET['wpo_cache_purged'])) {
|
159 |
+
add_action('admin_notices', array($this, 'notice_purge_single_page_cache'));
|
160 |
+
}
|
161 |
+
|
162 |
+
if (!isset($_GET['_wpo_purge']) || !wp_verify_nonce($_GET['_wpo_purge'], 'wpo_purge_single_page_cache')) return;
|
163 |
+
|
164 |
+
if (is_admin()) {
|
165 |
+
$post = isset($_GET['post']) ? (int) $_GET['post'] : 0;
|
166 |
+
if ($post > 0) {
|
167 |
+
self::delete_single_post_cache($post);
|
168 |
+
}
|
169 |
+
} else {
|
170 |
+
self::delete_cache_by_url(wpo_current_url());
|
171 |
+
}
|
172 |
+
|
173 |
+
// remove nonce from url and reload page.
|
174 |
+
wp_redirect(add_query_arg('wpo_cache_purged', true, remove_query_arg('_wpo_purge')));
|
175 |
+
exit;
|
176 |
+
}
|
177 |
+
|
178 |
+
/**
|
179 |
+
* Show notification when page cache purged.
|
180 |
+
*/
|
181 |
+
public function notice_purge_single_page_cache() {
|
182 |
+
?>
|
183 |
+
<div class="notice notice-success is-dismissible">
|
184 |
+
<p><?php _e('The page cache was successfully purged.', 'wp-optimize'); ?></p>
|
185 |
+
</div>
|
186 |
+
<script>
|
187 |
+
window.addEventListener('load', function() {
|
188 |
+
(function(wp) {
|
189 |
+
wp.data.dispatch('core/notices').createNotice(
|
190 |
+
'success',
|
191 |
+
'<?php _e('The page cache was successfully purged.', 'wp-optimize'); ?>',
|
192 |
+
{
|
193 |
+
isDismissible: true,
|
194 |
+
}
|
195 |
+
);
|
196 |
+
})(window.wp);
|
197 |
+
});
|
198 |
+
</script>
|
199 |
+
<?php
|
200 |
+
}
|
201 |
+
|
202 |
/**
|
203 |
* Enables page cache
|
204 |
*
|
227 |
return true;
|
228 |
}
|
229 |
|
230 |
+
if (!$this->write_advanced_cache() && $this->get_advanced_cache_version() != WPO_VERSION) {
|
231 |
+
$already_ran_enable = new WP_Error("write_advanced_cache", sprintf("The request to write the file %s failed. Your WP install might not have permission to write inside the wp-content folder. Please try to add the following lines manually:", $this->advanced_cache_file));
|
232 |
return $already_ran_enable;
|
233 |
}
|
234 |
|
238 |
}
|
239 |
|
240 |
if (!$this->verify_cache()) {
|
241 |
+
$already_ran_enable = new WP_Error("verify_cache", "Could not verify if the cache was enabled. Turn on logging to find the reason.");
|
242 |
return $already_ran_enable;
|
243 |
}
|
244 |
|
247 |
return true;
|
248 |
}
|
249 |
|
|
|
250 |
/**
|
251 |
* Disables page cache
|
252 |
*
|
255 |
public function disable() {
|
256 |
$ret = true;
|
257 |
|
258 |
+
$advanced_cache_file = $this->get_advanced_cache_filename();
|
259 |
|
260 |
// We only touch advanched-cache.php and wp-config.php if it appears that we were in control of advanced-cache.php
|
261 |
if (!file_exists($advanced_cache_file) || false !== strpos(file_get_contents($advanced_cache_file), 'WP-Optimize advanced-cache.php')) {
|
361 |
return true;
|
362 |
}
|
363 |
|
364 |
+
/**
|
365 |
+
* Get advanced-cache.php file name with full path.
|
366 |
+
*
|
367 |
+
* @return string
|
368 |
+
*/
|
369 |
+
public function get_advanced_cache_filename() {
|
370 |
+
return untrailingslashit(WP_CONTENT_DIR) . '/advanced-cache.php';
|
371 |
+
}
|
372 |
+
|
373 |
/**
|
374 |
* Writes advanced-cache.php
|
375 |
*
|
385 |
$config_file_basename = 'config-'.$url['host'].'.php';
|
386 |
}
|
387 |
|
|
|
|
|
388 |
$cache_file_basename = untrailingslashit(plugin_dir_path(__FILE__));
|
389 |
$plugin_basename = basename(WPO_PLUGIN_MAIN_PATH);
|
390 |
$cache_path = '/wpo-cache';
|
393 |
$wpo_version = WPO_VERSION;
|
394 |
|
395 |
// CS does not like heredoc
|
396 |
+
// phpcs:disable
|
397 |
+
$this->advanced_cache_file_content = <<<EOF
|
398 |
<?php
|
399 |
|
400 |
if (!defined('ABSPATH')) die('No direct access allowed');
|
439 |
if (false !== \$plugin_location) { include_once(\$plugin_location.'/file-based-page-cache.php'); }
|
440 |
|
441 |
EOF;
|
442 |
+
// phpcs:enable
|
443 |
+
if (!file_put_contents($this->get_advanced_cache_filename(), $this->advanced_cache_file_content)) {
|
444 |
+
$this->advanced_cache_file_writing_error = true;
|
445 |
return false;
|
446 |
}
|
447 |
|
448 |
+
$this->advanced_cache_file_writing_error = false;
|
449 |
return true;
|
450 |
}
|
451 |
|
452 |
+
/**
|
453 |
+
* Get WPO version number from advanced-cache.php file.
|
454 |
+
*
|
455 |
+
* @return bool|mixed
|
456 |
+
*/
|
457 |
+
public function get_advanced_cache_version() {
|
458 |
+
if (!is_file($this->get_advanced_cache_filename())) return false;
|
459 |
+
|
460 |
+
$version = false;
|
461 |
+
$content = file_get_contents($this->get_advanced_cache_filename());
|
462 |
+
|
463 |
+
if (preg_match('/WP\-Optimize advanced\-cache\.php \(written by version\: (.+)\)/Ui', $content, $match)) {
|
464 |
+
$version = $match[1];
|
465 |
+
}
|
466 |
+
|
467 |
+
return $version;
|
468 |
+
}
|
469 |
+
|
470 |
/**
|
471 |
* Set WP_CACHE on or off in wp-config.php
|
472 |
*
|
642 |
$file_count += $sub_dir_infos['file_count'];
|
643 |
} elseif (is_file($current_file)) {
|
644 |
$dir_size += filesize($current_file);
|
645 |
+
$file_count++;
|
646 |
}
|
647 |
}
|
648 |
|
680 |
|
681 |
}
|
682 |
|
683 |
+
/**
|
684 |
+
* Delete cached files for specific url.
|
685 |
+
*
|
686 |
+
* @param string $url
|
687 |
+
*/
|
688 |
+
public static function delete_cache_by_url($url) {
|
689 |
+
if (!defined('WPO_CACHE_FILES_DIR')) return;
|
690 |
+
|
691 |
+
$path = trailingslashit(WPO_CACHE_FILES_DIR) . trailingslashit(wpo_get_url_path($url));
|
692 |
+
|
693 |
+
wpo_delete_files($path, false);
|
694 |
+
}
|
695 |
+
|
696 |
/**
|
697 |
* Delete cached files for single post.
|
698 |
*
|
@@ -475,6 +475,8 @@ if (!function_exists('wpo_get_url_path')) :
|
|
475 |
function wpo_get_url_path($url = '') {
|
476 |
$url = '' == $url ? wpo_current_url() : $url;
|
477 |
$url_parts = parse_url($url);
|
|
|
|
|
478 |
if (!isset($url_parts['path'])) $url_parts['path'] = '';
|
479 |
|
480 |
return $url_parts['host'].$url_parts['path'];
|
@@ -488,9 +490,10 @@ endif;
|
|
488 |
*/
|
489 |
if (!function_exists('wpo_current_url')) :
|
490 |
function wpo_current_url() {
|
|
|
491 |
return rtrim('http' . ((isset($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'] || 1 == $_SERVER['HTTPS']) ||
|
492 |
isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO']) ? 's' : '' )
|
493 |
-
. '://' .
|
494 |
}
|
495 |
endif;
|
496 |
|
475 |
function wpo_get_url_path($url = '') {
|
476 |
$url = '' == $url ? wpo_current_url() : $url;
|
477 |
$url_parts = parse_url($url);
|
478 |
+
|
479 |
+
if (!isset($url_parts['host'])) $url_parts['host'] = '';
|
480 |
if (!isset($url_parts['path'])) $url_parts['path'] = '';
|
481 |
|
482 |
return $url_parts['host'].$url_parts['path'];
|
490 |
*/
|
491 |
if (!function_exists('wpo_current_url')) :
|
492 |
function wpo_current_url() {
|
493 |
+
$http_host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
|
494 |
return rtrim('http' . ((isset($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'] || 1 == $_SERVER['HTTPS']) ||
|
495 |
isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO']) ? 's' : '' )
|
496 |
+
. '://' . $http_host.$_SERVER['REQUEST_URI'], '/');
|
497 |
}
|
498 |
endif;
|
499 |
|
@@ -23,7 +23,7 @@ if (strpos($_SERVER['REQUEST_URI'], 'robots.txt') !== false || strpos($_SERVER['
|
|
23 |
|
24 |
// Don't cache non-GET requests.
|
25 |
if (!isset($_SERVER['REQUEST_METHOD']) || 'GET' !== $_SERVER['REQUEST_METHOD']) {
|
26 |
-
$no_cache_because[] = 'The request method was not GET ('
|
27 |
}
|
28 |
|
29 |
$file_extension = $_SERVER['REQUEST_URI'];
|
@@ -102,7 +102,7 @@ if (!empty($_GET)) {
|
|
102 |
|
103 |
if (!empty($no_cache_because)) {
|
104 |
// Only output if the user has turned on debugging output
|
105 |
-
if (defined('WP_DEBUG') && WP_DEBUG) {
|
106 |
wpo_cache_add_footer_output("\n<!-- WP Optimize page cache - https://getwpo.com - page not served from cache because: ".implode(', ', array_filter($no_cache_because, 'htmlspecialchars'))." -->\n");
|
107 |
}
|
108 |
return;
|
23 |
|
24 |
// Don't cache non-GET requests.
|
25 |
if (!isset($_SERVER['REQUEST_METHOD']) || 'GET' !== $_SERVER['REQUEST_METHOD']) {
|
26 |
+
$no_cache_because[] = 'The request method was not GET ('.(isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : '-').')';
|
27 |
}
|
28 |
|
29 |
$file_extension = $_SERVER['REQUEST_URI'];
|
102 |
|
103 |
if (!empty($no_cache_because)) {
|
104 |
// Only output if the user has turned on debugging output
|
105 |
+
if (defined('WP_DEBUG') && WP_DEBUG && (!defined('DOING_CRON') || !DOING_CRON)) {
|
106 |
wpo_cache_add_footer_output("\n<!-- WP Optimize page cache - https://getwpo.com - page not served from cache because: ".implode(', ', array_filter($no_cache_because, 'htmlspecialchars'))." -->\n");
|
107 |
}
|
108 |
return;
|
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;AACvB;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB","file":"admin-3-0-11.min.css","sourcesContent":[".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}"]}
|
|
@@ -1,2 +1,2 @@
|
|
1 |
-
.wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:5px;display:block;margin-bottom:5px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}#wpo_browser_cache_output,#wpo_gzip_compression_output{background:#f0f0f0;padding:10px;border:1px solid #CCC}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{margin-bottom:15px}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}
|
2 |
-
/*# sourceMappingURL=admin-3-0-
|
1 |
+
.wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:5px;display:block;margin-bottom:5px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{margin-bottom:15px}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}
|
2 |
+
/*# sourceMappingURL=admin-3-0-12.min.css.map */
|
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;AACvB;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB","file":"admin-3-0-12.min.css","sourcesContent":[".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}"]}
|
@@ -516,10 +516,12 @@ div#wpoptimize_table_list_tables_not_found + h3 {
|
|
516 |
}
|
517 |
|
518 |
#wpo_browser_cache_output,
|
519 |
-
#wpo_gzip_compression_output
|
|
|
520 |
background: #F0F0F0;
|
521 |
padding: 10px;
|
522 |
border: 1px solid #CCC;
|
|
|
523 |
}
|
524 |
|
525 |
#wpo_gzip_compression_error_message,
|
516 |
}
|
517 |
|
518 |
#wpo_browser_cache_output,
|
519 |
+
#wpo_gzip_compression_output,
|
520 |
+
#wpo_advanced_cache_output {
|
521 |
background: #F0F0F0;
|
522 |
padding: 10px;
|
523 |
border: 1px solid #CCC;
|
524 |
+
white-space: pre-wrap;
|
525 |
}
|
526 |
|
527 |
#wpo_gzip_compression_error_message,
|
@@ -1,2 +0,0 @@
|
|
1 |
-
.wpo-fieldgroup .autosmush{display:inline-block;width:100%}.wpo-fieldgroup .autosmush h3{font-size:1.2em;margin:3px 18px}.wpo-fieldgroup .compression_server div{max-width:300px}.wpo-fieldgroup .compression_server h2{margin:10px 0}.wpo-fieldgroup .compression_server h3{clear:both;width:100%}.wpo-fieldgroup .compression_server p{margin:1px}.wpo-fieldgroup .compression_server p:last-of-type{margin-bottom:10px}.wpo-fieldgroup .compression_server{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.wpo-fieldgroup .compression_server>div{-ms-flex:1;flex:1;margin-right:10px;height:100%;position:relative}.wpo-fieldgroup .compression_server input[type="radio"]{position:absolute;z-index:1;top:calc(50% + 2px);left:20px;transform:translatey(-50%)}.wpo-fieldgroup .compression_server input[type="radio"] ~ label h4{color:#23282d;margin-top:0;margin-bottom:.9em;font-size:1.2em}.wpo-fieldgroup .compression_server label{display:block;position:relative;box-sizing:border-box;height:100%;background:#FFF;text-align:left;box-shadow:0 3px 10px -2px hsla(150,5%,65%,0.5)}.wpo-fieldgroup .compression_server input[type="radio"]+label{padding:20px;border:2px solid #FFF;padding-left:65px;position:relative;border-radius:5px;color:#82868b}.wpo-fieldgroup .compression_server input[type="radio"]+label::before{content:'';display:block;position:absolute;top:0;left:52px;height:100%;border-right:1px solid #edeff0}.wpo-fieldgroup .save-options{margin:10px 0}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label,.wpo-fieldgroup .compression_server input[type="radio"]+label:hover{border-color:rgba(0,134,184,0.38)}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label{box-shadow:0 3px 10px -2px #5b9dd9}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label h4{color:#0086b9}.wpo-fieldgroup .compression_server input[type="radio"]:checked+label,.wpo-fieldgroup .compression_server input[type="radio"]:checked+label:hover{border-color:#0086b9}@media only screen and (max-width:700px){.wpo-fieldgroup .compression_server{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .compression_server>div{margin-bottom:15px;max-width:100%}}.wpo-fieldgroup h4{margin:1em 0;width:100%}.wpo-fieldgroup .image_quality input[type=radio]{position:absolute;visibility:hidden;display:none}.wpo-fieldgroup .image_quality label{color:#23282d;display:inline-block;cursor:pointer;font-weight:bold;padding:5px 20px;background:#f9f9f9;float:left;margin:0 .5px}.wpo-fieldgroup .image_quality input[type=radio]:checked+label{color:white;background:#0088b9}.wpo-fieldgroup .image_quality label+.wpo-fieldgroup .image_quality input[type=radio]+label{border-left:solid 3px #675f6b}.wpo-fieldgroup .image_quality.radio-group{border:solid .5px #c4c4c4;display:inline-block;border-radius:5px;overflow:hidden;border-bottom:solid 2px #c4c4c4;background:#c4c4c4}.wpo-fieldgroup .image_options input{min-height:16px;min-width:16px;margin:3px 2px}img#wpo_smush_images_save_options_spinner{max-width:20px;max-height:20px}span#wpo_smush_images_save_options_fail{font-size:inherit;color:red}span#wpo_smush_images_save_options_done{font-size:inherit;color:green}#smush-complete-summary span.clearfix{height:10px;display:block;clear:both}span.close{display:block;clear:both;text-align:left;color:#df6927;border:2px solid;border-radius:50%;cursor:pointer}.modal-message-text{margin:0 25px}.smush-options.custom_compression{margin:10px}.wpo-fieldgroup .smush-options.custom_compression{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:24px}.wpo-fieldgroup .smush-options.custom_compression>span{display:inline-block;padding:6px;border:1px solid #cfd2d4;border-radius:4px;font-size:.9em;position:relative}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{content:'';width:6px;height:6px;display:block;position:absolute;top:0;left:100%;transform:translate(-3px,8px) rotate(45deg);border-right:1px solid #cfd2d4;border-top:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{content:'';width:6px;height:6px;display:block;position:absolute;top:0;right:100%;transform:translate(3px,8px) rotate(45deg);border-left:1px solid #cfd2d4;border-bottom:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>input{margin-left:8px;margin-right:8px}@media screen and (max-width:782px){.wpo-fieldgroup input[type="radio"]{height:16px;width:16px}.wpo-fieldgroup input[type="radio"]:checked:before{width:6px;height:6px;margin:4px}.wpo-fieldgroup .smush-options.custom_compression{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .smush-options.custom_compression>input{width:100%}.wpo-fieldgroup .smush-options.custom_compression>span{display:block;width:100%}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{left:0;transform:translate(7px,22px) rotate(135deg)}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{right:auto;left:100%;transform:translate(-14px,-5px) rotate(135deg)}}#wpo_smush_settings .align-left{float:left}#wpo_smush_settings .align-right{float:right}.wpo-fieldgroup .wpo_smush_images_buttons_wrap{width:100%}.wpo-fieldgroup .smush-refresh-icon,.wpo-fieldgroup .smush-select-actions{font-size:15px}.wpo-fieldgroup img.wpo_smush_images_loader{display:none;min-height:20px;min-width:20px}.wpo-fieldgroup .dashicons.dashicons-image-rotate,{font-size:15px}.wpo-fieldgroup .toggle-smush-advanced{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.toggle-smush-advanced{display:block;width:calc(100% + 40px);margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px;position:relative;text-decoration:none}.wpo-fieldgroup .button.toggle-smush-advanced span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .toggle-smush-advanced span.text{background:#edeff0;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.toggle-smush-advanced:hover,.wpo-fieldgroup .button.toggle-smush-advanced:focus{background:transparent}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .smush-advanced{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened+.smush-advanced{display:block}.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_smush_image .wpo_smush_image__input:checked+label{border-color:#0272aa}.uncompressed-images input[type="checkbox"]{position:absolute;opacity:0;width:0;height:0}.uncompressed-images small.red{clear:both;display:block;margin:5px}.smush-actions .wpo_primary_small{display:inline-block;margin:5px}.smush-actions{display:inline-block;width:100%;margin:10px 0}.smush-actions .dashicons.dashicons-yes{font-size:15px;margin:0 5px}.smush-actions img{max-height:25px;max-width:25px}#smush-log-modal{width:100%;height:100%}#log-panel{height:80%;overflow:scroll;margin:2%}#log-panel pre{text-align:left;overflow:auto;height:100%;background:gainsboro}#smush-information{margin-bottom:10px}#smush_stats{text-align:center;margin:0 auto;padding:2%;min-width:350px;font-size:larger}#smush_stats .wpo_smush_stats_cta_btn{clear:both;display:block;text-align:center}#smush_stats .smush_stats_row td:first-child{text-align:left}#smush_stats tr.smush_stats_row td:last-child{text-align:right}#smush_stats #wpo_smush_images_information_container p{padding:10px}#smush-complete-summary .checkmark-circle{width:50px;height:50px;position:relative;display:inline-block;vertical-align:top}#smush-complete-summary .checkmark-circle .background{width:50px;height:50px;border-radius:50%;background:#df6927;position:absolute}#smush-complete-summary .checkmark-circle .checkmark{border-radius:5px}#smush-complete-summary .checkmark-circle .checkmark.draw:after{animation-delay:100ms;animation-duration:1s;animation-timing-function:ease;animation-name:checkmark;transform:scalex(-1) rotate(135deg);animation-fill-mode:forwards}#smush-complete-summary .checkmark-circle .checkmark:after{opacity:1;height:25px;width:12.5px;transform-origin:left top;border-right:5px solid white;border-top:5px solid white;border-radius:2.5px !important;content:'';left:8.3333333333px;top:25px;position:absolute}#smush_stats .wpo_primary_small{text-align:center}#smush-complete-summary #summary-message{margin:15px auto}img#wpo_smush_images_clear_stats_spinner{width:20px;line-height:1;vertical-align:middle}#wpo_smush_images_information_container{padding:10px}#wpo_smush_images_information_wrapper .progress-bar{height:25px;padding:1px;width:350px;margin:10px auto;border-radius:5px}#wpo_smush_images_information_wrapper .progress-bar span{display:inline-block;height:100%;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5) inset;transition:width .4s ease-in-out}#wpo_smush_images_information_wrapper .orange span{background-color:#df6927}#wpo_smush_images_information_wrapper .stripes span{background-size:30px;background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);animation:animate-stripes 3s linear infinite}#smush-metabox-inside-wrapper{display:inline-table;width:100%}#smush-metabox-inside-wrapper h4{margin:2px 0}#smush-metabox-inside-wrapper label{margin-top:5px;clear:left;display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image{display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button{padding:5px 0}#smush-metabox-inside-wrapper fieldset{margin:10px 0}#smush-metabox-inside-wrapper input[type="radio"]{margin:-4px 4px 0 0}#smush-metabox-inside-wrapper .alignleft{float:left}#smush-metabox-inside-wrapper p#smush_info{margin:20px auto;padding-top:10px;clear:both}#smush-metabox-inside-wrapper .toggle-smush-advanced{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced{display:none}#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced{display:block !important}#smush-metabox-inside-wrapper .smush-options.custom_compression span{display:block;max-width:30%;clear:both}#smush-metabox-inside-wrapper input#custom_compression_slider{display:block;clear:both;width:100%}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft{float:left}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright{float:right;text-align:right}.smush-metabox-dashboard-link{clear:both;padding-top:15px;text-align:right}.media-frame-content .attachment-compat .compat-item,.compat-field-wpo_compress_image{overflow:visible !important}.compat-field-wpo_compress_image{border-top:1px solid #DDD}.compat-field-wpo_compress_image span.dashicons{text-align:left;float:none;min-height:0;padding-top:2px}.compat-field-wpo_compress_image td.field{width:auto;float:none}.compat-field-wpo_compress_image td.field [data-tooltip]{display:none}.compat-field-wpo_compress_image th.label{text-align:left;min-width:0;float:none;margin:0}.compat-field-wpo_compress_image th.label label span{font-weight:500;text-align:left}.blockUI.blockMsg.blockPage{z-index:170000 !important;right:0;left:0 !important;margin-right:auto !important;margin-left:auto !important;max-width:90%;cursor:default !important}.blockUI.blockOverlay{cursor:default !important}#smush-metabox-inside-wrapper [data-tooltip],.wpo-fieldgroup [data-tooltip]{position:relative;cursor:pointer;line-height:18px}#smush-metabox-inside-wrapper [data-tooltip]:before,#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:after{visibility:hidden;-ms-filter:"alpha(opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}#smush-metabox-inside-wrapper [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:before{position:absolute;bottom:150%;left:50%;margin-bottom:5px;margin-left:-140px;padding:12px;width:275px;z-index:9999;border-radius:3px;background-color:#000;background-color:hsla(0,0%,20%,0.95);color:#FFF;content:attr(data-tooltip);text-align:center;font-size:.85rem;font-weight:400;line-height:1.4}#smush-metabox-inside-wrapper [data-tooltip]:before{margin-left:-280px}#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:after{position:absolute;bottom:150%;left:50%;margin-left:-5px;width:0;border-top:5px solid #000;border-top:5px solid hsla(0,0%,20%,0.9);border-right:5px solid transparent;border-left:5px solid transparent;content:" ";font-size:0;line-height:0}#smush-metabox-inside-wrapper [data-tooltip]:hover:before,#smush-metabox-inside-wrapper [data-tooltip]:hover:after,.wpo-fieldgroup [data-tooltip]:hover:before,.wpo-fieldgroup [data-tooltip]:hover:after,#smush-metabox-inside-wrapper [data-tooltip]:focus:before,#smush-metabox-inside-wrapper [data-tooltip]:focus:after,.wpo-fieldgroup [data-tooltip]:focus:before,.wpo-fieldgroup [data-tooltip]:focus:after{visibility:visible;-ms-filter:"alpha(opacity=100)";filter:alpha(opacity=100);opacity:1}@keyframes checkmark{0%{height:0;width:0;opacity:1}20%{height:0;width:12.5px;opacity:1}40%{height:25px;width:12.5px;opacity:1}100%{height:25px;width:12.5px;opacity:1}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}
|
2 |
-
/*# sourceMappingURL=smush-3-0-11.min.css.map */
|
|
|
|
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sources":["css/smush.css"],"names":[],"mappings":"AAAA;;GAEG;AACH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,qBAAqB;CACrB,cAAc;CACd,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,QAAQ;CACR,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB,WAAW;CACX,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,cAAc;CACd,qBAAqB;CACrB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,iBAAiB;CACjB,sDAAsD;CACtD;;AAED;CACC,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,aAAa;CACb,gCAAgC;CAChC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sCAAsC;CACtC;;AAED;CACC,sCAAsC;CACtC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC;EACC,2BAA2B;EAC3B,uBAAuB;EACvB;;CAED;EACC,oBAAoB;EACpB,gBAAgB;EAChB;;CAED;;AAED;;GAEG;AACH;CACC,cAAc;CACd,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,kBAAkB;CAClB,oBAAoB;CACpB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,2BAA2B;CAC3B,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,aAAa;CACb,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,0BAA0B;CAC1B,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,8CAA8C;CAC9C,gCAAgC;CAChC,8BAA8B;CAC9B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,YAAY;CACZ,6CAA6C;CAC7C,+BAA+B;CAC/B,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;EACC,WAAW;EACX,YAAY;EACZ,YAAY;EACZ;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf,YAAY;EACZ;;CAED;EACC,QAAQ;EACR,+CAA+C;EAC/C;;CAED;EACC,YAAY;EACZ,WAAW;EACX,iDAAiD;EACjD;;CAED;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B,eAAe;CACf;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,uBAAuB;CACvB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;;CAEC,wBAAwB;CACxB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,2BAA2B;CAC3B,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,UAAU;CACV;;AAED;CACC,YAAY;CACZ,eAAe;CACf,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;;GAEG;;AAEH;CACC,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,uBAAuB;CACvB,gCAAgC;CAChC,0BAA0B;CAC1B,qCAAqC;CACrC,8BAA8B;CAC9B;;AAED;CACC,WAAW;CACX,aAAa;CACb,cAAc;CACd,2BAA2B;CAC3B,8BAA8B;CAC9B,4BAA4B;CAC5B,gCAAgC;CAChC,YAAY;CACZ,qBAAqB;CACrB,UAAU;CACV,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB;;AAED,2BAA2B;;AAE3B;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kDAAkD;CAClD,kCAAkC;CAClC;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,sBAAsB;CACtB,oMAAoM;CACpM,8CAA8C;CAC9C;;AAED;;GAEG;;AAEH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,cAAc;CACd,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,YAAY;CACZ,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,2BAA2B;CAC3B,SAAS;CACT,mBAAmB;CACnB,8BAA8B;CAC9B,6BAA6B;CAC7B,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;;GAEG;;AAEH,4DAA4D;AAC5D;;CAEC,mBAAmB;CACnB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED,yCAAyC;AACzC;;;;CAIC,mBAAmB;CACnB,iEAAiE;CACjE,4DAA4D;CAC5D,WAAW;CACX,qBAAqB;CACrB;;AAED,wCAAwC;AACxC;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,mBAAmB;CACnB,oBAAoB;CACpB,cAAc;CACd,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,uBAAuB;CACvB,yCAAyC;CACzC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED,6DAA6D;AAC7D;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,2BAA2B;CAC3B,4CAA4C;CAC5C,oCAAoC;CACpC,mCAAmC;CACnC,aAAa;CACb,aAAa;CACb,eAAe;CACf;;AAED,mCAAmC;AACnC;;;;;;;;CAQC,oBAAoB;CACpB,mEAAmE;CACnE,8DAA8D;CAC9D,WAAW;CACX;;AAED;;GAEG;;AAEH;;CAEC;EACC,UAAU;EACV,SAAS;EACT,WAAW;EACX;;CAED;EACC,UAAU;EACV,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED","file":"smush-3-0-11.min.css","sourcesContent":["/**\n * Autosmush\n */\n.wpo-fieldgroup .autosmush {\n\tdisplay: inline-block;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .autosmush h3 {\n\tfont-size: 1.2em;\n\tmargin: 3px 18px;\n}\n\n/**\n * Compression Server\n */\n.wpo-fieldgroup .compression_server div {\n\tmax-width: 300px;\n}\n\n.wpo-fieldgroup .compression_server h2 {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server h3 {\n\tclear: both;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .compression_server p {\n\tmargin: 1px;\n}\n\n.wpo-fieldgroup .compression_server p:last-of-type {\n\tmargin-bottom: 10px;\n}\n\n.wpo-fieldgroup .compression_server {\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-ms-flex-flow: row wrap;\n\tflex-flow: row wrap;\n}\n\n.wpo-fieldgroup .compression_server > div {\n\t-ms-flex: 1;\n\tflex: 1;\n\tmargin-right: 10px;\n\theight: 100%;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] {\n\tposition: absolute;\n\tz-index: 1;\n\ttop: calc(50% + 2px);\n\tleft: 20px;\n\ttransform: translatey(-50%);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] ~ label h4 {\n\tcolor: #23282D;\n\tmargin-top: 0;\n\tmargin-bottom: 0.9em;\n\tfont-size: 1.2em;\n}\n\n.wpo-fieldgroup .compression_server label {\n\tdisplay: block;\n\tposition: relative;\n\tbox-sizing: border-box;\n\theight: 100%;\n\tbackground: #FFF;\n\ttext-align: left;\n\tbox-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label {\n\tpadding: 20px;\n\tborder: 2px solid #FFF;\n\tpadding-left: 65px;\n\tposition: relative;\n\tborder-radius: 5px;\n\tcolor: #82868B;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label::before {\n\tcontent: '';\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 52px;\n\theight: 100%;\n\tborder-right: 1px solid #EDEFF0;\n}\n\n.wpo-fieldgroup .save-options {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label:hover {\n\tborder-color: rgba(0, 134, 184, 0.38);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label {\n\tbox-shadow: 0px 3px 10px -2px #5B9DD9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label h4 {\n\tcolor: #0086B9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label:hover {\n\tborder-color: #0086B9;\n}\n\n@media only screen and (max-width: 700px) {\n\n\t.wpo-fieldgroup .compression_server {\n\t\t-ms-flex-direction: column;\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .compression_server > div {\n\t\tmargin-bottom: 15px;\n\t\tmax-width: 100%;\n\t}\n\n}\n\n/**\n * Compression Options\n */\n.wpo-fieldgroup h4 {\n\tmargin: 1em 0;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio] {\n\tposition: absolute;\n\tvisibility: hidden;\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .image_quality label {\n\tcolor: #23282D;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\tpadding: 5px 20px;\n\tbackground: #F9F9F9;\n\tfloat: left;\n\tmargin: 0 .5px;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio]:checked + label {\n\tcolor: white;\n\tbackground: #0088B9;\n}\n\n.wpo-fieldgroup .image_quality label + .wpo-fieldgroup .image_quality input[type=radio] + label {\n\tborder-left: solid 3px #675F6B;\n}\n\n.wpo-fieldgroup .image_quality.radio-group {\n\tborder: solid .5px #C4C4C4;\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\toverflow: hidden;\n\tborder-bottom: solid 2px #C4C4C4;\n\tbackground: #C4C4C4;\n}\n\n.wpo-fieldgroup .image_options input {\n\tmin-height: 16px;\n\tmin-width: 16px;\n\tmargin: 3px 2px;\n}\n\nimg#wpo_smush_images_save_options_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n}\n\nspan#wpo_smush_images_save_options_fail {\n\tfont-size: inherit;\n\tcolor: red;\n}\n\nspan#wpo_smush_images_save_options_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n#smush-complete-summary span.clearfix {\n\theight: 10px;\n\tdisplay: block;\n\tclear: both;\n}\n\nspan.close {\n\tdisplay: block;\n\tclear: both;\n\ttext-align: left;\n\tcolor: #DF6927;\n\tborder: 2px solid;\n\tborder-radius: 50%;\n\tcursor: pointer;\n}\n\n.modal-message-text {\n\tmargin: 0 25px;\n}\n\n.smush-options.custom_compression {\n\tmargin: 10px;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression {\n\tdisplay: flex;\n\talign-items: center;\n\tmargin-left: 24px;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span {\n\tdisplay: inline-block;\n\tpadding: 6px;\n\tborder: 1px solid #CFD2D4;\n\tborder-radius: 4px;\n\tfont-size: 0.9em;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 100%;\n\ttransform: translate(-3px, 8px) rotate(45deg);\n\tborder-right: 1px solid #CFD2D4;\n\tborder-top: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tright: 100%;\n\ttransform: translate(3px, 8px) rotate(45deg);\n\tborder-left: 1px solid #CFD2D4;\n\tborder-bottom: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > input {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.wpo-fieldgroup input[type=\"radio\"] {\n\t\theight: 16px;\n\t\twidth: 16px;\n\t}\n\n\t.wpo-fieldgroup\tinput[type=\"radio\"]:checked:before {\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\tmargin: 4px;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression {\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > input {\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\t\tleft: 0;\n\t\ttransform: translate(7px, 22px) rotate(135deg);\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\t\tright: auto;\n\t\tleft: 100%;\n\t\ttransform: translate(-14px, -5px) rotate(135deg);\n\t}\n\n}\n\n/**\n * Uncompressed images\n */\n\n#wpo_smush_settings .align-left {\n\tfloat: left;\n}\n\n#wpo_smush_settings .align-right {\n\tfloat: right;\n}\n\n.wpo-fieldgroup .wpo_smush_images_buttons_wrap {\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .smush-refresh-icon,\n.wpo-fieldgroup .smush-select-actions {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup img.wpo_smush_images_loader {\n\tdisplay: none;\n\tmin-height: 20px;\n\tmin-width: 20px;\n}\n\n.wpo-fieldgroup .dashicons.dashicons-image-rotate, {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup .toggle-smush-advanced {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced {\n\tdisplay: block;\n\twidth: calc(100% + 40px);\n\tmargin-left: -20px;\n\tmargin-right: -20px;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n\tposition: relative;\n\ttext-decoration: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced span.dashicons {\n\ttext-decoration: none;\n\tfont-size: 16px;\n\theight: 16px;\n\tvertical-align: middle;\n\tcolor: #444;\n\ttransition: .2s all;\n}\n\n.wpo-fieldgroup .toggle-smush-advanced span.text {\n\tbackground: #EDEFF0;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced:hover,\n.wpo-fieldgroup .button.toggle-smush-advanced:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened::before {\n\tcontent: '';\n\tborder-top: 1px solid #CCC;\n\twidth: 100%;\n\tposition: absolute;\n\ttop: 16px;\n\tleft: 0;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .smush-advanced {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened + .smush-advanced {\n\tdisplay: block;\n}\n\n.wpo_smush_image:focus-within label {\n\tbox-shadow: 0 0 4px #0272AA;\n}\n\n.wpo_smush_image .wpo_smush_image__input:checked + label {\n\tborder-color: #0272AA;\n}\n\n.uncompressed-images input[type=\"checkbox\"] {\n\tposition: absolute;\n\topacity: 0;\n\twidth: 0;\n\theight: 0;\n}\n\n.uncompressed-images small.red {\n\tclear: both;\n\tdisplay: block;\n\tmargin: 5px;\n}\n\n.smush-actions .wpo_primary_small {\n\tdisplay: inline-block;\n\tmargin: 5px;\n}\n\n.smush-actions {\n\tdisplay: inline-block;\n\twidth: 100%;\n\tmargin: 10px 0;\n}\n\n.smush-actions .dashicons.dashicons-yes {\n\tfont-size: 15px;\n\tmargin: 0 5px;\n}\n\n.smush-actions img {\n\tmax-height: 25px;\n\tmax-width: 25px;\n}\n\n/**\n * Log and panels\n */\n\n#smush-log-modal {\n\twidth: 100%;\n\theight: 100%;\n}\n\n#log-panel {\n\theight: 80%;\n\toverflow: scroll;\n\tmargin: 2%;\n}\n\n#log-panel pre {\n\ttext-align: left;\n\toverflow: auto;\n\theight: 100%;\n\tbackground: gainsboro;\n}\n\n#smush-information {\n\tmargin-bottom: 10px;\n}\n\n/**\n * Smush modal progress box & related styling\n */\n\n#smush_stats {\n\ttext-align: center;\n\tmargin: 0 auto;\n\tpadding: 2%;\n\tmin-width: 350px;\n\tfont-size: larger;\n}\n\n#smush_stats .wpo_smush_stats_cta_btn {\n\tclear: both;\n\tdisplay: block;\n\ttext-align: center;\n}\n\n#smush_stats .smush_stats_row td:first-child {\n\ttext-align: left;\n}\n\n#smush_stats tr.smush_stats_row td:last-child {\n\ttext-align: right;\n}\n\n#smush_stats #wpo_smush_images_information_container p {\n\tpadding: 10px;\n}\n\n#smush-complete-summary .checkmark-circle {\n\twidth: 50px;\n\theight: 50px;\n\tposition: relative;\n\tdisplay: inline-block;\n\tvertical-align: top;\n}\n\n#smush-complete-summary .checkmark-circle .background {\n\twidth: 50px;\n\theight: 50px;\n\tborder-radius: 50%;\n\tbackground: #DF6927;\n\tposition: absolute;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark {\n\tborder-radius: 5px;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark.draw:after {\n\tanimation-delay: 100ms;\n\tanimation-duration: 1s;\n\tanimation-timing-function: ease;\n\tanimation-name: checkmark;\n\ttransform: scalex(-1) rotate(135deg);\n\tanimation-fill-mode: forwards;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark:after {\n\topacity: 1;\n\theight: 25px;\n\twidth: 12.5px;\n\ttransform-origin: left top;\n\tborder-right: 5px solid white;\n\tborder-top: 5px solid white;\n\tborder-radius: 2.5px !important;\n\tcontent: '';\n\tleft: 8.3333333333px;\n\ttop: 25px;\n\tposition: absolute;\n}\n\n#smush_stats .wpo_primary_small {\n\ttext-align: center;\n}\n\n#smush-complete-summary #summary-message {\n\tmargin: 15px auto;\n}\n\nimg#wpo_smush_images_clear_stats_spinner {\n\twidth: 20px;\n\tline-height: 1;\n\tvertical-align: middle;\n}\n\n/* Animated progress bar */\n\n#wpo_smush_images_information_container {\n\tpadding: 10px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar {\n\theight: 25px;\n\tpadding: 1px;\n\twidth: 350px;\n\tmargin: 10px auto;\n\tborder-radius: 5px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar span {\n\tdisplay: inline-block;\n\theight: 100%;\n\tborder-radius: 3px;\n\tbox-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;\n\ttransition: width .4s ease-in-out;\n}\n\n#wpo_smush_images_information_wrapper .orange span {\n\tbackground-color: #DF6927;\n}\n\n#wpo_smush_images_information_wrapper .stripes span {\n\tbackground-size: 30px;\n\tbackground-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n\tanimation: animate-stripes 3s linear infinite;\n}\n\n/**\n * Smush metabox\n */\n\n#smush-metabox-inside-wrapper {\n\tdisplay: inline-table;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper h4 {\n\tmargin: 2px 0;\n}\n\n#smush-metabox-inside-wrapper label {\n\tmargin-top: 5px;\n\tclear: left;\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image {\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button {\n\tpadding: 5px 0;\n}\n\n#smush-metabox-inside-wrapper fieldset {\n\tmargin: 10px 0;\n}\n\n#smush-metabox-inside-wrapper input[type=\"radio\"] {\n\tmargin: -4px 4px 0 0;\n}\n\n#smush-metabox-inside-wrapper .alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper p#smush_info {\n\tmargin: 20px auto;\n\tpadding-top: 10px;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced {\n\tdisplay: block !important;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span {\n\tdisplay: block;\n\tmax-width: 30%;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper input#custom_compression_slider {\n\tdisplay: block;\n\tclear: both;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright {\n\tfloat: right;\n\ttext-align: right;\n}\n\n.smush-metabox-dashboard-link {\n\tclear: both;\n\tpadding-top: 15px;\n\ttext-align: right;\n}\n\n.media-frame-content .attachment-compat .compat-item,\n.compat-field-wpo_compress_image {\n\toverflow: visible !important;\n}\n\n.compat-field-wpo_compress_image {\n\tborder-top: 1px solid #DDD;\n}\n\n.compat-field-wpo_compress_image span.dashicons {\n\ttext-align: left;\n\tfloat: none;\n\tmin-height: 0;\n\tpadding-top: 2px;\n}\n\n.compat-field-wpo_compress_image td.field {\n\twidth: auto;\n\tfloat: none;\n}\n\n.compat-field-wpo_compress_image td.field [data-tooltip] {\n\tdisplay: none;\n}\n\n.compat-field-wpo_compress_image th.label {\n\ttext-align: left;\n\tmin-width: 0;\n\tfloat: none;\n\tmargin: 0;\n}\n\n.compat-field-wpo_compress_image th.label label span {\n\tfont-weight: 500;\n\ttext-align: left;\n}\n\n/**\n * Force fix the modals\n */\n.blockUI.blockMsg.blockPage {\n\tz-index: 170000 !important;\n\tright: 0;\n\tleft: 0 !important;\n\tmargin-right: auto !important;\n\tmargin-left: auto !important;\n\tmax-width: 90%;\n\tcursor: default !important;\n}\n\n.blockUI.blockOverlay {\n\tcursor: default !important;\n}\n\n/**\n * Tooltip Styles\n */\n\n/* Add this attribute to the element that needs a tooltip */\n#smush-metabox-inside-wrapper [data-tooltip],\n.wpo-fieldgroup [data-tooltip] {\n\tposition: relative;\n\tcursor: pointer;\n\tline-height: 18px;\n}\n\n/* Hide the tooltip content by default */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:after {\n\tvisibility: hidden;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);\n\topacity: 0;\n\tpointer-events: none;\n}\n\n/* Position tooltip above the element */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:before {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-bottom: 5px;\n\tmargin-left: -140px;\n\tpadding: 12px;\n\twidth: 275px;\n\tz-index: 9999;\n\tborder-radius: 3px;\n\tbackground-color: #000;\n\tbackground-color: hsla(0, 0%, 20%, 0.95);\n\tcolor: #FFF;\n\tcontent: attr(data-tooltip);\n\ttext-align: center;\n\tfont-size: .85rem;\n\tfont-weight: 400;\n\tline-height: 1.4;\n}\n\n#smush-metabox-inside-wrapper [data-tooltip]:before {\n\tmargin-left: -280px;\n}\n\n/* Triangle hack to make tooltip look like a speech bubble */\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:after {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-left: -5px;\n\twidth: 0;\n\tborder-top: 5px solid #000;\n\tborder-top: 5px solid hsla(0, 0%, 20%, 0.9);\n\tborder-right: 5px solid transparent;\n\tborder-left: 5px solid transparent;\n\tcontent: \" \";\n\tfont-size: 0;\n\tline-height: 0;\n}\n\n/* Show tooltip content on hover */\n#smush-metabox-inside-wrapper [data-tooltip]:hover:before,\n#smush-metabox-inside-wrapper [data-tooltip]:hover:after,\n.wpo-fieldgroup [data-tooltip]:hover:before,\n.wpo-fieldgroup [data-tooltip]:hover:after,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:before,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:after,\n.wpo-fieldgroup [data-tooltip]:focus:before,\n.wpo-fieldgroup [data-tooltip]:focus:after {\n\tvisibility: visible;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);\n\topacity: 1;\n}\n\n/**\n * Animation needed for smush\n */\n\n@keyframes checkmark {\n\n\t0% {\n\t\theight: 0;\n\t\twidth: 0;\n\t\topacity: 1;\n\t}\n\n\t20% {\n\t\theight: 0;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t40% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t100% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
.wpo-fieldgroup .autosmush{display:inline-block;width:100%}.wpo-fieldgroup .autosmush h3{font-size:1.2em;margin:3px 18px}.wpo-fieldgroup .compression_server div{max-width:300px}.wpo-fieldgroup .compression_server h2{margin:10px 0}.wpo-fieldgroup .compression_server h3{clear:both;width:100%}.wpo-fieldgroup .compression_server p{margin:1px}.wpo-fieldgroup .compression_server p:last-of-type{margin-bottom:10px}.wpo-fieldgroup .compression_server{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.wpo-fieldgroup .compression_server>div{-ms-flex:1;flex:1;margin-right:10px;height:100%;position:relative}.wpo-fieldgroup .compression_server input[type="radio"]{position:absolute;z-index:1;top:calc(50% + 2px);left:20px;transform:translatey(-50%)}.wpo-fieldgroup .compression_server input[type="radio"] ~ label h4{color:#23282d;margin-top:0;margin-bottom:.9em;font-size:1.2em}.wpo-fieldgroup .compression_server label{display:block;position:relative;box-sizing:border-box;height:100%;background:#FFF;text-align:left;box-shadow:0 3px 10px -2px hsla(150,5%,65%,0.5)}.wpo-fieldgroup .compression_server input[type="radio"]+label{padding:20px;border:2px solid #FFF;padding-left:65px;position:relative;border-radius:5px;color:#82868b}.wpo-fieldgroup .compression_server input[type="radio"]+label::before{content:'';display:block;position:absolute;top:0;left:52px;height:100%;border-right:1px solid #edeff0}.wpo-fieldgroup .save-options{margin:10px 0}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label,.wpo-fieldgroup .compression_server input[type="radio"]+label:hover{border-color:rgba(0,134,184,0.38)}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label{box-shadow:0 3px 10px -2px #5b9dd9}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label h4{color:#0086b9}.wpo-fieldgroup .compression_server input[type="radio"]:checked+label,.wpo-fieldgroup .compression_server input[type="radio"]:checked+label:hover{border-color:#0086b9}@media only screen and (max-width:700px){.wpo-fieldgroup .compression_server{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .compression_server>div{margin-bottom:15px;max-width:100%}}.wpo-fieldgroup h4{margin:1em 0;width:100%}.wpo-fieldgroup .image_quality input[type=radio]{position:absolute;visibility:hidden;display:none}.wpo-fieldgroup .image_quality label{color:#23282d;display:inline-block;cursor:pointer;font-weight:bold;padding:5px 20px;background:#f9f9f9;float:left;margin:0 .5px}.wpo-fieldgroup .image_quality input[type=radio]:checked+label{color:white;background:#0088b9}.wpo-fieldgroup .image_quality label+.wpo-fieldgroup .image_quality input[type=radio]+label{border-left:solid 3px #675f6b}.wpo-fieldgroup .image_quality.radio-group{border:solid .5px #c4c4c4;display:inline-block;border-radius:5px;overflow:hidden;border-bottom:solid 2px #c4c4c4;background:#c4c4c4}.wpo-fieldgroup .image_options input{min-height:16px;min-width:16px;margin:3px 2px}img#wpo_smush_images_save_options_spinner{max-width:20px;max-height:20px}span#wpo_smush_images_save_options_fail{font-size:inherit;color:red}span#wpo_smush_images_save_options_done{font-size:inherit;color:green}#smush-complete-summary span.clearfix{height:10px;display:block;clear:both}span.close{display:block;clear:both;text-align:left;color:#df6927;border:2px solid;border-radius:50%;cursor:pointer}.modal-message-text{margin:0 25px}.smush-options.custom_compression{margin:10px}#smush-backup-delete-days{width:50px;margin:0 8px}img#wpo_smush_delete_backup_spinner{max-width:20px;max-height:20px;position:relative;top:4px}span#wpo_smush_delete_backup_done{font-size:inherit;color:green}.wpo-fieldgroup .smush-options.custom_compression{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:24px}.wpo-fieldgroup .smush-options.custom_compression>span{display:inline-block;padding:6px;border:1px solid #cfd2d4;border-radius:4px;font-size:.9em;position:relative}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{content:'';width:6px;height:6px;display:block;position:absolute;top:0;left:100%;transform:translate(-3px,8px) rotate(45deg);border-right:1px solid #cfd2d4;border-top:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{content:'';width:6px;height:6px;display:block;position:absolute;top:0;right:100%;transform:translate(3px,8px) rotate(45deg);border-left:1px solid #cfd2d4;border-bottom:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>input{margin-left:8px;margin-right:8px}@media screen and (max-width:782px){.wpo-fieldgroup input[type="radio"]{height:16px;width:16px}.wpo-fieldgroup input[type="radio"]:checked:before{width:6px;height:6px;margin:4px}.wpo-fieldgroup .smush-options.custom_compression{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .smush-options.custom_compression>input{width:100%}.wpo-fieldgroup .smush-options.custom_compression>span{display:block;width:100%}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{left:0;transform:translate(7px,22px) rotate(135deg)}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{right:auto;left:100%;transform:translate(-14px,-5px) rotate(135deg)}}#wpo_smush_settings .align-left{float:left}#wpo_smush_settings .align-right{float:right}.wpo-fieldgroup .wpo_smush_images_buttons_wrap{width:100%}.wpo-fieldgroup .smush-refresh-icon,.wpo-fieldgroup .smush-select-actions{font-size:15px}.wpo-fieldgroup img.wpo_smush_images_loader{display:none;min-height:20px;min-width:20px}.wpo-fieldgroup .dashicons.dashicons-image-rotate,{font-size:15px}.wpo-fieldgroup .toggle-smush-advanced{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.toggle-smush-advanced{display:block;width:calc(100% + 40px);margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px;position:relative;text-decoration:none}.wpo-fieldgroup .button.toggle-smush-advanced span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .toggle-smush-advanced span.text{background:#f2f4f4;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.toggle-smush-advanced:hover,.wpo-fieldgroup .button.toggle-smush-advanced:focus{background:transparent}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .smush-advanced{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened+.smush-advanced{display:block}.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_smush_image .wpo_smush_image__input:checked+label{border-color:#0272aa}.uncompressed-images input[type="checkbox"]{position:absolute;opacity:0;width:0;height:0}.uncompressed-images small.red{clear:both;display:block;margin:5px}.smush-actions .wpo_primary_small{display:inline-block;margin:5px}.smush-actions{display:inline-block;width:100%;margin:10px 0}.smush-actions .dashicons.dashicons-yes{font-size:15px;margin:0 5px}.smush-actions img{max-height:25px;max-width:25px}#smush-log-modal{width:100%;height:100%}#log-panel{height:80%;overflow:scroll;margin:2%}#log-panel pre{text-align:left;overflow:auto;height:100%;background:gainsboro}#smush-information{margin-bottom:10px}#smush_stats{text-align:center;margin:0 auto;padding:2%;min-width:350px;font-size:larger}#smush_stats .wpo_smush_stats_cta_btn{clear:both;display:block;text-align:center}#smush_stats .smush_stats_row td:first-child{text-align:left}#smush_stats tr.smush_stats_row td:last-child{text-align:right}#smush_stats #wpo_smush_images_information_container p{padding:10px}#smush-complete-summary .checkmark-circle{width:50px;height:50px;position:relative;display:inline-block;vertical-align:top}#smush-complete-summary .checkmark-circle .background{width:50px;height:50px;border-radius:50%;background:#df6927;position:absolute}#smush-complete-summary .checkmark-circle .checkmark{border-radius:5px}#smush-complete-summary .checkmark-circle .checkmark.draw:after{animation-delay:100ms;animation-duration:1s;animation-timing-function:ease;animation-name:checkmark;transform:scalex(-1) rotate(135deg);animation-fill-mode:forwards}#smush-complete-summary .checkmark-circle .checkmark:after{opacity:1;height:25px;width:12.5px;transform-origin:left top;border-right:5px solid white;border-top:5px solid white;border-radius:2.5px !important;content:'';left:8.3333333333px;top:25px;position:absolute}#smush_stats .wpo_primary_small{text-align:center}#smush-complete-summary #summary-message{margin:15px auto}img#wpo_smush_images_clear_stats_spinner{width:20px;line-height:1;vertical-align:middle}#wpo_smush_images_information_container{padding:10px}#wpo_smush_images_information_wrapper .progress-bar{height:25px;padding:1px;width:350px;margin:10px auto;border-radius:5px}#wpo_smush_images_information_wrapper .progress-bar span{display:inline-block;height:100%;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5) inset;transition:width .4s ease-in-out}#wpo_smush_images_information_wrapper .orange span{background-color:#df6927}#wpo_smush_images_information_wrapper .stripes span{background-size:30px;background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);animation:animate-stripes 3s linear infinite}#smush-metabox-inside-wrapper{display:inline-table;width:100%}#smush-metabox-inside-wrapper h4{margin:2px 0}#smush-metabox-inside-wrapper label{margin-top:5px;clear:left;display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image{display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button{padding:5px 0}#smush-metabox-inside-wrapper fieldset{margin:10px 0}#smush-metabox-inside-wrapper input[type="radio"]{margin:-4px 4px 0 0}#smush-metabox-inside-wrapper .alignleft{float:left}#smush-metabox-inside-wrapper p#smush_info{margin:20px auto;padding-top:10px;clear:both}#smush-metabox-inside-wrapper .toggle-smush-advanced{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced{display:none}#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced{display:block !important}#smush-metabox-inside-wrapper .smush-options.custom_compression span{display:block;max-width:30%;clear:both}#smush-metabox-inside-wrapper input#custom_compression_slider{display:block;clear:both;width:100%}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft{float:left}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright{float:right;text-align:right}.smush-metabox-dashboard-link{clear:both;padding-top:15px;text-align:right}.media-frame-content .attachment-compat .compat-item,.compat-field-wpo_compress_image{overflow:visible !important}.compat-field-wpo_compress_image{border-top:1px solid #DDD}.compat-field-wpo_compress_image span.dashicons{text-align:left;float:none;min-height:0;padding-top:2px}.compat-field-wpo_compress_image td.field{width:auto;float:none}.compat-field-wpo_compress_image td.field [data-tooltip]{display:none}.compat-field-wpo_compress_image th.label{text-align:left;min-width:0;float:none;margin:0}.compat-field-wpo_compress_image th.label label span{font-weight:500;text-align:left}.blockUI.blockMsg.blockPage{z-index:170000 !important;right:0;left:0 !important;margin-right:auto !important;margin-left:auto !important;max-width:90%;cursor:default !important}.blockUI.blockOverlay{cursor:default !important}#smush-metabox-inside-wrapper [data-tooltip],.wpo-fieldgroup [data-tooltip]{position:relative;cursor:pointer;line-height:18px}#smush-metabox-inside-wrapper [data-tooltip]:before,#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:after{visibility:hidden;-ms-filter:"alpha(opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}#smush-metabox-inside-wrapper [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:before{position:absolute;bottom:150%;left:50%;margin-bottom:5px;margin-left:-140px;padding:12px;width:275px;z-index:9999;border-radius:3px;background-color:#000;background-color:hsla(0,0%,20%,0.95);color:#FFF;content:attr(data-tooltip);text-align:center;font-size:.85rem;font-weight:400;line-height:1.4}#smush-metabox-inside-wrapper [data-tooltip]:before{margin-left:-280px}#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:after{position:absolute;bottom:150%;left:50%;margin-left:-5px;width:0;border-top:5px solid #000;border-top:5px solid hsla(0,0%,20%,0.9);border-right:5px solid transparent;border-left:5px solid transparent;content:" ";font-size:0;line-height:0}#smush-metabox-inside-wrapper [data-tooltip]:hover:before,#smush-metabox-inside-wrapper [data-tooltip]:hover:after,.wpo-fieldgroup [data-tooltip]:hover:before,.wpo-fieldgroup [data-tooltip]:hover:after,#smush-metabox-inside-wrapper [data-tooltip]:focus:before,#smush-metabox-inside-wrapper [data-tooltip]:focus:after,.wpo-fieldgroup [data-tooltip]:focus:before,.wpo-fieldgroup [data-tooltip]:focus:after{visibility:visible;-ms-filter:"alpha(opacity=100)";filter:alpha(opacity=100);opacity:1}@keyframes checkmark{0%{height:0;width:0;opacity:1}20%{height:0;width:12.5px;opacity:1}40%{height:25px;width:12.5px;opacity:1}100%{height:25px;width:12.5px;opacity:1}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}
|
2 |
+
/*# sourceMappingURL=smush-3-0-12.min.css.map */
|
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"sources":["css/smush.css"],"names":[],"mappings":"AAAA;;GAEG;AACH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,qBAAqB;CACrB,cAAc;CACd,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,QAAQ;CACR,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB,WAAW;CACX,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,cAAc;CACd,qBAAqB;CACrB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,iBAAiB;CACjB,sDAAsD;CACtD;;AAED;CACC,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,aAAa;CACb,gCAAgC;CAChC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sCAAsC;CACtC;;AAED;CACC,sCAAsC;CACtC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC;EACC,2BAA2B;EAC3B,uBAAuB;EACvB;;CAED;EACC,oBAAoB;EACpB,gBAAgB;EAChB;;CAED;;AAED;;GAEG;AACH;CACC,cAAc;CACd,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,kBAAkB;CAClB,oBAAoB;CACpB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,2BAA2B;CAC3B,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,aAAa;CACb,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,0BAA0B;CAC1B,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,8CAA8C;CAC9C,gCAAgC;CAChC,8BAA8B;CAC9B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,YAAY;CACZ,6CAA6C;CAC7C,+BAA+B;CAC/B,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;EACC,WAAW;EACX,YAAY;EACZ,YAAY;EACZ;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf,YAAY;EACZ;;CAED;EACC,QAAQ;EACR,+CAA+C;EAC/C;;CAED;EACC,YAAY;EACZ,WAAW;EACX,iDAAiD;EACjD;;CAED;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B,eAAe;CACf;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,uBAAuB;CACvB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;;CAEC,wBAAwB;CACxB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,2BAA2B;CAC3B,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,UAAU;CACV;;AAED;CACC,YAAY;CACZ,eAAe;CACf,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;;GAEG;;AAEH;CACC,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,uBAAuB;CACvB,gCAAgC;CAChC,0BAA0B;CAC1B,qCAAqC;CACrC,8BAA8B;CAC9B;;AAED;CACC,WAAW;CACX,aAAa;CACb,cAAc;CACd,2BAA2B;CAC3B,8BAA8B;CAC9B,4BAA4B;CAC5B,gCAAgC;CAChC,YAAY;CACZ,qBAAqB;CACrB,UAAU;CACV,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB;;AAED,2BAA2B;;AAE3B;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kDAAkD;CAClD,kCAAkC;CAClC;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,sBAAsB;CACtB,oMAAoM;CACpM,8CAA8C;CAC9C;;AAED;;GAEG;;AAEH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,cAAc;CACd,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,YAAY;CACZ,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,2BAA2B;CAC3B,SAAS;CACT,mBAAmB;CACnB,8BAA8B;CAC9B,6BAA6B;CAC7B,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;;GAEG;;AAEH,4DAA4D;AAC5D;;CAEC,mBAAmB;CACnB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED,yCAAyC;AACzC;;;;CAIC,mBAAmB;CACnB,iEAAiE;CACjE,4DAA4D;CAC5D,WAAW;CACX,qBAAqB;CACrB;;AAED,wCAAwC;AACxC;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,mBAAmB;CACnB,oBAAoB;CACpB,cAAc;CACd,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,uBAAuB;CACvB,yCAAyC;CACzC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED,6DAA6D;AAC7D;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,2BAA2B;CAC3B,4CAA4C;CAC5C,oCAAoC;CACpC,mCAAmC;CACnC,aAAa;CACb,aAAa;CACb,eAAe;CACf;;AAED,mCAAmC;AACnC;;;;;;;;CAQC,oBAAoB;CACpB,mEAAmE;CACnE,8DAA8D;CAC9D,WAAW;CACX;;AAED;;GAEG;;AAEH;;CAEC;EACC,UAAU;EACV,SAAS;EACT,WAAW;EACX;;CAED;EACC,UAAU;EACV,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED","file":"smush-3-0-12.min.css","sourcesContent":["/**\n * Autosmush\n */\n.wpo-fieldgroup .autosmush {\n\tdisplay: inline-block;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .autosmush h3 {\n\tfont-size: 1.2em;\n\tmargin: 3px 18px;\n}\n\n/**\n * Compression Server\n */\n.wpo-fieldgroup .compression_server div {\n\tmax-width: 300px;\n}\n\n.wpo-fieldgroup .compression_server h2 {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server h3 {\n\tclear: both;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .compression_server p {\n\tmargin: 1px;\n}\n\n.wpo-fieldgroup .compression_server p:last-of-type {\n\tmargin-bottom: 10px;\n}\n\n.wpo-fieldgroup .compression_server {\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-ms-flex-flow: row wrap;\n\tflex-flow: row wrap;\n}\n\n.wpo-fieldgroup .compression_server > div {\n\t-ms-flex: 1;\n\tflex: 1;\n\tmargin-right: 10px;\n\theight: 100%;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] {\n\tposition: absolute;\n\tz-index: 1;\n\ttop: calc(50% + 2px);\n\tleft: 20px;\n\ttransform: translatey(-50%);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] ~ label h4 {\n\tcolor: #23282D;\n\tmargin-top: 0;\n\tmargin-bottom: 0.9em;\n\tfont-size: 1.2em;\n}\n\n.wpo-fieldgroup .compression_server label {\n\tdisplay: block;\n\tposition: relative;\n\tbox-sizing: border-box;\n\theight: 100%;\n\tbackground: #FFF;\n\ttext-align: left;\n\tbox-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label {\n\tpadding: 20px;\n\tborder: 2px solid #FFF;\n\tpadding-left: 65px;\n\tposition: relative;\n\tborder-radius: 5px;\n\tcolor: #82868B;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label::before {\n\tcontent: '';\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 52px;\n\theight: 100%;\n\tborder-right: 1px solid #EDEFF0;\n}\n\n.wpo-fieldgroup .save-options {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label:hover {\n\tborder-color: rgba(0, 134, 184, 0.38);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label {\n\tbox-shadow: 0px 3px 10px -2px #5B9DD9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label h4 {\n\tcolor: #0086B9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label:hover {\n\tborder-color: #0086B9;\n}\n\n@media only screen and (max-width: 700px) {\n\n\t.wpo-fieldgroup .compression_server {\n\t\t-ms-flex-direction: column;\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .compression_server > div {\n\t\tmargin-bottom: 15px;\n\t\tmax-width: 100%;\n\t}\n\n}\n\n/**\n * Compression Options\n */\n.wpo-fieldgroup h4 {\n\tmargin: 1em 0;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio] {\n\tposition: absolute;\n\tvisibility: hidden;\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .image_quality label {\n\tcolor: #23282D;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\tpadding: 5px 20px;\n\tbackground: #F9F9F9;\n\tfloat: left;\n\tmargin: 0 .5px;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio]:checked + label {\n\tcolor: white;\n\tbackground: #0088B9;\n}\n\n.wpo-fieldgroup .image_quality label + .wpo-fieldgroup .image_quality input[type=radio] + label {\n\tborder-left: solid 3px #675F6B;\n}\n\n.wpo-fieldgroup .image_quality.radio-group {\n\tborder: solid .5px #C4C4C4;\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\toverflow: hidden;\n\tborder-bottom: solid 2px #C4C4C4;\n\tbackground: #C4C4C4;\n}\n\n.wpo-fieldgroup .image_options input {\n\tmin-height: 16px;\n\tmin-width: 16px;\n\tmargin: 3px 2px;\n}\n\nimg#wpo_smush_images_save_options_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n}\n\nspan#wpo_smush_images_save_options_fail {\n\tfont-size: inherit;\n\tcolor: red;\n}\n\nspan#wpo_smush_images_save_options_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n#smush-complete-summary span.clearfix {\n\theight: 10px;\n\tdisplay: block;\n\tclear: both;\n}\n\nspan.close {\n\tdisplay: block;\n\tclear: both;\n\ttext-align: left;\n\tcolor: #DF6927;\n\tborder: 2px solid;\n\tborder-radius: 50%;\n\tcursor: pointer;\n}\n\n.modal-message-text {\n\tmargin: 0 25px;\n}\n\n.smush-options.custom_compression {\n\tmargin: 10px;\n}\n\n#smush-backup-delete-days {\n\twidth: 50px;\n\tmargin: 0 8px;\n}\n\nimg#wpo_smush_delete_backup_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n\tposition: relative;\n\ttop: 4px;\n}\n\nspan#wpo_smush_delete_backup_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression {\n\tdisplay: flex;\n\talign-items: center;\n\tmargin-left: 24px;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span {\n\tdisplay: inline-block;\n\tpadding: 6px;\n\tborder: 1px solid #CFD2D4;\n\tborder-radius: 4px;\n\tfont-size: 0.9em;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 100%;\n\ttransform: translate(-3px, 8px) rotate(45deg);\n\tborder-right: 1px solid #CFD2D4;\n\tborder-top: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tright: 100%;\n\ttransform: translate(3px, 8px) rotate(45deg);\n\tborder-left: 1px solid #CFD2D4;\n\tborder-bottom: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > input {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.wpo-fieldgroup input[type=\"radio\"] {\n\t\theight: 16px;\n\t\twidth: 16px;\n\t}\n\n\t.wpo-fieldgroup\tinput[type=\"radio\"]:checked:before {\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\tmargin: 4px;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression {\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > input {\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\t\tleft: 0;\n\t\ttransform: translate(7px, 22px) rotate(135deg);\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\t\tright: auto;\n\t\tleft: 100%;\n\t\ttransform: translate(-14px, -5px) rotate(135deg);\n\t}\n\n}\n\n/**\n * Uncompressed images\n */\n\n#wpo_smush_settings .align-left {\n\tfloat: left;\n}\n\n#wpo_smush_settings .align-right {\n\tfloat: right;\n}\n\n.wpo-fieldgroup .wpo_smush_images_buttons_wrap {\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .smush-refresh-icon,\n.wpo-fieldgroup .smush-select-actions {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup img.wpo_smush_images_loader {\n\tdisplay: none;\n\tmin-height: 20px;\n\tmin-width: 20px;\n}\n\n.wpo-fieldgroup .dashicons.dashicons-image-rotate, {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup .toggle-smush-advanced {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced {\n\tdisplay: block;\n\twidth: calc(100% + 40px);\n\tmargin-left: -20px;\n\tmargin-right: -20px;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n\tposition: relative;\n\ttext-decoration: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced span.dashicons {\n\ttext-decoration: none;\n\tfont-size: 16px;\n\theight: 16px;\n\tvertical-align: middle;\n\tcolor: #444;\n\ttransition: .2s all;\n}\n\n.wpo-fieldgroup .toggle-smush-advanced span.text {\n\tbackground: #F2F4F4;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced:hover,\n.wpo-fieldgroup .button.toggle-smush-advanced:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened::before {\n\tcontent: '';\n\tborder-top: 1px solid #CCC;\n\twidth: 100%;\n\tposition: absolute;\n\ttop: 16px;\n\tleft: 0;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .smush-advanced {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened + .smush-advanced {\n\tdisplay: block;\n}\n\n.wpo_smush_image:focus-within label {\n\tbox-shadow: 0 0 4px #0272AA;\n}\n\n.wpo_smush_image .wpo_smush_image__input:checked + label {\n\tborder-color: #0272AA;\n}\n\n.uncompressed-images input[type=\"checkbox\"] {\n\tposition: absolute;\n\topacity: 0;\n\twidth: 0;\n\theight: 0;\n}\n\n.uncompressed-images small.red {\n\tclear: both;\n\tdisplay: block;\n\tmargin: 5px;\n}\n\n.smush-actions .wpo_primary_small {\n\tdisplay: inline-block;\n\tmargin: 5px;\n}\n\n.smush-actions {\n\tdisplay: inline-block;\n\twidth: 100%;\n\tmargin: 10px 0;\n}\n\n.smush-actions .dashicons.dashicons-yes {\n\tfont-size: 15px;\n\tmargin: 0 5px;\n}\n\n.smush-actions img {\n\tmax-height: 25px;\n\tmax-width: 25px;\n}\n\n/**\n * Log and panels\n */\n\n#smush-log-modal {\n\twidth: 100%;\n\theight: 100%;\n}\n\n#log-panel {\n\theight: 80%;\n\toverflow: scroll;\n\tmargin: 2%;\n}\n\n#log-panel pre {\n\ttext-align: left;\n\toverflow: auto;\n\theight: 100%;\n\tbackground: gainsboro;\n}\n\n#smush-information {\n\tmargin-bottom: 10px;\n}\n\n/**\n * Smush modal progress box & related styling\n */\n\n#smush_stats {\n\ttext-align: center;\n\tmargin: 0 auto;\n\tpadding: 2%;\n\tmin-width: 350px;\n\tfont-size: larger;\n}\n\n#smush_stats .wpo_smush_stats_cta_btn {\n\tclear: both;\n\tdisplay: block;\n\ttext-align: center;\n}\n\n#smush_stats .smush_stats_row td:first-child {\n\ttext-align: left;\n}\n\n#smush_stats tr.smush_stats_row td:last-child {\n\ttext-align: right;\n}\n\n#smush_stats #wpo_smush_images_information_container p {\n\tpadding: 10px;\n}\n\n#smush-complete-summary .checkmark-circle {\n\twidth: 50px;\n\theight: 50px;\n\tposition: relative;\n\tdisplay: inline-block;\n\tvertical-align: top;\n}\n\n#smush-complete-summary .checkmark-circle .background {\n\twidth: 50px;\n\theight: 50px;\n\tborder-radius: 50%;\n\tbackground: #DF6927;\n\tposition: absolute;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark {\n\tborder-radius: 5px;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark.draw:after {\n\tanimation-delay: 100ms;\n\tanimation-duration: 1s;\n\tanimation-timing-function: ease;\n\tanimation-name: checkmark;\n\ttransform: scalex(-1) rotate(135deg);\n\tanimation-fill-mode: forwards;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark:after {\n\topacity: 1;\n\theight: 25px;\n\twidth: 12.5px;\n\ttransform-origin: left top;\n\tborder-right: 5px solid white;\n\tborder-top: 5px solid white;\n\tborder-radius: 2.5px !important;\n\tcontent: '';\n\tleft: 8.3333333333px;\n\ttop: 25px;\n\tposition: absolute;\n}\n\n#smush_stats .wpo_primary_small {\n\ttext-align: center;\n}\n\n#smush-complete-summary #summary-message {\n\tmargin: 15px auto;\n}\n\nimg#wpo_smush_images_clear_stats_spinner {\n\twidth: 20px;\n\tline-height: 1;\n\tvertical-align: middle;\n}\n\n/* Animated progress bar */\n\n#wpo_smush_images_information_container {\n\tpadding: 10px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar {\n\theight: 25px;\n\tpadding: 1px;\n\twidth: 350px;\n\tmargin: 10px auto;\n\tborder-radius: 5px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar span {\n\tdisplay: inline-block;\n\theight: 100%;\n\tborder-radius: 3px;\n\tbox-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;\n\ttransition: width .4s ease-in-out;\n}\n\n#wpo_smush_images_information_wrapper .orange span {\n\tbackground-color: #DF6927;\n}\n\n#wpo_smush_images_information_wrapper .stripes span {\n\tbackground-size: 30px;\n\tbackground-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n\tanimation: animate-stripes 3s linear infinite;\n}\n\n/**\n * Smush metabox\n */\n\n#smush-metabox-inside-wrapper {\n\tdisplay: inline-table;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper h4 {\n\tmargin: 2px 0;\n}\n\n#smush-metabox-inside-wrapper label {\n\tmargin-top: 5px;\n\tclear: left;\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image {\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button {\n\tpadding: 5px 0;\n}\n\n#smush-metabox-inside-wrapper fieldset {\n\tmargin: 10px 0;\n}\n\n#smush-metabox-inside-wrapper input[type=\"radio\"] {\n\tmargin: -4px 4px 0 0;\n}\n\n#smush-metabox-inside-wrapper .alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper p#smush_info {\n\tmargin: 20px auto;\n\tpadding-top: 10px;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced {\n\tdisplay: block !important;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span {\n\tdisplay: block;\n\tmax-width: 30%;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper input#custom_compression_slider {\n\tdisplay: block;\n\tclear: both;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright {\n\tfloat: right;\n\ttext-align: right;\n}\n\n.smush-metabox-dashboard-link {\n\tclear: both;\n\tpadding-top: 15px;\n\ttext-align: right;\n}\n\n.media-frame-content .attachment-compat .compat-item,\n.compat-field-wpo_compress_image {\n\toverflow: visible !important;\n}\n\n.compat-field-wpo_compress_image {\n\tborder-top: 1px solid #DDD;\n}\n\n.compat-field-wpo_compress_image span.dashicons {\n\ttext-align: left;\n\tfloat: none;\n\tmin-height: 0;\n\tpadding-top: 2px;\n}\n\n.compat-field-wpo_compress_image td.field {\n\twidth: auto;\n\tfloat: none;\n}\n\n.compat-field-wpo_compress_image td.field [data-tooltip] {\n\tdisplay: none;\n}\n\n.compat-field-wpo_compress_image th.label {\n\ttext-align: left;\n\tmin-width: 0;\n\tfloat: none;\n\tmargin: 0;\n}\n\n.compat-field-wpo_compress_image th.label label span {\n\tfont-weight: 500;\n\ttext-align: left;\n}\n\n/**\n * Force fix the modals\n */\n.blockUI.blockMsg.blockPage {\n\tz-index: 170000 !important;\n\tright: 0;\n\tleft: 0 !important;\n\tmargin-right: auto !important;\n\tmargin-left: auto !important;\n\tmax-width: 90%;\n\tcursor: default !important;\n}\n\n.blockUI.blockOverlay {\n\tcursor: default !important;\n}\n\n/**\n * Tooltip Styles\n */\n\n/* Add this attribute to the element that needs a tooltip */\n#smush-metabox-inside-wrapper [data-tooltip],\n.wpo-fieldgroup [data-tooltip] {\n\tposition: relative;\n\tcursor: pointer;\n\tline-height: 18px;\n}\n\n/* Hide the tooltip content by default */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:after {\n\tvisibility: hidden;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);\n\topacity: 0;\n\tpointer-events: none;\n}\n\n/* Position tooltip above the element */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:before {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-bottom: 5px;\n\tmargin-left: -140px;\n\tpadding: 12px;\n\twidth: 275px;\n\tz-index: 9999;\n\tborder-radius: 3px;\n\tbackground-color: #000;\n\tbackground-color: hsla(0, 0%, 20%, 0.95);\n\tcolor: #FFF;\n\tcontent: attr(data-tooltip);\n\ttext-align: center;\n\tfont-size: .85rem;\n\tfont-weight: 400;\n\tline-height: 1.4;\n}\n\n#smush-metabox-inside-wrapper [data-tooltip]:before {\n\tmargin-left: -280px;\n}\n\n/* Triangle hack to make tooltip look like a speech bubble */\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:after {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-left: -5px;\n\twidth: 0;\n\tborder-top: 5px solid #000;\n\tborder-top: 5px solid hsla(0, 0%, 20%, 0.9);\n\tborder-right: 5px solid transparent;\n\tborder-left: 5px solid transparent;\n\tcontent: \" \";\n\tfont-size: 0;\n\tline-height: 0;\n}\n\n/* Show tooltip content on hover */\n#smush-metabox-inside-wrapper [data-tooltip]:hover:before,\n#smush-metabox-inside-wrapper [data-tooltip]:hover:after,\n.wpo-fieldgroup [data-tooltip]:hover:before,\n.wpo-fieldgroup [data-tooltip]:hover:after,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:before,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:after,\n.wpo-fieldgroup [data-tooltip]:focus:before,\n.wpo-fieldgroup [data-tooltip]:focus:after {\n\tvisibility: visible;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);\n\topacity: 1;\n}\n\n/**\n * Animation needed for smush\n */\n\n@keyframes checkmark {\n\n\t0% {\n\t\theight: 0;\n\t\twidth: 0;\n\t\topacity: 1;\n\t}\n\n\t20% {\n\t\theight: 0;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t40% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t100% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n"]}
|
@@ -218,6 +218,23 @@ span.close {
|
|
218 |
margin: 10px;
|
219 |
}
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
.wpo-fieldgroup .smush-options.custom_compression {
|
222 |
display: -ms-flexbox;
|
223 |
display: flex;
|
@@ -366,7 +383,7 @@ span.close {
|
|
366 |
}
|
367 |
|
368 |
.wpo-fieldgroup .toggle-smush-advanced span.text {
|
369 |
-
background: #
|
370 |
z-index: 1;
|
371 |
position: relative;
|
372 |
padding-right: 5px;
|
218 |
margin: 10px;
|
219 |
}
|
220 |
|
221 |
+
#smush-backup-delete-days {
|
222 |
+
width: 50px;
|
223 |
+
margin: 0 8px;
|
224 |
+
}
|
225 |
+
|
226 |
+
img#wpo_smush_delete_backup_spinner {
|
227 |
+
max-width: 20px;
|
228 |
+
max-height: 20px;
|
229 |
+
position: relative;
|
230 |
+
top: 4px;
|
231 |
+
}
|
232 |
+
|
233 |
+
span#wpo_smush_delete_backup_done {
|
234 |
+
font-size: inherit;
|
235 |
+
color: green;
|
236 |
+
}
|
237 |
+
|
238 |
.wpo-fieldgroup .smush-options.custom_compression {
|
239 |
display: -ms-flexbox;
|
240 |
display: flex;
|
383 |
}
|
384 |
|
385 |
.wpo-fieldgroup .toggle-smush-advanced span.text {
|
386 |
+
background: #F2F4F4;
|
387 |
z-index: 1;
|
388 |
position: relative;
|
389 |
padding-right: 5px;
|
@@ -1,2 +0,0 @@
|
|
1 |
-
.wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:5px;display:block;margin-bottom:5px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}#wpo_browser_cache_output,#wpo_gzip_compression_output{background:#f0f0f0;padding:10px;border:1px solid #CCC}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{margin-bottom:15px}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:15px}@media screen and (max-width:768px){body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:0}}body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:15px;padding-right:0}@media screen and (max-width:768px){body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:10px}}body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:80px}@media(max-width:600px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:0}}@media(min-width:820px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:100px}}#wp-optimize-wrap{position:relative;padding-top:20px}@media(max-width:600px){#wp-optimize-wrap{padding-top:110px}}@media(max-width:782px){#wp-optimize-wrap{margin-right:0}}.wpo-main-header{height:77px;position:fixed;top:32px;left:160px;background:#FFF;right:0;z-index:9980}@media(min-width:820px){.wpo-main-header{height:105px}}.wpo-main-header .wpo-logo__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;position:relative;height:100%;line-height:1;font-size:1rem;padding-left:50px;margin-left:10px}.wpo-main-header .wpo-logo{position:absolute;left:0;top:50%;transform:translateY(-50%);width:50px}.wpo-main-header .wpo-subheader{margin:0;font-weight:300;color:#72777c;line-height:1.3}@media(max-width:1080px){.wpo-main-header .wpo-subheader{display:none}}.wpo-main-header p.wpo-header-links{margin:0;font-size:.7rem;position:absolute;right:0;padding:6px 15px;background:#edeeef;border-bottom-left-radius:5px;z-index:1}.wpo-main-header p.wpo-header-links a{text-decoration:none}.wpo-main-header p.wpo-header-links .wpo-header-links__label{color:#82868b;position:absolute;right:100%;width:110px;text-align:right;padding-right:10px}@media(max-width:820px){.wpo-main-header p.wpo-header-links{display:none}}.wpo-main-header p.wpo-header-links__mobile{padding:10px;background:#edeeef;margin-bottom:0}@media(min-width:820px){.wpo-main-header p.wpo-header-links__mobile{display:none}}.wpo-main-header p.wpo-header-links__mobile a{display:inline-block;padding:4px;font-size:.8rem}.wpo-main-header p.wpo-header-links__mobile .wpo-header-links__label{color:#82868b}@media(max-width:600px){.wpo-main-header .wpo-logo__container strong{width:140px;display:inline-block}}@media(max-width:960px){body.auto-fold .wpo-main-header{left:36px}}@media(max-width:782px){body.auto-fold .wpo-main-header{left:0;top:46px}}@media(max-width:600px){body.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(max-width:600px){body.auto-fold #screen-meta+#wp-optimize-wrap .wpo-main-header{top:0}}@media(min-width:782px){body.folded .wpo-main-header{left:36px}}body.is-scrolled .wpo-main-header{box-shadow:0 5px 25px rgba(0,0,0,0.17)}body.rtl .wpo-main-header{right:160px;left:0}body.rtl .wpo-main-header .wpo-logo__container{padding-left:10px;padding-right:50px;margin-left:0;margin-right:10px}body.rtl .wpo-main-header .wpo-logo{position:absolute;left:auto;right:0}body.rtl .wpo-main-header p.wpo-header-links{right:auto;left:0;border-bottom-right-radius:5px;border-bottom-left-radius:0}body.rtl .wpo-main-header p.wpo-header-links .wpo-header-links__label{position:absolute;left:100%;right:auto;width:110px;text-align:left;padding-left:10px}@media(max-width:960px){body.rtl.auto-fold .wpo-main-header{right:36px}}@media(max-width:782px){body.rtl.auto-fold .wpo-main-header{right:0;top:46px}}@media(max-width:600px){body.rtl.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(min-width:782px){body.rtl.folded .wpo-main-header{right:36px;left:0}}body.rtl .wpo-page{padding-right:0}@media(min-width:769px){}.wpo-page:not(.active){display:none}.wpo-introduction-notice{padding:15px 20px;margin-top:30px;margin-bottom:30px;background:#FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%}.wpo-introduction-notice h3{font-size:2em}.wpo-introduction-notice p:not(.font-size__normal){font-size:1.2em}.wpo-introduction-notice .wpo-introduction-notice__footer-links{padding-top:20px}.wpo-introduction-notice .wpo-introduction-notice__footer-links>a,.wpo-introduction-notice .wpo-introduction-notice__footer-links>span{display:inline-block;margin-left:5px;margin-right:5px}@media(min-width:1200px){.wpo-tab-postbox.right-col{width:350px;float:right;box-sizing:border-box;margin-top:3.1rem}.right-col+.wpo-main{float:left;box-sizing:border-box;width:calc(100% - 380px)}}@media(max-width:782px){#wp-optimize-wrap .button-large{display:block;width:100%}}#wp-optimize-wrap .red{color:#e07575}#wp-optimize-wrap div[id*="_notice"] div.updated,#wp-optimize-wrap>.notice{margin-left:0;margin-right:0}.button.button-block{display:block;width:100%;text-align:center}.wpo-refresh-button{float:right}.wpo-refresh-button:hover{cursor:pointer}.wpo-refresh-button .dashicons{text-decoration:none;line-height:inherit;font-size:inherit}*[class*="wpo-badge"]{display:inline-block;font-size:.8em;text-transform:uppercase;background:#f2f4f5;padding:3px 5px;line-height:1;border-radius:3px}.wpo-badge__new{background:#dbe3e6;color:#00689a}.wpo-first-child{margin-top:0}#save_done,.save-done{color:#009b24;font-size:250%}p.wpo-take-a-backup{display:inline-block;margin:0;line-height:1;padding-top:8px}@media(min-width:782px){p.wpo-take-a-backup{margin-left:20px}}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox{border:0}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox>h3:first-child{margin-top:0}.wpo-p25,.postbox.wpo-tab-postbox{padding:25px}.wpo-tab-postbox>h3:first-child{margin-top:0}.wpo-fieldgroup{background:#f2f4f5;border-radius:8px;padding:20px}.wpo-fieldgroup:not(:last-child){margin-bottom:2em}.wpo-fieldgroup>*:first-child{margin-top:0}.wpo-fieldgroup>*:last-child{margin-bottom:0}.wpo-fieldgroup.premium-only{position:relative}.wpo-fieldgroup .switch+label{font-weight:600}.wpo-fieldgroup code{font-size:inherit;background:#d8dbdc;border-radius:3px}.wpo-fieldgroup__subgroup:not(:last-of-type){margin-bottom:20px}#wp-optimize-wrap .switch{position:relative;display:inline-block;width:38px;height:18px;margin-right:6px;box-sizing:border-box}#wp-optimize-wrap .switch input{opacity:0;width:0;height:0}#wp-optimize-wrap .switch .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#f2f4f5;transition:.2s}#wp-optimize-wrap .switch .slider::before{position:absolute;content:"";height:8px;width:8px;left:2px;bottom:2px;background-color:#555d66;border:1px solid #555d66;transition:all .2s}#wp-optimize-wrap .switch .slider::after{content:'';display:block;position:absolute;height:4px;width:3px;right:4px;top:4px;border-radius:50%;border:1px solid #72777c;box-sizing:content-box}#wp-optimize-wrap .switch .slider.round{border-radius:23px;border:2px solid #555d66}#wp-optimize-wrap .switch .slider.round::before{border-radius:50%}#wp-optimize-wrap .switch input:checked+.slider{background:#0272aa;border-color:#0272aa}#wp-optimize-wrap .switch input:checked+.slider::before{background:#FFF;border-color:#FFF;transform:translateX(20px)}#wp-optimize-wrap .switch input:checked+.slider::after{content:'';display:block;position:absolute;height:6px;width:2px;left:7px;top:4px;background:#FFF;border:0}#wp-optimize-wrap .switch input:focus+.slider{box-shadow:0 0 0 2px #f2f4f5,0 0 0 3px #555d66}#wp-optimize-wrap .switch-container{display:block;clear:both}#wp-optimize-wrap .switch-container label{line-height:1;vertical-align:middle}#wp-optimize-wrap .switch-container+small{margin-left:49px}#wp-optimize-wrap .wpo-fieldgroup>.switch-container:first-child{padding-top:0}.wpo-info{position:relative;display:inline-block}@media(max-width:480px){.wpo-info{display:block}}.wpo-info__content{opacity:0;visibility:hidden;position:absolute;top:100%;left:-25px;background:#FFF;padding:20px;width:380px;max-width:380px;z-index:5;box-shadow:0 11px 25px 0 rgba(0,0,0,0),0 11px 25px 3000px rgba(0,0,0,0);transition:.2s all}@media(max-width:480px){.wpo-info__content{width:auto}}span.wpo-info__close{display:none;margin-left:20px;color:#444}.wpo-info.opened span.wpo-info__close{display:inline-block}.wpo-info.opened .wpo-info__content{opacity:1;visibility:visible;box-shadow:0 11px 25px 0 rgba(0,0,0,0.3),0 11px 25px 3000px rgba(0,0,0,0.3)}.wpo-info.opened a.wpo-info__trigger{z-index:6}.wpo-info__content img,.wpo-info__content iframe{max-width:100%}a.wpo-info__trigger{display:inline-block;text-decoration:none;padding:10px;position:relative;background:#FFF;margin-left:-10px}a.wpo-info__trigger span.dashicons{text-decoration:none;vertical-align:middle}#wp-optimize-wrap h2.nav-tab-wrapper{margin-bottom:0;border-bottom:0;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active{border:0;background:transparent;margin:0;border-top:3px solid transparent;padding:7px 15px;color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active .dashicons{display:block;margin:0 auto;color:#72777c;font-size:30px;width:30px;height:30px}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.premium-only{display:inline-block;margin-left:6px;padding:4px;font-size:10px;background:#0272aa;line-height:1;border-radius:3px;color:#FFF;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active{background:#FFF;box-shadow:0 0 1px rgba(0,0,0,0.04);border-top-color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active .dashicons{color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:block;float:right;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active{position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active .dashicons{display:inline-block;font-size:20px;height:18px;transform:translateY(4px)}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>div{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover a.nav-tab::after{content:'';display:block;position:absolute;bottom:0;right:0;height:2px;width:100%;background-color:#0172aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div{position:absolute;display:block;background:#FFF;padding:15px;right:0;top:100%;z-index:4;box-shadow:0 11px 25px 0 rgba(0,0,0,0.1);width:350px}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div a{display:block;font-size:14px;font-weight:normal;padding:6px 3px;text-align:center}@media(max-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:none}#wp-optimize-wrap h2.nav-tab-wrapper a:not(.nav-tab-active){display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:block;float:right}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{text-align:right}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{position:absolute;bottom:14px;right:0;font-size:12px;font-weight:400;text-decoration:none;padding:0}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}}@media(max-width:782px){.wpo-mobile-menu-opened .wpo-main .wpo-tab-postbox{// display:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a{display:block;float:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab{display:block !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a:not(.nav-tab-active){background:#f9f9f9 !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus{border-top:0;border-left:3px solid}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:hover .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a .dashicons{display:inline-block;line-height:inherit}.wpo-mobile-menu-opened h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}.wpo-pages-menu{position:absolute;bottom:0;right:0;display:none}@media(max-width:820px){.opened+.wpo-pages-menu{display:block;box-shadow:0 5px 25px rgba(0,0,0,0.17)}}@media(min-width:821px){.wpo-pages-menu{display:-ms-flexbox;display:flex;height:77px}}.wpo-pages-menu>a{text-decoration:none;position:relative;color:inherit;text-align:center;box-sizing:border-box;display:block;color:#555d66}@media(min-width:821px){.wpo-pages-menu>a{padding:0 8px;height:77px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.wpo-pages-menu>a>span{display:block;margin:0 auto}}@media(max-width:820px){.wpo-pages-menu>a{padding:15px;font-size:1.2em}}.wpo-pages-menu>a.active::after{content:'';display:block;position:absolute;bottom:0;left:0;width:100%;height:3px;background:#e46b1f;color:#191e23}@media(max-width:820px){.wpo-pages-menu>a.active::after{width:3px;height:100%}}@media(max-width:820px){.wpo-pages-menu>a.active{color:#e46b1f}}.wpo-pages-menu>a:hover{background:#f9f9f9;color:#191e23}.wpo-pages-menu span.separator{display:block;width:2px;background:#efefef;margin-top:18px;margin-bottom:18px;margin-right:5px;margin-left:5px}@media(max-width:820px){.wpo-pages-menu span.separator{width:80%;height:2px;margin:10px 10%}}@media(max-width:820px){.wpo-pages-menu{text-align:center;top:100%;width:100%;bottom:auto;background:#FFF}}body.rtl .wpo-pages-menu{left:0;right:auto}#wp-optimize-nav-page-menu{position:absolute;right:0;bottom:0;display:-ms-flexbox;display:flex;height:77px;-ms-flex-direction:column;flex-direction:column;padding:0 20px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;text-decoration:none}#wp-optimize-nav-page-menu:not(.opened) .dashicons-no-alt{display:none}#wp-optimize-nav-page-menu.opened .dashicons-menu{display:none}@media(min-width:821px){#wp-optimize-nav-page-menu{display:none}}body.rtl #wp-optimize-nav-page-menu{right:auto;left:0}.wpo-dashboard-pages-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.wpo-dashboard-pages-menu[data-itemscount="1"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="2"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="3"] .wpo-dashboard-pages-menu__item{width:calc(33.333% - 13.33333px)}.wpo-dashboard-pages-menu[data-itemscount="4"] .wpo-dashboard-pages-menu__item{width:calc(25% - 15px)}.wpo-dashboard-pages-menu[data-itemscount="5"] .wpo-dashboard-pages-menu__item{width:calc(20% - 16px)}.wpo-dashboard-pages-menu[data-itemscount="6"] .wpo-dashboard-pages-menu__item{width:calc(16.66667% - 16.66667px)}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{padding:20px;margin-right:20px;box-sizing:border-box;padding-bottom:60px;min-width:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item:last-child{margin-right:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin-top:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3 .dashicons{color:#72777c;line-height:1;height:18px;margin-top:-2px;margin-right:10px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a{position:absolute;bottom:20px;left:20px;width:calc(100% - 40px) !important}@media(max-width:782px){.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{width:100%;margin-right:0;padding-bottom:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a.button.button-large{width:auto !important;left:auto;bottom:auto;top:50%;transform:translateY(-50%);right:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item p{display:none}}#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item{height:2px;line-height:2px;background:rgba(255,255,255,0.0902);margin:5px 10px;width:auto;min-width:0}.wpo_unused_image,.wpo_smush_image{position:relative;margin:4px;width:calc(50% - 8px);text-align:center}@media(min-width:500px){.wpo_unused_image,.wpo_smush_image{width:calc(25% - 8px)}}@media(min-width:782px){.wpo_unused_image,.wpo_smush_image{width:calc(16.6666% - 8px)}}@media(min-width:1100px){.wpo_unused_image,.wpo_smush_image{width:calc(12.5% - 8px)}}.wpo_unused_image .wpo_unused_image__input,.wpo_smush_image .wpo_unused_image__input{position:absolute;top:10px;opacity:0;width:0;height:0}.wpo_unused_image label,.wpo_smush_image label{display:block;width:100%;position:relative;padding:1px;border:3px solid #f2f4f5;box-sizing:border-box}.wpo_unused_image label::before,.wpo_smush_image label::before{content:"";display:block;padding-top:100%}.wpo_unused_image label .thumbnail,.wpo_smush_image label .thumbnail{position:absolute;top:1px;left:1px;width:calc(100% - 2px);height:calc(100% - 2px);background-repeat:no-repeat;background-size:cover;background-position:50% 50%;overflow:hidden;background:rgba(220,220,220,0.2)}.wpo_unused_image label .thumbnail img,.wpo_smush_image label .thumbnail img{display:block;margin:0;max-height:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wpo_unused_image label span.dashicons,.wpo_smush_image label span.dashicons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:25px;width:25px;opacity:.2}.wpo_unused_image .wpo_unused_image__input:checked+label,.wpo_unused_image.selected label,.wpo_smush_image .wpo_unused_image__input:checked+label,.wpo_smush_image.selected label{border-color:#0272aa}.wpo_unused_image:focus-within label,.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_unused_image a,.wpo_unused_image a.button,.wpo_unused_image a.button:active,.wpo_smush_image a,.wpo_smush_image a.button,.wpo_smush_image a.button:active{position:absolute;z-index:2;bottom:13px;left:50%;transform:translateX(-50%);display:none}.wpo_unused_image:hover a,.wpo_unused_image:hover a.button,.wpo_unused_image:hover a.button:active,.wpo_smush_image:hover a,.wpo_smush_image:hover a.button,.wpo_smush_image:hover a.button:active{display:inline-block}#wpo_unused_images,#wpo_smush_images_grid{width:calc(100% + 8px);margin-left:-4px;margin-right:-4px;max-height:500px;overflow-y:auto;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}#wpo_unused_images .wpo-fieldgroup,#wpo_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images a{outline:0}.wpo-unused-images__premium-mask,.wpo-unused-image-sizes__premium-mask{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0.85));display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.wpo-unused-image-sizes__premium-mask{background:linear-gradient(to bottom,rgba(255,255,255,0.3),rgba(255,255,255,0.85))}a.wpo-unused-images__premium-link{background:#FFF;display:inline-block;padding:10px;border-radius:3px;box-shadow:0 2px 8px rgba(0,0,0,0.3)}p.wpo-plugin-installed{color:#009b24}.wpo-repeater__add{display:inline-block;cursor:pointer;font-weight:bold;text-decoration:none}.wpo-plugin-family__premium h2{margin:0;padding:25px}.wpo-plugin-family__plugins{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:1px;padding-bottom:1px}.wpo-plugin-family__plugin{-ms-flex:auto;flex:auto;width:100%;padding:30px;box-sizing:border-box;border:1px solid #e3e4e7;margin-left:-1px;margin-bottom:-1px}@media(min-width:782px){.wpo-plugin-family__plugin{width:50%}.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}@media(max-width:1080px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:50%}}@media(max-width:782px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}div#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox{padding:0}.wpo_feature_cont{width:64.5%}.wpo_plugin_family_cont{width:34.5%}@media(max-width:1080px){.wpo_feature_cont,.wpo_plugin_family_cont{width:100%;float:none;margin:0}}.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:20px}@media(max-width:1080px){.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:40px}}.wpo_feature_cont header h2,.wpo_plugin_family_cont header h2{margin:0}.wpo_feature_cont header p,.wpo_plugin_family_cont header p{margin-bottom:0}.wpo_feat_table,.wpo_feat_th,.wpo_feat_table td{border:0;border-collapse:collapse;background-color:white;font-size:120%;text-align:center}.wpo_feat_table td{border:1px solid #f1f1f1;border-bottom-width:4px;padding:15px}.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){background:rgba(241,241,241,0.38)}.wpo_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.wpo_feat_table h4{margin:5px 0}.wpo_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.wpo_feat_table .dashicons-yes,.wpo_feat_table .updraft-yes{color:green}.wpo_feat_table .dashicons-no-alt,.wpo_feat_table .updraft-no{color:red}.wpo_feat_table tr.wpo-main-feature-row td{background:#f1f1f1;border-bottom-color:#fafafa}.wpo_feat_table tr.wpo-main-feature-row td img.wpo-premium-image{width:64px}.wpo-premium-image{display:none}@media screen and (min-width:720px){#wpoptimize_table_list_filter{width:40%}.wpo-premium-image{display:block;float:left;padding:16px 18px;width:30px;height:auto}}@media screen and (min-width:1220px){.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){width:110px}}.other-plugin-title{text-decoration:none}@media screen and (max-width:782px){table.wpo_feat_table{display:block}table.wpo_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.wpo_feat_table td{display:block}table.wpo_feat_table td:first-child{width:100%;border-bottom:0}table.wpo_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.wpo_feat_table td:first-child:empty{display:none}table.wpo_feat_table td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}.wpo-cache-feature-image{width:40px;padding:16px 14px}#wp-optimize-wrap .wp-list-table td{word-break:break-all}@media screen and (max-width:782px){#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody tr,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody th,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 8px 3px 35%;word-break:break-word;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td::before{color:#b5b9be}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead tr{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th.column-primary{display:block;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th:not(.column-primary){display:none !important}}body.rtl #wp-optimize-wrap .wpo-table-list-filter{text-align:left}@media screen and (max-width:782px){body.rtl #wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 35% 3px 8px}}.tablesorter-headerRow th{vertical-align:top}th:not(.sorter-false) .tablesorter-header-inner{color:#0074ab}th:not(.sorter-false) .tablesorter-header-inner::after{content:'';font-family:'dashicons';font-size:20px;line-height:20px;height:20px;width:20px;display:none;vertical-align:bottom}th.tablesorter-header.tablesorter-headerAsc,th.tablesorter-header.tablesorter-headerDesc{font-weight:500;border-bottom-color:#0272aa}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after,th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{display:inline-block}th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{content:"\f140"}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after{content:"\f142"}th.tablesorter-header:focus{outline:0;box-shadow:0 0 3px rgba(0,116,171,0.78)}th.tablesorter-header:focus:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after{content:"\f142";opacity:.5}.tablesorter.hasFilters tr.filtered{display:none}.wpo-text__dim .dashicons-info{margin-top:2px;margin-right:5px;border-radius:30px;background:#fff;color:#e07575}#wp-optimize-nav-tab-wpo_cache-advanced-contents textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}#page_cache_length_value{height:28px;position:relative;top:2px}#wp_optimize_preload_cache_status{margin-left:10px;display:inline-block;color:#82868b;font-size:smaller}.align-left{margin:10px 10px 0 0;float:left}textarea.cache-settings{display:block;clear:both;min-height:225px;overflow:scroll;min-width:75%;margin:10px 0}#wp-optimize-purge-cache,#wp-optimize-purge-cache ~ span,#wp-optimize-purge-cache ~ img{vertical-align:middle;top:auto}#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error{font-size:12px}#wpo_browser_cache_error_message{padding-top:10px;padding-bottom:10px;margin-left:0;margin-bottom:10px}#wpo_browser_cache_error_message:empty{display:none}#wp-optimize-nav-tab-wpo_cache-advanced-contents label,#wp-optimize-nav-tab-wpo_cache-preload-contents label,#wp-optimize-nav-tab-wpo_cache-cache-contents label{font-weight:600}
|
2 |
-
/*# sourceMappingURL=wp-optimize-admin-3-0-11.min.css.map */
|
|
|
|
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sources":["css/wp-optimize-admin.scss","css/admin.css","css/scss/_layout.scss","css/scss/_common.scss","css/scss/_menu-and-tabs.scss","css/scss/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.scss"],"names":[],"mappings":"AAAA,YAAY;;AAcZ,gBAAgB;;ACdhB;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;;AACvB;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AC9iBD;;CAEC,oBAAoB;CAIpB;;AAHA;;CAHD;;EAIE,iBAAiB;EAElB;CADC;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CAIjB;;AAHA;;CAHD;EAIE,mBAAmB;EAEpB;CADC;;AAGF;;CAEC,kBAAkB;CASlB;;AAPA;;CAJD;;EAKE,eAAe;EAMhB;CALC;;AAED;;CARD;;EASE,mBAAmB;EAEpB;CADC;;AAGF;CACC,mBAAmB;CACnB,kBAAkB;CASlB;;AAPA;;CAJD;EAKE,mBAAmB;EAMpB;CALC;;AAED;;CARD;EASE,gBAAgB;EAEjB;CADC;;AAGF,eAAe;;AAEf;;CAEC,aAAa;CACb,gBAAgB;CAChB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,SAAS;CACT,cAAc;;CAsLd;;AApLA;;CAVD;EAWE,cAAc;EAmLf;CAlLC;;AAED;EACC,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EACxB,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB;CAClB;;AAED;EACC,mBAAmB;EACnB,QAAQ;EACR,SAAS;EACT,4BAA4B;EAC5B,YAAY;CACZ;;AAED;EACC,UAAU;EACV,iBAAiB;EACjB,eAA0B;EAC1B,iBAAiB;CAKjB;;AAHA;;CAND;EAOE,cAAc;EAEf;CADC;;AAGF;EACC,UAAU;EACV,kBAAkB;EAClB,mBAAmB;EACnB,SAAS;EACT,kBAAkB;EAClB,oBAAoB;EACpB,+BAA+B;EAC/B,WAAW;CAkBX;;AAhBA;GACC,sBAAsB;GACtB;;AAED;GACC,eAAgC;GAChC,mBAAmB;GACnB,YAAY;GACZ,aAAa;GACb,kBAAkB;GAClB,oBAAoB;GACpB;;AAED;;CAvBD;EAwBE,cAAc;EAEf;CADC;;AAGF;EACC,cAAc;EACd,oBAAoB;EACpB,iBAAiB;CAcjB;;AAbA;;CAJD;EAKE,cAAc;EAYf;CAXC;;AAED;GACC,sBAAsB;GACtB,aAAa;GACb,iBAAiB;CACjB;;AACD;GACC,eAAgC;CAChC;;AAIF;;CAEC;GACC,aAAa;GACb,sBAAsB;EACtB;CAED;;AAGA;;CADD;EAEE,WAAW;EAYZ;CAXC;;AACD;;CAJD;EAKE,QAAQ;EACR,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,OAAO;EAER;CADC;;AAID;;CADD;EAEE,WAAW;EAEZ;CADC;;AAEF;EACC,2CAA2C;CAC3C;;AAED,SAAS;;AACT;EACC,aAAa;EACb,QAAQ;CA8BR;;AA5BA;GACC,mBAAmB;GACnB,oBAAoB;GACpB,eAAe;GACf,mBAAmB;GACnB;;AAED;GACC,mBAAmB;GACnB,WAAW;GACX,SAAS;GACT;;AAED;GACC,YAAY;GACZ,QAAQ;GACR,gCAAgC;GAChC,6BAA6B;GAU7B;;AARA;IACC,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,aAAa;IACb,iBAAiB;IACjB,mBAAmB;IACnB;;AAKF;;CADD;EAEE,YAAY;EAYb;CAXC;;AACD;;CAJD;EAKE,SAAS;EACT,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,YAAY;EACZ,QAAQ;EAET;CADC;;AAMF;EACC,iBAAiB;EACjB;;AACD;;CAJD,YAUC;CALC;;AAED;CACC,cAAc;CACd;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CACjB,oBAAoB;CACpB,iFAAiF;CAkBjF;;AAhBA;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAMlB;;AALA;GACC,sBAAsB;GACtB,iBAAiB;GACjB,kBAAkB;GAClB;;AAIH,aAAa;;AACb;;CAEC;EACC,aAAa;EACb,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,0BAA0B;EAC1B;;CAED;;AChSD,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAGF;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;IACnB,qBAAqB;IACrB,mBAAmB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,0BAA0B;CAC1B,oBAA6B;CAC7B,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,eAAe;CACf,iBAAiB;CAIjB;;AAHA;;CALD;EAME,kBAAkB;EAEnB;CADC;;AAGF,aAAa;;AAEb;IACI,aAAa;;CAMhB;;AAJA;EACC,cAAc;EACd;;AAIF;;CAEC,cAAc;CACd;;AAIA;EACC,cAAc;EACd;;AAGF,iBAAiB;;AAEjB;IACI,oBAA6B;IAC7B,mBAAmB;CACtB,aAAc;CA2Bd;;AAzBA;CACC,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAED;EACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;EACC,iBAAiB;CACjB;;AAED;EACC,mBAAmB;EACnB,oBAAoB;EACpB,mBAAmB;CACnB;;AAID;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAmFvB;;AAjFA,gCAAgC;;AAChC;GACC,WAAW;GACX,SAAS;GACT,UAAU;GACV;;AAED,gBAAgB;;AAChB;GACC,mBAAmB;GACnB,gBAAgB;GAChB,OAAO;GACP,QAAQ;GACR,SAAS;GACT,UAAU;GACV,0BAAmC;GACnC,eAAgB;;GAoChB;;AAlCA;CACC,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,WAAW;CACX,UAAU;CACV,YAAY;CACZ,0BAAgC;CAChC,0BAAgC;CAChC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,WAAW;CACX,SAAS;CACT,mBAAmB;CACnB,0BAAqC;CACrC,wBAAuB;CACvB;;AAjCF,mCAmCC,qBAAqB;CASrB;;AARA;CACC,oBAAoB;CACpB,0BAAgC;CAIhC;;AAHA;CACA,mBAAmB;CAClB;;AAKH;GACC,oBAAqB;GACrB,qBAAuB;;GAmBvB;;AAlBA;CACC,iBAAiB;CACjB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,aAAa;CACb;;AAIF;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAQZ;;AAPA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AAGF;EACC,eAAe;EACf;;AAIF,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,sBAAsB;CAItB;;AAHA;;CAHD;EAIE,eAAe;EAEhB;CADC;;AAGF;CACC,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,sFAAsF;CACtF,qBAAqB;CAKrB;;AAHA;;CAdD;EAeE,YAAY;EAEb;CADC;;AAGF;CACC,cAAc;CACd,kBAAkB;CAClB,YAAY;CACZ;;AAIA;EACC,sBAAsB;EACtB;;AAED;EACC,WAAW;EACX,oBAAoB;EACpB,0FAA0F;EAC1F;;AAED;EACC,WAAW;EACX;;AAIF;;CAEC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,uBAAuB;CACvB;;ACtUD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CA8JnB;;AA5JA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAwBhB;;AAtBA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,oBAAqB;GACrB,eAAe;GACf,mBAAmB;GACnB,YAAY;GACZ,iBAAiB;GACjB,0BAA0B;GAC1B,sBAAsB;GACtB;;AAGF;;;;EAIC,iBAAiB;EACjB,wCAAwC;EACxC,0BAA2B;EAK3B;;AAHA;GACC,eAAgB;GAChB;;AAGF;EACC,eAAe;EACf,aAAa;EACb,mBAAmB;EAiDnB;;AA/CA;;;;GAIC,mBAAmB;GAOnB;;AANA;IACC,sBAAsB;IACtB,gBAAgB;IAChB,aAAa;IACb,2BAA2B;IAC3B;;AAGF;GACC,cAAc;GACd;;AAEA;IACC,YAAY;IACZ,eAAe;IACf,mBAAmB;IACnB,UAAU;IACV,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,0BAA0B;CAC1B;;AACD;IACC,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,cAAc;IACd,SAAS;IACT,UAAU;IACV,WAAW;IACX,iDAAiD;IACjD,aAAa;CASb;;AAPA;KACC,eAAe;KACf,gBAAgB;KAChB,oBAAoB;KACpB,iBAAiB;KACjB,mBAAmB;KACnB;;AAKJ;;CACC;GACC,cAAc;EACd;;CACD;GACC,cAAc;EACd;CACD;;AAED;EACC,eAAe;EACf,aAAa;CAIb;;AAHA;;CAHD;EAIE,cAAc;EAEf;CADC;;AAKD;CAEC,kBAAkB;CA8BlB;;AA5BA;IACC,eAAsB;IACtB,gBAAgB;IAChB,sBAAsB;IACtB,aAAa;IACb,qBAAqB;IACrB,YAAY;CACZ;;AAED;;CAbD;EAcE,mBAAmB;EACnB,aAAa;EACb,SAAS;EACT,gBAAgB;EAChB,iBAAiB;EACjB,sBAAsB;EACtB,WAAW;EAYZ;;CAVC;KACC,eAAsB;KACtB,gBAAgB;KAChB,sBAAsB;KACtB,aAAa;KACb,qBAAqB;KACrB,YAAY;EACZ;CACD;;AAOJ;;EAIE;EACA,iBAAiB;GAChB;;EAED;GACC,eAAe;GACf,WAAY;GA8BZ;;EA5BA;EACC,0BAA0B;EAC1B;;EAED;EACC,+BAA+B;EAC/B;;EAED;;EAEC,iBAAiB;EACjB,uBAAuB;EACvB;;EAOA;KACC,sBAAsB;KACtB,qBAAqB;EACrB;;EAGF;EACC,cAAc;EACd;;CAKH;;AAGD,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,cAAc;CAkGd;;AAhGA;;CACC;GACC,eAAe;GACf,2CAA2C;EAC3C;CACD;;AAED;;CAbD;EAcE,qBAAc;EAAd,cAAc;EACd,aAAa;EAuFd;CAtFC;;AAED;EACC,sBAAsB;EACtB,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;EACvB,eAAe;EACf,eAAqB;CA+CrB;;AA7CA;;CATD;EAUE,eAAe;EACf,aAAa;EACb,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EAwCzB;;CAtCC;IACC,eAAe;IACf,eAAe;EACf;CACD;;AAED;;CAtBD;EAuBE,cAAc;EACd,iBAAiB;EA8BlB;CA7BC;;AAGA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,oBAAmB;CACnB,eAAuB;CAOvB;;AALA;;CAXD;EAYE,WAAW;EACX,aAAa;EAGd;CAFC;;AAGF;;CAlBD;EAmBE,eAAc;EAEf;CADC;;AAGF;CACC,oBAAoB;CACpB,eAAuB;CACvB;;AAGF;EACC,eAAe;EACf,WAAW;EACX,oBAAoB;EACpB,iBAAiB;EACjB,oBAAoB;EACpB,kBAAkB;EAClB,iBAAiB;CAMjB;;AALA;;CARD;EASE,WAAW;EACX,YAAY;EACZ,iBAAiB;EAElB;CADC;;AAGF;;CAzFD;EA0FE,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,aAAa;EACb,iBAAiB;EAQlB;CANC;;AAED;EACC,QAAQ;EACR,YAAY;CACZ;;AAGF;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,qBAAc;CAAd,cAAc;CACd,aAAa;IACV,2BAAuB;QAAvB,uBAAuB;IACvB,gBAAgB;IAChB,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;CAC3B,qBAAsB;CAkBtB;;AAhBA;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;;CApBD;EAqBE,cAAc;EAOf;CANC;;AAED;EACC,YAAY;EACZ,QAAQ;CACR;;AAGF,oBAAoB;;AAEpB,mDAAmD;;AACnD;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,eAAgB;;CAEhB,gCAAgC;;CA2EhC;;AAvEC;GACC,kCAAgC;CAChC;;AAVH,2BAaC,iCAAiC;CAkEjC;;AA/DE;IACC,wBAA8D;CAC9D;;AAFD;IACC,wBAA8D;CAC9D;;AAFD;IACC,oCAA8D;CAC9D;;AAIH;EACC,cAAkB;EAClB,mBAAuB;EACvB,uBAAuB;EACvB,qBAAqB;EACrB,aAAa;CAkDb;;AAhDA;CACC,gBAAgB;CAChB;;AAED;GACC,cAAc;CAUd;;AARA;IACC,eAA0B;IAC1B,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,aAAiB;GACjB,WAAe;GACf,oCAA4C;CAC5C;;AAED;;CA/BD;EAgCE,YAAY;EACZ,gBAAgB;EAChB,qBAAqB;EAqBtB;;CAnBC;IACC,uBAAuB;IACvB,WAAW;IACX,aAAa;IACb,SAAS;IACT,4BAA4B;IAC5B,YAAgB;EAChB;;CAED;IACC,UAAU;EACV;;CAED;IACC,cAAc;EACd;CAED;;AAMH,yBAAyB;;AAEzB;IACI,YAAY;IACZ,iBAAiB;IACjB,wCAAsB;IACtB,iBAAiB;IACjB,YAAY;IACZ,aAAa;CAChB;;ACzbD,iDAAiD;;AAEjD;CACC,mBAAmB;CACnB,YAAY;CACZ,uBAAuB;CACvB,mBAAmB;;CAkGnB;;AAhGA;;CAND;EAOE,uBAAuB;EA+FxB;CA9FC;;AAED;;CAVD;EAWE,4BAA4B;EA2F7B;CA1FC;;AAED;;CAdD;EAeE,yBAAyB;EAuF1B;CAtFC;;AAED;EACC,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,SAAS;EACT,UAAU;CACV;;AAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,aAAa;EACb,0BAAmC;EACnC,uBAAuB;CA0CvB;;AAxCA;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB;;AAED;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,wBAAwB;GACxB,yBAAyB;GACzB,6BAA6B;GAC7B,uBAAuB;GACvB,6BAA6B;GAC7B,iBAAiB;GACjB,qCAAqC;CAarC;;AAXA;IACC,eAAe;IACf,UAAU;IACV,iBAAiB;IACjB,mBAAmB;IACnB,SAAS;IACT,UAAU;IACV,gCAAgC;IAChC,0BAAkB;OAAlB,uBAAkB;QAAlB,sBAAkB;YAAlB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,iCAAiC;GACjC,gBAAgB;GAChB,YAAY;GACZ,YAAY;CACZ;;AAGF;;;;EAEC,sBAAuB;CACvB;;AAED;CACC,4BAA6B;CAC7B;;AAED;EACC,mBAAmB;EACnB,WAAW;EACX,aAAa;EACb,UAAU;EACV,4BAA4B;EAC5B,cAAc;CACd;;AAIA;GACC,sBAAsB;CACtB;;AAMH;CACC,wBAAwB;IACrB,kBAAkB;IAClB,mBAAmB;CACtB,kBAAkB;CAClB,iBAAiB;IACd,qBAAc;IAAd,cAAc;CACjB,oBAAgB;KAAhB,gBAAgB;CAChB,mBAAmB;;CAOnB;;AALA;EACC,YAAY;EACZ,YAAY;EACZ;;AAIF;CACC,cAAc;CACd;;AAED;;CAEC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb,WAAW;CACX,0FAA0F;CAC1F,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,sBAAwB;KAAxB,wBAAwB;CACxB;;AAED;CACC,4FAA4F;CAC5F;;AAED;CACC,iBAAiB;CACjB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,yCAAyC;CACzC;;ACvJD,uBAAuB;;AAEvB,8BAA8B;;AAE9B;IACI,eAAgB;CACnB;;AAED,uBAAuB;;AAEvB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,sBAAsB;CACtB;;AAGD,wBAAwB;;AAExB;IACI,UAAU;IACV,cAAc;CACjB;;AAED;IACI,qBAAc;IAAd,cAAc;IACd,oBAAgB;QAAhB,gBAAgB;CACnB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;IACI,eAAW;QAAX,WAAW;IACX,YAAY;IACZ,cAAc;IACd,uBAAuB;IACvB,0BAA0B;CAC7B,kBAAkB;CAClB,oBAAoB;;CAsBpB;;AApBA;;CATD;EAUE,WAAW;EAmBZ;;CAjBC;GACC,YAAY;EACZ;CACD;;AAED;;CACC;GACC,WAAW;EACX;CACD;;AAED;;CACC;GACC,YAAY;EACZ;CACD;;AAIF;IACI,WAAW;CACd;;AAED,wCAAwC;;AACxC;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;;EAEC,YAAY;EACZ,YAAY;EACZ,UAAU;EACV;;CAED;;AAKA;EACC,cAAc;;EAcd;;AAZA;;CAHD;EAIE,cAAc;EAWf;CAVC;;AAED;GACC,UAAU;CACV;;AAED;GACC,iBAAiB;CACjB;;AAMH;CACC,aAAa;CACb,0BAA0B;CAC1B,wBAAwB;CACxB,gBAAgB;CAChB,mBAAmB;CACnB;;AAGA;EACC,0BAA0B;EAC1B,yBAAyB;EACzB,cAAc;EACd;;AAED;EACC,sCAAsC;EACtC;;AAED;EACC,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB;;AAED;EACC,gBAAgB;EAChB;;AAED;EACC,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,eAAe;EACf;;AAED;EACC,aAAa;EACb;;AAED;EACC,WAAW;EACX;;AAED;EACC,oBAAoB;EACpB,6BAA6B;EAK7B;;AAHA;GACC,YAAY;GACZ;;AAMH;CACC,cAAc;CACd;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC;;EAEC,eAAe;EA+Bf;;EA7BA;GACC,qBAAc;GAAd,cAAc;GACd,oBAAgB;OAAhB,gBAAgB;GAChB;;EAED;GACC,cAAe;GAsBf;;EApBA;EACC,YAAY;EACZ,oBAAoB;EACpB;;EAED;EACC,WAAW;EACX,uBAAuB;EACvB;;EAED;EACC,cAAc;EACd;;EAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAIH;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AC9OD,iBAAiB;;AAMf;GACC,sBAAsB;GACtB;;AAIF;;GAIE;IACC,eAAe;IACf;;GAED;IACC,yBAAyB;IACzB,uBAAuB;IACvB,sBAAuB;;IAMvB;;GAJA;EACC,eAAsB;EACtB;;GAQF;IACC,eAAe;IACf;;GAED;IACC,eAAe;IACf,uBAAuB;IACvB;;GAED;IACC,yBAAyB;IACzB;CAIF;;AAGA;GACC,iBAAiB;GACjB;;AACD;IAEE;KACC,yBAAyB;KACzB;CAEF;;AAIH;CACC,oBAAoB;CACpB;;AAED;;CAEC,cAAe;;CAaf;;AAXA;CACC,YAAY;CACZ,yBAAyB;CACzB,gBAAgB;CAChB,kBAAkB;CAClB,aAAa;CACb,YAAY;CACZ,cAAc;CACd,uBAAuB;CACvB;;AAIF;;IAEI,iBAAiB;IACjB,6BAA8B;CAIjC;;AAHA;EACC,sBAAsB;EACtB;;AAGF;IACI,iBAAiB;CACpB;;AAED;IACI,iBAAiB;CACpB;;AAED;IACI,cAAc;CACjB,2CAA4C;;CAO5C;;AALA;CACC,iBAAiB;CACjB,aAAa;CACb;;AAIF;IACI,cAAc;CACjB;;ACrHC;IACE,gBAAgB;IAChB,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,eAAY;GACb;;AAID;IACE,YAAY;IACZ,mBAAmB;IACnB,cAAc;IACd,kBAAkB;IAClB,iBAAiB;IACjB,oBAAoB;GACrB;;AAGH;EACE,aAAa;EACb,mBAAmB;EACnB,SAAS;CACV;;AAED;EACE,kBAAkB;EAClB,sBAAsB;EACtB,eAAe;EACf,mBAAmB;CACpB;;AAED;IACI,0BAA0B;IAC1B,YAAY;CACf;;AAED;IACI,eAAe;IACf,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,eAAe;IACf,iBAAiB;CACpB;;AAED;;;EAGE,uBAAuB;EACvB,UAAU;CACX;;AAED;EACE,gBAAgB;CACjB;;AAGD;EACE,kBAAkB;EAClB,qBAAqB;EACrB,eAAe;EACf,mBAAoB;CAKrB;;AAHC;CACE,cAAc;CACf;;AAMD;IACE,iBAAiB;GAClB","file":"wp-optimize-admin-3-0-11.min.css","sourcesContent":["/* COLORS */\n$wp-blue: #0272AA;\n$wp-gray-dark: #555d66;\n$wp-gray-darker: #191e23;\n$wp-secondary-gray: #72777C;\n$wp-secondary-gray-light: #82868B;\n$wp-light-gray: #B5B9BE;\n$wp-lighter-gray: #F2F4F5;\n$success: #009B24;\n$error: #9B3600;\n$red: #E07575;\n$brand: #E46B1F;\n$spacing: 20px; \n\n/* OTHER VARS */\n$breakpoint-small: 782px;\n\n@import \"admin.css\";\n\n@import \"scss/layout\";\n\n@import \"scss/common\";\n\n@import \"scss/menu-and-tabs\";\n\n@import \"scss/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";",".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}","body[class*=\"toplevel_page_WP-Optimize\"] #wpbody,\nbody[class*=\"wp-optimize_page_\"] #wpbody {\n\tpadding-right: 15px;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-right: 0;\n\t}\n}\n\nbody.toplevel_page_WP-Optimize.rtl #wpbody {\n\tpadding-left: 15px;\n\tpadding-right: 0;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 10px;\n\t}\n}\n\nbody[class*=\"toplevel_page_WP-Optimize\"] #wpbody-content,\nbody[class*=\"wp-optimize_page_\"] #wpbody-content {\n\tpadding-top: 80px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 0;\n\t}\t\n\n\t@media (min-width: 820px) {\n\t\tpadding-top: 100px;\n\t}\t\n}\n\n#wp-optimize-wrap {\n\tposition: relative;\n\tpadding-top: 20px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 110px;\n\t}\t\n\n\t@media(max-width: $breakpoint-small) {\n\t\tmargin-right: 0;\n\t}\n}\n\n/* DASHBOARD */\n\n.wpo-main-header {\n\n\theight: 77px;\n\tposition: fixed;\n\ttop: 32px;\n\tleft: 160px;\n\tbackground: #FFF;\n\tright: 0;\n\tz-index: 9980;\n\n\t@media (min-width: 820px) {\n\t\theight: 105px;\n\t}\t\n\n\t.wpo-logo__container {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tposition: relative;\n\t\theight: 100%;\n\t\tline-height: 1;\n\t\tfont-size: 1rem;\n\t\tpadding-left: 50px;\n\t\tmargin-left: 10px;\n\t}\n\n\t.wpo-logo {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\twidth: 50px;\n\t}\n\n\t.wpo-subheader {\n\t\tmargin: 0;\n\t\tfont-weight: 300;\n\t\tcolor: $wp-secondary-gray;\n\t\tline-height: 1.3;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links {\n\t\tmargin: 0;\n\t\tfont-size: 0.7rem;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tpadding: 6px 15px;\n\t\tbackground: #EDEEEF;\n\t\tborder-bottom-left-radius: 5px;\n\t\tz-index: 1;\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t\tposition: absolute;\n\t\t\tright: 100%;\n\t\t\twidth: 110px;\n\t\t\ttext-align: right;\n\t\t\tpadding-right: 10px;\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links__mobile {\n\t\tpadding: 10px;\n\t\tbackground: #EDEEEF;\n\t\tmargin-bottom: 0;\n\t\t@media (min-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: .8rem;\n\t\t}\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t}\n\n\t}\n\n\t@media (max-width: 600px) {\n\t\t\n\t\t.wpo-logo__container strong {\n\t\t\twidth: 140px;\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\tbody.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tleft: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tleft: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.auto-fold #screen-meta + #wp-optimize-wrap & {\n\t\t@media (max-width: 600px) {\n\t\t\ttop: 0;\n\t\t}\n\t}\n\n\tbody.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tleft: 36px;\n\t\t}\n\t}\n\tbody.is-scrolled & {\n\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t}\n\n\t/* RTL */\n\tbody.rtl & {\n\t\tright: 160px;\n\t\tleft: 0;\n\n\t\t.wpo-logo__container {\n\t\t\tpadding-left: 10px;\n\t\t\tpadding-right: 50px;\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t\n\t\t.wpo-logo {\n\t\t\tposition: absolute;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\t\n\n\t\tp.wpo-header-links {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t\tborder-bottom-right-radius: 5px;\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\n\t\t\t.wpo-header-links__label {\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 100%;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 110px;\n\t\t\t\ttext-align: left;\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\tbody.rtl.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tright: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tright: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.rtl.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tright: 36px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n}\n\n.wpo-page {\n\tbody.rtl & {\n\t\tpadding-right: 0;\n\t}\n\t@media (min-width: 769px) {\n\t}\n\n\t&:not(.active) {\n\t\tdisplay: none;\n\t}\n}\n\n.wpo-introduction-notice {\n\tpadding: 15px 20px;\n\tmargin-top: 30px;\n\tmargin-bottom: 30px;\n\tbackground: #FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%;\n\n\th3 {\n\t\tfont-size: 2em;\n\t}\n\n\tp:not(.font-size__normal) {\n\t\tfont-size: 1.2em;\n\t}\n\n\t.wpo-introduction-notice__footer-links {\n\t\tpadding-top: 20px;\n\t\t> a, > span {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 5px;\n\t\t\tmargin-right: 5px;\n\t\t}\n\t}\n}\n\n/* Columns */\n@media (min-width: 1200px) {\n\n\t.wpo-tab-postbox.right-col {\n\t\twidth: 350px;\n\t\tfloat: right;\n\t\tbox-sizing: border-box;\n\t\tmargin-top: 3.1rem;\n\t}\n\n\t.right-col + .wpo-main {\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\twidth: calc(100% - 380px);\n\t}\n\n}\n","/* Common BLOCKS */\n\n\n/* Buttons */\n\n#wp-optimize-wrap {\n\n\t.button-large {\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.red {\n\t\tcolor: $red;\n\t}\n\n\tdiv[id*=\"_notice\"] div.updated,\n\t> .notice {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n}\n\n.button.button-block {\n\tdisplay: block;\n\twidth: 100%;\n\ttext-align: center;\n}\n\n.wpo-refresh-button {\n\tfloat: right;\n}\n\n.wpo-refresh-button:hover {\n\tcursor: pointer;\n}\n\n.wpo-refresh-button .dashicons {\n\ttext-decoration: none;\n line-height: inherit;\n font-size: inherit;\n}\n\n/* Helper classes */\n\n*[class*=\"wpo-badge\"] {\n\tdisplay: inline-block;\n\tfont-size: .8em;\n\ttext-transform: uppercase;\n\tbackground: $wp-lighter-gray;\n\tpadding: 3px 5px;\n\tline-height: 1;\n\tborder-radius: 3px;\n}\n\n.wpo-badge__new {\n\tbackground: #DBE3E6;\n\tcolor: #00689a;\n}\n\n.wpo-first-child {\n\tmargin-top: 0;\n}\n\n#save_done, .save-done {\n\tcolor: $success;\n\tfont-size: 250%;\n}\n\np.wpo-take-a-backup {\n\tdisplay: inline-block;\n\tmargin: 0;\n\tline-height: 1;\n\tpadding-top: 8px;\n\t@media (min-width: $breakpoint-small) {\n\t\tmargin-left: 20px;\n\t}\n}\n\n/* Postbox */\n\n#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {\n border: none;\n\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n\n}\n\n.wpo-p25,\n.postbox.wpo-tab-postbox {\n\tpadding: 25px;\n}\n\n.wpo-tab-postbox {\n\t\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n}\n\n/* Field group */\n\n.wpo-fieldgroup {\n background: $wp-lighter-gray;\n border-radius: 8px;\n\tpadding: 20px;\n\n\t&:not(:last-child) {\n\t\tmargin-bottom: 2em;\n\t}\n\n\t> *:first-child {\n\t\tmargin-top: 0;\n\t}\n\t\n\t> *:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.premium-only {\n\t\tposition: relative;\n\t}\n\n\t.switch + label {\n\t\tfont-weight: 600;\n\t}\n\n\tcode {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\n}\n\n.wpo-fieldgroup__subgroup {\n\t&:not(:last-of-type) {\n\t\tmargin-bottom: 20px;\n\t}\n}\n\n/* The switches */\n#wp-optimize-wrap {\n\n\t.switch {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t\twidth: 38px;\n\t\theight: 18px;\n\t\tmargin-right: 6px;\n\t\tbox-sizing: border-box;\n\n\t\t/* Hide default HTML checkbox */\n\t\tinput {\n\t\t\topacity: 0;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t}\n\n\t\t/* The slider */\n\t\t.slider {\n\t\t\tposition: absolute;\n\t\t\tcursor: pointer;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tbackground-color: $wp-lighter-gray;\n\t\t\ttransition: .2s;\n\n\t\t\t&::before {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 8px;\n\t\t\t\twidth: 8px;\n\t\t\t\tleft: 2px;\n\t\t\t\tbottom: 2px;\n\t\t\t\tbackground-color: $wp-gray-dark;\n\t\t\t\tborder: 1px solid $wp-gray-dark;\n\t\t\t\ttransition: all .2s;\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 4px;\n\t\t\t\twidth: 3px;\n\t\t\t\tright: 4px;\n\t\t\t\ttop: 4px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tborder: 1px solid $wp-secondary-gray;\n\t\t\t\tbox-sizing: content-box\n\t\t\t}\n\n\t\t\t/* Rounded sliders */\n\t\t\t&.round {\n\t\t\t\tborder-radius: 23px;\n\t\t\t\tborder: 2px solid $wp-gray-dark;\n\t\t\t\t&::before {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tinput:checked + .slider {\n\t\t\tbackground: $wp-blue;\n\t\t\tborder-color: $wp-blue;\n\t\t\t&::before {\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder-color: #FFF;\n\t\t\t\ttransform: translateX(20px);\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 6px;\n\t\t\t\twidth: 2px;\n\t\t\t\tleft: 7px;\n\t\t\t\ttop: 4px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\tinput:focus + .slider {\n\t\t\tbox-shadow: 0 0 0 2px $wp-lighter-gray, 0 0 0 3px $wp-gray-dark;\n\t\t}\n\n\t}\n\n\t.switch-container {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tlabel {\n\t\t\tline-height: 1;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t& + small {\n\t\t\tmargin-left: 49px;\n\t\t}\n\t}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\n}\n\n/* Help popup */\n\n.wpo-info {\n\tposition: relative;\n\tdisplay: inline-block;\n\t@media (max-width:480px) {\n\t\tdisplay: block;\n\t}\n}\n\n.wpo-info__content {\n\topacity: 0;\n\tvisibility: hidden;\n\tposition: absolute;\n\ttop: 100%;\n\tleft: -25px;\n\tbackground: #FFF;\n\tpadding: 20px;\n\twidth: 380px;\n\tmax-width: 380px;\n\tz-index: 5;\n\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0), 0px 11px 25px 3000px rgba(0, 0, 0, 0);\n\ttransition: 0.2s all;\n\n\t@media (max-width:480px) {\n\t\twidth: auto;\n\t}\n}\n\nspan.wpo-info__close {\n\tdisplay: none;\n\tmargin-left: 20px;\n\tcolor: #444;\n}\n\n.wpo-info.opened {\n\n\tspan.wpo-info__close {\n\t\tdisplay: inline-block;\n\t}\n\n\t.wpo-info__content {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.3), 0px 11px 25px 3000px rgba(0, 0, 0, 0.3);\n\t}\n\n\ta.wpo-info__trigger {\n\t\tz-index: 6;\n\t}\n\t\n}\n\n.wpo-info__content img,\n.wpo-info__content iframe {\n\tmax-width: 100%;\n}\n\na.wpo-info__trigger {\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tpadding: 10px;\n\tposition: relative;\n\tbackground: #FFF;\n\tmargin-left: -10px;\n}\n\na.wpo-info__trigger span.dashicons {\n\ttext-decoration: none;\n\tvertical-align: middle;\n}","/* TABS */\n\n#wp-optimize-wrap h2.nav-tab-wrapper {\n margin-bottom: 0;\n\tborder-bottom: none;\n\tposition: relative;\n\t\n\t.nav-tab,\n\t.nav-tab:hover,\n\t.nav-tab:focus,\n\t.nav-tab:focus:active {\n\t\tborder: none;\n\t\tbackground: transparent;\n\t\tmargin: 0;\n\t\tborder-top: 3px solid transparent;\n\t\tpadding: 7px 15px;\n\t\tcolor: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0 auto;\n\t\t\tcolor: $wp-secondary-gray;\n\t\t\tfont-size: 30px;\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t}\n\t\t\n\t\tspan.premium-only {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 6px;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: 10px;\n\t\t\tbackground: $wp-blue;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tcolor: #FFF;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t}\t\t\n\t}\n\t\n\t.nav-tab-active,\n\t.nav-tab-active:hover,\n\t.nav-tab-active:focus,\n\t.nav-tab-active:focus:active {\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 0 1px rgba(0, 0, 0, 0.04);\n\t\tborder-top-color: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tcolor: $wp-blue;\n\t\t}\n\t}\n\n\t.wpo-feedback {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\tposition: relative;\n\n\t\t> .nav-tab,\n\t\t> .nav-tab:hover,\n\t\t> .nav-tab:focus,\n\t\t> .nav-tab:focus:active {\n\t\t\tposition: relative;\n\t\t\t.dashicons {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 18px;\n\t\t\t\ttransform: translateY(4px);\n\t\t\t}\n\t\t}\n\n\t\t> div {\n\t\t\tdisplay: none;\n\t\t}\n\t\t&:hover {\n\t\t\ta.nav-tab::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tright: 0;\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground-color: #0172aa;\n\t\t\t}\n\t\t\t> div {\n\t\t\t\tposition: absolute;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tpadding: 15px;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 100%;\n\t\t\t\tz-index: 4;\n\t\t\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.1);\n\t\t\t\twidth: 350px;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tpadding: 6px 3px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-feedback {\n\t\t\tdisplay: none;\n\t\t}\n\t\ta:not(.nav-tab-active) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t\n\ta[role=\"toggle-menu\"] {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\n\ta.nav-tab.wp-optimize-nav-tab__back {\n\t\t&, &:focus:active {\t\n\n\t\t\ttext-align: right;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: auto;\n\t\t\t\tline-height: inherit;\n\t\t\t\twidth: 20px;\n\t\t\t}\n\n\t\t\t@media (min-width: $breakpoint-small) {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 14px;\n\t\t\t\tright: 0;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tpadding: 0;\n\t\t\t\n\t\t\t\t.dashicons {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t\twidth: 20px;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t}\n\t\n\t}\n}\n\n@media (max-width: $breakpoint-small) {\n\n\t.wpo-mobile-menu-opened {\n\n\t\t.wpo-main .wpo-tab-postbox {\n\t\t//\tdisplay: none;\n\t\t}\n\n\t\th2.nav-tab-wrapper a {\n\t\t\tdisplay: block;\n\t\t\tfloat: none;\n\n\t\t\t&.nav-tab {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t&:not(.nav-tab-active) {\n\t\t\t\tbackground: #f9f9f9 !important;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus {\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-left: 3px solid;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus,\n\t\t\t&:focus,\n\t\t\t&:hover,\n\t\t\t& {\n\t\t\t\t.dashicons {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&[role=\"toggle-menu\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\n/* Pages MENU */\n\n.wpo-pages-menu {\n\tposition: absolute;\n\tbottom: 0;\n\tright: 0;\n\tdisplay: none;\n\n\t@media (max-width: 820px) {\n\t\t.opened + & {\n\t\t\tdisplay: block;\n\t\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t\t}\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: flex;\n\t\theight: 77px;\n\t}\n\n\t> a {\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\tcolor: inherit;\n\t\ttext-align: center;\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tcolor: $wp-gray-dark;\n\n\t\t@media (min-width: 821px) {\n\t\t\tpadding: 0 8px;\n\t\t\theight: 77px;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\n\t\t\t> span {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0 auto;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tpadding: 15px;\n\t\t\tfont-size: 1.2em;\n\t\t}\n\n\t\t&.active {\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 3px;\n\t\t\t\tbackground: $brand;\n\t\t\t\tcolor: $wp-gray-darker;\n\n\t\t\t\t@media (max-width: 820px) {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t@media (max-width: 820px) {\n\t\t\t\tcolor: $brand;\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground: #F9F9F9;\n\t\t\tcolor: $wp-gray-darker;\n\t\t}\n\t}\n\n\tspan.separator {\n\t\tdisplay: block;\n\t\twidth: 2px;\n\t\tbackground: #EFEFEF;\n\t\tmargin-top: 18px;\n\t\tmargin-bottom: 18px;\n\t\tmargin-right: 5px;\n\t\tmargin-left: 5px;\n\t\t@media (max-width: 820px) {\n\t\t\twidth: 80%;\n\t\t\theight: 2px;\n\t\t\tmargin: 10px 10%;\n\t\t}\n\t}\n\n\t@media (max-width: 820px) {\n\t\ttext-align: center;\n\t\ttop: 100%;\n\t\twidth: 100%;\n\t\tbottom: auto;\n\t\tbackground: #FFF;\t\t\n\n\t}\n\n\tbody.rtl & {\n\t\tleft: 0;\n\t\tright: auto;\n\t}\n}\n\n#wp-optimize-nav-page-menu {\n\tposition: absolute;\n\tright: 0;\n\tbottom: 0;\n\tdisplay: flex;\n\theight: 77px;\n flex-direction: column;\n padding: 0 20px;\n align-items: center;\n justify-content: center;\n\ttext-decoration: none;\n\n\t&:not(.opened) .dashicons-no-alt {\n\t\tdisplay: none;\n\t}\n\n\t&.opened .dashicons-menu {\n\t\tdisplay: none;\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: none;\n\t}\n\n\tbody.rtl & {\n\t\tright: auto;\n\t\tleft: 0;\n\t}\n}\n\n/* DASHBOARD Menu */\n\n/* Calculate column width with a $spacing gutter */\n.wpo-dashboard-pages-menu {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\n\t/* Same size for 1 to 3 items */\n\t&[data-itemscount=\"1\"],\n\t&[data-itemscount=\"2\"],\n\t&[data-itemscount=\"3\"] {\n\t\t.wpo-dashboard-pages-menu__item {\n\t\t\twidth: calc(33.333% - 40px / 3);\n\t\t}\n\t}\n\n\t/* above 3 items, change sizes */\n\t@for $count from 4 to 6 {\n\t\t&[data-itemscount=\"$count\"] {\n\t\t\t.wpo-dashboard-pages-menu__item {\n\t\t\t\twidth: calc(100% / $count - $spacing * ($count - 1) / $count);\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox.wpo-dashboard-pages-menu__item {\n\t\tpadding: $spacing;\n\t\tmargin-right: $spacing;\n\t\tbox-sizing: border-box;\n\t\tpadding-bottom: 60px;\n\t\tmin-width: 0;\n\t\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\t\n\t\th3 {\n\t\t\tmargin-top: 0;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-secondary-gray;\n\t\t\t\tline-height: 1;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-right: 10px\n\t\t\t}\n\n\t\t}\n\n\t\ta {\n\t\t\tposition: absolute;\n\t\t\tbottom: $spacing;\n\t\t\tleft: $spacing;\n\t\t\twidth: calc(100% - $spacing * 2) !important;\n\t\t}\n\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\twidth: 100%;\n\t\t\tmargin-right: 0;\n\t\t\tpadding-bottom: 20px;\n\n\t\t\ta.button.button-large {\n\t\t\t\twidth: auto !important;\n\t\t\t\tleft: auto;\n\t\t\t\tbottom: auto;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tright: $spacing;\n\t\t\t}\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\t\n\t}\n\n}\n\n/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n height: 2px;\n line-height: 2px;\n background: #ffffff17;\n margin: 5px 10px;\n width: auto;\n min-width: 0;\n}","/* Unused images / wpo_smush_image / image grid*/\n\n.wpo_unused_image, .wpo_smush_image {\n\tposition: relative;\n\tmargin: 4px;\n\twidth: calc(50% - 8px);\n\ttext-align: center;\n\n\t@media (min-width: 500px) {\n\t\twidth: calc(25% - 8px);\n\t}\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: calc(16.6666% - 8px);\n\t}\n\n\t@media (min-width: 1100px) {\n\t\twidth: calc(12.5% - 8px);\n\t}\n\n\t.wpo_unused_image__input {\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\topacity: 0;\n\t\twidth: 0;\n\t\theight: 0;\n\t}\n\t\n\tlabel {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tpadding: 1px;\n\t\tborder: 3px solid $wp-lighter-gray;\n\t\tbox-sizing: border-box;\n\n\t\t&::before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tpadding-top: 100%;\n\t\t}\n\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 1px;\n\t\t\tleft: 1px;\n\t\t\twidth: calc(100% - 2px);\n\t\t\theight: calc(100% - 2px);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: cover;\n\t\t\tbackground-position: 50% 50%;\n\t\t\toverflow: hidden;\n\t\t\tbackground: rgba(220, 220, 220, 0.2);\n\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tmax-height: 100%;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%,-50%);\n\t\t\t\tuser-select: none;\n\t\t\t}\n\n\t\t}\n\n\t\tspan.dashicons {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tfont-size: 25px;\n\t\t\twidth: 25px;\n\t\t\topacity: .2;\n\t\t}\n\t}\n\t\n\t.wpo_unused_image__input:checked + label,\n\t&.selected label {\n\t\tborder-color: $wp-blue;\n\t}\n\n\t&:focus-within label {\n\t\tbox-shadow: 0 0 4px $wp-blue;\n\t}\n\t\n\ta, a.button, a.button:active {\n\t\tposition: absolute;\n\t\tz-index: 2;\n\t\tbottom: 13px;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\tdisplay: none;\n\t}\n\n\t&:hover {\n\n\t\ta, a.button, a.button:active {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\twidth: calc(100% + 8px);\n margin-left: -4px;\n margin-right: -4px;\n\tmax-height: 500px;\n\toverflow-y: auto;\n display: flex;\n\tflex-wrap: wrap;\n\tposition: relative;\n\n\t.wpo-fieldgroup {\n\t\twidth: 100%;\n\t\tmargin: 4px;\n\t}\n\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n.wpo-unused-images__premium-mask,\n.wpo-unused-image-sizes__premium-mask {\n\tposition: absolute;\n\ttop: 0; \n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1;\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n.wpo-unused-image-sizes__premium-mask {\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.85));\n}\n\na.wpo-unused-images__premium-link {\n\tbackground: #FFF;\n\tdisplay: inline-block;\n\tpadding: 10px;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n}\n","/* More Plugins page */\n\n/* Plugins family / Premium */\n\np.wpo-plugin-installed {\n color: $success;\n}\n\n/* Settings repeater */\n\n.wpo-repeater__add {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\ttext-decoration: none;\n}\n\n\n/* Plugin familly tab */\n\n.wpo-plugin-family__premium h2 {\n margin: 0;\n padding: 25px;\n}\n\n.wpo-plugin-family__plugins {\n display: flex;\n flex-wrap: wrap;\n\tpadding-left: 1px;\n\tpadding-bottom: 1px;\n}\n\n.wpo-plugin-family__plugin {\n flex: auto;\n width: 100%;\n padding: 30px;\n box-sizing: border-box;\n border: 1px solid #E3E4E7;\n\tmargin-left: -1px;\n\tmargin-bottom: -1px;\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: 50%;\n\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t@media (max-width: 1080px) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 50%;\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n}\n\ndiv#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox {\n padding: 0;\n}\n\n/* Added for WPO Premium Features tab */\n.wpo_feature_cont {\n\twidth: 64.5%;\n}\n\n.wpo_plugin_family_cont {\n\twidth: 34.5%;\n}\n\n@media (max-width: 1080px) {\n\n\t.wpo_feature_cont,\n\t.wpo_plugin_family_cont {\n\t\twidth: 100%;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t}\n\n}\n\n.wpo_feature_cont,\n.wpo_plugin_family_cont {\n\n\theader {\n\t\tpadding: 20px;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tpadding: 40px;\t\t\n\t\t}\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t}\n\t\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}\n\n.wpo_feat_table, .wpo_feat_th, .wpo_feat_table td {\n\tborder: none;\n\tborder-collapse: collapse;\n\tbackground-color: white;\n\tfont-size: 120%;\n\ttext-align: center;\n}\n\n.wpo_feat_table {\n\ttd {\n\t\tborder: 1px solid #F1F1F1;\n\t\tborder-bottom-width: 4px;\n\t\tpadding: 15px;\n\t}\n\n\ttd:nth-child(2), td:nth-child(3) {\n\t\tbackground: rgba(241, 241, 241, 0.38);\n\t}\n\n\tp {\n\t\tpadding: 0px 10px;\n\t\tmargin: 5px 0px;\n\t\tfont-size: 13px;\n\t}\n\n\th4 {\n\t\tmargin: 5px 0px;\n\t}\n\n\t.dashicons {\n\t\twidth: 25px;\n\t\theight: 25px;\n\t\tfont-size: 25px;\n\t\tline-height: 1;\n\t}\n\n\t.dashicons-yes, .updraft-yes {\n\t\tcolor: green;\n\t}\n\t\n\t.dashicons-no-alt, .updraft-no {\n\t\tcolor: red;\n\t}\n\t\n\ttr.wpo-main-feature-row td {\n\t\tbackground: #f1f1f1;\n\t\tborder-bottom-color: #fafafa;\n\n\t\timg.wpo-premium-image {\n\t\t\twidth: 64px;\n\t\t}\n\t}\n}\n\n\n\n.wpo-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t#wpoptimize_table_list_filter {\n\t\twidth: 40%;\n\t}\n\n\t.wpo-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding: 16px 18px;\n\t\twidth: 30px;\n\t\theight: auto;\n\t}\n\n}\n\n@media screen and (min-width: 1220px) {\n\n\t.wpo_feat_table td:nth-child(2), .wpo_feat_table td:nth-child(3) {\n\t\twidth: 110px;\n\t}\n\n}\n\n.other-plugin-title {\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: $breakpoint-small) {\n\n\ttable.wpo_feat_table {\n\n\t\tdisplay: block;\n\n\t\ttr {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t}\n\n\t\ttd {\n\t\t\tdisplay: block;\n\n\t\t\t&:first-child {\n\t\t\t\twidth: 100%;\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&:not(:first-child) {\n\t\t\t\twidth: 50%;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\n\t\t\t&:first-child:empty {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t&[data-colname]::before {\n\t\t\t\tcontent: attr(data-colname);\n\t\t\t\tfont-size: 0.8rem;\n\t\t\t\tcolor: #CCC;\n\t\t\t\tline-height: 1;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.wpo-cache-feature-image {\n\twidth: 40px;\n\tpadding: 16px 14px;\n}\n","\n/* tablesorter */\n\n#wp-optimize-wrap {\n\n\t.wp-list-table {\n\t\t\n\t\ttd {\n\t\t\tword-break: break-all; \n\t\t}\n\n\t}\n\n\t@media screen and (max-width: $breakpoint-small ) {\n\n\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\n\t\t\t&, tr, th, td {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\ttd {\n\t\t\t\tpadding: 3px 8px 3px 35%;\n\t\t\t\tword-break: break-word;\n\t\t\t\tbox-sizing: border-box; \n\n\t\t\t\t&::before {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\t\t\n\n\t\t.wp-list-table.wp-list-table-mobile-labels thead {\n\n\t\t\t&, tr {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\tth.column-primary {\n\t\t\t\tdisplay: block;\n\t\t\t\tbox-sizing: border-box; \n\t\t\t}\n\n\t\t\tth:not(.column-primary) {\n\t\t\t\tdisplay: none !important; \n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tbody.rtl & {\n\t\t.wpo-table-list-filter {\n\t\t\ttext-align: left;\n\t\t}\n\t\t@media screen and (max-width: $breakpoint-small ) {\n\t\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\t\t\t\ttd {\n\t\t\t\t\tpadding: 3px 35% 3px 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.tablesorter-headerRow th {\n\tvertical-align: top;\n}\n\nth:not(.sorter-false) .tablesorter-header-inner {\n\n\tcolor: #0074ab;\n\n\t&::after {\n\t\tcontent: '';\n\t\tfont-family: 'dashicons';\n\t\tfont-size: 20px;\n\t\tline-height: 20px;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tdisplay: none;\n\t\tvertical-align: bottom;\n\t}\n\n}\n\nth.tablesorter-header.tablesorter-headerAsc,\nth.tablesorter-header.tablesorter-headerDesc {\n font-weight: 500;\n border-bottom-color: $wp-blue;\n\t.tablesorter-header-inner::after {\n\t\tdisplay: inline-block;\n\t}\n}\n\nth.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {\n content: \"\\f140\";\n}\n\nth.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {\n content: \"\\f142\";\n}\n\nth.tablesorter-header:focus {\n outline: none;\n\tbox-shadow: 0 0 3px rgba(0, 116, 171, 0.78);\n\n\t&:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after {\n\t\tcontent: \"\\f142\";\n\t\topacity: 0.5;\n\t}\n\n}\n\n.tablesorter.hasFilters tr.filtered {\n display: none;\n}\n",".wpo-text__dim {\n .dashicons-info {\n margin-top: 2px;\n margin-right: 5px;\n border-radius: 30px;\n background: #fff;\n color: $red;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents {\n textarea {\n width: 100%;\n border-radius: 5px;\n height: 100px;\n min-height: 100px;\n margin-top: 10px;\n margin-bottom: 10px;\n }\n}\n\n#page_cache_length_value {\n height: 28px;\n position: relative;\n top: 2px;\n}\n\n#wp_optimize_preload_cache_status {\n margin-left: 10px;\n display: inline-block;\n color: #82868B;\n font-size: smaller;\n}\n\n.align-left {\n margin: 10px 10px 0px 0px;\n float: left;\n}\n\ntextarea.cache-settings {\n display: block;\n clear: both;\n min-height: 225px;\n overflow: scroll;\n min-width: 75%;\n margin: 10px 0px;\n}\n\n#wp-optimize-purge-cache, \n#wp-optimize-purge-cache ~ span, \n#wp-optimize-purge-cache ~ img {\n vertical-align: middle;\n top: auto;\n}\n\n#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error {\n font-size: 12px;\n}\n\n\n#wpo_browser_cache_error_message {\n padding-top: 10px;\n padding-bottom: 10px;\n margin-left: 0;\n margin-bottom: 10px;\n \n &:empty {\n display: none;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents,\n#wp-optimize-nav-tab-wpo_cache-preload-contents,\n#wp-optimize-nav-tab-wpo_cache-cache-contents {\n label {\n font-weight: 600;\n }\n}"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
.wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:5px;display:block;margin-bottom:5px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{margin-bottom:15px}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:15px}@media screen and (max-width:768px){body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:0}}body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:15px;padding-right:0}@media screen and (max-width:768px){body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:10px}}body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:80px}@media(max-width:600px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:0}}@media(min-width:820px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:100px}}#wp-optimize-wrap{position:relative;padding-top:20px}@media(max-width:600px){#wp-optimize-wrap{padding-top:110px}}@media(max-width:782px){#wp-optimize-wrap{margin-right:0}}.wpo-main-header{height:77px;position:fixed;top:32px;left:160px;background:#FFF;right:0;z-index:9980}@media(min-width:820px){.wpo-main-header{height:105px}}.wpo-main-header .wpo-logo__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;position:relative;height:100%;line-height:1;font-size:1rem;padding-left:50px;margin-left:10px}.wpo-main-header .wpo-logo{position:absolute;left:0;top:50%;transform:translateY(-50%);width:50px}.wpo-main-header .wpo-subheader{margin:0;font-weight:300;color:#72777c;line-height:1.3}@media(max-width:1080px){.wpo-main-header .wpo-subheader{display:none}}.wpo-main-header p.wpo-header-links{margin:0;font-size:.7rem;position:absolute;right:0;padding:6px 15px;background:#edeeef;border-bottom-left-radius:5px;z-index:1}.wpo-main-header p.wpo-header-links a{text-decoration:none}.wpo-main-header p.wpo-header-links .wpo-header-links__label{color:#82868b;position:absolute;right:100%;width:110px;text-align:right;padding-right:10px}@media(max-width:820px){.wpo-main-header p.wpo-header-links{display:none}}.wpo-main-header p.wpo-header-links__mobile{padding:10px;background:#edeeef;margin-bottom:0}@media(min-width:820px){.wpo-main-header p.wpo-header-links__mobile{display:none}}.wpo-main-header p.wpo-header-links__mobile a{display:inline-block;padding:4px;font-size:.8rem}.wpo-main-header p.wpo-header-links__mobile .wpo-header-links__label{color:#82868b}@media(max-width:600px){.wpo-main-header .wpo-logo__container strong{width:140px;display:inline-block}}@media(max-width:960px){body.auto-fold .wpo-main-header{left:36px}}@media(max-width:782px){body.auto-fold .wpo-main-header{left:0;top:46px}}@media(max-width:600px){body.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(max-width:600px){body.auto-fold #screen-meta+#wp-optimize-wrap .wpo-main-header{top:0}}@media(min-width:782px){body.folded .wpo-main-header{left:36px}}body.is-scrolled .wpo-main-header{box-shadow:0 5px 25px rgba(0,0,0,0.17)}body.rtl .wpo-main-header{right:160px;left:0}body.rtl .wpo-main-header .wpo-logo__container{padding-left:10px;padding-right:50px;margin-left:0;margin-right:10px}body.rtl .wpo-main-header .wpo-logo{position:absolute;left:auto;right:0}body.rtl .wpo-main-header p.wpo-header-links{right:auto;left:0;border-bottom-right-radius:5px;border-bottom-left-radius:0}body.rtl .wpo-main-header p.wpo-header-links .wpo-header-links__label{position:absolute;left:100%;right:auto;width:110px;text-align:left;padding-left:10px}@media(max-width:960px){body.rtl.auto-fold .wpo-main-header{right:36px}}@media(max-width:782px){body.rtl.auto-fold .wpo-main-header{right:0;top:46px}}@media(max-width:600px){body.rtl.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(min-width:782px){body.rtl.folded .wpo-main-header{right:36px;left:0}}body.rtl .wpo-page{padding-right:0}@media(min-width:769px){}.wpo-page:not(.active){display:none}.wpo-introduction-notice{padding:15px 20px;margin-top:30px;margin-bottom:30px;background:#FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%}.wpo-introduction-notice h3{font-size:2em}.wpo-introduction-notice p:not(.font-size__normal){font-size:1.2em}.wpo-introduction-notice .wpo-introduction-notice__footer-links{padding-top:20px}.wpo-introduction-notice .wpo-introduction-notice__footer-links>a,.wpo-introduction-notice .wpo-introduction-notice__footer-links>span{display:inline-block;margin-left:5px;margin-right:5px}@media(min-width:1200px){.wpo-tab-postbox.right-col{width:350px;float:right;box-sizing:border-box;margin-top:3.1rem}.right-col+.wpo-main{float:left;box-sizing:border-box;width:calc(100% - 380px)}}@media(max-width:782px){#wp-optimize-wrap .button-large{display:block;width:100%}}#wp-optimize-wrap .red{color:#e07575}#wp-optimize-wrap div[id*="_notice"] div.updated,#wp-optimize-wrap>.notice{margin-left:0;margin-right:0}.notice.notice-warning.wpo-warning{margin-bottom:18px}.notice.notice-warning.wpo-warning p{padding-left:36px;position:relative}.notice.notice-warning.wpo-warning p>.dashicons{position:absolute;left:0;font-size:26px;top:50%;transform:translateY(-50%);height:26px;color:#ffb900}.button.button-block{display:block;width:100%;text-align:center}.wpo-refresh-button{float:right}.wpo-refresh-button:hover{cursor:pointer}.wpo-refresh-button .dashicons{text-decoration:none;line-height:inherit;font-size:inherit}*[class*="wpo-badge"]{display:inline-block;font-size:.8em;text-transform:uppercase;background:#f2f4f5;padding:3px 5px;line-height:1;border-radius:3px}.wpo-badge__new{background:#dbe3e6;color:#00689a}.wpo-first-child{margin-top:0}#save_done,.save-done{color:#009b24;font-size:250%}p.wpo-take-a-backup{display:inline-block;margin:0;line-height:1;padding-top:8px}@media(min-width:782px){p.wpo-take-a-backup{margin-left:20px}}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox{border:0}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox>h3:first-child{margin-top:0}.wpo-p25,.postbox.wpo-tab-postbox{padding:25px}.wpo-tab-postbox>h3:first-child{margin-top:0}.wpo-fieldgroup{background:#f2f4f5;border-radius:8px;padding:20px}.wpo-fieldgroup:not(:last-child){margin-bottom:2em}.wpo-fieldgroup>*:first-child{margin-top:0}.wpo-fieldgroup>*:last-child{margin-bottom:0}.wpo-fieldgroup.premium-only{position:relative}.wpo-fieldgroup .switch+label{font-weight:600}.wpo-fieldgroup code{font-size:inherit;background:#d8dbdc;border-radius:3px}.wpo-fieldgroup__subgroup:not(:last-of-type){margin-bottom:20px}#wp-optimize-wrap .switch{position:relative;display:inline-block;width:38px;height:18px;margin-right:6px;box-sizing:border-box}#wp-optimize-wrap .switch input{opacity:0;width:0;height:0}#wp-optimize-wrap .switch .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#f2f4f5;transition:.2s}#wp-optimize-wrap .switch .slider::before{position:absolute;content:"";height:8px;width:8px;left:2px;bottom:2px;background-color:#555d66;border:1px solid #555d66;transition:all .2s}#wp-optimize-wrap .switch .slider::after{content:'';display:block;position:absolute;height:4px;width:3px;right:4px;top:4px;border-radius:50%;border:1px solid #72777c;box-sizing:content-box}#wp-optimize-wrap .switch .slider.round{border-radius:23px;border:2px solid #555d66}#wp-optimize-wrap .switch .slider.round::before{border-radius:50%}#wp-optimize-wrap .switch input:checked+.slider{background:#0272aa;border-color:#0272aa}#wp-optimize-wrap .switch input:checked+.slider::before{background:#FFF;border-color:#FFF;transform:translateX(20px)}#wp-optimize-wrap .switch input:checked+.slider::after{content:'';display:block;position:absolute;height:6px;width:2px;left:7px;top:4px;background:#FFF;border:0}#wp-optimize-wrap .switch input:focus+.slider{box-shadow:0 0 0 2px #f2f4f5,0 0 0 3px #555d66}#wp-optimize-wrap .switch-container{display:block;clear:both}#wp-optimize-wrap .switch-container label{line-height:1;vertical-align:middle}#wp-optimize-wrap .switch-container+small{margin-left:49px}#wp-optimize-wrap .wpo-fieldgroup>.switch-container:first-child{padding-top:0}.wpo-info{position:relative;display:inline-block}@media(max-width:480px){.wpo-info{display:block}}.wpo-info__content{opacity:0;visibility:hidden;position:absolute;top:100%;left:-25px;background:#FFF;padding:20px;width:380px;max-width:380px;z-index:5;box-shadow:0 11px 25px 0 rgba(0,0,0,0),0 11px 25px 3000px rgba(0,0,0,0);transition:.2s all}@media(max-width:480px){.wpo-info__content{width:auto}}span.wpo-info__close{display:none;margin-left:20px;color:#444}.wpo-info.opened span.wpo-info__close{display:inline-block}.wpo-info.opened .wpo-info__content{opacity:1;visibility:visible;box-shadow:0 11px 25px 0 rgba(0,0,0,0.3),0 11px 25px 3000px rgba(0,0,0,0.3)}.wpo-info.opened a.wpo-info__trigger{z-index:6}.wpo-info__content img,.wpo-info__content iframe{max-width:100%}a.wpo-info__trigger{display:inline-block;text-decoration:none;padding:10px;position:relative;background:#FFF;margin-left:-10px}a.wpo-info__trigger span.dashicons{text-decoration:none;vertical-align:middle}#wp-optimize-wrap h2.nav-tab-wrapper{margin-bottom:0;border-bottom:0;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active{border:0;background:transparent;margin:0;border-top:3px solid transparent;padding:7px 15px;color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active .dashicons{display:block;margin:0 auto;color:#72777c;font-size:30px;width:30px;height:30px}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.premium-only{display:inline-block;margin-left:6px;padding:4px;font-size:10px;background:#0272aa;line-height:1;border-radius:3px;color:#FFF;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active{background:#FFF;box-shadow:0 0 1px rgba(0,0,0,0.04);border-top-color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active .dashicons{color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:block;float:right;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active{position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active .dashicons{display:inline-block;font-size:20px;height:18px;transform:translateY(4px)}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>div{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover a.nav-tab::after{content:'';display:block;position:absolute;bottom:0;right:0;height:2px;width:100%;background-color:#0172aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div{position:absolute;display:block;background:#FFF;padding:15px;right:0;top:100%;z-index:4;box-shadow:0 11px 25px 0 rgba(0,0,0,0.1);width:350px}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div a{display:block;font-size:14px;font-weight:normal;padding:6px 3px;text-align:center}@media(max-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:none}#wp-optimize-wrap h2.nav-tab-wrapper a:not(.nav-tab-active){display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:block;float:right}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{text-align:right}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{position:absolute;bottom:14px;right:0;font-size:12px;font-weight:400;text-decoration:none;padding:0}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}}@media(max-width:782px){.wpo-mobile-menu-opened .wpo-main .wpo-tab-postbox{// display:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a{display:block;float:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab{display:block !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a:not(.nav-tab-active){background:#f9f9f9 !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus{border-top:0;border-left:3px solid}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:hover .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a .dashicons{display:inline-block;line-height:inherit}.wpo-mobile-menu-opened h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}.wpo-pages-menu{position:absolute;bottom:0;right:0;display:none}@media(max-width:820px){.opened+.wpo-pages-menu{display:block;box-shadow:0 5px 25px rgba(0,0,0,0.17)}}@media(min-width:821px){.wpo-pages-menu{display:-ms-flexbox;display:flex;height:77px}}.wpo-pages-menu>a{text-decoration:none;position:relative;color:inherit;text-align:center;box-sizing:border-box;display:block;color:#555d66}@media(min-width:821px){.wpo-pages-menu>a{padding:0 8px;height:77px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.wpo-pages-menu>a>span{display:block;margin:0 auto}}@media(max-width:820px){.wpo-pages-menu>a{padding:15px;font-size:1.2em}}.wpo-pages-menu>a.active::after{content:'';display:block;position:absolute;bottom:0;left:0;width:100%;height:3px;background:#e46b1f;color:#191e23}@media(max-width:820px){.wpo-pages-menu>a.active::after{width:3px;height:100%}}@media(max-width:820px){.wpo-pages-menu>a.active{color:#e46b1f}}.wpo-pages-menu>a:hover{background:#f9f9f9;color:#191e23}.wpo-pages-menu span.separator{display:block;width:2px;background:#efefef;margin-top:18px;margin-bottom:18px;margin-right:5px;margin-left:5px}@media(max-width:820px){.wpo-pages-menu span.separator{width:80%;height:2px;margin:10px 10%}}@media(max-width:820px){.wpo-pages-menu{text-align:center;top:100%;width:100%;bottom:auto;background:#FFF}}body.rtl .wpo-pages-menu{left:0;right:auto}#wp-optimize-nav-page-menu{position:absolute;right:0;bottom:0;display:-ms-flexbox;display:flex;height:77px;-ms-flex-direction:column;flex-direction:column;padding:0 20px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;text-decoration:none}#wp-optimize-nav-page-menu:not(.opened) .dashicons-no-alt{display:none}#wp-optimize-nav-page-menu.opened .dashicons-menu{display:none}@media(min-width:821px){#wp-optimize-nav-page-menu{display:none}}body.rtl #wp-optimize-nav-page-menu{right:auto;left:0}.wpo-dashboard-pages-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.wpo-dashboard-pages-menu[data-itemscount="1"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="2"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="3"] .wpo-dashboard-pages-menu__item{width:calc(33.333% - 13.33333px)}.wpo-dashboard-pages-menu[data-itemscount="4"] .wpo-dashboard-pages-menu__item{width:calc(25% - 15px)}.wpo-dashboard-pages-menu[data-itemscount="5"] .wpo-dashboard-pages-menu__item{width:calc(20% - 16px)}.wpo-dashboard-pages-menu[data-itemscount="6"] .wpo-dashboard-pages-menu__item{width:calc(16.66667% - 16.66667px)}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{padding:20px;margin-right:20px;box-sizing:border-box;padding-bottom:60px;min-width:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item:last-child{margin-right:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin-top:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3 .dashicons{color:#72777c;line-height:1;height:18px;margin-top:-2px;margin-right:10px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a{position:absolute;bottom:20px;left:20px;width:calc(100% - 40px) !important}@media(max-width:782px){.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{width:100%;margin-right:0;padding-bottom:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a.button.button-large{width:auto !important;left:auto;bottom:auto;top:50%;transform:translateY(-50%);right:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item p{display:none}}#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item{height:2px;line-height:2px;background:rgba(255,255,255,0.0902);margin:5px 10px;width:auto;min-width:0}.wpo_unused_image,.wpo_smush_image{position:relative;margin:4px;width:calc(50% - 8px);text-align:center}@media(min-width:500px){.wpo_unused_image,.wpo_smush_image{width:calc(25% - 8px)}}@media(min-width:782px){.wpo_unused_image,.wpo_smush_image{width:calc(16.6666% - 8px)}}@media(min-width:1100px){.wpo_unused_image,.wpo_smush_image{width:calc(12.5% - 8px)}}.wpo_unused_image .wpo_unused_image__input,.wpo_smush_image .wpo_unused_image__input{position:absolute;top:10px;opacity:0;width:0;height:0}.wpo_unused_image label,.wpo_smush_image label{display:block;width:100%;position:relative;padding:1px;border:3px solid #f2f4f5;box-sizing:border-box}.wpo_unused_image label::before,.wpo_smush_image label::before{content:"";display:block;padding-top:100%}.wpo_unused_image label .thumbnail,.wpo_smush_image label .thumbnail{position:absolute;top:1px;left:1px;width:calc(100% - 2px);height:calc(100% - 2px);background-repeat:no-repeat;background-size:cover;background-position:50% 50%;overflow:hidden;background:rgba(220,220,220,0.2)}.wpo_unused_image label .thumbnail img,.wpo_smush_image label .thumbnail img{display:block;margin:0;max-height:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wpo_unused_image label span.dashicons,.wpo_smush_image label span.dashicons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:25px;width:25px;opacity:.2}.wpo_unused_image .wpo_unused_image__input:checked+label,.wpo_unused_image.selected label,.wpo_smush_image .wpo_unused_image__input:checked+label,.wpo_smush_image.selected label{border-color:#0272aa}.wpo_unused_image:focus-within label,.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_unused_image a,.wpo_unused_image a.button,.wpo_unused_image a.button:active,.wpo_smush_image a,.wpo_smush_image a.button,.wpo_smush_image a.button:active{position:absolute;z-index:2;bottom:13px;left:50%;transform:translateX(-50%);display:none}.wpo_unused_image:hover a,.wpo_unused_image:hover a.button,.wpo_unused_image:hover a.button:active,.wpo_smush_image:hover a,.wpo_smush_image:hover a.button,.wpo_smush_image:hover a.button:active{display:inline-block}#wpo_unused_images,#wpo_smush_images_grid{width:calc(100% + 8px);margin-left:-4px;margin-right:-4px;max-height:500px;overflow-y:auto;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}#wpo_unused_images .wpo-fieldgroup,#wpo_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images a{outline:0}.wpo-unused-images__premium-mask,.wpo-unused-image-sizes__premium-mask{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0.85));display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.wpo-unused-image-sizes__premium-mask{background:linear-gradient(to bottom,rgba(255,255,255,0.3),rgba(255,255,255,0.85))}a.wpo-unused-images__premium-link{background:#FFF;display:inline-block;padding:10px;border-radius:3px;box-shadow:0 2px 8px rgba(0,0,0,0.3)}p.wpo-plugin-installed{color:#009b24}.wpo-repeater__add{display:inline-block;cursor:pointer;font-weight:bold;text-decoration:none}.wpo-plugin-family__premium h2{margin:0;padding:25px}.wpo-plugin-family__plugins{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:1px;padding-bottom:1px}.wpo-plugin-family__plugin{-ms-flex:auto;flex:auto;width:100%;padding:30px;box-sizing:border-box;border:1px solid #e3e4e7;margin-left:-1px;margin-bottom:-1px}@media(min-width:782px){.wpo-plugin-family__plugin{width:50%}.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}@media(max-width:1080px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:50%}}@media(max-width:782px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}div#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox{padding:0}.wpo_feature_cont{width:64.5%}.wpo_plugin_family_cont{width:34.5%}@media(max-width:1080px){.wpo_feature_cont,.wpo_plugin_family_cont{width:100%;float:none;margin:0}}.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:20px}@media(max-width:1080px){.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:40px}}.wpo_feature_cont header h2,.wpo_plugin_family_cont header h2{margin:0}.wpo_feature_cont header p,.wpo_plugin_family_cont header p{margin-bottom:0}.wpo_feat_table,.wpo_feat_th,.wpo_feat_table td{border:0;border-collapse:collapse;background-color:white;font-size:120%;text-align:center}.wpo_feat_table td{border:1px solid #f1f1f1;border-bottom-width:4px;padding:15px}.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){background:rgba(241,241,241,0.38)}.wpo_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.wpo_feat_table h4{margin:5px 0}.wpo_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.wpo_feat_table .dashicons-yes,.wpo_feat_table .updraft-yes{color:green}.wpo_feat_table .dashicons-no-alt,.wpo_feat_table .updraft-no{color:red}.wpo_feat_table tr.wpo-main-feature-row td{background:#f1f1f1;border-bottom-color:#fafafa}.wpo_feat_table tr.wpo-main-feature-row td img.wpo-premium-image{width:64px}.wpo-premium-image{display:none}@media screen and (min-width:720px){#wpoptimize_table_list_filter{width:40%}.wpo-premium-image{display:block;float:left;padding:16px 18px;width:30px;height:auto}}@media screen and (min-width:1220px){.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){width:110px}}.other-plugin-title{text-decoration:none}@media screen and (max-width:782px){table.wpo_feat_table{display:block}table.wpo_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.wpo_feat_table td{display:block}table.wpo_feat_table td:first-child{width:100%;border-bottom:0}table.wpo_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.wpo_feat_table td:first-child:empty{display:none}table.wpo_feat_table td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}.wpo-cache-feature-image{width:40px;padding:16px 14px}#wp-optimize-wrap .wp-list-table td{word-break:break-all}@media screen and (max-width:782px){#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody tr,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody th,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 8px 3px 35%;word-break:break-word;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td::before{color:#b5b9be}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead tr{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th.column-primary{display:block;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th:not(.column-primary){display:none !important}}body.rtl #wp-optimize-wrap .wpo-table-list-filter{text-align:left}@media screen and (max-width:782px){body.rtl #wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 35% 3px 8px}}.tablesorter-headerRow th{vertical-align:top}th:not(.sorter-false) .tablesorter-header-inner{color:#0074ab}th:not(.sorter-false) .tablesorter-header-inner::after{content:'';font-family:'dashicons';font-size:20px;line-height:20px;height:20px;width:20px;display:none;vertical-align:bottom}th.tablesorter-header.tablesorter-headerAsc,th.tablesorter-header.tablesorter-headerDesc{font-weight:500;border-bottom-color:#0272aa}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after,th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{display:inline-block}th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{content:"\f140"}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after{content:"\f142"}th.tablesorter-header:focus{outline:0;box-shadow:0 0 3px rgba(0,116,171,0.78)}th.tablesorter-header:focus:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after{content:"\f142";opacity:.5}.tablesorter.hasFilters tr.filtered{display:none}.wpo-text__dim .dashicons-info{margin-top:2px;margin-right:5px;border-radius:30px;background:#fff;color:#e07575}#wp-optimize-nav-tab-wpo_cache-advanced-contents textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}#page_cache_length_value{height:28px;position:relative;top:2px}#wp_optimize_preload_cache_status{margin-left:10px;display:inline-block;color:#82868b;font-size:smaller}.align-left{margin:10px 10px 0 0;float:left}textarea.cache-settings{display:block;clear:both;min-height:225px;overflow:scroll;min-width:75%;margin:10px 0}#wp-optimize-purge-cache,#wp-optimize-purge-cache ~ span,#wp-optimize-purge-cache ~ img{vertical-align:middle;top:auto}#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error{font-size:12px}#wpo_browser_cache_error_message{padding-top:10px;padding-bottom:10px;margin-left:0;margin-bottom:10px}#wpo_browser_cache_error_message:empty{display:none}#wp-optimize-nav-tab-wpo_cache-advanced-contents label,#wp-optimize-nav-tab-wpo_cache-preload-contents label,#wp-optimize-nav-tab-wpo_cache-cache-contents label{font-weight:600}
|
2 |
+
/*# sourceMappingURL=wp-optimize-admin-3-0-12.min.css.map */
|
@@ -0,0 +1 @@
|
|
|
1 |
+
{"version":3,"sources":["css/wp-optimize-admin.scss","css/admin.css","css/scss/_layout.scss","css/scss/_common.scss","css/scss/_menu-and-tabs.scss","css/scss/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.scss"],"names":[],"mappings":"AAAA,YAAY;;AAcZ,gBAAgB;;ACdhB;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;;AACvB;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AChjBD;;CAEC,oBAAoB;CAIpB;;AAHA;;CAHD;;EAIE,iBAAiB;EAElB;CADC;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CAIjB;;AAHA;;CAHD;EAIE,mBAAmB;EAEpB;CADC;;AAGF;;CAEC,kBAAkB;CASlB;;AAPA;;CAJD;;EAKE,eAAe;EAMhB;CALC;;AAED;;CARD;;EASE,mBAAmB;EAEpB;CADC;;AAGF;CACC,mBAAmB;CACnB,kBAAkB;CASlB;;AAPA;;CAJD;EAKE,mBAAmB;EAMpB;CALC;;AAED;;CARD;EASE,gBAAgB;EAEjB;CADC;;AAGF,eAAe;;AAEf;;CAEC,aAAa;CACb,gBAAgB;CAChB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,SAAS;CACT,cAAc;;CAsLd;;AApLA;;CAVD;EAWE,cAAc;EAmLf;CAlLC;;AAED;EACC,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EACxB,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB;CAClB;;AAED;EACC,mBAAmB;EACnB,QAAQ;EACR,SAAS;EACT,4BAA4B;EAC5B,YAAY;CACZ;;AAED;EACC,UAAU;EACV,iBAAiB;EACjB,eAA0B;EAC1B,iBAAiB;CAKjB;;AAHA;;CAND;EAOE,cAAc;EAEf;CADC;;AAGF;EACC,UAAU;EACV,kBAAkB;EAClB,mBAAmB;EACnB,SAAS;EACT,kBAAkB;EAClB,oBAAoB;EACpB,+BAA+B;EAC/B,WAAW;CAkBX;;AAhBA;GACC,sBAAsB;GACtB;;AAED;GACC,eAAgC;GAChC,mBAAmB;GACnB,YAAY;GACZ,aAAa;GACb,kBAAkB;GAClB,oBAAoB;GACpB;;AAED;;CAvBD;EAwBE,cAAc;EAEf;CADC;;AAGF;EACC,cAAc;EACd,oBAAoB;EACpB,iBAAiB;CAcjB;;AAbA;;CAJD;EAKE,cAAc;EAYf;CAXC;;AAED;GACC,sBAAsB;GACtB,aAAa;GACb,iBAAiB;CACjB;;AACD;GACC,eAAgC;CAChC;;AAIF;;CAEC;GACC,aAAa;GACb,sBAAsB;EACtB;CAED;;AAGA;;CADD;EAEE,WAAW;EAYZ;CAXC;;AACD;;CAJD;EAKE,QAAQ;EACR,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,OAAO;EAER;CADC;;AAID;;CADD;EAEE,WAAW;EAEZ;CADC;;AAEF;EACC,2CAA2C;CAC3C;;AAED,SAAS;;AACT;EACC,aAAa;EACb,QAAQ;CA8BR;;AA5BA;GACC,mBAAmB;GACnB,oBAAoB;GACpB,eAAe;GACf,mBAAmB;GACnB;;AAED;GACC,mBAAmB;GACnB,WAAW;GACX,SAAS;GACT;;AAED;GACC,YAAY;GACZ,QAAQ;GACR,gCAAgC;GAChC,6BAA6B;GAU7B;;AARA;IACC,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,aAAa;IACb,iBAAiB;IACjB,mBAAmB;IACnB;;AAKF;;CADD;EAEE,YAAY;EAYb;CAXC;;AACD;;CAJD;EAKE,SAAS;EACT,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,YAAY;EACZ,QAAQ;EAET;CADC;;AAMF;EACC,iBAAiB;EACjB;;AACD;;CAJD,YAUC;CALC;;AAED;CACC,cAAc;CACd;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CACjB,oBAAoB;CACpB,iFAAiF;CAkBjF;;AAhBA;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAMlB;;AALA;GACC,sBAAsB;GACtB,iBAAiB;GACjB,kBAAkB;GAClB;;AAIH,aAAa;;AACb;;CAEC;EACC,aAAa;EACb,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,0BAA0B;EAC1B;;CAED;;AChSD,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAGF;CACC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,QAAQ;CACR,gBAAgB;CAChB,SAAS;CACT,4BAA4B;CAC5B,aAAa;CACb,eAAe;CACf;;AAED;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED,oBAAoB;;AAEpB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,0BAA0B;CAC1B,oBAA6B;CAC7B,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,eAAe;CACf,iBAAiB;CAIjB;;AAHA;;CALD;EAME,kBAAkB;EAEnB;CADC;;AAGF,aAAa;;AAEb;CACC,aAAa;;CAMb;;AAJA;EACC,cAAc;EACd;;AAIF;;CAEC,cAAc;CACd;;AAIA;EACC,cAAc;EACd;;AAGF,iBAAiB;;AAEjB;CACC,oBAA6B;CAC7B,mBAAmB;CACnB,aAAc;CA2Bd;;AAzBA;CACC,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAED;EACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;EACC,iBAAiB;CACjB;;AAED;EACC,mBAAmB;EACnB,oBAAoB;EACpB,mBAAmB;CACnB;;AAID;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAmFvB;;AAjFA,gCAAgC;;AAChC;GACC,WAAW;GACX,SAAS;GACT,UAAU;GACV;;AAED,gBAAgB;;AAChB;GACC,mBAAmB;GACnB,gBAAgB;GAChB,OAAO;GACP,QAAQ;GACR,SAAS;GACT,UAAU;GACV,0BAAmC;GACnC,eAAgB;;GAoChB;;AAlCA;CACC,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,WAAW;CACX,UAAU;CACV,YAAY;CACZ,0BAAgC;CAChC,0BAAgC;CAChC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,WAAW;CACX,SAAS;CACT,mBAAmB;CACnB,0BAAqC;CACrC,wBAAuB;CACvB;;AAjCF,mCAmCC,qBAAqB;CASrB;;AARA;CACC,oBAAoB;CACpB,0BAAgC;CAIhC;;AAHA;CACA,mBAAmB;CAClB;;AAKH;GACC,oBAAqB;GACrB,qBAAuB;;GAmBvB;;AAlBA;CACC,iBAAiB;CACjB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,aAAa;CACb;;AAIF;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAQZ;;AAPA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AAGF;EACC,eAAe;EACf;;AAIF,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,sBAAsB;CAItB;;AAHA;;CAHD;EAIE,eAAe;EAEhB;CADC;;AAGF;CACC,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,sFAAsF;CACtF,qBAAqB;CAKrB;;AAHA;;CAdD;EAeE,YAAY;EAEb;CADC;;AAGF;CACC,cAAc;CACd,kBAAkB;CAClB,YAAY;CACZ;;AAIA;EACC,sBAAsB;EACtB;;AAED;EACC,WAAW;EACX,oBAAoB;EACpB,0FAA0F;EAC1F;;AAED;EACC,WAAW;EACX;;AAIF;;CAEC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,uBAAuB;CACvB;;ACzVD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CA8JnB;;AA5JA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAwBhB;;AAtBA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,oBAAqB;GACrB,eAAe;GACf,mBAAmB;GACnB,YAAY;GACZ,iBAAiB;GACjB,0BAA0B;GAC1B,sBAAsB;GACtB;;AAGF;;;;EAIC,iBAAiB;EACjB,wCAAwC;EACxC,0BAA2B;EAK3B;;AAHA;GACC,eAAgB;GAChB;;AAGF;EACC,eAAe;EACf,aAAa;EACb,mBAAmB;EAiDnB;;AA/CA;;;;GAIC,mBAAmB;GAOnB;;AANA;IACC,sBAAsB;IACtB,gBAAgB;IAChB,aAAa;IACb,2BAA2B;IAC3B;;AAGF;GACC,cAAc;GACd;;AAEA;IACC,YAAY;IACZ,eAAe;IACf,mBAAmB;IACnB,UAAU;IACV,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,0BAA0B;CAC1B;;AACD;IACC,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,cAAc;IACd,SAAS;IACT,UAAU;IACV,WAAW;IACX,iDAAiD;IACjD,aAAa;CASb;;AAPA;KACC,eAAe;KACf,gBAAgB;KAChB,oBAAoB;KACpB,iBAAiB;KACjB,mBAAmB;KACnB;;AAKJ;;CACC;GACC,cAAc;EACd;;CACD;GACC,cAAc;EACd;CACD;;AAED;EACC,eAAe;EACf,aAAa;CAIb;;AAHA;;CAHD;EAIE,cAAc;EAEf;CADC;;AAKD;CAEC,kBAAkB;CA8BlB;;AA5BA;IACC,eAAsB;IACtB,gBAAgB;IAChB,sBAAsB;IACtB,aAAa;IACb,qBAAqB;IACrB,YAAY;CACZ;;AAED;;CAbD;EAcE,mBAAmB;EACnB,aAAa;EACb,SAAS;EACT,gBAAgB;EAChB,iBAAiB;EACjB,sBAAsB;EACtB,WAAW;EAYZ;;CAVC;KACC,eAAsB;KACtB,gBAAgB;KAChB,sBAAsB;KACtB,aAAa;KACb,qBAAqB;KACrB,YAAY;EACZ;CACD;;AAOJ;;EAIE;EACA,iBAAiB;GAChB;;EAED;GACC,eAAe;GACf,WAAY;GA8BZ;;EA5BA;EACC,0BAA0B;EAC1B;;EAED;EACC,+BAA+B;EAC/B;;EAED;;EAEC,iBAAiB;EACjB,uBAAuB;EACvB;;EAOA;KACC,sBAAsB;KACtB,qBAAqB;EACrB;;EAGF;EACC,cAAc;EACd;;CAKH;;AAGD,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,cAAc;CAkGd;;AAhGA;;CACC;GACC,eAAe;GACf,2CAA2C;EAC3C;CACD;;AAED;;CAbD;EAcE,qBAAc;EAAd,cAAc;EACd,aAAa;EAuFd;CAtFC;;AAED;EACC,sBAAsB;EACtB,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;EACvB,eAAe;EACf,eAAqB;CA+CrB;;AA7CA;;CATD;EAUE,eAAe;EACf,aAAa;EACb,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EAwCzB;;CAtCC;IACC,eAAe;IACf,eAAe;EACf;CACD;;AAED;;CAtBD;EAuBE,cAAc;EACd,iBAAiB;EA8BlB;CA7BC;;AAGA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,oBAAmB;CACnB,eAAuB;CAOvB;;AALA;;CAXD;EAYE,WAAW;EACX,aAAa;EAGd;CAFC;;AAGF;;CAlBD;EAmBE,eAAc;EAEf;CADC;;AAGF;CACC,oBAAoB;CACpB,eAAuB;CACvB;;AAGF;EACC,eAAe;EACf,WAAW;EACX,oBAAoB;EACpB,iBAAiB;EACjB,oBAAoB;EACpB,kBAAkB;EAClB,iBAAiB;CAMjB;;AALA;;CARD;EASE,WAAW;EACX,YAAY;EACZ,iBAAiB;EAElB;CADC;;AAGF;;CAzFD;EA0FE,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,aAAa;EACb,iBAAiB;EAQlB;CANC;;AAED;EACC,QAAQ;EACR,YAAY;CACZ;;AAGF;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,qBAAc;CAAd,cAAc;CACd,aAAa;IACV,2BAAuB;QAAvB,uBAAuB;IACvB,gBAAgB;IAChB,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;CAC3B,qBAAsB;CAkBtB;;AAhBA;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;;CApBD;EAqBE,cAAc;EAOf;CANC;;AAED;EACC,YAAY;EACZ,QAAQ;CACR;;AAGF,oBAAoB;;AAEpB,mDAAmD;;AACnD;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,eAAgB;;CAEhB,gCAAgC;;CA2EhC;;AAvEC;GACC,kCAAgC;CAChC;;AAVH,2BAaC,iCAAiC;CAkEjC;;AA/DE;IACC,wBAA8D;CAC9D;;AAFD;IACC,wBAA8D;CAC9D;;AAFD;IACC,oCAA8D;CAC9D;;AAIH;EACC,cAAkB;EAClB,mBAAuB;EACvB,uBAAuB;EACvB,qBAAqB;EACrB,aAAa;CAkDb;;AAhDA;CACC,gBAAgB;CAChB;;AAED;GACC,cAAc;CAUd;;AARA;IACC,eAA0B;IAC1B,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,aAAiB;GACjB,WAAe;GACf,oCAA4C;CAC5C;;AAED;;CA/BD;EAgCE,YAAY;EACZ,gBAAgB;EAChB,qBAAqB;EAqBtB;;CAnBC;IACC,uBAAuB;IACvB,WAAW;IACX,aAAa;IACb,SAAS;IACT,4BAA4B;IAC5B,YAAgB;EAChB;;CAED;IACC,UAAU;EACV;;CAED;IACC,cAAc;EACd;CAED;;AAMH,yBAAyB;;AAEzB;IACI,YAAY;IACZ,iBAAiB;IACjB,wCAAsB;IACtB,iBAAiB;IACjB,YAAY;IACZ,aAAa;CAChB;;ACzbD,iDAAiD;;AAEjD;CACC,mBAAmB;CACnB,YAAY;CACZ,uBAAuB;CACvB,mBAAmB;;CAkGnB;;AAhGA;;CAND;EAOE,uBAAuB;EA+FxB;CA9FC;;AAED;;CAVD;EAWE,4BAA4B;EA2F7B;CA1FC;;AAED;;CAdD;EAeE,yBAAyB;EAuF1B;CAtFC;;AAED;EACC,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,SAAS;EACT,UAAU;CACV;;AAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,aAAa;EACb,0BAAmC;EACnC,uBAAuB;CA0CvB;;AAxCA;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB;;AAED;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,wBAAwB;GACxB,yBAAyB;GACzB,6BAA6B;GAC7B,uBAAuB;GACvB,6BAA6B;GAC7B,iBAAiB;GACjB,qCAAqC;CAarC;;AAXA;IACC,eAAe;IACf,UAAU;IACV,iBAAiB;IACjB,mBAAmB;IACnB,SAAS;IACT,UAAU;IACV,gCAAgC;IAChC,0BAAkB;OAAlB,uBAAkB;QAAlB,sBAAkB;YAAlB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,iCAAiC;GACjC,gBAAgB;GAChB,YAAY;GACZ,YAAY;CACZ;;AAGF;;;;EAEC,sBAAuB;CACvB;;AAED;CACC,4BAA6B;CAC7B;;AAED;EACC,mBAAmB;EACnB,WAAW;EACX,aAAa;EACb,UAAU;EACV,4BAA4B;EAC5B,cAAc;CACd;;AAIA;GACC,sBAAsB;CACtB;;AAMH;CACC,wBAAwB;IACrB,kBAAkB;IAClB,mBAAmB;CACtB,kBAAkB;CAClB,iBAAiB;IACd,qBAAc;IAAd,cAAc;CACjB,oBAAgB;KAAhB,gBAAgB;CAChB,mBAAmB;;CAOnB;;AALA;EACC,YAAY;EACZ,YAAY;EACZ;;AAIF;CACC,cAAc;CACd;;AAED;;CAEC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb,WAAW;CACX,0FAA0F;CAC1F,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,sBAAwB;KAAxB,wBAAwB;CACxB;;AAED;CACC,4FAA4F;CAC5F;;AAED;CACC,iBAAiB;CACjB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,yCAAyC;CACzC;;ACvJD,uBAAuB;;AAEvB,8BAA8B;;AAE9B;IACI,eAAgB;CACnB;;AAED,uBAAuB;;AAEvB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,sBAAsB;CACtB;;AAGD,wBAAwB;;AAExB;IACI,UAAU;IACV,cAAc;CACjB;;AAED;IACI,qBAAc;IAAd,cAAc;IACd,oBAAgB;QAAhB,gBAAgB;CACnB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;IACI,eAAW;QAAX,WAAW;IACX,YAAY;IACZ,cAAc;IACd,uBAAuB;IACvB,0BAA0B;CAC7B,kBAAkB;CAClB,oBAAoB;;CAsBpB;;AApBA;;CATD;EAUE,WAAW;EAmBZ;;CAjBC;GACC,YAAY;EACZ;CACD;;AAED;;CACC;GACC,WAAW;EACX;CACD;;AAED;;CACC;GACC,YAAY;EACZ;CACD;;AAIF;IACI,WAAW;CACd;;AAED,wCAAwC;;AACxC;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;;EAEC,YAAY;EACZ,YAAY;EACZ,UAAU;EACV;;CAED;;AAKA;EACC,cAAc;;EAcd;;AAZA;;CAHD;EAIE,cAAc;EAWf;CAVC;;AAED;GACC,UAAU;CACV;;AAED;GACC,iBAAiB;CACjB;;AAMH;CACC,aAAa;CACb,0BAA0B;CAC1B,wBAAwB;CACxB,gBAAgB;CAChB,mBAAmB;CACnB;;AAGA;EACC,0BAA0B;EAC1B,yBAAyB;EACzB,cAAc;EACd;;AAED;EACC,sCAAsC;EACtC;;AAED;EACC,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB;;AAED;EACC,gBAAgB;EAChB;;AAED;EACC,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,eAAe;EACf;;AAED;EACC,aAAa;EACb;;AAED;EACC,WAAW;EACX;;AAED;EACC,oBAAoB;EACpB,6BAA6B;EAK7B;;AAHA;GACC,YAAY;GACZ;;AAMH;CACC,cAAc;CACd;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC;;EAEC,eAAe;EA+Bf;;EA7BA;GACC,qBAAc;GAAd,cAAc;GACd,oBAAgB;OAAhB,gBAAgB;GAChB;;EAED;GACC,cAAe;GAsBf;;EApBA;EACC,YAAY;EACZ,oBAAoB;EACpB;;EAED;EACC,WAAW;EACX,uBAAuB;EACvB;;EAED;EACC,cAAc;EACd;;EAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAIH;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AC9OD,iBAAiB;;AAMf;GACC,sBAAsB;GACtB;;AAIF;;GAIE;IACC,eAAe;IACf;;GAED;IACC,yBAAyB;IACzB,uBAAuB;IACvB,sBAAuB;;IAMvB;;GAJA;EACC,eAAsB;EACtB;;GAQF;IACC,eAAe;IACf;;GAED;IACC,eAAe;IACf,uBAAuB;IACvB;;GAED;IACC,yBAAyB;IACzB;CAIF;;AAGA;GACC,iBAAiB;GACjB;;AACD;IAEE;KACC,yBAAyB;KACzB;CAEF;;AAIH;CACC,oBAAoB;CACpB;;AAED;;CAEC,cAAe;;CAaf;;AAXA;CACC,YAAY;CACZ,yBAAyB;CACzB,gBAAgB;CAChB,kBAAkB;CAClB,aAAa;CACb,YAAY;CACZ,cAAc;CACd,uBAAuB;CACvB;;AAIF;;IAEI,iBAAiB;IACjB,6BAA8B;CAIjC;;AAHA;EACC,sBAAsB;EACtB;;AAGF;IACI,iBAAiB;CACpB;;AAED;IACI,iBAAiB;CACpB;;AAED;IACI,cAAc;CACjB,2CAA4C;;CAO5C;;AALA;CACC,iBAAiB;CACjB,aAAa;CACb;;AAIF;IACI,cAAc;CACjB;;ACrHC;IACE,gBAAgB;IAChB,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,eAAY;GACb;;AAID;IACE,YAAY;IACZ,mBAAmB;IACnB,cAAc;IACd,kBAAkB;IAClB,iBAAiB;IACjB,oBAAoB;GACrB;;AAGH;EACE,aAAa;EACb,mBAAmB;EACnB,SAAS;CACV;;AAED;EACE,kBAAkB;EAClB,sBAAsB;EACtB,eAAe;EACf,mBAAmB;CACpB;;AAED;IACI,0BAA0B;IAC1B,YAAY;CACf;;AAED;IACI,eAAe;IACf,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,eAAe;IACf,iBAAiB;CACpB;;AAED;;;EAGE,uBAAuB;EACvB,UAAU;CACX;;AAED;EACE,gBAAgB;CACjB;;AAGD;EACE,kBAAkB;EAClB,qBAAqB;EACrB,eAAe;EACf,mBAAoB;CAKrB;;AAHC;CACE,cAAc;CACf;;AAMD;IACE,iBAAiB;GAClB","file":"wp-optimize-admin-3-0-12.min.css","sourcesContent":["/* COLORS */\n$wp-blue: #0272AA;\n$wp-gray-dark: #555d66;\n$wp-gray-darker: #191e23;\n$wp-secondary-gray: #72777C;\n$wp-secondary-gray-light: #82868B;\n$wp-light-gray: #B5B9BE;\n$wp-lighter-gray: #F2F4F5;\n$success: #009B24;\n$error: #9B3600;\n$red: #E07575;\n$brand: #E46B1F;\n$spacing: 20px; \n\n/* OTHER VARS */\n$breakpoint-small: 782px;\n\n@import \"admin.css\";\n\n@import \"scss/layout\";\n\n@import \"scss/common\";\n\n@import \"scss/menu-and-tabs\";\n\n@import \"scss/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";",".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}","body[class*=\"toplevel_page_WP-Optimize\"] #wpbody,\nbody[class*=\"wp-optimize_page_\"] #wpbody {\n\tpadding-right: 15px;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-right: 0;\n\t}\n}\n\nbody.toplevel_page_WP-Optimize.rtl #wpbody {\n\tpadding-left: 15px;\n\tpadding-right: 0;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 10px;\n\t}\n}\n\nbody[class*=\"toplevel_page_WP-Optimize\"] #wpbody-content,\nbody[class*=\"wp-optimize_page_\"] #wpbody-content {\n\tpadding-top: 80px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 0;\n\t}\t\n\n\t@media (min-width: 820px) {\n\t\tpadding-top: 100px;\n\t}\t\n}\n\n#wp-optimize-wrap {\n\tposition: relative;\n\tpadding-top: 20px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 110px;\n\t}\t\n\n\t@media(max-width: $breakpoint-small) {\n\t\tmargin-right: 0;\n\t}\n}\n\n/* DASHBOARD */\n\n.wpo-main-header {\n\n\theight: 77px;\n\tposition: fixed;\n\ttop: 32px;\n\tleft: 160px;\n\tbackground: #FFF;\n\tright: 0;\n\tz-index: 9980;\n\n\t@media (min-width: 820px) {\n\t\theight: 105px;\n\t}\t\n\n\t.wpo-logo__container {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tposition: relative;\n\t\theight: 100%;\n\t\tline-height: 1;\n\t\tfont-size: 1rem;\n\t\tpadding-left: 50px;\n\t\tmargin-left: 10px;\n\t}\n\n\t.wpo-logo {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\twidth: 50px;\n\t}\n\n\t.wpo-subheader {\n\t\tmargin: 0;\n\t\tfont-weight: 300;\n\t\tcolor: $wp-secondary-gray;\n\t\tline-height: 1.3;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links {\n\t\tmargin: 0;\n\t\tfont-size: 0.7rem;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tpadding: 6px 15px;\n\t\tbackground: #EDEEEF;\n\t\tborder-bottom-left-radius: 5px;\n\t\tz-index: 1;\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t\tposition: absolute;\n\t\t\tright: 100%;\n\t\t\twidth: 110px;\n\t\t\ttext-align: right;\n\t\t\tpadding-right: 10px;\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links__mobile {\n\t\tpadding: 10px;\n\t\tbackground: #EDEEEF;\n\t\tmargin-bottom: 0;\n\t\t@media (min-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: .8rem;\n\t\t}\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t}\n\n\t}\n\n\t@media (max-width: 600px) {\n\t\t\n\t\t.wpo-logo__container strong {\n\t\t\twidth: 140px;\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\tbody.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tleft: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tleft: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.auto-fold #screen-meta + #wp-optimize-wrap & {\n\t\t@media (max-width: 600px) {\n\t\t\ttop: 0;\n\t\t}\n\t}\n\n\tbody.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tleft: 36px;\n\t\t}\n\t}\n\tbody.is-scrolled & {\n\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t}\n\n\t/* RTL */\n\tbody.rtl & {\n\t\tright: 160px;\n\t\tleft: 0;\n\n\t\t.wpo-logo__container {\n\t\t\tpadding-left: 10px;\n\t\t\tpadding-right: 50px;\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t\n\t\t.wpo-logo {\n\t\t\tposition: absolute;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\t\n\n\t\tp.wpo-header-links {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t\tborder-bottom-right-radius: 5px;\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\n\t\t\t.wpo-header-links__label {\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 100%;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 110px;\n\t\t\t\ttext-align: left;\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\tbody.rtl.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tright: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tright: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.rtl.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tright: 36px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n}\n\n.wpo-page {\n\tbody.rtl & {\n\t\tpadding-right: 0;\n\t}\n\t@media (min-width: 769px) {\n\t}\n\n\t&:not(.active) {\n\t\tdisplay: none;\n\t}\n}\n\n.wpo-introduction-notice {\n\tpadding: 15px 20px;\n\tmargin-top: 30px;\n\tmargin-bottom: 30px;\n\tbackground: #FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%;\n\n\th3 {\n\t\tfont-size: 2em;\n\t}\n\n\tp:not(.font-size__normal) {\n\t\tfont-size: 1.2em;\n\t}\n\n\t.wpo-introduction-notice__footer-links {\n\t\tpadding-top: 20px;\n\t\t> a, > span {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 5px;\n\t\t\tmargin-right: 5px;\n\t\t}\n\t}\n}\n\n/* Columns */\n@media (min-width: 1200px) {\n\n\t.wpo-tab-postbox.right-col {\n\t\twidth: 350px;\n\t\tfloat: right;\n\t\tbox-sizing: border-box;\n\t\tmargin-top: 3.1rem;\n\t}\n\n\t.right-col + .wpo-main {\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\twidth: calc(100% - 380px);\n\t}\n\n}\n","/* Common BLOCKS */\n\n\n/* Buttons */\n\n#wp-optimize-wrap {\n\n\t.button-large {\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.red {\n\t\tcolor: $red;\n\t}\n\n\tdiv[id*=\"_notice\"] div.updated,\n\t> .notice {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n}\n\n.notice.notice-warning.wpo-warning {\n\tmargin-bottom: 18px;\n}\n\n.notice.notice-warning.wpo-warning p {\n\tpadding-left: 36px;\n\tposition: relative;\n}\n\n.notice.notice-warning.wpo-warning p > .dashicons {\n\tposition: absolute;\n\tleft: 0;\n\tfont-size: 26px;\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\theight: 26px;\n\tcolor: #FFB900;\n}\n\n.button.button-block {\n\tdisplay: block;\n\twidth: 100%;\n\ttext-align: center;\n}\n\n.wpo-refresh-button {\n\tfloat: right;\n}\n\n.wpo-refresh-button:hover {\n\tcursor: pointer;\n}\n\n.wpo-refresh-button .dashicons {\n\ttext-decoration: none;\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n/* Helper classes */\n\n*[class*=\"wpo-badge\"] {\n\tdisplay: inline-block;\n\tfont-size: .8em;\n\ttext-transform: uppercase;\n\tbackground: $wp-lighter-gray;\n\tpadding: 3px 5px;\n\tline-height: 1;\n\tborder-radius: 3px;\n}\n\n.wpo-badge__new {\n\tbackground: #DBE3E6;\n\tcolor: #00689a;\n}\n\n.wpo-first-child {\n\tmargin-top: 0;\n}\n\n#save_done, .save-done {\n\tcolor: $success;\n\tfont-size: 250%;\n}\n\np.wpo-take-a-backup {\n\tdisplay: inline-block;\n\tmargin: 0;\n\tline-height: 1;\n\tpadding-top: 8px;\n\t@media (min-width: $breakpoint-small) {\n\t\tmargin-left: 20px;\n\t}\n}\n\n/* Postbox */\n\n#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {\n\tborder: none;\n\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n\n}\n\n.wpo-p25,\n.postbox.wpo-tab-postbox {\n\tpadding: 25px;\n}\n\n.wpo-tab-postbox {\n\t\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n}\n\n/* Field group */\n\n.wpo-fieldgroup {\n\tbackground: $wp-lighter-gray;\n\tborder-radius: 8px;\n\tpadding: 20px;\n\n\t&:not(:last-child) {\n\t\tmargin-bottom: 2em;\n\t}\n\n\t> *:first-child {\n\t\tmargin-top: 0;\n\t}\n\t\n\t> *:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.premium-only {\n\t\tposition: relative;\n\t}\n\n\t.switch + label {\n\t\tfont-weight: 600;\n\t}\n\n\tcode {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\n}\n\n.wpo-fieldgroup__subgroup {\n\t&:not(:last-of-type) {\n\t\tmargin-bottom: 20px;\n\t}\n}\n\n/* The switches */\n#wp-optimize-wrap {\n\n\t.switch {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t\twidth: 38px;\n\t\theight: 18px;\n\t\tmargin-right: 6px;\n\t\tbox-sizing: border-box;\n\n\t\t/* Hide default HTML checkbox */\n\t\tinput {\n\t\t\topacity: 0;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t}\n\n\t\t/* The slider */\n\t\t.slider {\n\t\t\tposition: absolute;\n\t\t\tcursor: pointer;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tbackground-color: $wp-lighter-gray;\n\t\t\ttransition: .2s;\n\n\t\t\t&::before {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 8px;\n\t\t\t\twidth: 8px;\n\t\t\t\tleft: 2px;\n\t\t\t\tbottom: 2px;\n\t\t\t\tbackground-color: $wp-gray-dark;\n\t\t\t\tborder: 1px solid $wp-gray-dark;\n\t\t\t\ttransition: all .2s;\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 4px;\n\t\t\t\twidth: 3px;\n\t\t\t\tright: 4px;\n\t\t\t\ttop: 4px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tborder: 1px solid $wp-secondary-gray;\n\t\t\t\tbox-sizing: content-box\n\t\t\t}\n\n\t\t\t/* Rounded sliders */\n\t\t\t&.round {\n\t\t\t\tborder-radius: 23px;\n\t\t\t\tborder: 2px solid $wp-gray-dark;\n\t\t\t\t&::before {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tinput:checked + .slider {\n\t\t\tbackground: $wp-blue;\n\t\t\tborder-color: $wp-blue;\n\t\t\t&::before {\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder-color: #FFF;\n\t\t\t\ttransform: translateX(20px);\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 6px;\n\t\t\t\twidth: 2px;\n\t\t\t\tleft: 7px;\n\t\t\t\ttop: 4px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\n\t\tinput:focus + .slider {\n\t\t\tbox-shadow: 0 0 0 2px $wp-lighter-gray, 0 0 0 3px $wp-gray-dark;\n\t\t}\n\n\t}\n\n\t.switch-container {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tlabel {\n\t\t\tline-height: 1;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t& + small {\n\t\t\tmargin-left: 49px;\n\t\t}\n\t}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\n}\n\n/* Help popup */\n\n.wpo-info {\n\tposition: relative;\n\tdisplay: inline-block;\n\t@media (max-width:480px) {\n\t\tdisplay: block;\n\t}\n}\n\n.wpo-info__content {\n\topacity: 0;\n\tvisibility: hidden;\n\tposition: absolute;\n\ttop: 100%;\n\tleft: -25px;\n\tbackground: #FFF;\n\tpadding: 20px;\n\twidth: 380px;\n\tmax-width: 380px;\n\tz-index: 5;\n\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0), 0px 11px 25px 3000px rgba(0, 0, 0, 0);\n\ttransition: 0.2s all;\n\n\t@media (max-width:480px) {\n\t\twidth: auto;\n\t}\n}\n\nspan.wpo-info__close {\n\tdisplay: none;\n\tmargin-left: 20px;\n\tcolor: #444;\n}\n\n.wpo-info.opened {\n\n\tspan.wpo-info__close {\n\t\tdisplay: inline-block;\n\t}\n\n\t.wpo-info__content {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.3), 0px 11px 25px 3000px rgba(0, 0, 0, 0.3);\n\t}\n\n\ta.wpo-info__trigger {\n\t\tz-index: 6;\n\t}\n\t\n}\n\n.wpo-info__content img,\n.wpo-info__content iframe {\n\tmax-width: 100%;\n}\n\na.wpo-info__trigger {\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tpadding: 10px;\n\tposition: relative;\n\tbackground: #FFF;\n\tmargin-left: -10px;\n}\n\na.wpo-info__trigger span.dashicons {\n\ttext-decoration: none;\n\tvertical-align: middle;\n}","/* TABS */\n\n#wp-optimize-wrap h2.nav-tab-wrapper {\n margin-bottom: 0;\n\tborder-bottom: none;\n\tposition: relative;\n\t\n\t.nav-tab,\n\t.nav-tab:hover,\n\t.nav-tab:focus,\n\t.nav-tab:focus:active {\n\t\tborder: none;\n\t\tbackground: transparent;\n\t\tmargin: 0;\n\t\tborder-top: 3px solid transparent;\n\t\tpadding: 7px 15px;\n\t\tcolor: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0 auto;\n\t\t\tcolor: $wp-secondary-gray;\n\t\t\tfont-size: 30px;\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t}\n\t\t\n\t\tspan.premium-only {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 6px;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: 10px;\n\t\t\tbackground: $wp-blue;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tcolor: #FFF;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t}\t\t\n\t}\n\t\n\t.nav-tab-active,\n\t.nav-tab-active:hover,\n\t.nav-tab-active:focus,\n\t.nav-tab-active:focus:active {\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 0 1px rgba(0, 0, 0, 0.04);\n\t\tborder-top-color: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tcolor: $wp-blue;\n\t\t}\n\t}\n\n\t.wpo-feedback {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\tposition: relative;\n\n\t\t> .nav-tab,\n\t\t> .nav-tab:hover,\n\t\t> .nav-tab:focus,\n\t\t> .nav-tab:focus:active {\n\t\t\tposition: relative;\n\t\t\t.dashicons {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 18px;\n\t\t\t\ttransform: translateY(4px);\n\t\t\t}\n\t\t}\n\n\t\t> div {\n\t\t\tdisplay: none;\n\t\t}\n\t\t&:hover {\n\t\t\ta.nav-tab::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tright: 0;\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground-color: #0172aa;\n\t\t\t}\n\t\t\t> div {\n\t\t\t\tposition: absolute;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tpadding: 15px;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 100%;\n\t\t\t\tz-index: 4;\n\t\t\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.1);\n\t\t\t\twidth: 350px;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tpadding: 6px 3px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-feedback {\n\t\t\tdisplay: none;\n\t\t}\n\t\ta:not(.nav-tab-active) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t\n\ta[role=\"toggle-menu\"] {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\n\ta.nav-tab.wp-optimize-nav-tab__back {\n\t\t&, &:focus:active {\t\n\n\t\t\ttext-align: right;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: auto;\n\t\t\t\tline-height: inherit;\n\t\t\t\twidth: 20px;\n\t\t\t}\n\n\t\t\t@media (min-width: $breakpoint-small) {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 14px;\n\t\t\t\tright: 0;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tpadding: 0;\n\t\t\t\n\t\t\t\t.dashicons {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t\twidth: 20px;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t}\n\t\n\t}\n}\n\n@media (max-width: $breakpoint-small) {\n\n\t.wpo-mobile-menu-opened {\n\n\t\t.wpo-main .wpo-tab-postbox {\n\t\t//\tdisplay: none;\n\t\t}\n\n\t\th2.nav-tab-wrapper a {\n\t\t\tdisplay: block;\n\t\t\tfloat: none;\n\n\t\t\t&.nav-tab {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t&:not(.nav-tab-active) {\n\t\t\t\tbackground: #f9f9f9 !important;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus {\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-left: 3px solid;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus,\n\t\t\t&:focus,\n\t\t\t&:hover,\n\t\t\t& {\n\t\t\t\t.dashicons {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&[role=\"toggle-menu\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\n/* Pages MENU */\n\n.wpo-pages-menu {\n\tposition: absolute;\n\tbottom: 0;\n\tright: 0;\n\tdisplay: none;\n\n\t@media (max-width: 820px) {\n\t\t.opened + & {\n\t\t\tdisplay: block;\n\t\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t\t}\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: flex;\n\t\theight: 77px;\n\t}\n\n\t> a {\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\tcolor: inherit;\n\t\ttext-align: center;\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tcolor: $wp-gray-dark;\n\n\t\t@media (min-width: 821px) {\n\t\t\tpadding: 0 8px;\n\t\t\theight: 77px;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\n\t\t\t> span {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0 auto;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tpadding: 15px;\n\t\t\tfont-size: 1.2em;\n\t\t}\n\n\t\t&.active {\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 3px;\n\t\t\t\tbackground: $brand;\n\t\t\t\tcolor: $wp-gray-darker;\n\n\t\t\t\t@media (max-width: 820px) {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t@media (max-width: 820px) {\n\t\t\t\tcolor: $brand;\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground: #F9F9F9;\n\t\t\tcolor: $wp-gray-darker;\n\t\t}\n\t}\n\n\tspan.separator {\n\t\tdisplay: block;\n\t\twidth: 2px;\n\t\tbackground: #EFEFEF;\n\t\tmargin-top: 18px;\n\t\tmargin-bottom: 18px;\n\t\tmargin-right: 5px;\n\t\tmargin-left: 5px;\n\t\t@media (max-width: 820px) {\n\t\t\twidth: 80%;\n\t\t\theight: 2px;\n\t\t\tmargin: 10px 10%;\n\t\t}\n\t}\n\n\t@media (max-width: 820px) {\n\t\ttext-align: center;\n\t\ttop: 100%;\n\t\twidth: 100%;\n\t\tbottom: auto;\n\t\tbackground: #FFF;\t\t\n\n\t}\n\n\tbody.rtl & {\n\t\tleft: 0;\n\t\tright: auto;\n\t}\n}\n\n#wp-optimize-nav-page-menu {\n\tposition: absolute;\n\tright: 0;\n\tbottom: 0;\n\tdisplay: flex;\n\theight: 77px;\n flex-direction: column;\n padding: 0 20px;\n align-items: center;\n justify-content: center;\n\ttext-decoration: none;\n\n\t&:not(.opened) .dashicons-no-alt {\n\t\tdisplay: none;\n\t}\n\n\t&.opened .dashicons-menu {\n\t\tdisplay: none;\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: none;\n\t}\n\n\tbody.rtl & {\n\t\tright: auto;\n\t\tleft: 0;\n\t}\n}\n\n/* DASHBOARD Menu */\n\n/* Calculate column width with a $spacing gutter */\n.wpo-dashboard-pages-menu {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\n\t/* Same size for 1 to 3 items */\n\t&[data-itemscount=\"1\"],\n\t&[data-itemscount=\"2\"],\n\t&[data-itemscount=\"3\"] {\n\t\t.wpo-dashboard-pages-menu__item {\n\t\t\twidth: calc(33.333% - 40px / 3);\n\t\t}\n\t}\n\n\t/* above 3 items, change sizes */\n\t@for $count from 4 to 6 {\n\t\t&[data-itemscount=\"$count\"] {\n\t\t\t.wpo-dashboard-pages-menu__item {\n\t\t\t\twidth: calc(100% / $count - $spacing * ($count - 1) / $count);\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox.wpo-dashboard-pages-menu__item {\n\t\tpadding: $spacing;\n\t\tmargin-right: $spacing;\n\t\tbox-sizing: border-box;\n\t\tpadding-bottom: 60px;\n\t\tmin-width: 0;\n\t\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\t\n\t\th3 {\n\t\t\tmargin-top: 0;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-secondary-gray;\n\t\t\t\tline-height: 1;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-right: 10px\n\t\t\t}\n\n\t\t}\n\n\t\ta {\n\t\t\tposition: absolute;\n\t\t\tbottom: $spacing;\n\t\t\tleft: $spacing;\n\t\t\twidth: calc(100% - $spacing * 2) !important;\n\t\t}\n\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\twidth: 100%;\n\t\t\tmargin-right: 0;\n\t\t\tpadding-bottom: 20px;\n\n\t\t\ta.button.button-large {\n\t\t\t\twidth: auto !important;\n\t\t\t\tleft: auto;\n\t\t\t\tbottom: auto;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tright: $spacing;\n\t\t\t}\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\t\n\t}\n\n}\n\n/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n height: 2px;\n line-height: 2px;\n background: #ffffff17;\n margin: 5px 10px;\n width: auto;\n min-width: 0;\n}","/* Unused images / wpo_smush_image / image grid*/\n\n.wpo_unused_image, .wpo_smush_image {\n\tposition: relative;\n\tmargin: 4px;\n\twidth: calc(50% - 8px);\n\ttext-align: center;\n\n\t@media (min-width: 500px) {\n\t\twidth: calc(25% - 8px);\n\t}\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: calc(16.6666% - 8px);\n\t}\n\n\t@media (min-width: 1100px) {\n\t\twidth: calc(12.5% - 8px);\n\t}\n\n\t.wpo_unused_image__input {\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\topacity: 0;\n\t\twidth: 0;\n\t\theight: 0;\n\t}\n\t\n\tlabel {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tpadding: 1px;\n\t\tborder: 3px solid $wp-lighter-gray;\n\t\tbox-sizing: border-box;\n\n\t\t&::before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tpadding-top: 100%;\n\t\t}\n\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 1px;\n\t\t\tleft: 1px;\n\t\t\twidth: calc(100% - 2px);\n\t\t\theight: calc(100% - 2px);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: cover;\n\t\t\tbackground-position: 50% 50%;\n\t\t\toverflow: hidden;\n\t\t\tbackground: rgba(220, 220, 220, 0.2);\n\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tmax-height: 100%;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%,-50%);\n\t\t\t\tuser-select: none;\n\t\t\t}\n\n\t\t}\n\n\t\tspan.dashicons {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tfont-size: 25px;\n\t\t\twidth: 25px;\n\t\t\topacity: .2;\n\t\t}\n\t}\n\t\n\t.wpo_unused_image__input:checked + label,\n\t&.selected label {\n\t\tborder-color: $wp-blue;\n\t}\n\n\t&:focus-within label {\n\t\tbox-shadow: 0 0 4px $wp-blue;\n\t}\n\t\n\ta, a.button, a.button:active {\n\t\tposition: absolute;\n\t\tz-index: 2;\n\t\tbottom: 13px;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\tdisplay: none;\n\t}\n\n\t&:hover {\n\n\t\ta, a.button, a.button:active {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\twidth: calc(100% + 8px);\n margin-left: -4px;\n margin-right: -4px;\n\tmax-height: 500px;\n\toverflow-y: auto;\n display: flex;\n\tflex-wrap: wrap;\n\tposition: relative;\n\n\t.wpo-fieldgroup {\n\t\twidth: 100%;\n\t\tmargin: 4px;\n\t}\n\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n.wpo-unused-images__premium-mask,\n.wpo-unused-image-sizes__premium-mask {\n\tposition: absolute;\n\ttop: 0; \n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1;\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n.wpo-unused-image-sizes__premium-mask {\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.85));\n}\n\na.wpo-unused-images__premium-link {\n\tbackground: #FFF;\n\tdisplay: inline-block;\n\tpadding: 10px;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n}\n","/* More Plugins page */\n\n/* Plugins family / Premium */\n\np.wpo-plugin-installed {\n color: $success;\n}\n\n/* Settings repeater */\n\n.wpo-repeater__add {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\ttext-decoration: none;\n}\n\n\n/* Plugin familly tab */\n\n.wpo-plugin-family__premium h2 {\n margin: 0;\n padding: 25px;\n}\n\n.wpo-plugin-family__plugins {\n display: flex;\n flex-wrap: wrap;\n\tpadding-left: 1px;\n\tpadding-bottom: 1px;\n}\n\n.wpo-plugin-family__plugin {\n flex: auto;\n width: 100%;\n padding: 30px;\n box-sizing: border-box;\n border: 1px solid #E3E4E7;\n\tmargin-left: -1px;\n\tmargin-bottom: -1px;\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: 50%;\n\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t@media (max-width: 1080px) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 50%;\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n}\n\ndiv#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox {\n padding: 0;\n}\n\n/* Added for WPO Premium Features tab */\n.wpo_feature_cont {\n\twidth: 64.5%;\n}\n\n.wpo_plugin_family_cont {\n\twidth: 34.5%;\n}\n\n@media (max-width: 1080px) {\n\n\t.wpo_feature_cont,\n\t.wpo_plugin_family_cont {\n\t\twidth: 100%;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t}\n\n}\n\n.wpo_feature_cont,\n.wpo_plugin_family_cont {\n\n\theader {\n\t\tpadding: 20px;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tpadding: 40px;\t\t\n\t\t}\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t}\n\t\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}\n\n.wpo_feat_table, .wpo_feat_th, .wpo_feat_table td {\n\tborder: none;\n\tborder-collapse: collapse;\n\tbackground-color: white;\n\tfont-size: 120%;\n\ttext-align: center;\n}\n\n.wpo_feat_table {\n\ttd {\n\t\tborder: 1px solid #F1F1F1;\n\t\tborder-bottom-width: 4px;\n\t\tpadding: 15px;\n\t}\n\n\ttd:nth-child(2), td:nth-child(3) {\n\t\tbackground: rgba(241, 241, 241, 0.38);\n\t}\n\n\tp {\n\t\tpadding: 0px 10px;\n\t\tmargin: 5px 0px;\n\t\tfont-size: 13px;\n\t}\n\n\th4 {\n\t\tmargin: 5px 0px;\n\t}\n\n\t.dashicons {\n\t\twidth: 25px;\n\t\theight: 25px;\n\t\tfont-size: 25px;\n\t\tline-height: 1;\n\t}\n\n\t.dashicons-yes, .updraft-yes {\n\t\tcolor: green;\n\t}\n\t\n\t.dashicons-no-alt, .updraft-no {\n\t\tcolor: red;\n\t}\n\t\n\ttr.wpo-main-feature-row td {\n\t\tbackground: #f1f1f1;\n\t\tborder-bottom-color: #fafafa;\n\n\t\timg.wpo-premium-image {\n\t\t\twidth: 64px;\n\t\t}\n\t}\n}\n\n\n\n.wpo-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t#wpoptimize_table_list_filter {\n\t\twidth: 40%;\n\t}\n\n\t.wpo-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding: 16px 18px;\n\t\twidth: 30px;\n\t\theight: auto;\n\t}\n\n}\n\n@media screen and (min-width: 1220px) {\n\n\t.wpo_feat_table td:nth-child(2), .wpo_feat_table td:nth-child(3) {\n\t\twidth: 110px;\n\t}\n\n}\n\n.other-plugin-title {\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: $breakpoint-small) {\n\n\ttable.wpo_feat_table {\n\n\t\tdisplay: block;\n\n\t\ttr {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t}\n\n\t\ttd {\n\t\t\tdisplay: block;\n\n\t\t\t&:first-child {\n\t\t\t\twidth: 100%;\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&:not(:first-child) {\n\t\t\t\twidth: 50%;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\n\t\t\t&:first-child:empty {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t&[data-colname]::before {\n\t\t\t\tcontent: attr(data-colname);\n\t\t\t\tfont-size: 0.8rem;\n\t\t\t\tcolor: #CCC;\n\t\t\t\tline-height: 1;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.wpo-cache-feature-image {\n\twidth: 40px;\n\tpadding: 16px 14px;\n}\n","\n/* tablesorter */\n\n#wp-optimize-wrap {\n\n\t.wp-list-table {\n\t\t\n\t\ttd {\n\t\t\tword-break: break-all; \n\t\t}\n\n\t}\n\n\t@media screen and (max-width: $breakpoint-small ) {\n\n\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\n\t\t\t&, tr, th, td {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\ttd {\n\t\t\t\tpadding: 3px 8px 3px 35%;\n\t\t\t\tword-break: break-word;\n\t\t\t\tbox-sizing: border-box; \n\n\t\t\t\t&::before {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\t\t\n\n\t\t.wp-list-table.wp-list-table-mobile-labels thead {\n\n\t\t\t&, tr {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\tth.column-primary {\n\t\t\t\tdisplay: block;\n\t\t\t\tbox-sizing: border-box; \n\t\t\t}\n\n\t\t\tth:not(.column-primary) {\n\t\t\t\tdisplay: none !important; \n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tbody.rtl & {\n\t\t.wpo-table-list-filter {\n\t\t\ttext-align: left;\n\t\t}\n\t\t@media screen and (max-width: $breakpoint-small ) {\n\t\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\t\t\t\ttd {\n\t\t\t\t\tpadding: 3px 35% 3px 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.tablesorter-headerRow th {\n\tvertical-align: top;\n}\n\nth:not(.sorter-false) .tablesorter-header-inner {\n\n\tcolor: #0074ab;\n\n\t&::after {\n\t\tcontent: '';\n\t\tfont-family: 'dashicons';\n\t\tfont-size: 20px;\n\t\tline-height: 20px;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tdisplay: none;\n\t\tvertical-align: bottom;\n\t}\n\n}\n\nth.tablesorter-header.tablesorter-headerAsc,\nth.tablesorter-header.tablesorter-headerDesc {\n font-weight: 500;\n border-bottom-color: $wp-blue;\n\t.tablesorter-header-inner::after {\n\t\tdisplay: inline-block;\n\t}\n}\n\nth.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {\n content: \"\\f140\";\n}\n\nth.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {\n content: \"\\f142\";\n}\n\nth.tablesorter-header:focus {\n outline: none;\n\tbox-shadow: 0 0 3px rgba(0, 116, 171, 0.78);\n\n\t&:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after {\n\t\tcontent: \"\\f142\";\n\t\topacity: 0.5;\n\t}\n\n}\n\n.tablesorter.hasFilters tr.filtered {\n display: none;\n}\n",".wpo-text__dim {\n .dashicons-info {\n margin-top: 2px;\n margin-right: 5px;\n border-radius: 30px;\n background: #fff;\n color: $red;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents {\n textarea {\n width: 100%;\n border-radius: 5px;\n height: 100px;\n min-height: 100px;\n margin-top: 10px;\n margin-bottom: 10px;\n }\n}\n\n#page_cache_length_value {\n height: 28px;\n position: relative;\n top: 2px;\n}\n\n#wp_optimize_preload_cache_status {\n margin-left: 10px;\n display: inline-block;\n color: #82868B;\n font-size: smaller;\n}\n\n.align-left {\n margin: 10px 10px 0px 0px;\n float: left;\n}\n\ntextarea.cache-settings {\n display: block;\n clear: both;\n min-height: 225px;\n overflow: scroll;\n min-width: 75%;\n margin: 10px 0px;\n}\n\n#wp-optimize-purge-cache, \n#wp-optimize-purge-cache ~ span, \n#wp-optimize-purge-cache ~ img {\n vertical-align: middle;\n top: auto;\n}\n\n#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error {\n font-size: 12px;\n}\n\n\n#wpo_browser_cache_error_message {\n padding-top: 10px;\n padding-bottom: 10px;\n margin-left: 0;\n margin-bottom: 10px;\n \n &:empty {\n display: none;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents,\n#wp-optimize-nav-tab-wpo_cache-preload-contents,\n#wp-optimize-nav-tab-wpo_cache-cache-contents {\n label {\n font-weight: 600;\n }\n}"]}
|
@@ -528,10 +528,12 @@ div#wpoptimize_table_list_tables_not_found + h3 {
|
|
528 |
}
|
529 |
|
530 |
#wpo_browser_cache_output,
|
531 |
-
#wpo_gzip_compression_output
|
|
|
532 |
background: #F0F0F0;
|
533 |
padding: 10px;
|
534 |
border: 1px solid #CCC;
|
|
|
535 |
}
|
536 |
|
537 |
#wpo_gzip_compression_error_message,
|
@@ -945,6 +947,25 @@ body.rtl .wpo-page {
|
|
945 |
margin-right: 0;
|
946 |
}
|
947 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
948 |
.button.button-block {
|
949 |
display: block;
|
950 |
width: 100%;
|
@@ -961,8 +982,8 @@ body.rtl .wpo-page {
|
|
961 |
|
962 |
.wpo-refresh-button .dashicons {
|
963 |
text-decoration: none;
|
964 |
-
|
965 |
-
|
966 |
}
|
967 |
|
968 |
/* Helper classes */
|
@@ -1008,7 +1029,7 @@ p.wpo-take-a-backup {
|
|
1008 |
/* Postbox */
|
1009 |
|
1010 |
#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {
|
1011 |
-
|
1012 |
|
1013 |
}
|
1014 |
|
@@ -1028,8 +1049,8 @@ p.wpo-take-a-backup {
|
|
1028 |
/* Field group */
|
1029 |
|
1030 |
.wpo-fieldgroup {
|
1031 |
-
|
1032 |
-
|
1033 |
padding: 20px
|
1034 |
}
|
1035 |
|
528 |
}
|
529 |
|
530 |
#wpo_browser_cache_output,
|
531 |
+
#wpo_gzip_compression_output,
|
532 |
+
#wpo_advanced_cache_output {
|
533 |
background: #F0F0F0;
|
534 |
padding: 10px;
|
535 |
border: 1px solid #CCC;
|
536 |
+
white-space: pre-wrap;
|
537 |
}
|
538 |
|
539 |
#wpo_gzip_compression_error_message,
|
947 |
margin-right: 0;
|
948 |
}
|
949 |
|
950 |
+
.notice.notice-warning.wpo-warning {
|
951 |
+
margin-bottom: 18px;
|
952 |
+
}
|
953 |
+
|
954 |
+
.notice.notice-warning.wpo-warning p {
|
955 |
+
padding-left: 36px;
|
956 |
+
position: relative;
|
957 |
+
}
|
958 |
+
|
959 |
+
.notice.notice-warning.wpo-warning p > .dashicons {
|
960 |
+
position: absolute;
|
961 |
+
left: 0;
|
962 |
+
font-size: 26px;
|
963 |
+
top: 50%;
|
964 |
+
transform: translateY(-50%);
|
965 |
+
height: 26px;
|
966 |
+
color: #FFB900;
|
967 |
+
}
|
968 |
+
|
969 |
.button.button-block {
|
970 |
display: block;
|
971 |
width: 100%;
|
982 |
|
983 |
.wpo-refresh-button .dashicons {
|
984 |
text-decoration: none;
|
985 |
+
line-height: inherit;
|
986 |
+
font-size: inherit;
|
987 |
}
|
988 |
|
989 |
/* Helper classes */
|
1029 |
/* Postbox */
|
1030 |
|
1031 |
#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {
|
1032 |
+
border: none;
|
1033 |
|
1034 |
}
|
1035 |
|
1049 |
/* Field group */
|
1050 |
|
1051 |
.wpo-fieldgroup {
|
1052 |
+
background: #F2F4F5;
|
1053 |
+
border-radius: 8px;
|
1054 |
padding: 20px
|
1055 |
}
|
1056 |
|
@@ -1,2 +1,2 @@
|
|
1 |
.updraft-ad-container.updated,.updraft-ad-container{margin-left:0;margin-right:0;position:relative;padding-right:80px}body[class*=WP-Optimize] .notice,body[class*=wp-optimize] .notice{margin-left:0;margin-right:0}.toplevel_page_WP-Optimize.rtl .notice,.toplevel_page_WP-Optimize.rtl div.updated,.toplevel_page_WP-Optimize.rtl div.error,.toplevel_page_WP-Optimize .notice,.toplevel_page_WP-Optimize div.updated,.toplevel_page_WP-Optimize div.error{margin-right:0}body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:80px}.updraft_notice_container{padding:7px;display:-ms-flexbox;display:flex;-ms-flex-align:left;align-items:left;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:#FFF;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{position:absolute;font-size:13px;top:5px;right:10px}body.rtl .updraft-advert-dismiss{left:10px;right:auto}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-bottom:20px}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}}@media screen and (max-width:560px){body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:10px}}@media screen and (max-width:768px){.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-right:0}}
|
2 |
-
/*# sourceMappingURL=wp-optimize-notices-3-0-
|
1 |
.updraft-ad-container.updated,.updraft-ad-container{margin-left:0;margin-right:0;position:relative;padding-right:80px}body[class*=WP-Optimize] .notice,body[class*=wp-optimize] .notice{margin-left:0;margin-right:0}.toplevel_page_WP-Optimize.rtl .notice,.toplevel_page_WP-Optimize.rtl div.updated,.toplevel_page_WP-Optimize.rtl div.error,.toplevel_page_WP-Optimize .notice,.toplevel_page_WP-Optimize div.updated,.toplevel_page_WP-Optimize div.error{margin-right:0}body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:80px}.updraft_notice_container{padding:7px;display:-ms-flexbox;display:flex;-ms-flex-align:left;align-items:left;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:#FFF;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft-advert-dismiss{position:absolute;font-size:13px;top:5px;right:10px}body.rtl .updraft-advert-dismiss{left:10px;right:auto}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-bottom:20px}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}}@media screen and (max-width:560px){body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:10px}}@media screen and (max-width:768px){.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-right:0}}
|
2 |
+
/*# sourceMappingURL=wp-optimize-notices-3-0-12.min.css.map */
|
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["css/wp-optimize-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAE/C;;CAEC,eAAe;CACf,gBAAgB;CAChB;;AAED;;;;;;CAMC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CAEb,qBAAqB;CACrB,cAAc;CAEd,qBAAqB;CACrB,kBAAkB;CAClB,2BAAuB;KAAvB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,SAAS;CACT,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,oBAAoB;CACpB;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED","file":"wp-optimize-notices-3-0-
|
1 |
+
{"version":3,"sources":["css/wp-optimize-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAE/C;;CAEC,eAAe;CACf,gBAAgB;CAChB;;AAED;;;;;;CAMC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CAEb,qBAAqB;CACrB,cAAc;CAEd,qBAAqB;CACrB,kBAAkB;CAClB,2BAAuB;KAAvB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,SAAS;CACT,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,oBAAoB;CACpB;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED","file":"wp-optimize-notices-3-0-12.min.css","sourcesContent":["/* CSS for adverts */\n\n.updraft-ad-container.updated,\n.updraft-ad-container {\n\tmargin-left: 0px;\n\tmargin-right: 0px;\n\tposition: relative;\n\tpadding-right: 80px;\n}\n\n/* General notices (non WPO) on the WPO page */\n\nbody[class*=WP-Optimize] .notice,\nbody[class*=wp-optimize] .notice {\n\tmargin-left: 0;\n\tmargin-right: 0;\n}\n\n.toplevel_page_WP-Optimize.rtl .notice,\n.toplevel_page_WP-Optimize.rtl div.updated,\n.toplevel_page_WP-Optimize.rtl div.error,\n.toplevel_page_WP-Optimize .notice,\n.toplevel_page_WP-Optimize div.updated,\n.toplevel_page_WP-Optimize div.error {\n\tmargin-right: 0;\n}\n\nbody.rtl .updraft-ad-container.updated,\nbody.rtl .updraft-ad-container {\n\tpadding-right: 10px;\n\tpadding-left: 80px;\n}\n\n.updraft_notice_container {\n\tpadding: 7px;\n\tdisplay: -webkit-box;\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-webkit-box-align: left;\n\t-ms-flex-align: left;\n\talign-items: left;\n\tflex-direction: column;\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: #FFF;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft-advert-dismiss {\n\tposition: absolute;\n\tfont-size: 13px;\n\ttop: 5px;\n\tright: 10px;\n}\n\nbody.rtl .updraft-advert-dismiss {\n\tleft: 10px;\n\tright: auto;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n.wpo-main-header + .updraft-ad-container,\n.wpo-main-header + .updated {\n\tmargin-bottom: 20px;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_notice_container {\n\t\tflex-direction: row;\n\t\t-webkit-box-align: center;\n\t\t-ms-flex-align: center;\n\t\talign-items: center;\n\t}\n\n}\n\n@media screen and (max-width: 560px) {\n\n\tbody.rtl .updraft-ad-container.updated,\n\tbody.rtl .updraft-ad-container {\n\t\tpadding-right: 10px;\n\t\tpadding-left: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo-main-header + .updraft-ad-container,\n\t.wpo-main-header + .updated {\n\t\tmargin-right: 0;\n\t}\n\n}\n\n"]}
|
@@ -405,7 +405,6 @@ class WP_Optimize_Commands {
|
|
405 |
$settings = json_decode($params['settings'], true);
|
406 |
|
407 |
// check if valid json file posted (requires PHP 5.3+)
|
408 |
-
// @codingStandardsIgnoreLine
|
409 |
if ((function_exists('json_last_error') && 0 != json_last_error()) || empty($settings)) {
|
410 |
return array('errors' => array(__('Please upload a valid settings file.', 'wp-optimize')));
|
411 |
}
|
405 |
$settings = json_decode($params['settings'], true);
|
406 |
|
407 |
// check if valid json file posted (requires PHP 5.3+)
|
|
|
408 |
if ((function_exists('json_last_error') && 0 != json_last_error()) || empty($settings)) {
|
409 |
return array('errors' => array(__('Please upload a valid settings file.', 'wp-optimize')));
|
410 |
}
|
@@ -155,8 +155,7 @@ abstract class Updraft_Abstract_Logger implements Updraft_Logger_Interface {
|
|
155 |
*
|
156 |
* @return mixed
|
157 |
*/
|
158 |
-
|
159 |
-
abstract function get_description();
|
160 |
|
161 |
/**
|
162 |
* For the Logger: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
|
155 |
*
|
156 |
* @return mixed
|
157 |
*/
|
158 |
+
public abstract function get_description();
|
|
|
159 |
|
160 |
/**
|
161 |
* For the Logger: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
|
@@ -134,7 +134,6 @@ class Updraft_File_Logger extends Updraft_Abstract_Logger {
|
|
134 |
|
135 |
$message = sprintf("[%s : %s] - %s \n", date("Y-m-d H:i:s"), Updraft_Log_Levels::to_text($level), $this->interpolate($message, $context));
|
136 |
|
137 |
-
// @codingStandardsIgnoreLine
|
138 |
if (false == file_put_contents($this->logfile, $message, FILE_APPEND)) {
|
139 |
error_log($message);
|
140 |
}
|
@@ -152,7 +151,7 @@ class Updraft_File_Logger extends Updraft_Abstract_Logger {
|
|
152 |
$how_old = "5 days ago";
|
153 |
}
|
154 |
|
155 |
-
//
|
156 |
|
157 |
// We ignore a few lines here to avoid warnings on file operations
|
158 |
// WP.VIP does not like us writing directly to the filesystem
|
@@ -172,6 +171,6 @@ class Updraft_File_Logger extends Updraft_Abstract_Logger {
|
|
172 |
fclose($temp_file);
|
173 |
|
174 |
return rename(preg_replace("/\.log$/", "-temp.log", $this->logfile), $this->logfile);
|
175 |
-
//
|
176 |
}
|
177 |
}
|
134 |
|
135 |
$message = sprintf("[%s : %s] - %s \n", date("Y-m-d H:i:s"), Updraft_Log_Levels::to_text($level), $this->interpolate($message, $context));
|
136 |
|
|
|
137 |
if (false == file_put_contents($this->logfile, $message, FILE_APPEND)) {
|
138 |
error_log($message);
|
139 |
}
|
151 |
$how_old = "5 days ago";
|
152 |
}
|
153 |
|
154 |
+
// phpcs:disable
|
155 |
|
156 |
// We ignore a few lines here to avoid warnings on file operations
|
157 |
// WP.VIP does not like us writing directly to the filesystem
|
171 |
fclose($temp_file);
|
172 |
|
173 |
return rename(preg_replace("/\.log$/", "-temp.log", $this->logfile), $this->logfile);
|
174 |
+
// phpcs:enable
|
175 |
}
|
176 |
}
|
@@ -117,6 +117,7 @@ class Nitro_Smush_Task extends Updraft_Smush_Task {
|
|
117 |
* @param String $response - The response object
|
118 |
*/
|
119 |
public function process_server_response($response) {
|
|
|
120 |
|
121 |
$response = parent::process_server_response($response);
|
122 |
$data = json_decode(wp_remote_retrieve_body($response));
|
@@ -131,12 +132,22 @@ class Nitro_Smush_Task extends Updraft_Smush_Task {
|
|
131 |
return false;
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
$compressed_image = file_get_contents($data->result_file);
|
135 |
|
136 |
if ($compressed_image) {
|
137 |
return $compressed_image;
|
138 |
} else {
|
139 |
-
$this->fail("invalid_response", "The
|
|
|
|
|
|
|
|
|
140 |
return false;
|
141 |
}
|
142 |
}
|
117 |
* @param String $response - The response object
|
118 |
*/
|
119 |
public function process_server_response($response) {
|
120 |
+
global $http_response_header;
|
121 |
|
122 |
$response = parent::process_server_response($response);
|
123 |
$data = json_decode(wp_remote_retrieve_body($response));
|
132 |
return false;
|
133 |
}
|
134 |
|
135 |
+
if (!property_exists($data, 'result_file')) {
|
136 |
+
$this->fail("invalid_response", "The response does not contain the compressed file URL");
|
137 |
+
$this->log("data: ".json_encode($data));
|
138 |
+
return false;
|
139 |
+
}
|
140 |
+
|
141 |
$compressed_image = file_get_contents($data->result_file);
|
142 |
|
143 |
if ($compressed_image) {
|
144 |
return $compressed_image;
|
145 |
} else {
|
146 |
+
$this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
|
147 |
+
$this->log("data: ".json_encode($data));
|
148 |
+
if (!empty($http_response_header) && is_array($http_response_header)) {
|
149 |
+
$this->log("headers: ".implode("\n", $http_response_header));
|
150 |
+
}
|
151 |
return false;
|
152 |
}
|
153 |
}
|
@@ -128,6 +128,7 @@ class Re_Smush_It_Task extends Updraft_Smush_Task {
|
|
128 |
* @param String $response - The response object
|
129 |
*/
|
130 |
public function process_server_response($response) {
|
|
|
131 |
|
132 |
$response = parent::process_server_response($response);
|
133 |
$data = json_decode(wp_remote_retrieve_body($response));
|
@@ -142,12 +143,22 @@ class Re_Smush_It_Task extends Updraft_Smush_Task {
|
|
142 |
return false;
|
143 |
}
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
$compressed_image = file_get_contents($data->dest);
|
146 |
|
147 |
if ($compressed_image) {
|
148 |
return $compressed_image;
|
149 |
} else {
|
150 |
-
$this->fail("invalid_response", "The
|
|
|
|
|
|
|
|
|
151 |
return false;
|
152 |
}
|
153 |
}
|
128 |
* @param String $response - The response object
|
129 |
*/
|
130 |
public function process_server_response($response) {
|
131 |
+
global $http_response_header;
|
132 |
|
133 |
$response = parent::process_server_response($response);
|
134 |
$data = json_decode(wp_remote_retrieve_body($response));
|
143 |
return false;
|
144 |
}
|
145 |
|
146 |
+
if (!property_exists($data, 'dest')) {
|
147 |
+
$this->fail("invalid_response", "The response does not contain the compressed file URL");
|
148 |
+
$this->log("data: ".json_encode($data));
|
149 |
+
return false;
|
150 |
+
}
|
151 |
+
|
152 |
$compressed_image = file_get_contents($data->dest);
|
153 |
|
154 |
if ($compressed_image) {
|
155 |
return $compressed_image;
|
156 |
} else {
|
157 |
+
$this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
|
158 |
+
$this->log("data: ".json_encode($data));
|
159 |
+
if (!empty($http_response_header) && is_array($http_response_header)) {
|
160 |
+
$this->log("headers: ".implode("\n", $http_response_header));
|
161 |
+
}
|
162 |
return false;
|
163 |
}
|
164 |
}
|
@@ -38,6 +38,8 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
|
|
38 |
'clear_smush_stats',
|
39 |
'check_server_status',
|
40 |
'get_smush_logs',
|
|
|
|
|
41 |
);
|
42 |
|
43 |
return array_merge($commands, $smush_commands);
|
@@ -187,6 +189,8 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
|
|
187 |
$options['compression_server'] = filter_var($data['compression_server'], FILTER_SANITIZE_STRING);
|
188 |
$options['lossy_compression'] = filter_var($data['lossy_compression'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
189 |
$options['back_up_original'] = filter_var($data['back_up_original'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
|
|
|
|
190 |
$options['preserve_exif'] = filter_var($data['preserve_exif'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
191 |
$options['autosmush'] = filter_var($data['autosmush'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
192 |
$options['image_quality'] = filter_var($data['image_quality'], FILTER_SANITIZE_NUMBER_INT);
|
@@ -267,6 +271,57 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
|
|
267 |
return $response;
|
268 |
}
|
269 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
/**
|
271 |
* Returns the log file
|
272 |
*
|
@@ -288,7 +343,6 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
|
|
288 |
header('Cache-Control: must-revalidate');
|
289 |
header('Pragma: public');
|
290 |
header('Content-Length: ' . filesize($logfile));
|
291 |
-
//@codingStandardsIgnoreLine
|
292 |
readfile($logfile);
|
293 |
exit;
|
294 |
} else {
|
@@ -298,6 +352,22 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
|
|
298 |
return $response;
|
299 |
}
|
300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
/**
|
302 |
* Helper function to format bytes to a human readable value
|
303 |
*
|
38 |
'clear_smush_stats',
|
39 |
'check_server_status',
|
40 |
'get_smush_logs',
|
41 |
+
'mark_as_compressed',
|
42 |
+
'clean_all_backup_images',
|
43 |
);
|
44 |
|
45 |
return array_merge($commands, $smush_commands);
|
189 |
$options['compression_server'] = filter_var($data['compression_server'], FILTER_SANITIZE_STRING);
|
190 |
$options['lossy_compression'] = filter_var($data['lossy_compression'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
191 |
$options['back_up_original'] = filter_var($data['back_up_original'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
192 |
+
$options['back_up_delete_after'] = filter_var($data['back_up_delete_after'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
193 |
+
$options['back_up_delete_after_days'] = filter_var($data['back_up_delete_after_days'], FILTER_SANITIZE_NUMBER_INT);
|
194 |
$options['preserve_exif'] = filter_var($data['preserve_exif'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
195 |
$options['autosmush'] = filter_var($data['autosmush'], FILTER_VALIDATE_BOOLEAN) ? true : false;
|
196 |
$options['image_quality'] = filter_var($data['image_quality'], FILTER_SANITIZE_NUMBER_INT);
|
271 |
return $response;
|
272 |
}
|
273 |
|
274 |
+
/**
|
275 |
+
* Mark selected images as already compressed.
|
276 |
+
*
|
277 |
+
* @param array $data
|
278 |
+
* @return array
|
279 |
+
*/
|
280 |
+
public function mark_as_compressed($data) {
|
281 |
+
$response = array();
|
282 |
+
$selected_images = array();
|
283 |
+
|
284 |
+
$unmark = isset($data['unmark']) && $data['unmark'];
|
285 |
+
|
286 |
+
foreach ($data['selected_images'] as $image) {
|
287 |
+
if (!array_key_exists($image['blog_id'], $selected_images)) $selected_images[$image['blog_id']] = array();
|
288 |
+
|
289 |
+
$selected_images[$image['blog_id']][] = $image['attachment_id'];
|
290 |
+
}
|
291 |
+
|
292 |
+
$info = __('This image is marked as already compressed by another tool.', 'wp-optimize');
|
293 |
+
|
294 |
+
foreach (array_keys($selected_images) as $blog_id) {
|
295 |
+
if (is_multisite()) switch_to_blog($blog_id);
|
296 |
+
|
297 |
+
foreach ($selected_images[$blog_id] as $attachment_id) {
|
298 |
+
if ($unmark) {
|
299 |
+
delete_post_meta($attachment_id, 'smush-complete');
|
300 |
+
delete_post_meta($attachment_id, 'smush-marked');
|
301 |
+
delete_post_meta($attachment_id, 'smush-info');
|
302 |
+
} else {
|
303 |
+
update_post_meta($attachment_id, 'smush-complete', true);
|
304 |
+
update_post_meta($attachment_id, 'smush-marked', true);
|
305 |
+
update_post_meta($attachment_id, 'smush-info', $info);
|
306 |
+
}
|
307 |
+
}
|
308 |
+
|
309 |
+
if (is_multisite()) restore_current_blog();
|
310 |
+
}
|
311 |
+
|
312 |
+
$response['status'] = true;
|
313 |
+
|
314 |
+
if ($unmark) {
|
315 |
+
$response['summary'] = _n('Selected image marked as uncompressed successfully', 'Selected images marked as uncompressed successfully', count($data['selected_images']), 'wp-optimize');
|
316 |
+
} else {
|
317 |
+
$response['summary'] = _n('Selected image marked as compressed successfully', 'Selected images marked as compressed successfully', count($data['selected_images']), 'wp-optimize');
|
318 |
+
}
|
319 |
+
|
320 |
+
$response['info'] = $info;
|
321 |
+
|
322 |
+
return $response;
|
323 |
+
}
|
324 |
+
|
325 |
/**
|
326 |
* Returns the log file
|
327 |
*
|
343 |
header('Cache-Control: must-revalidate');
|
344 |
header('Pragma: public');
|
345 |
header('Content-Length: ' . filesize($logfile));
|
|
|
346 |
readfile($logfile);
|
347 |
exit;
|
348 |
} else {
|
352 |
return $response;
|
353 |
}
|
354 |
|
355 |
+
/**
|
356 |
+
* Clean all backup images command.
|
357 |
+
*
|
358 |
+
* @return array
|
359 |
+
*/
|
360 |
+
public function clean_all_backup_images() {
|
361 |
+
$upload_dir = wp_get_upload_dir();
|
362 |
+
$base_dir = $upload_dir['basedir'];
|
363 |
+
|
364 |
+
$this->task_manager->clear_backup_images_directory($base_dir, 0);
|
365 |
+
|
366 |
+
return array(
|
367 |
+
'status' => true,
|
368 |
+
);
|
369 |
+
}
|
370 |
+
|
371 |
/**
|
372 |
* Helper function to format bytes to a human readable value
|
373 |
*
|
@@ -86,8 +86,14 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
86 |
add_filter('attachment_fields_to_edit', array($this, 'add_compress_button_to_media_modal' ), 10, 2);
|
87 |
}
|
88 |
add_action('delete_attachment', array($this, 'unscheduled_original_file_deletion'));
|
89 |
-
}
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
/**
|
93 |
* The Task Manager AJAX handler
|
@@ -154,6 +160,10 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
154 |
'lossy_compression' => $this->options->get_option('lossy_compression', false)
|
155 |
);
|
156 |
|
|
|
|
|
|
|
|
|
157 |
$server = $this->options->get_option('compression_server', $this->webservice);
|
158 |
$task_name = $this->get_associated_task($server);
|
159 |
|
@@ -421,14 +431,22 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
421 |
* @return array
|
422 |
*/
|
423 |
public function get_smush_options() {
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
}
|
433 |
|
434 |
/**
|
@@ -467,15 +485,18 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
467 |
*/
|
468 |
public function smush_js_translations() {
|
469 |
return apply_filters('updraft_smush_js_translations', array(
|
470 |
-
'all_images_compressed'
|
471 |
-
'error_unexpected_response'
|
472 |
-
'compress_single_image_dialog'
|
473 |
-
'error_try_again_later'
|
474 |
-
'server_check'
|
475 |
-
'please_wait'
|
476 |
-
'server_error'
|
477 |
-
'please_select_images'
|
478 |
-
'
|
|
|
|
|
|
|
479 |
));
|
480 |
}
|
481 |
|
@@ -506,14 +527,24 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
506 |
$has_backup = get_post_meta($post->ID, 'original-file', true) ? true : false;
|
507 |
|
508 |
$smush_info = get_post_meta($post->ID, 'smush-info', true);
|
|
|
509 |
|
|
|
|
|
|
|
|
|
|
|
510 |
$extract = array(
|
511 |
'post_id' => $post->ID,
|
512 |
'smush_display' => $compressed ? "style='display:none;'" : "style='display:block;'",
|
513 |
'restore_display' => $compressed ? "style='display:block;'" : "style='display:none;'",
|
514 |
'restore_action' => $has_backup ? "style='display:block;'" : "style='display:none;'",
|
|
|
|
|
515 |
'smush_info' => $smush_info ? $smush_info : ' ',
|
516 |
-
'file_size' =>
|
|
|
|
|
517 |
);
|
518 |
|
519 |
WP_Optimize()->include_template('admin-metabox-smush.php', false, $extract);
|
@@ -823,7 +854,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
823 |
|
824 |
global $wpdb;
|
825 |
|
826 |
-
//
|
827 |
$wp_version = $this->get_wordpress_version();
|
828 |
$mysql_version = $wpdb->db_version();
|
829 |
$safe_mode = $this->detect_safe_mode();
|
@@ -836,7 +867,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
836 |
// Attempt to raise limit
|
837 |
@set_time_limit(90);
|
838 |
|
839 |
-
//
|
840 |
$log_header[] = "\n";
|
841 |
$log_header[] = "Header for logs at time: ".date('r')." on ".network_site_url();
|
842 |
$log_header[] = "WP: ".$wp_version;
|
@@ -911,7 +942,6 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
911 |
case '':
|
912 |
$memory_limit = floor($memory_limit/1048576);
|
913 |
break;
|
914 |
-
// @codingStandardsIgnoreLine
|
915 |
case 'K':
|
916 |
case 'k':
|
917 |
$memory_limit = floor($memory_limit/1024);
|
@@ -919,7 +949,6 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
919 |
case 'G':
|
920 |
$memory_limit = $memory_limit*1024;
|
921 |
break;
|
922 |
-
// @codingStandardsIgnoreLine
|
923 |
case 'M':
|
924 |
// assumed size, no change needed
|
925 |
break;
|
@@ -933,7 +962,6 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
933 |
* @return Integer - 1 or 0
|
934 |
*/
|
935 |
public function detect_safe_mode() {
|
936 |
-
// @codingStandardsIgnoreLine
|
937 |
return (@ini_get('safe_mode') && strtolower(@ini_get('safe_mode')) != "off") ? 1 : 0;
|
938 |
}
|
939 |
|
@@ -1024,6 +1052,91 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
1024 |
}
|
1025 |
}
|
1026 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
/**
|
1028 |
* Check if attachment already compressed.
|
1029 |
*
|
@@ -1036,7 +1149,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
1036 |
}
|
1037 |
|
1038 |
/**
|
1039 |
-
* @param array $
|
1040 |
* @param WP_Post $post
|
1041 |
*
|
1042 |
* @return array
|
@@ -1082,7 +1195,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
|
|
1082 |
|
1083 |
/**
|
1084 |
* This callback function is triggered due to delete_attachment action (wp-includes/post.php) and is executed prior to deletion of post-type attachment
|
1085 |
-
*
|
1086 |
* @param int $post_id - WordPress Post ID
|
1087 |
*/
|
1088 |
public function unscheduled_original_file_deletion($post_id) {
|
86 |
add_filter('attachment_fields_to_edit', array($this, 'add_compress_button_to_media_modal' ), 10, 2);
|
87 |
}
|
88 |
add_action('delete_attachment', array($this, 'unscheduled_original_file_deletion'));
|
|
|
89 |
|
90 |
+
// clean backup images cron action.
|
91 |
+
add_action('wpo_smush_clear_backup_images', array($this, 'clear_backup_images'));
|
92 |
+
|
93 |
+
if (!wp_next_scheduled('wpo_smush_clear_backup_images')) {
|
94 |
+
wp_schedule_event(time(), 'daily', 'wpo_smush_clear_backup_images');
|
95 |
+
}
|
96 |
+
}
|
97 |
|
98 |
/**
|
99 |
* The Task Manager AJAX handler
|
160 |
'lossy_compression' => $this->options->get_option('lossy_compression', false)
|
161 |
);
|
162 |
|
163 |
+
if (filesize(get_attached_file($post_id)) > 5242880) {
|
164 |
+
$options['request_timeout'] = 180;
|
165 |
+
}
|
166 |
+
|
167 |
$server = $this->options->get_option('compression_server', $this->webservice);
|
168 |
$task_name = $this->get_associated_task($server);
|
169 |
|
431 |
* @return array
|
432 |
*/
|
433 |
public function get_smush_options() {
|
434 |
+
static $smush_options = array();
|
435 |
+
if (empty($smush_options)) {
|
436 |
+
$smush_options = array(
|
437 |
+
'compression_server' => $this->options->get_option('compression_server', $this->get_default_webservice()),
|
438 |
+
'image_quality' => $this->options->get_option('image_quality', 'very_good'),
|
439 |
+
'lossy_compression' => $this->options->get_option('lossy_compression', false),
|
440 |
+
'back_up_original' => $this->options->get_option('back_up_original', true),
|
441 |
+
'back_up_delete_after' => $this->options->get_option('back_up_delete_after', false),
|
442 |
+
'back_up_delete_after_days' => $this->options->get_option('back_up_delete_after_days', 7),
|
443 |
+
'preserve_exif' => $this->options->get_option('preserve_exif', false),
|
444 |
+
'autosmush' => $this->options->get_option('autosmush', false),
|
445 |
+
'image_quality' => $this->options->get_option('image_quality'),
|
446 |
+
'show_smush_metabox' => $this->options->get_option('show_smush_metabox', 'show') == 'show' ? true : false
|
447 |
+
);
|
448 |
+
}
|
449 |
+
return $smush_options;
|
450 |
}
|
451 |
|
452 |
/**
|
485 |
*/
|
486 |
public function smush_js_translations() {
|
487 |
return apply_filters('updraft_smush_js_translations', array(
|
488 |
+
'all_images_compressed' => __('No uncompressed images were found.', 'wp-optimize'),
|
489 |
+
'error_unexpected_response' => __('An unexpected response was received from the server. More information has been logged in the browser console.', 'wp-optimize'),
|
490 |
+
'compress_single_image_dialog' => __('Please wait: compressing the selected image.', 'wp-optimize'),
|
491 |
+
'error_try_again_later' => __('Please try again later.', 'wp-optimize'),
|
492 |
+
'server_check' => __('Connecting to the Smush API server, please wait', 'wp-optimize'),
|
493 |
+
'please_wait' => __('Please wait while the request is being processed', 'wp-optimize'),
|
494 |
+
'server_error' => __('There was an error connecting to the image compression server. This could mean either the server is temporarily unavailable or there are connectivity issues with your internet connection. Please try later.', 'wp-optimize'),
|
495 |
+
'please_select_images' => __('Please select the images you want compressed from the "Uncompressed images" panel first', 'wp-optimize'),
|
496 |
+
'please_updating_images_info' => __('Please wait: updating information about the selected image.', 'wp-optimize'),
|
497 |
+
'please_select_compressed_images' => __('Please select the images you want to mark as already compressed from the "Uncompressed images" panel first', 'wp-optimize'),
|
498 |
+
'view_image' => __('View Image', 'wp-optimize'),
|
499 |
+
'delete_image_backup_confirm' => __('Do you really want to delete all backup images now? This action is irreversible.', 'wp-optimize'),
|
500 |
));
|
501 |
}
|
502 |
|
527 |
$has_backup = get_post_meta($post->ID, 'original-file', true) ? true : false;
|
528 |
|
529 |
$smush_info = get_post_meta($post->ID, 'smush-info', true);
|
530 |
+
$marked = get_post_meta($post->ID, 'smush-marked', false);
|
531 |
|
532 |
+
$options = Updraft_Smush_Manager()->get_smush_options();
|
533 |
+
|
534 |
+
$file = get_attached_file($post->ID);
|
535 |
+
$file_size = ($file && is_file($file)) ? filesize($file) : 0;
|
536 |
+
|
537 |
$extract = array(
|
538 |
'post_id' => $post->ID,
|
539 |
'smush_display' => $compressed ? "style='display:none;'" : "style='display:block;'",
|
540 |
'restore_display' => $compressed ? "style='display:block;'" : "style='display:none;'",
|
541 |
'restore_action' => $has_backup ? "style='display:block;'" : "style='display:none;'",
|
542 |
+
'smush_mark' => !$compressed && !$marked ? "style='display:block;'" : "style='display:none;'",
|
543 |
+
'smush_unmark' => $marked ? "style='display:block;'" : "style='display:none;'",
|
544 |
'smush_info' => $smush_info ? $smush_info : ' ',
|
545 |
+
'file_size' => $file_size,
|
546 |
+
'smush_options' => $options,
|
547 |
+
'custom' => 100 == $options['image_quality'] || 90 == $options['image_quality'] ? false : true
|
548 |
);
|
549 |
|
550 |
WP_Optimize()->include_template('admin-metabox-smush.php', false, $extract);
|
854 |
|
855 |
global $wpdb;
|
856 |
|
857 |
+
// phpcs:disable
|
858 |
$wp_version = $this->get_wordpress_version();
|
859 |
$mysql_version = $wpdb->db_version();
|
860 |
$safe_mode = $this->detect_safe_mode();
|
867 |
// Attempt to raise limit
|
868 |
@set_time_limit(90);
|
869 |
|
870 |
+
// phpcs:enable
|
871 |
$log_header[] = "\n";
|
872 |
$log_header[] = "Header for logs at time: ".date('r')." on ".network_site_url();
|
873 |
$log_header[] = "WP: ".$wp_version;
|
942 |
case '':
|
943 |
$memory_limit = floor($memory_limit/1048576);
|
944 |
break;
|
|
|
945 |
case 'K':
|
946 |
case 'k':
|
947 |
$memory_limit = floor($memory_limit/1024);
|
949 |
case 'G':
|
950 |
$memory_limit = $memory_limit*1024;
|
951 |
break;
|
|
|
952 |
case 'M':
|
953 |
// assumed size, no change needed
|
954 |
break;
|
962 |
* @return Integer - 1 or 0
|
963 |
*/
|
964 |
public function detect_safe_mode() {
|
|
|
965 |
return (@ini_get('safe_mode') && strtolower(@ini_get('safe_mode')) != "off") ? 1 : 0;
|
966 |
}
|
967 |
|
1052 |
}
|
1053 |
}
|
1054 |
|
1055 |
+
/**
|
1056 |
+
* Delete recursively all smush backup files created more that $days_ago days.
|
1057 |
+
*
|
1058 |
+
* @param string $directory upload directory
|
1059 |
+
* @param int $days_ago
|
1060 |
+
*/
|
1061 |
+
public function clear_backup_images_directory($directory, $days_ago = 30) {
|
1062 |
+
|
1063 |
+
$directory = trailingslashit($directory);
|
1064 |
+
|
1065 |
+
if (preg_match('/(\d{4})\/(\d{2})\/$/', $directory, $match)) {
|
1066 |
+
|
1067 |
+
$check_date = false;
|
1068 |
+
|
1069 |
+
if ($days_ago > 0) {
|
1070 |
+
// check if it is end directory then scan for backup images.
|
1071 |
+
$year = (int) $match[1];
|
1072 |
+
$month = (int) $match[2];
|
1073 |
+
|
1074 |
+
$limit = strtotime('-'.$days_ago.' '.(($days_ago > 1) ? 'days' : 'day'));
|
1075 |
+
$year_limit = (int) date('Y', $limit);
|
1076 |
+
$month_limit = (int) date('m', $limit);
|
1077 |
+
$day_limit = (int) date('j', $limit);
|
1078 |
+
|
1079 |
+
// if current directory is newer than needed then we skip it.
|
1080 |
+
if ($year_limit < $year || ($year_limit == $year && $month_limit < $month)) {
|
1081 |
+
return;
|
1082 |
+
}
|
1083 |
+
|
1084 |
+
// we will check dates only in directory that contain limit date.
|
1085 |
+
$check_date = ($year_limit == $year && $month_limit == $month);
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
$files = glob($directory . '*-updraft-pre-smush-original.*', GLOB_BRACE);
|
1089 |
+
|
1090 |
+
foreach ($files as $file) {
|
1091 |
+
if ($check_date) {
|
1092 |
+
$filedate_day = (int) date('j', filectime($file));
|
1093 |
+
if ($filedate_day >= $day_limit) continue;
|
1094 |
+
}
|
1095 |
+
|
1096 |
+
unlink($file);
|
1097 |
+
}
|
1098 |
+
|
1099 |
+
} else {
|
1100 |
+
// scan directories recursively.
|
1101 |
+
$handle = opendir($directory);
|
1102 |
+
|
1103 |
+
if (false === $handle) return;
|
1104 |
+
|
1105 |
+
$file = readdir($handle);
|
1106 |
+
|
1107 |
+
while (false !== $file) {
|
1108 |
+
|
1109 |
+
if ('.' == $file || '..' == $file) {
|
1110 |
+
$file = readdir($handle);
|
1111 |
+
continue;
|
1112 |
+
}
|
1113 |
+
|
1114 |
+
if (is_dir($directory . $file)) {
|
1115 |
+
$this->clear_backup_images_directory($directory . $file, $days_ago);
|
1116 |
+
}
|
1117 |
+
|
1118 |
+
$file = readdir($handle);
|
1119 |
+
}
|
1120 |
+
}
|
1121 |
+
|
1122 |
+
}
|
1123 |
+
|
1124 |
+
/**
|
1125 |
+
* Clean backup smush images according to saved options.
|
1126 |
+
*/
|
1127 |
+
public function clear_backup_images() {
|
1128 |
+
$back_up_delete_after = $this->options->get_option('back_up_delete_after', true);
|
1129 |
+
|
1130 |
+
if (!$back_up_delete_after) return;
|
1131 |
+
|
1132 |
+
$back_up_delete_after_days = $this->options->get_option('back_up_delete_after_days', true);
|
1133 |
+
|
1134 |
+
$upload_dir = wp_get_upload_dir();
|
1135 |
+
$base_dir = $upload_dir['basedir'];
|
1136 |
+
|
1137 |
+
$this->clear_backup_images_directory($base_dir, $back_up_delete_after_days);
|
1138 |
+
}
|
1139 |
+
|
1140 |
/**
|
1141 |
* Check if attachment already compressed.
|
1142 |
*
|
1149 |
}
|
1150 |
|
1151 |
/**
|
1152 |
+
* @param array $form_fields
|
1153 |
* @param WP_Post $post
|
1154 |
*
|
1155 |
* @return array
|
1195 |
|
1196 |
/**
|
1197 |
* This callback function is triggered due to delete_attachment action (wp-includes/post.php) and is executed prior to deletion of post-type attachment
|
1198 |
+
*
|
1199 |
* @param int $post_id - WordPress Post ID
|
1200 |
*/
|
1201 |
public function unscheduled_original_file_deletion($post_id) {
|
@@ -8,7 +8,6 @@ class WP_Optimize_Database_Information {
|
|
8 |
const MARIA_DB = 'MariaDB';
|
9 |
const PERCONA_DB = 'Percona';
|
10 |
// for some reason coding standard parser give error here WordPress.DB.RestrictedFunctions.mysql_mysql_db
|
11 |
-
// @codingStandardsIgnoreLine
|
12 |
const MYSQL_DB = 'MysqlDB';
|
13 |
|
14 |
const MYISAM_ENGINE = 'MyISAM';
|
8 |
const MARIA_DB = 'MariaDB';
|
9 |
const PERCONA_DB = 'Percona';
|
10 |
// for some reason coding standard parser give error here WordPress.DB.RestrictedFunctions.mysql_mysql_db
|
|
|
11 |
const MYSQL_DB = 'MysqlDB';
|
12 |
|
13 |
const MYISAM_ENGINE = 'MyISAM';
|
@@ -1 +0,0 @@
|
|
1 |
-
var WP_Optimize_Cache=function(e){function o(){var e={};return t(".cache-settings").each(function(){var o=t(this),a=o.attr("name");o.is('input[type="checkbox"]')?e[a]=o.is(":checked")?1:0:o.is("textarea")?e[a]=o.val().split("\n"):e[a]=o.val()}),e}function a(){d||(d=setInterval(function(){s()},5e3))}function s(){e("get_cache_preload_status",null,function(e){e.done?(_.val(wpoptimize.run_now),_.data("running",!1),clearInterval(d),d=null):(_.val(wpoptimize.cancel),_.data("running",!0)),l.text(e.message),r(e)})}function r(e){t("#wpo_current_cache_size_information").text(wpoptimize.current_cache_size+" "+e.size),t("#wpo_current_cache_file_count").text(wpoptimize.number_of_files+" "+e.file_count)}var t=jQuery,i=t("#wp_optimize_browser_cache_enable"),n=t("#wp-optimize-purge-cache"),p=t("#enable_page_caching"),c=t("#page_cache_length_value");n.click(function(){var o=t(this),s=o.next(),i=s.next();s.show(),e("purge_page_cache",{},function(e){s.hide(),i.show(),setTimeout(function(){i.fadeOut("slow",function(){i.hide()}),a()},5e3),r(e)})}),i.closest("form").submit(function(e){return e.preventDefault(),i.trigger("click"),!1}),c.on("change",function(){var e=parseInt(c.val(),10);t('#preload_schedule_type option[value="wpo_use_cache_lifespan"]').prop("disabled",isNaN(e)||e<=0)}),t("#wp_optimize_gzip_compression_enable").on("click",function(){var o=t(this),a=o.next();a.show(),e("enable_gzip_compression",{enable:o.data("enable")},function(e){var s=t("#wpo_gzip_compression_status");e?(e.enabled?(o.text(wpoptimize.disable),o.data("enable","0"),s.removeClass("wpo-disabled").addClass("wpo-enabled")):(o.text(wpoptimize.enable),o.data("enable","1"),s.addClass("wpo-disabled").removeClass("wpo-enabled")),e.message?t("#wpo_gzip_compression_error_message").text(e.message).show():t("#wpo_gzip_compression_error_message").hide(),e.output?t("#wpo_gzip_compression_output").html(e.output).show():t("#wpo_gzip_compression_output").hide()):alert(wpoptimize.error_unexpected_response),a.hide()}).fail(function(){alert(wpoptimize.error_unexpected_response),a.hide()})}),t(".wpo-refresh-gzip-status").on("click",function(o){o.preventDefault(),$link=t(this),$link.addClass("loading"),e("get_gzip_compression_status",null,function(e){$link.removeClass("loading");var o=t("#wpo_gzip_compression_status");e.hasOwnProperty("status")?e.status?o.removeClass("wpo-disabled").addClass("wpo-enabled"):o.addClass("wpo-disabled").removeClass("wpo-enabled"):e.hasOwnProperty("error")&&(alert(e.error),console.log("Gzip status error code: "+e.code),console.log("Gzip status error message: "+e.message))})}),i.on("click",function(){var o=t("#wpo_browser_cache_expire_days"),a=t("#wpo_browser_cache_expire_hours"),s=parseInt(o.val(),10),r=parseInt(a.val(),10),i=t(this),n=i.next();return isNaN(s)&&(s=0),isNaN(r)&&(r=0),s<0||r<0?(t("#wpo_browser_cache_error_message").text(wpoptimize.please_use_positive_integers).show(),!1):r>23?(t("#wpo_browser_cache_error_message").text(wpoptimize.please_use_valid_values).show(),!1):(t("#wpo_browser_cache_error_message").hide(),o.val(s),a.val(r),n.show(),void e("enable_browser_cache",{browser_cache_expire_days:s,browser_cache_expire_hours:r},function(e){var o=t("#wpo_browser_cache_status");e?(e.enabled?(i.text(wpoptimize.update),o.removeClass("wpo-disabled").addClass("wpo-enabled")):(i.text(wpoptimize.enable),o.addClass("wpo-disabled").removeClass("wpo-enabled")),e.message?t("#wpo_browser_cache_message").text(e.message).show():t("#wpo_browser_cache_message").hide(),e.error_message?t("#wpo_browser_cache_error_message").text(e.error_message).show():t("#wpo_browser_cache_error_message").hide(),e.output?t("#wpo_browser_cache_output").html(e.output).show():t("#wpo_browser_cache_output").hide()):alert(wpoptimize.error_unexpected_response),n.hide()}).fail(function(){alert(wpoptimize.error_unexpected_response),n.hide()}))}),t("#wp-optimize-save-cache-settings, #wp-optimize-save-cache-advanced-rules, #wp-optimize-save-cache-preload-settings").click(function(){var a=t(this),s=a.next(),r=s.next();s.show(),t.blockUI(),e("save_cache_settings",{"cache-settings":o()},function(e){e.hasOwnProperty("error")?(console.log(e.error),t(".wpo-error__enabling-cache").removeClass("wpo_hidden").find("p").text(e.error.message)):t(".wpo-error__enabling-cache").addClass("wpo_hidden").find("p").text(""),t.unblockUI(),s.hide(),p.prop("checked",e.enabled),r.show(),p.is(":checked")?(t(".purge-cache").show(),t("#wp_optimize_run_cache_preload").removeProp("disabled")):(t(".purge-cache").hide(),t("#wp_optimize_run_cache_preload").prop("disabled",!0)),setTimeout(function(){r.fadeOut("slow",function(){r.hide()})},5e3)})}),p.on("change",function(){t("#wp-optimize-save-cache-settings").trigger("click")});var _=t("#wp_optimize_run_cache_preload"),l=t("#wp_optimize_preload_cache_status"),d=null,u=t("#enable_schedule_preload"),w=t("#preload_schedule_type");u.change(function(){u.prop("checked")?w.prop("disabled",!1):w.prop("disabled",!0)}),u.trigger("change"),_.on("click",function(){var o=t(this),s=o.data("running"),r=l.text();o.prop("disabled",!0),s?(o.data("running",!1),clearInterval(d),d=null,e("cancel_cache_preload",null,function(e){e&&e.hasOwnProperty("message")&&l.text(e.message)}).always(function(){o.val(wpoptimize.run_now),o.prop("disabled",!1)})):(l.text(wpoptimize.starting_preload),o.data("running",!0),e("run_cache_preload",null,null,!0,{timeout:3e3}).always(function(e){try{var s=wpo_parse_json(e)}catch(t){}return s&&s.error?(alert(s.error),l.text(r),o.prop("disabled",!1),void o.data("running",!1)):(l.text(wpoptimize.loading_urls),o.val(wpoptimize.cancel),o.prop("disabled",!1),void a())}))}),_.data("running")&&a()};
|
|
@@ -0,0 +1 @@
|
|
|
1 |
+
var WP_Optimize_Cache=function(e){function a(){var e={};return s(".cache-settings").each(function(){var a=s(this),o=a.attr("name");a.is('input[type="checkbox"]')?e[o]=a.is(":checked")?1:0:a.is("textarea")?e[o]=a.val().split("\n"):e[o]=a.val()}),e}function o(){d||(d=setInterval(function(){t()},5e3))}function t(){e("get_cache_preload_status",null,function(e){e.done?(_.val(wpoptimize.run_now),_.data("running",!1),clearInterval(d),d=null):(_.val(wpoptimize.cancel),_.data("running",!0)),l.text(e.message),r(e)})}function r(e){s("#wpo_current_cache_size_information").text(wpoptimize.current_cache_size+" "+e.size),s("#wpo_current_cache_file_count").text(wpoptimize.number_of_files+" "+e.file_count)}var s=jQuery,i=s("#wp_optimize_browser_cache_enable"),n=s("#wp-optimize-purge-cache"),p=s("#enable_page_caching"),c=s("#page_cache_length_value");n.click(function(){var a=s(this),t=a.next(),i=t.next();t.show(),e("purge_page_cache",{},function(e){t.hide(),i.show(),setTimeout(function(){i.fadeOut("slow",function(){i.hide()}),o()},5e3),r(e)})}),s("body").on("wpo_purge_cache",function(){n.trigger("click")}),i.closest("form").submit(function(e){return e.preventDefault(),i.trigger("click"),!1}),c.on("change",function(){var e=parseInt(c.val(),10);s('#preload_schedule_type option[value="wpo_use_cache_lifespan"]').prop("disabled",isNaN(e)||e<=0)}),s("#wp_optimize_gzip_compression_enable").on("click",function(){var a=s(this),o=a.next();o.show(),e("enable_gzip_compression",{enable:a.data("enable")},function(e){var t=s("#wpo_gzip_compression_status");e?(e.enabled?(a.text(wpoptimize.disable),a.data("enable","0"),t.removeClass("wpo-disabled").addClass("wpo-enabled")):(a.text(wpoptimize.enable),a.data("enable","1"),t.addClass("wpo-disabled").removeClass("wpo-enabled")),e.message?s("#wpo_gzip_compression_error_message").text(e.message).show():s("#wpo_gzip_compression_error_message").hide(),e.output?s("#wpo_gzip_compression_output").html(e.output).show():s("#wpo_gzip_compression_output").hide()):alert(wpoptimize.error_unexpected_response),o.hide()}).fail(function(){alert(wpoptimize.error_unexpected_response),o.hide()})}),s(".wpo-refresh-gzip-status").on("click",function(a){a.preventDefault(),$link=s(this),$link.addClass("loading"),e("get_gzip_compression_status",null,function(e){$link.removeClass("loading");var a=s("#wpo_gzip_compression_status");e.hasOwnProperty("status")?e.status?a.removeClass("wpo-disabled").addClass("wpo-enabled"):a.addClass("wpo-disabled").removeClass("wpo-enabled"):e.hasOwnProperty("error")&&(alert(e.error),console.log("Gzip status error code: "+e.code),console.log("Gzip status error message: "+e.message))})}),i.on("click",function(){var a=s("#wpo_browser_cache_expire_days"),o=s("#wpo_browser_cache_expire_hours"),t=parseInt(a.val(),10),r=parseInt(o.val(),10),i=s(this),n=i.next();return isNaN(t)&&(t=0),isNaN(r)&&(r=0),t<0||r<0?(s("#wpo_browser_cache_error_message").text(wpoptimize.please_use_positive_integers).show(),!1):r>23?(s("#wpo_browser_cache_error_message").text(wpoptimize.please_use_valid_values).show(),!1):(s("#wpo_browser_cache_error_message").hide(),a.val(t),o.val(r),n.show(),void e("enable_browser_cache",{browser_cache_expire_days:t,browser_cache_expire_hours:r},function(e){var a=s("#wpo_browser_cache_status");e?(e.enabled?(i.text(wpoptimize.update),a.removeClass("wpo-disabled").addClass("wpo-enabled")):(i.text(wpoptimize.enable),a.addClass("wpo-disabled").removeClass("wpo-enabled")),e.message?s("#wpo_browser_cache_message").text(e.message).show():s("#wpo_browser_cache_message").hide(),e.error_message?s("#wpo_browser_cache_error_message").text(e.error_message).show():s("#wpo_browser_cache_error_message").hide(),e.output?s("#wpo_browser_cache_output").html(e.output).show():s("#wpo_browser_cache_output").hide()):alert(wpoptimize.error_unexpected_response),n.hide()}).fail(function(){alert(wpoptimize.error_unexpected_response),n.hide()}))}),s("#wp-optimize-save-cache-settings, #wp-optimize-save-cache-advanced-rules, #wp-optimize-save-cache-preload-settings").click(function(){var o=s(this),t=o.next(),r=t.next();t.show(),s.blockUI(),e("save_cache_settings",{"cache-settings":a()},function(e){e.hasOwnProperty("error")?(console.log(e.error),s(".wpo-error__enabling-cache").removeClass("wpo_hidden").find("p").text(e.error.message)):s(".wpo-error__enabling-cache").addClass("wpo_hidden").find("p").text(""),e.hasOwnProperty("advanced_cache_file_writing_error")?s("#wpo_advanced_cache_output").text(e.advanced_cache_file_content).show():s("#wpo_advanced_cache_output").hide(),s.unblockUI(),t.hide(),p.prop("checked",e.enabled),r.show(),p.is(":checked")?(s(".purge-cache").show(),s("#wp_optimize_run_cache_preload").removeProp("disabled")):(s(".purge-cache").hide(),s("#wp_optimize_run_cache_preload").prop("disabled",!0)),setTimeout(function(){r.fadeOut("slow",function(){r.hide()})},5e3)})}),p.on("change",function(){s("#wp-optimize-save-cache-settings").trigger("click")});var _=s("#wp_optimize_run_cache_preload"),l=s("#wp_optimize_preload_cache_status"),d=null,u=s("#enable_schedule_preload"),w=s("#preload_schedule_type");u.change(function(){u.prop("checked")?w.prop("disabled",!1):w.prop("disabled",!0)}),u.trigger("change"),_.on("click",function(){var a=s(this),t=a.data("running"),r=l.text();a.prop("disabled",!0),t?(a.data("running",!1),clearInterval(d),d=null,e("cancel_cache_preload",null,function(e){e&&e.hasOwnProperty("message")&&l.text(e.message)}).always(function(){a.val(wpoptimize.run_now),a.prop("disabled",!1)})):(l.text(wpoptimize.starting_preload),a.data("running",!0),e("run_cache_preload",null,null,!0,{timeout:3e3}).always(function(e){try{var t=wpo_parse_json(e)}catch(s){}return t&&t.error?(alert(t.error),l.text(r),a.prop("disabled",!1),void a.data("running",!1)):(l.text(wpoptimize.loading_urls),a.val(wpoptimize.cancel),a.prop("disabled",!1),void o())}))}),_.data("running")&&o()};
|
@@ -30,6 +30,13 @@ var WP_Optimize_Cache = function (send_command) {
|
|
30 |
});
|
31 |
});
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
/**
|
34 |
* Trigger click Browser cache button if user push Enter and form start submitting.
|
35 |
*/
|
@@ -235,6 +242,15 @@ var WP_Optimize_Cache = function (send_command) {
|
|
235 |
} else {
|
236 |
$('.wpo-error__enabling-cache').addClass('wpo_hidden').find('p').text('');
|
237 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
$.unblockUI();
|
239 |
spinner.hide();
|
240 |
// update the toggle state depending on response.enabled
|
30 |
});
|
31 |
});
|
32 |
|
33 |
+
/**
|
34 |
+
* Trigger purge cache button click if wpo_purge_cache event fired.
|
35 |
+
*/
|
36 |
+
$('body').on('wpo_purge_cache', function() {
|
37 |
+
purge_cache_btn.trigger('click');
|
38 |
+
});
|
39 |
+
|
40 |
/**
|
41 |
* Trigger click Browser cache button if user push Enter and form start submitting.
|
42 |
*/
|
242 |
} else {
|
243 |
$('.wpo-error__enabling-cache').addClass('wpo_hidden').find('p').text('');
|
244 |
}
|
245 |
+
|
246 |
+
if (response.hasOwnProperty('advanced_cache_file_writing_error')) {
|
247 |
+
$('#wpo_advanced_cache_output')
|
248 |
+
.text(response.advanced_cache_file_content)
|
249 |
+
.show();
|
250 |
+
} else {
|
251 |
+
$('#wpo_advanced_cache_output').hide();
|
252 |
+
}
|
253 |
+
|
254 |
$.unblockUI();
|
255 |
spinner.hide();
|
256 |
// update the toggle state depending on response.enabled
|
@@ -1,7 +1,7 @@
|
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
-
handlebars v4.
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
@@ -98,13 +98,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
98 |
|
99 |
var _handlebarsCompilerBase = __webpack_require__(36);
|
100 |
|
101 |
-
var _handlebarsCompilerCompiler = __webpack_require__(
|
102 |
|
103 |
-
var _handlebarsCompilerJavascriptCompiler = __webpack_require__(
|
104 |
|
105 |
var _handlebarsCompilerJavascriptCompiler2 = _interopRequireDefault(_handlebarsCompilerJavascriptCompiler);
|
106 |
|
107 |
-
var _handlebarsCompilerVisitor = __webpack_require__(
|
108 |
|
109 |
var _handlebarsCompilerVisitor2 = _interopRequireDefault(_handlebarsCompilerVisitor);
|
110 |
|
@@ -275,9 +275,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
275 |
|
276 |
var _logger2 = _interopRequireDefault(_logger);
|
277 |
|
278 |
-
var VERSION = '4.
|
279 |
exports.VERSION = VERSION;
|
280 |
-
var COMPILER_REVISION =
|
281 |
|
282 |
exports.COMPILER_REVISION = COMPILER_REVISION;
|
283 |
var REVISION_CHANGES = {
|
@@ -287,7 +287,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
287 |
4: '== 1.x.x',
|
288 |
5: '== 2.0.0-alpha.x',
|
289 |
6: '>= 2.0.0-beta.1',
|
290 |
-
7: '>= 4.0.0'
|
|
|
291 |
};
|
292 |
|
293 |
exports.REVISION_CHANGES = REVISION_CHANGES;
|
@@ -371,6 +372,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
371 |
exports.createFrame = createFrame;
|
372 |
exports.blockParams = blockParams;
|
373 |
exports.appendContextPath = appendContextPath;
|
|
|
374 |
var escape = {
|
375 |
'&': '&',
|
376 |
'<': '<',
|
@@ -588,6 +590,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
588 |
|
589 |
exports.__esModule = true;
|
590 |
exports.registerDefaultHelpers = registerDefaultHelpers;
|
|
|
591 |
|
592 |
var _helpersBlockHelperMissing = __webpack_require__(11);
|
593 |
|
@@ -627,6 +630,15 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
627 |
_helpersWith2['default'](instance);
|
628 |
}
|
629 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
/***/ }),
|
631 |
/* 11 */
|
632 |
/***/ (function(module, exports, __webpack_require__) {
|
@@ -1069,6 +1081,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1069 |
|
1070 |
var _base = __webpack_require__(4);
|
1071 |
|
|
|
|
|
1072 |
function checkRevision(compilerInfo) {
|
1073 |
var compilerRevision = compilerInfo && compilerInfo[0] || 1,
|
1074 |
currentRevision = _base.COMPILER_REVISION;
|
@@ -1086,6 +1100,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1086 |
}
|
1087 |
|
1088 |
function template(templateSpec, env) {
|
|
|
1089 |
/* istanbul ignore next */
|
1090 |
if (!env) {
|
1091 |
throw new _exception2['default']('No environment passed to template');
|
@@ -1097,7 +1112,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1097 |
templateSpec.main.decorator = templateSpec.main_d;
|
1098 |
|
1099 |
// Note: Using env.VM references rather than local var references throughout this section to allow
|
1100 |
-
// for external users to override these as
|
1101 |
env.VM.checkRevision(templateSpec.compiler);
|
1102 |
|
1103 |
function invokePartialWrapper(partial, context, options) {
|
@@ -1107,13 +1122,15 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1107 |
options.ids[0] = true;
|
1108 |
}
|
1109 |
}
|
1110 |
-
|
1111 |
partial = env.VM.resolvePartial.call(this, partial, context, options);
|
1112 |
-
|
|
|
|
|
|
|
1113 |
|
1114 |
if (result == null && env.compile) {
|
1115 |
options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env);
|
1116 |
-
result = options.partials[options.name](context,
|
1117 |
}
|
1118 |
if (result != null) {
|
1119 |
if (options.indent) {
|
@@ -1180,15 +1197,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1180 |
}
|
1181 |
return value;
|
1182 |
},
|
1183 |
-
merge: function merge(param, common) {
|
1184 |
-
var obj = param || common;
|
1185 |
-
|
1186 |
-
if (param && common && param !== common) {
|
1187 |
-
obj = Utils.extend({}, common, param);
|
1188 |
-
}
|
1189 |
-
|
1190 |
-
return obj;
|
1191 |
-
},
|
1192 |
// An empty object to use as replacement for null-contexts
|
1193 |
nullContext: _Object$seal({}),
|
1194 |
|
@@ -1225,18 +1233,24 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1225 |
|
1226 |
ret._setup = function (options) {
|
1227 |
if (!options.partial) {
|
1228 |
-
container.helpers =
|
1229 |
|
1230 |
if (templateSpec.usePartial) {
|
1231 |
-
container.partials =
|
1232 |
}
|
1233 |
if (templateSpec.usePartial || templateSpec.useDecorators) {
|
1234 |
-
container.decorators =
|
1235 |
}
|
|
|
|
|
|
|
|
|
|
|
1236 |
} else {
|
1237 |
container.helpers = options.helpers;
|
1238 |
container.partials = options.partials;
|
1239 |
container.decorators = options.decorators;
|
|
|
1240 |
}
|
1241 |
};
|
1242 |
|
@@ -1273,6 +1287,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1273 |
return prog;
|
1274 |
}
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
function resolvePartial(partial, context, options) {
|
1277 |
if (!partial) {
|
1278 |
if (options.name === '@partial-block') {
|
@@ -1588,11 +1606,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1588 |
|
1589 |
var _parser2 = _interopRequireDefault(_parser);
|
1590 |
|
1591 |
-
var _whitespaceControl = __webpack_require__(
|
1592 |
|
1593 |
var _whitespaceControl2 = _interopRequireDefault(_whitespaceControl);
|
1594 |
|
1595 |
-
var _helpers = __webpack_require__(
|
1596 |
|
1597 |
var Helpers = _interopRequireWildcard(_helpers);
|
1598 |
|
@@ -1622,20 +1640,131 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1622 |
|
1623 |
/***/ }),
|
1624 |
/* 37 */
|
1625 |
-
/***/ (function(module, exports) {
|
1626 |
|
1627 |
// File ignored in coverage tests via setting in .istanbul.yml
|
1628 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1629 |
"use strict";
|
1630 |
|
|
|
|
|
1631 |
exports.__esModule = true;
|
1632 |
var handlebars = (function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1633 |
var parser = { trace: function trace() {},
|
1634 |
yy: {},
|
1635 |
symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetition0": 6, "statement": 7, "mustache": 8, "block": 9, "rawBlock": 10, "partial": 11, "partialBlock": 12, "content": 13, "COMMENT": 14, "CONTENT": 15, "openRawBlock": 16, "rawBlock_repetition_plus0": 17, "END_RAW_BLOCK": 18, "OPEN_RAW_BLOCK": 19, "helperName": 20, "openRawBlock_repetition0": 21, "openRawBlock_option0": 22, "CLOSE_RAW_BLOCK": 23, "openBlock": 24, "block_option0": 25, "closeBlock": 26, "openInverse": 27, "block_option1": 28, "OPEN_BLOCK": 29, "openBlock_repetition0": 30, "openBlock_option0": 31, "openBlock_option1": 32, "CLOSE": 33, "OPEN_INVERSE": 34, "openInverse_repetition0": 35, "openInverse_option0": 36, "openInverse_option1": 37, "openInverseChain": 38, "OPEN_INVERSE_CHAIN": 39, "openInverseChain_repetition0": 40, "openInverseChain_option0": 41, "openInverseChain_option1": 42, "inverseAndProgram": 43, "INVERSE": 44, "inverseChain": 45, "inverseChain_option0": 46, "OPEN_ENDBLOCK": 47, "OPEN": 48, "mustache_repetition0": 49, "mustache_option0": 50, "OPEN_UNESCAPED": 51, "mustache_repetition1": 52, "mustache_option1": 53, "CLOSE_UNESCAPED": 54, "OPEN_PARTIAL": 55, "partialName": 56, "partial_repetition0": 57, "partial_option0": 58, "openPartialBlock": 59, "OPEN_PARTIAL_BLOCK": 60, "openPartialBlock_repetition0": 61, "openPartialBlock_option0": 62, "param": 63, "sexpr": 64, "OPEN_SEXPR": 65, "sexpr_repetition0": 66, "sexpr_option0": 67, "CLOSE_SEXPR": 68, "hash": 69, "hash_repetition_plus0": 70, "hashSegment": 71, "ID": 72, "EQUALS": 73, "blockParams": 74, "OPEN_BLOCK_PARAMS": 75, "blockParams_repetition_plus0": 76, "CLOSE_BLOCK_PARAMS": 77, "path": 78, "dataName": 79, "STRING": 80, "NUMBER": 81, "BOOLEAN": 82, "UNDEFINED": 83, "NULL": 84, "DATA": 85, "pathSegments": 86, "SEP": 87, "$accept": 0, "$end": 1 },
|
1636 |
terminals_: { 2: "error", 5: "EOF", 14: "COMMENT", 15: "CONTENT", 18: "END_RAW_BLOCK", 19: "OPEN_RAW_BLOCK", 23: "CLOSE_RAW_BLOCK", 29: "OPEN_BLOCK", 33: "CLOSE", 34: "OPEN_INVERSE", 39: "OPEN_INVERSE_CHAIN", 44: "INVERSE", 47: "OPEN_ENDBLOCK", 48: "OPEN", 51: "OPEN_UNESCAPED", 54: "CLOSE_UNESCAPED", 55: "OPEN_PARTIAL", 60: "OPEN_PARTIAL_BLOCK", 65: "OPEN_SEXPR", 68: "CLOSE_SEXPR", 72: "ID", 73: "EQUALS", 75: "OPEN_BLOCK_PARAMS", 77: "CLOSE_BLOCK_PARAMS", 80: "STRING", 81: "NUMBER", 82: "BOOLEAN", 83: "UNDEFINED", 84: "NULL", 85: "DATA", 87: "SEP" },
|
1637 |
productions_: [0, [3, 2], [4, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [13, 1], [10, 3], [16, 5], [9, 4], [9, 4], [24, 6], [27, 6], [38, 6], [43, 2], [45, 3], [45, 1], [26, 3], [8, 5], [8, 5], [11, 5], [12, 3], [59, 5], [63, 1], [63, 1], [64, 5], [69, 1], [71, 3], [74, 3], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [56, 1], [56, 1], [79, 2], [78, 1], [86, 3], [86, 1], [6, 0], [6, 2], [17, 1], [17, 2], [21, 0], [21, 2], [22, 0], [22, 1], [25, 0], [25, 1], [28, 0], [28, 1], [30, 0], [30, 2], [31, 0], [31, 1], [32, 0], [32, 1], [35, 0], [35, 2], [36, 0], [36, 1], [37, 0], [37, 1], [40, 0], [40, 2], [41, 0], [41, 1], [42, 0], [42, 1], [46, 0], [46, 1], [49, 0], [49, 2], [50, 0], [50, 1], [52, 0], [52, 2], [53, 0], [53, 1], [57, 0], [57, 2], [58, 0], [58, 1], [61, 0], [61, 2], [62, 0], [62, 1], [66, 0], [66, 2], [67, 0], [67, 1], [70, 1], [70, 2], [76, 1], [76, 2]],
|
1638 |
-
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate,
|
|
|
1639 |
|
1640 |
var $0 = $$.length - 1;
|
1641 |
switch (yystate) {
|
@@ -1645,25 +1774,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1645 |
case 2:
|
1646 |
this.$ = yy.prepareProgram($$[$0]);
|
1647 |
break;
|
1648 |
-
case 3:
|
1649 |
-
this.$ = $$[$0];
|
1650 |
-
break;
|
1651 |
-
case 4:
|
1652 |
-
this.$ = $$[$0];
|
1653 |
-
break;
|
1654 |
-
case 5:
|
1655 |
-
this.$ = $$[$0];
|
1656 |
-
break;
|
1657 |
-
case 6:
|
1658 |
-
this.$ = $$[$0];
|
1659 |
-
break;
|
1660 |
-
case 7:
|
1661 |
-
this.$ = $$[$0];
|
1662 |
-
break;
|
1663 |
-
case 8:
|
1664 |
this.$ = $$[$0];
|
1665 |
break;
|
1666 |
case 9:
|
|
|
1667 |
this.$ = {
|
1668 |
type: 'CommentStatement',
|
1669 |
value: yy.stripComment($$[$0]),
|
@@ -1673,6 +1788,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1673 |
|
1674 |
break;
|
1675 |
case 10:
|
|
|
1676 |
this.$ = {
|
1677 |
type: 'ContentStatement',
|
1678 |
original: $$[$0],
|
@@ -1696,36 +1812,29 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1696 |
case 15:
|
1697 |
this.$ = { open: $$[$0 - 5], path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
1698 |
break;
|
1699 |
-
case 16:
|
1700 |
-
this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
1701 |
-
break;
|
1702 |
-
case 17:
|
1703 |
this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
1704 |
break;
|
1705 |
case 18:
|
1706 |
this.$ = { strip: yy.stripFlags($$[$0 - 1], $$[$0 - 1]), program: $$[$0] };
|
1707 |
break;
|
1708 |
case 19:
|
|
|
1709 |
var inverse = yy.prepareBlock($$[$0 - 2], $$[$0 - 1], $$[$0], $$[$0], false, this._$),
|
1710 |
program = yy.prepareProgram([inverse], $$[$0 - 1].loc);
|
1711 |
program.chained = true;
|
1712 |
|
1713 |
this.$ = { strip: $$[$0 - 2].strip, program: program, chain: true };
|
1714 |
|
1715 |
-
break;
|
1716 |
-
case 20:
|
1717 |
-
this.$ = $$[$0];
|
1718 |
break;
|
1719 |
case 21:
|
1720 |
this.$ = { path: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 2], $$[$0]) };
|
1721 |
break;
|
1722 |
-
case 22:
|
1723 |
-
this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
|
1724 |
-
break;
|
1725 |
-
case 23:
|
1726 |
this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
|
1727 |
break;
|
1728 |
case 24:
|
|
|
1729 |
this.$ = {
|
1730 |
type: 'PartialStatement',
|
1731 |
name: $$[$0 - 3],
|
@@ -1743,13 +1852,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1743 |
case 26:
|
1744 |
this.$ = { path: $$[$0 - 3], params: $$[$0 - 2], hash: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 4], $$[$0]) };
|
1745 |
break;
|
1746 |
-
case 27:
|
1747 |
-
this.$ = $$[$0];
|
1748 |
-
break;
|
1749 |
-
case 28:
|
1750 |
-
this.$ = $$[$0];
|
1751 |
-
break;
|
1752 |
case 29:
|
|
|
1753 |
this.$ = {
|
1754 |
type: 'SubExpression',
|
1755 |
path: $$[$0 - 3],
|
@@ -1768,12 +1872,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1768 |
case 32:
|
1769 |
this.$ = yy.id($$[$0 - 1]);
|
1770 |
break;
|
1771 |
-
case 33:
|
1772 |
-
this.$ = $$[$0];
|
1773 |
-
break;
|
1774 |
-
case 34:
|
1775 |
-
this.$ = $$[$0];
|
1776 |
-
break;
|
1777 |
case 35:
|
1778 |
this.$ = { type: 'StringLiteral', value: $$[$0], original: $$[$0], loc: yy.locInfo(this._$) };
|
1779 |
break;
|
@@ -1789,12 +1887,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1789 |
case 39:
|
1790 |
this.$ = { type: 'NullLiteral', original: null, value: null, loc: yy.locInfo(this._$) };
|
1791 |
break;
|
1792 |
-
case 40:
|
1793 |
-
this.$ = $$[$0];
|
1794 |
-
break;
|
1795 |
-
case 41:
|
1796 |
-
this.$ = $$[$0];
|
1797 |
-
break;
|
1798 |
case 42:
|
1799 |
this.$ = yy.preparePath(true, $$[$0], this._$);
|
1800 |
break;
|
@@ -1807,125 +1899,81 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1807 |
case 45:
|
1808 |
this.$ = [{ part: yy.id($$[$0]), original: $$[$0] }];
|
1809 |
break;
|
1810 |
-
case 46:
|
1811 |
this.$ = [];
|
1812 |
break;
|
1813 |
-
case 47:
|
1814 |
$$[$0 - 1].push($$[$0]);
|
1815 |
break;
|
1816 |
-
case 48:
|
1817 |
this.$ = [$$[$0]];
|
1818 |
break;
|
1819 |
-
case 49:
|
1820 |
-
$$[$0 - 1].push($$[$0]);
|
1821 |
-
break;
|
1822 |
-
case 50:
|
1823 |
-
this.$ = [];
|
1824 |
-
break;
|
1825 |
-
case 51:
|
1826 |
-
$$[$0 - 1].push($$[$0]);
|
1827 |
-
break;
|
1828 |
-
case 58:
|
1829 |
-
this.$ = [];
|
1830 |
-
break;
|
1831 |
-
case 59:
|
1832 |
-
$$[$0 - 1].push($$[$0]);
|
1833 |
-
break;
|
1834 |
-
case 64:
|
1835 |
-
this.$ = [];
|
1836 |
-
break;
|
1837 |
-
case 65:
|
1838 |
-
$$[$0 - 1].push($$[$0]);
|
1839 |
-
break;
|
1840 |
-
case 70:
|
1841 |
-
this.$ = [];
|
1842 |
-
break;
|
1843 |
-
case 71:
|
1844 |
-
$$[$0 - 1].push($$[$0]);
|
1845 |
-
break;
|
1846 |
-
case 78:
|
1847 |
-
this.$ = [];
|
1848 |
-
break;
|
1849 |
-
case 79:
|
1850 |
-
$$[$0 - 1].push($$[$0]);
|
1851 |
-
break;
|
1852 |
-
case 82:
|
1853 |
-
this.$ = [];
|
1854 |
-
break;
|
1855 |
-
case 83:
|
1856 |
-
$$[$0 - 1].push($$[$0]);
|
1857 |
-
break;
|
1858 |
-
case 86:
|
1859 |
-
this.$ = [];
|
1860 |
-
break;
|
1861 |
-
case 87:
|
1862 |
-
$$[$0 - 1].push($$[$0]);
|
1863 |
-
break;
|
1864 |
-
case 90:
|
1865 |
-
this.$ = [];
|
1866 |
-
break;
|
1867 |
-
case 91:
|
1868 |
-
$$[$0 - 1].push($$[$0]);
|
1869 |
-
break;
|
1870 |
-
case 94:
|
1871 |
-
this.$ = [];
|
1872 |
-
break;
|
1873 |
-
case 95:
|
1874 |
-
$$[$0 - 1].push($$[$0]);
|
1875 |
-
break;
|
1876 |
-
case 98:
|
1877 |
-
this.$ = [$$[$0]];
|
1878 |
-
break;
|
1879 |
-
case 99:
|
1880 |
-
$$[$0 - 1].push($$[$0]);
|
1881 |
-
break;
|
1882 |
-
case 100:
|
1883 |
-
this.$ = [$$[$0]];
|
1884 |
-
break;
|
1885 |
-
case 101:
|
1886 |
-
$$[$0 - 1].push($$[$0]);
|
1887 |
-
break;
|
1888 |
}
|
1889 |
},
|
1890 |
-
table: [{ 3: 1, 4: 2, 5: [2, 46], 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 1: [3] }, { 5: [1, 4] }, { 5: [2, 2], 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 14: [1, 12], 15: [1, 20], 16: 17, 19: [1, 23], 24: 15, 27: 16, 29: [1, 21], 34: [1, 22], 39: [2, 2], 44: [2, 2], 47: [2, 2], 48: [1, 13], 51: [1, 14], 55: [1, 18], 59: 19, 60: [1, 24] }, { 1: [2, 1] }, { 5: [2, 47], 14: [2, 47], 15: [2, 47], 19: [2, 47], 29: [2, 47], 34: [2, 47], 39: [2, 47], 44: [2, 47], 47: [2, 47], 48: [2, 47], 51: [2, 47], 55: [2, 47], 60: [2, 47] }, { 5: [2, 3], 14: [2, 3], 15: [2, 3], 19: [2, 3], 29: [2, 3], 34: [2, 3], 39: [2, 3], 44: [2, 3], 47: [2, 3], 48: [2, 3], 51: [2, 3], 55: [2, 3], 60: [2, 3] }, { 5: [2, 4], 14: [2, 4], 15: [2, 4], 19: [2, 4], 29: [2, 4], 34: [2, 4], 39: [2, 4], 44: [2, 4], 47: [2, 4], 48: [2, 4], 51: [2, 4], 55: [2, 4], 60: [2, 4] }, { 5: [2, 5], 14: [2, 5], 15: [2, 5], 19: [2, 5], 29: [2, 5], 34: [2, 5], 39: [2, 5], 44: [2, 5], 47: [2, 5], 48: [2, 5], 51: [2, 5], 55: [2, 5], 60: [2, 5] }, { 5: [2, 6], 14: [2, 6], 15: [2, 6], 19: [2, 6], 29: [2, 6], 34: [2, 6], 39: [2, 6], 44: [2, 6], 47: [2, 6], 48: [2, 6], 51: [2, 6], 55: [2, 6], 60: [2, 6] }, { 5: [2, 7], 14: [2, 7], 15: [2, 7], 19: [2, 7], 29: [2, 7], 34: [2, 7], 39: [2, 7], 44: [2, 7], 47: [2, 7], 48: [2, 7], 51: [2, 7], 55: [2, 7], 60: [2, 7] }, { 5: [2, 8], 14: [2, 8], 15: [2, 8], 19: [2, 8], 29: [2, 8], 34: [2, 8], 39: [2, 8], 44: [2, 8], 47: [2, 8], 48: [2, 8], 51: [2, 8], 55: [2, 8], 60: [2, 8] }, { 5: [2, 9], 14: [2, 9], 15: [2, 9], 19: [2, 9], 29: [2, 9], 34: [2, 9], 39: [2, 9], 44: [2, 9], 47: [2, 9], 48: [2, 9], 51: [2, 9], 55: [2, 9], 60: [2, 9] }, { 20: 25, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 36, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 37, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 4: 38, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 13: 40, 15: [1, 20], 17: 39 }, { 20: 42, 56: 41, 64: 43, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 45, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 5: [2, 10], 14: [2, 10], 15: [2, 10], 18: [2, 10], 19: [2, 10], 29: [2, 10], 34: [2, 10], 39: [2, 10], 44: [2, 10], 47: [2, 10], 48: [2, 10], 51: [2, 10], 55: [2, 10], 60: [2, 10] }, { 20: 46, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 47, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 48, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 42, 56: 49, 64: 43, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [2, 78], 49: 50, 65: [2, 78], 72: [2, 78], 80: [2, 78], 81: [2, 78], 82: [2, 78], 83: [2, 78], 84: [2, 78], 85: [2, 78] }, { 23: [2, 33], 33: [2, 33], 54: [2, 33], 65: [2, 33], 68: [2, 33], 72: [2, 33], 75: [2, 33], 80: [2, 33], 81: [2, 33], 82: [2, 33], 83: [2, 33], 84: [2, 33], 85: [2, 33] }, { 23: [2, 34], 33: [2, 34], 54: [2, 34], 65: [2, 34], 68: [2, 34], 72: [2, 34], 75: [2, 34], 80: [2, 34], 81: [2, 34], 82: [2, 34], 83: [2, 34], 84: [2, 34], 85: [2, 34] }, { 23: [2, 35], 33: [2, 35], 54: [2, 35], 65: [2, 35], 68: [2, 35], 72: [2, 35], 75: [2, 35], 80: [2, 35], 81: [2, 35], 82: [2, 35], 83: [2, 35], 84: [2, 35], 85: [2, 35] }, { 23: [2, 36], 33: [2, 36], 54: [2, 36], 65: [2, 36], 68: [2, 36], 72: [2, 36], 75: [2, 36], 80: [2, 36], 81: [2, 36], 82: [2, 36], 83: [2, 36], 84: [2, 36], 85: [2, 36] }, { 23: [2, 37], 33: [2, 37], 54: [2, 37], 65: [2, 37], 68: [2, 37], 72: [2, 37], 75: [2, 37], 80: [2, 37], 81: [2, 37], 82: [2, 37], 83: [2, 37], 84: [2, 37], 85: [2, 37] }, { 23: [2, 38], 33: [2, 38], 54: [2, 38], 65: [2, 38], 68: [2, 38], 72: [2, 38], 75: [2, 38], 80: [2, 38], 81: [2, 38], 82: [2, 38], 83: [2, 38], 84: [2, 38], 85: [2, 38] }, { 23: [2, 39], 33: [2, 39], 54: [2, 39], 65: [2, 39], 68: [2, 39], 72: [2, 39], 75: [2, 39], 80: [2, 39], 81: [2, 39], 82: [2, 39], 83: [2, 39], 84: [2, 39], 85: [2, 39] }, { 23: [2, 43], 33: [2, 43], 54: [2, 43], 65: [2, 43], 68: [2, 43], 72: [2, 43], 75: [2, 43], 80: [2, 43], 81: [2, 43], 82: [2, 43], 83: [2, 43], 84: [2, 43], 85: [2, 43], 87: [1, 51] }, { 72: [1, 35], 86: 52 }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 52: 53, 54: [2, 82], 65: [2, 82], 72: [2, 82], 80: [2, 82], 81: [2, 82], 82: [2, 82], 83: [2, 82], 84: [2, 82], 85: [2, 82] }, { 25: 54, 38: 56, 39: [1, 58], 43: 57, 44: [1, 59], 45: 55, 47: [2, 54] }, { 28: 60, 43: 61, 44: [1, 59], 47: [2, 56] }, { 13: 63, 15: [1, 20], 18: [1, 62] }, { 15: [2, 48], 18: [2, 48] }, { 33: [2, 86], 57: 64, 65: [2, 86], 72: [2, 86], 80: [2, 86], 81: [2, 86], 82: [2, 86], 83: [2, 86], 84: [2, 86], 85: [2, 86] }, { 33: [2, 40], 65: [2, 40], 72: [2, 40], 80: [2, 40], 81: [2, 40], 82: [2, 40], 83: [2, 40], 84: [2, 40], 85: [2, 40] }, { 33: [2, 41], 65: [2, 41], 72: [2, 41], 80: [2, 41], 81: [2, 41], 82: [2, 41], 83: [2, 41], 84: [2, 41], 85: [2, 41] }, { 20: 65, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 66, 47: [1, 67] }, { 30: 68, 33: [2, 58], 65: [2, 58], 72: [2, 58], 75: [2, 58], 80: [2, 58], 81: [2, 58], 82: [2, 58], 83: [2, 58], 84: [2, 58], 85: [2, 58] }, { 33: [2, 64], 35: 69, 65: [2, 64], 72: [2, 64], 75: [2, 64], 80: [2, 64], 81: [2, 64], 82: [2, 64], 83: [2, 64], 84: [2, 64], 85: [2, 64] }, { 21: 70, 23: [2, 50], 65: [2, 50], 72: [2, 50], 80: [2, 50], 81: [2, 50], 82: [2, 50], 83: [2, 50], 84: [2, 50], 85: [2, 50] }, { 33: [2, 90], 61: 71, 65: [2, 90], 72: [2, 90], 80: [2, 90], 81: [2, 90], 82: [2, 90], 83: [2, 90], 84: [2, 90], 85: [2, 90] }, { 20: 75, 33: [2, 80], 50: 72, 63: 73, 64: 76, 65: [1, 44], 69: 74, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 72: [1, 80] }, { 23: [2, 42], 33: [2, 42], 54: [2, 42], 65: [2, 42], 68: [2, 42], 72: [2, 42], 75: [2, 42], 80: [2, 42], 81: [2, 42], 82: [2, 42], 83: [2, 42], 84: [2, 42], 85: [2, 42], 87: [1, 51] }, { 20: 75, 53: 81, 54: [2, 84], 63: 82, 64: 76, 65: [1, 44], 69: 83, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 84, 47: [1, 67] }, { 47: [2, 55] }, { 4: 85, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 47: [2, 20] }, { 20: 86, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 87, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 26: 88, 47: [1, 67] }, { 47: [2, 57] }, { 5: [2, 11], 14: [2, 11], 15: [2, 11], 19: [2, 11], 29: [2, 11], 34: [2, 11], 39: [2, 11], 44: [2, 11], 47: [2, 11], 48: [2, 11], 51: [2, 11], 55: [2, 11], 60: [2, 11] }, { 15: [2, 49], 18: [2, 49] }, { 20: 75, 33: [2, 88], 58: 89, 63: 90, 64: 76, 65: [1, 44], 69: 91, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 65: [2, 94], 66: 92, 68: [2, 94], 72: [2, 94], 80: [2, 94], 81: [2, 94], 82: [2, 94], 83: [2, 94], 84: [2, 94], 85: [2, 94] }, { 5: [2, 25], 14: [2, 25], 15: [2, 25], 19: [2, 25], 29: [2, 25], 34: [2, 25], 39: [2, 25], 44: [2, 25], 47: [2, 25], 48: [2, 25], 51: [2, 25], 55: [2, 25], 60: [2, 25] }, { 20: 93, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 31: 94, 33: [2, 60], 63: 95, 64: 76, 65: [1, 44], 69: 96, 70: 77, 71: 78, 72: [1, 79], 75: [2, 60], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 33: [2, 66], 36: 97, 63: 98, 64: 76, 65: [1, 44], 69: 99, 70: 77, 71: 78, 72: [1, 79], 75: [2, 66], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 22: 100, 23: [2, 52], 63: 101, 64: 76, 65: [1, 44], 69: 102, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 75, 33: [2, 92], 62: 103, 63: 104, 64: 76, 65: [1, 44], 69: 105, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 106] }, { 33: [2, 79], 65: [2, 79], 72: [2, 79], 80: [2, 79], 81: [2, 79], 82: [2, 79], 83: [2, 79], 84: [2, 79], 85: [2, 79] }, { 33: [2, 81] }, { 23: [2, 27], 33: [2, 27], 54: [2, 27], 65: [2, 27], 68: [2, 27], 72: [2, 27], 75: [2, 27], 80: [2, 27], 81: [2, 27], 82: [2, 27], 83: [2, 27], 84: [2, 27], 85: [2, 27] }, { 23: [2, 28], 33: [2, 28], 54: [2, 28], 65: [2, 28], 68: [2, 28], 72: [2, 28], 75: [2, 28], 80: [2, 28], 81: [2, 28], 82: [2, 28], 83: [2, 28], 84: [2, 28], 85: [2, 28] }, { 23: [2, 30], 33: [2, 30], 54: [2, 30], 68: [2, 30], 71: 107, 72: [1, 108], 75: [2, 30] }, { 23: [2, 98], 33: [2, 98], 54: [2, 98], 68: [2, 98], 72: [2, 98], 75: [2, 98] }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 73: [1, 109], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 23: [2, 44], 33: [2, 44], 54: [2, 44], 65: [2, 44], 68: [2, 44], 72: [2, 44], 75: [2, 44], 80: [2, 44], 81: [2, 44], 82: [2, 44], 83: [2, 44], 84: [2, 44], 85: [2, 44], 87: [2, 44] }, { 54: [1, 110] }, { 54: [2, 83], 65: [2, 83], 72: [2, 83], 80: [2, 83], 81: [2, 83], 82: [2, 83], 83: [2, 83], 84: [2, 83], 85: [2, 83] }, { 54: [2, 85] }, { 5: [2, 13], 14: [2, 13], 15: [2, 13], 19: [2, 13], 29: [2, 13], 34: [2, 13], 39: [2, 13], 44: [2, 13], 47: [2, 13], 48: [2, 13], 51: [2, 13], 55: [2, 13], 60: [2, 13] }, { 38: 56, 39: [1, 58], 43: 57, 44: [1, 59], 45: 112, 46: 111, 47: [2, 76] }, { 33: [2, 70], 40: 113, 65: [2, 70], 72: [2, 70], 75: [2, 70], 80: [2, 70], 81: [2, 70], 82: [2, 70], 83: [2, 70], 84: [2, 70], 85: [2, 70] }, { 47: [2, 18] }, { 5: [2, 14], 14: [2, 14], 15: [2, 14], 19: [2, 14], 29: [2, 14], 34: [2, 14], 39: [2, 14], 44: [2, 14], 47: [2, 14], 48: [2, 14], 51: [2, 14], 55: [2, 14], 60: [2, 14] }, { 33: [1, 114] }, { 33: [2, 87], 65: [2, 87], 72: [2, 87], 80: [2, 87], 81: [2, 87], 82: [2, 87], 83: [2, 87], 84: [2, 87], 85: [2, 87] }, { 33: [2, 89] }, { 20: 75, 63: 116, 64: 76, 65: [1, 44], 67: 115, 68: [2, 96], 69: 117, 70: 77, 71: 78, 72: [1, 79], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 118] }, { 32: 119, 33: [2, 62], 74: 120, 75: [1, 121] }, { 33: [2, 59], 65: [2, 59], 72: [2, 59], 75: [2, 59], 80: [2, 59], 81: [2, 59], 82: [2, 59], 83: [2, 59], 84: [2, 59], 85: [2, 59] }, { 33: [2, 61], 75: [2, 61] }, { 33: [2, 68], 37: 122, 74: 123, 75: [1, 121] }, { 33: [2, 65], 65: [2, 65], 72: [2, 65], 75: [2, 65], 80: [2, 65], 81: [2, 65], 82: [2, 65], 83: [2, 65], 84: [2, 65], 85: [2, 65] }, { 33: [2, 67], 75: [2, 67] }, { 23: [1, 124] }, { 23: [2, 51], 65: [2, 51], 72: [2, 51], 80: [2, 51], 81: [2, 51], 82: [2, 51], 83: [2, 51], 84: [2, 51], 85: [2, 51] }, { 23: [2, 53] }, { 33: [1, 125] }, { 33: [2, 91], 65: [2, 91], 72: [2, 91], 80: [2, 91], 81: [2, 91], 82: [2, 91], 83: [2, 91], 84: [2, 91], 85: [2, 91] }, { 33: [2, 93] }, { 5: [2, 22], 14: [2, 22], 15: [2, 22], 19: [2, 22], 29: [2, 22], 34: [2, 22], 39: [2, 22], 44: [2, 22], 47: [2, 22], 48: [2, 22], 51: [2, 22], 55: [2, 22], 60: [2, 22] }, { 23: [2, 99], 33: [2, 99], 54: [2, 99], 68: [2, 99], 72: [2, 99], 75: [2, 99] }, { 73: [1, 109] }, { 20: 75, 63: 126, 64: 76, 65: [1, 44], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 23], 14: [2, 23], 15: [2, 23], 19: [2, 23], 29: [2, 23], 34: [2, 23], 39: [2, 23], 44: [2, 23], 47: [2, 23], 48: [2, 23], 51: [2, 23], 55: [2, 23], 60: [2, 23] }, { 47: [2, 19] }, { 47: [2, 77] }, { 20: 75, 33: [2, 72], 41: 127, 63: 128, 64: 76, 65: [1, 44], 69: 129, 70: 77, 71: 78, 72: [1, 79], 75: [2, 72], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 24], 14: [2, 24], 15: [2, 24], 19: [2, 24], 29: [2, 24], 34: [2, 24], 39: [2, 24], 44: [2, 24], 47: [2, 24], 48: [2, 24], 51: [2, 24], 55: [2, 24], 60: [2, 24] }, { 68: [1, 130] }, { 65: [2, 95], 68: [2, 95], 72: [2, 95], 80: [2, 95], 81: [2, 95], 82: [2, 95], 83: [2, 95], 84: [2, 95], 85: [2, 95] }, { 68: [2, 97] }, { 5: [2, 21], 14: [2, 21], 15: [2, 21], 19: [2, 21], 29: [2, 21], 34: [2, 21], 39: [2, 21], 44: [2, 21], 47: [2, 21], 48: [2, 21], 51: [2, 21], 55: [2, 21], 60: [2, 21] }, { 33: [1, 131] }, { 33: [2, 63] }, { 72: [1, 133], 76: 132 }, { 33: [1, 134] }, { 33: [2, 69] }, { 15: [2, 12] }, { 14: [2, 26], 15: [2, 26], 19: [2, 26], 29: [2, 26], 34: [2, 26], 47: [2, 26], 48: [2, 26], 51: [2, 26], 55: [2, 26], 60: [2, 26] }, { 23: [2, 31], 33: [2, 31], 54: [2, 31], 68: [2, 31], 72: [2, 31], 75: [2, 31] }, { 33: [2, 74], 42: 135, 74: 136, 75: [1, 121] }, { 33: [2, 71], 65: [2, 71], 72: [2, 71], 75: [2, 71], 80: [2, 71], 81: [2, 71], 82: [2, 71], 83: [2, 71], 84: [2, 71], 85: [2, 71] }, { 33: [2, 73], 75: [2, 73] }, { 23: [2, 29], 33: [2, 29], 54: [2, 29], 65: [2, 29], 68: [2, 29], 72: [2, 29], 75: [2, 29], 80: [2, 29], 81: [2, 29], 82: [2, 29], 83: [2, 29], 84: [2, 29], 85: [2, 29] }, { 14: [2, 15], 15: [2, 15], 19: [2, 15], 29: [2, 15], 34: [2, 15], 39: [2, 15], 44: [2, 15], 47: [2, 15], 48: [2, 15], 51: [2, 15], 55: [2, 15], 60: [2, 15] }, { 72: [1, 138], 77: [1, 137] }, { 72: [2, 100], 77: [2, 100] }, { 14: [2, 16], 15: [2, 16], 19: [2, 16], 29: [2, 16], 34: [2, 16], 44: [2, 16], 47: [2, 16], 48: [2, 16], 51: [2, 16], 55: [2, 16], 60: [2, 16] }, { 33: [1, 139] }, { 33: [2, 75] }, { 33: [2, 32] }, { 72: [2, 101], 77: [2, 101] }, { 14: [2, 17], 15: [2, 17], 19: [2, 17], 29: [2, 17], 34: [2, 17], 39: [2, 17], 44: [2, 17], 47: [2, 17], 48: [2, 17], 51: [2, 17], 55: [2, 17], 60: [2, 17] }],
|
1891 |
defaultActions: { 4: [2, 1], 55: [2, 55], 57: [2, 20], 61: [2, 57], 74: [2, 81], 83: [2, 85], 87: [2, 18], 91: [2, 89], 102: [2, 53], 105: [2, 93], 111: [2, 19], 112: [2, 77], 117: [2, 97], 120: [2, 63], 123: [2, 69], 124: [2, 12], 136: [2, 75], 137: [2, 32] },
|
1892 |
parseError: function parseError(str, hash) {
|
1893 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1894 |
},
|
1895 |
parse: function parse(input) {
|
1896 |
var self = this,
|
1897 |
stack = [0],
|
|
|
1898 |
vstack = [null],
|
1899 |
lstack = [],
|
1900 |
table = this.table,
|
1901 |
-
yytext =
|
1902 |
yylineno = 0,
|
1903 |
yyleng = 0,
|
1904 |
recovering = 0,
|
1905 |
TERROR = 2,
|
1906 |
EOF = 1;
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
this.yy
|
1911 |
-
|
1912 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1913 |
lstack.push(yyloc);
|
1914 |
-
var ranges =
|
1915 |
-
if (typeof
|
|
|
|
|
|
|
|
|
1916 |
function popStack(n) {
|
1917 |
stack.length = stack.length - 2 * n;
|
1918 |
vstack.length = vstack.length - n;
|
1919 |
lstack.length = lstack.length - n;
|
1920 |
}
|
1921 |
-
function lex() {
|
1922 |
var token;
|
1923 |
-
token =
|
1924 |
-
if (typeof token !==
|
1925 |
token = self.symbols_[token] || token;
|
1926 |
}
|
1927 |
return token;
|
1928 |
-
}
|
1929 |
var symbol,
|
1930 |
preErrorSymbol,
|
1931 |
state,
|
@@ -1942,42 +1990,50 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1942 |
if (this.defaultActions[state]) {
|
1943 |
action = this.defaultActions[state];
|
1944 |
} else {
|
1945 |
-
if (symbol === null || typeof symbol ==
|
1946 |
symbol = lex();
|
1947 |
}
|
1948 |
action = table[state] && table[state][symbol];
|
1949 |
}
|
1950 |
-
if (typeof action ===
|
1951 |
-
var errStr =
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
expected.push(
|
1956 |
-
}
|
1957 |
-
if (this.lexer.showPosition) {
|
1958 |
-
errStr = "Parse error on line " + (yylineno + 1) + ":\n" + this.lexer.showPosition() + "\nExpecting " + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symbol) + "'";
|
1959 |
-
} else {
|
1960 |
-
errStr = "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == 1 ? "end of input" : "'" + (this.terminals_[symbol] || symbol) + "'");
|
1961 |
}
|
1962 |
-
this.parseError(errStr, { text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, loc: yyloc, expected: expected });
|
1963 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1964 |
}
|
1965 |
if (action[0] instanceof Array && action.length > 1) {
|
1966 |
-
throw new Error(
|
1967 |
}
|
1968 |
switch (action[0]) {
|
1969 |
case 1:
|
1970 |
stack.push(symbol);
|
1971 |
-
vstack.push(
|
1972 |
-
lstack.push(
|
1973 |
stack.push(action[1]);
|
1974 |
symbol = null;
|
1975 |
if (!preErrorSymbol) {
|
1976 |
-
yyleng =
|
1977 |
-
yytext =
|
1978 |
-
yylineno =
|
1979 |
-
yyloc =
|
1980 |
-
if (recovering > 0)
|
|
|
|
|
1981 |
} else {
|
1982 |
symbol = preErrorSymbol;
|
1983 |
preErrorSymbol = null;
|
@@ -1986,12 +2042,17 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1986 |
case 2:
|
1987 |
len = this.productions_[action[1]][1];
|
1988 |
yyval.$ = vstack[vstack.length - len];
|
1989 |
-
yyval._$ = {
|
|
|
|
|
|
|
|
|
|
|
1990 |
if (ranges) {
|
1991 |
yyval._$.range = [lstack[lstack.length - (len || 1)].range[0], lstack[lstack.length - 1].range[1]];
|
1992 |
}
|
1993 |
-
r = this.performAction.
|
1994 |
-
if (typeof r !==
|
1995 |
return r;
|
1996 |
}
|
1997 |
if (len) {
|
@@ -2010,11 +2071,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2010 |
}
|
2011 |
}
|
2012 |
return true;
|
2013 |
-
}
|
2014 |
-
|
2015 |
-
/* Jison generated lexer */
|
2016 |
var lexer = (function () {
|
2017 |
-
var lexer = {
|
|
|
|
|
|
|
2018 |
parseError: function parseError(str, hash) {
|
2019 |
if (this.yy.parser) {
|
2020 |
this.yy.parser.parseError(str, hash);
|
@@ -2022,17 +2085,29 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2022 |
throw new Error(str);
|
2023 |
}
|
2024 |
},
|
2025 |
-
|
|
|
|
|
|
|
2026 |
this._input = input;
|
2027 |
-
this._more = this.
|
2028 |
this.yylineno = this.yyleng = 0;
|
2029 |
this.yytext = this.matched = this.match = '';
|
2030 |
this.conditionStack = ['INITIAL'];
|
2031 |
-
this.yylloc = {
|
2032 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
this.offset = 0;
|
2034 |
return this;
|
2035 |
},
|
|
|
|
|
2036 |
input: function input() {
|
2037 |
var ch = this._input[0];
|
2038 |
this.yytext += ch;
|
@@ -2047,27 +2122,34 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2047 |
} else {
|
2048 |
this.yylloc.last_column++;
|
2049 |
}
|
2050 |
-
if (this.options.ranges)
|
|
|
|
|
2051 |
|
2052 |
this._input = this._input.slice(1);
|
2053 |
return ch;
|
2054 |
},
|
|
|
|
|
2055 |
unput: function unput(ch) {
|
2056 |
var len = ch.length;
|
2057 |
var lines = ch.split(/(?:\r\n?|\n)/g);
|
2058 |
|
2059 |
this._input = ch + this._input;
|
2060 |
-
this.yytext = this.yytext.substr(0, this.yytext.length - len
|
2061 |
//this.yyleng -= len;
|
2062 |
this.offset -= len;
|
2063 |
var oldLines = this.match.split(/(?:\r\n?|\n)/g);
|
2064 |
this.match = this.match.substr(0, this.match.length - 1);
|
2065 |
this.matched = this.matched.substr(0, this.matched.length - 1);
|
2066 |
|
2067 |
-
if (lines.length - 1)
|
|
|
|
|
2068 |
var r = this.yylloc.range;
|
2069 |
|
2070 |
-
this.yylloc = {
|
|
|
2071 |
last_line: this.yylineno + 1,
|
2072 |
first_column: this.yylloc.first_column,
|
2073 |
last_column: lines ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length - lines[0].length : this.yylloc.first_column - len
|
@@ -2076,19 +2158,42 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2076 |
if (this.options.ranges) {
|
2077 |
this.yylloc.range = [r[0], r[0] + this.yyleng - len];
|
2078 |
}
|
|
|
2079 |
return this;
|
2080 |
},
|
|
|
|
|
2081 |
more: function more() {
|
2082 |
this._more = true;
|
2083 |
return this;
|
2084 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2085 |
less: function less(n) {
|
2086 |
this.unput(this.match.slice(n));
|
2087 |
},
|
|
|
|
|
2088 |
pastInput: function pastInput() {
|
2089 |
var past = this.matched.substr(0, this.matched.length - this.match.length);
|
2090 |
return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, "");
|
2091 |
},
|
|
|
|
|
2092 |
upcomingInput: function upcomingInput() {
|
2093 |
var next = this.match;
|
2094 |
if (next.length < 20) {
|
@@ -2096,18 +2201,92 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2096 |
}
|
2097 |
return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, "");
|
2098 |
},
|
|
|
|
|
2099 |
showPosition: function showPosition() {
|
2100 |
var pre = this.pastInput();
|
2101 |
var c = new Array(pre.length + 1).join("-");
|
2102 |
return pre + this.upcomingInput() + "\n" + c + "^";
|
2103 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2104 |
next: function next() {
|
2105 |
if (this.done) {
|
2106 |
return this.EOF;
|
2107 |
}
|
2108 |
-
if (!this._input)
|
|
|
|
|
2109 |
|
2110 |
-
var token, match, tempMatch, index
|
2111 |
if (!this._more) {
|
2112 |
this.yytext = '';
|
2113 |
this.match = '';
|
@@ -2118,251 +2297,303 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2118 |
if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {
|
2119 |
match = tempMatch;
|
2120 |
index = i;
|
2121 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2122 |
}
|
2123 |
}
|
2124 |
if (match) {
|
2125 |
-
|
2126 |
-
if (
|
2127 |
-
|
2128 |
-
last_line: this.yylineno + 1,
|
2129 |
-
first_column: this.yylloc.last_column,
|
2130 |
-
last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length };
|
2131 |
-
this.yytext += match[0];
|
2132 |
-
this.match += match[0];
|
2133 |
-
this.matches = match;
|
2134 |
-
this.yyleng = this.yytext.length;
|
2135 |
-
if (this.options.ranges) {
|
2136 |
-
this.yylloc.range = [this.offset, this.offset += this.yyleng];
|
2137 |
}
|
2138 |
-
this.
|
2139 |
-
|
2140 |
-
this.matched += match[0];
|
2141 |
-
token = this.performAction.call(this, this.yy, this, rules[index], this.conditionStack[this.conditionStack.length - 1]);
|
2142 |
-
if (this.done && this._input) this.done = false;
|
2143 |
-
if (token) return token;else return;
|
2144 |
}
|
2145 |
if (this._input === "") {
|
2146 |
return this.EOF;
|
2147 |
} else {
|
2148 |
-
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), {
|
|
|
|
|
|
|
|
|
2149 |
}
|
2150 |
},
|
|
|
|
|
2151 |
lex: function lex() {
|
2152 |
var r = this.next();
|
2153 |
-
if (
|
2154 |
return r;
|
2155 |
} else {
|
2156 |
return this.lex();
|
2157 |
}
|
2158 |
},
|
|
|
|
|
2159 |
begin: function begin(condition) {
|
2160 |
this.conditionStack.push(condition);
|
2161 |
},
|
|
|
|
|
2162 |
popState: function popState() {
|
2163 |
-
|
|
|
|
|
|
|
|
|
|
|
2164 |
},
|
|
|
|
|
2165 |
_currentRules: function _currentRules() {
|
2166 |
-
|
|
|
|
|
|
|
|
|
2167 |
},
|
2168 |
-
|
2169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2170 |
},
|
2171 |
-
|
|
|
|
|
2172 |
this.begin(condition);
|
2173 |
-
}
|
2174 |
-
lexer.options = {};
|
2175 |
-
lexer.performAction = function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
|
2176 |
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
|
|
|
|
|
|
2180 |
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
if (yy_.yytext.slice(-2) === "\\\\") {
|
2185 |
-
strip(0, 1);
|
2186 |
-
this.begin("mu");
|
2187 |
-
} else if (yy_.yytext.slice(-1) === "\\") {
|
2188 |
-
strip(0, 1);
|
2189 |
-
this.begin("emu");
|
2190 |
-
} else {
|
2191 |
-
this.begin("mu");
|
2192 |
-
}
|
2193 |
-
if (yy_.yytext) return 15;
|
2194 |
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2202 |
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
// Should be using `this.topState()` below, but it currently
|
2210 |
-
// returns the second top instead of the first top. Opened an
|
2211 |
-
// issue about it at https://github.com/zaach/jison/issues/291
|
2212 |
-
if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
|
2213 |
return 15;
|
2214 |
-
} else {
|
2215 |
-
strip(5, 9);
|
2216 |
-
return 'END_RAW_BLOCK';
|
2217 |
-
}
|
2218 |
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2226 |
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
case 9:
|
2235 |
-
return 19;
|
2236 |
-
break;
|
2237 |
-
case 10:
|
2238 |
-
this.popState();
|
2239 |
-
this.begin('raw');
|
2240 |
-
return 23;
|
2241 |
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
this.popState();return 44;
|
2257 |
-
break;
|
2258 |
-
case 16:
|
2259 |
-
this.popState();return 44;
|
2260 |
-
break;
|
2261 |
-
case 17:
|
2262 |
-
return 34;
|
2263 |
-
break;
|
2264 |
-
case 18:
|
2265 |
-
return 39;
|
2266 |
-
break;
|
2267 |
-
case 19:
|
2268 |
-
return 51;
|
2269 |
-
break;
|
2270 |
-
case 20:
|
2271 |
-
return 48;
|
2272 |
-
break;
|
2273 |
-
case 21:
|
2274 |
-
this.unput(yy_.yytext);
|
2275 |
-
this.popState();
|
2276 |
-
this.begin('com');
|
2277 |
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2282 |
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2351 |
};
|
2352 |
-
lexer.rules = [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]*?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/];
|
2353 |
-
lexer.conditions = { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } };
|
2354 |
return lexer;
|
2355 |
})();
|
2356 |
parser.lexer = lexer;
|
2357 |
function Parser() {
|
2358 |
this.yy = {};
|
2359 |
-
}
|
|
|
2360 |
return new Parser();
|
2361 |
})();exports["default"] = handlebars;
|
2362 |
module.exports = exports["default"];
|
2363 |
|
2364 |
/***/ }),
|
2365 |
/* 38 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2366 |
/***/ (function(module, exports, __webpack_require__) {
|
2367 |
|
2368 |
'use strict';
|
@@ -2371,7 +2602,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2371 |
|
2372 |
exports.__esModule = true;
|
2373 |
|
2374 |
-
var _visitor = __webpack_require__(
|
2375 |
|
2376 |
var _visitor2 = _interopRequireDefault(_visitor);
|
2377 |
|
@@ -2575,7 +2806,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2575 |
return;
|
2576 |
}
|
2577 |
|
2578 |
-
// We omit the last node if it's whitespace only and not
|
2579 |
var original = current.value;
|
2580 |
current.value = current.value.replace(multiple ? /\s+$/ : /[ \t]+$/, '');
|
2581 |
current.leftStripped = current.value !== original;
|
@@ -2586,7 +2817,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2586 |
module.exports = exports['default'];
|
2587 |
|
2588 |
/***/ }),
|
2589 |
-
/*
|
2590 |
/***/ (function(module, exports, __webpack_require__) {
|
2591 |
|
2592 |
'use strict';
|
@@ -2729,7 +2960,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2729 |
module.exports = exports['default'];
|
2730 |
|
2731 |
/***/ }),
|
2732 |
-
/*
|
2733 |
/***/ (function(module, exports, __webpack_require__) {
|
2734 |
|
2735 |
'use strict';
|
@@ -2960,7 +3191,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2960 |
}
|
2961 |
|
2962 |
/***/ }),
|
2963 |
-
/*
|
2964 |
/***/ (function(module, exports, __webpack_require__) {
|
2965 |
|
2966 |
/* eslint-disable new-cap */
|
@@ -3536,7 +3767,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3536 |
}
|
3537 |
|
3538 |
/***/ }),
|
3539 |
-
/*
|
3540 |
/***/ (function(module, exports, __webpack_require__) {
|
3541 |
|
3542 |
'use strict';
|
@@ -3553,7 +3784,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3553 |
|
3554 |
var _utils = __webpack_require__(5);
|
3555 |
|
3556 |
-
var _codeGen = __webpack_require__(
|
3557 |
|
3558 |
var _codeGen2 = _interopRequireDefault(_codeGen);
|
3559 |
|
@@ -3867,7 +4098,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3867 |
// replace it on the stack with the result of properly
|
3868 |
// invoking blockHelperMissing.
|
3869 |
blockValue: function blockValue(name) {
|
3870 |
-
var blockHelperMissing = this.aliasable('
|
3871 |
params = [this.contextName(0)];
|
3872 |
this.setupHelperArgs(name, 0, params);
|
3873 |
|
@@ -3885,7 +4116,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3885 |
// On stack, after, if lastHelper: value
|
3886 |
ambiguousBlockValue: function ambiguousBlockValue() {
|
3887 |
// We're being a bit cheeky and reusing the options value from the prior exec
|
3888 |
-
var blockHelperMissing = this.aliasable('
|
3889 |
params = [this.contextName(0)];
|
3890 |
this.setupHelperArgs('', 0, params, true);
|
3891 |
|
@@ -4176,18 +4407,33 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4176 |
// If the helper is not found, `helperMissing` is called.
|
4177 |
invokeHelper: function invokeHelper(paramSize, name, isSimple) {
|
4178 |
var nonHelper = this.popStack(),
|
4179 |
-
helper = this.setupHelper(paramSize, name)
|
4180 |
-
simple = isSimple ? [helper.name, ' || '] : '';
|
4181 |
|
4182 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4183 |
if (!this.options.strict) {
|
4184 |
-
|
4185 |
}
|
4186 |
-
lookup.push(')');
|
4187 |
|
4188 |
-
|
|
|
|
|
4189 |
},
|
4190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4191 |
// [invokeKnownHelper]
|
4192 |
//
|
4193 |
// On stack, before: hash, inverse, program, params..., ...
|
@@ -4225,7 +4471,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4225 |
var lookup = ['(', '(helper = ', helperName, ' || ', nonHelper, ')'];
|
4226 |
if (!this.options.strict) {
|
4227 |
lookup[0] = '(helper = ';
|
4228 |
-
lookup.push(' != null ? helper : ', this.aliasable('
|
4229 |
}
|
4230 |
|
4231 |
this.push(['(', lookup, helper.paramsInit ? ['),(', helper.paramsInit] : [], '),', '(typeof helper === ', this.aliasable('"function"'), ' ? ', this.source.functionCall('helper', 'call', helper.callParams), ' : helper))']);
|
@@ -4670,7 +4916,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4670 |
module.exports = exports['default'];
|
4671 |
|
4672 |
/***/ }),
|
4673 |
-
/*
|
4674 |
/***/ (function(module, exports, __webpack_require__) {
|
4675 |
|
4676 |
/* global define */
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
+
handlebars v4.3.0
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
98 |
|
99 |
var _handlebarsCompilerBase = __webpack_require__(36);
|
100 |
|
101 |
+
var _handlebarsCompilerCompiler = __webpack_require__(43);
|
102 |
|
103 |
+
var _handlebarsCompilerJavascriptCompiler = __webpack_require__(44);
|
104 |
|
105 |
var _handlebarsCompilerJavascriptCompiler2 = _interopRequireDefault(_handlebarsCompilerJavascriptCompiler);
|
106 |
|
107 |
+
var _handlebarsCompilerVisitor = __webpack_require__(41);
|
108 |
|
109 |
var _handlebarsCompilerVisitor2 = _interopRequireDefault(_handlebarsCompilerVisitor);
|
110 |
|
275 |
|
276 |
var _logger2 = _interopRequireDefault(_logger);
|
277 |
|
278 |
+
var VERSION = '4.3.0';
|
279 |
exports.VERSION = VERSION;
|
280 |
+
var COMPILER_REVISION = 8;
|
281 |
|
282 |
exports.COMPILER_REVISION = COMPILER_REVISION;
|
283 |
var REVISION_CHANGES = {
|
287 |
4: '== 1.x.x',
|
288 |
5: '== 2.0.0-alpha.x',
|
289 |
6: '>= 2.0.0-beta.1',
|
290 |
+
7: '>= 4.0.0 <4.3.0',
|
291 |
+
8: '>= 4.3.0'
|
292 |
};
|
293 |
|
294 |
exports.REVISION_CHANGES = REVISION_CHANGES;
|
372 |
exports.createFrame = createFrame;
|
373 |
exports.blockParams = blockParams;
|
374 |
exports.appendContextPath = appendContextPath;
|
375 |
+
|
376 |
var escape = {
|
377 |
'&': '&',
|
378 |
'<': '<',
|
590 |
|
591 |
exports.__esModule = true;
|
592 |
exports.registerDefaultHelpers = registerDefaultHelpers;
|
593 |
+
exports.moveHelperToHooks = moveHelperToHooks;
|
594 |
|
595 |
var _helpersBlockHelperMissing = __webpack_require__(11);
|
596 |
|
630 |
_helpersWith2['default'](instance);
|
631 |
}
|
632 |
|
633 |
+
function moveHelperToHooks(instance, helperName, keepHelper) {
|
634 |
+
if (instance.helpers[helperName]) {
|
635 |
+
instance.hooks[helperName] = instance.helpers[helperName];
|
636 |
+
if (!keepHelper) {
|
637 |
+
delete instance.helpers[helperName];
|
638 |
+
}
|
639 |
+
}
|
640 |
+
}
|
641 |
+
|
642 |
/***/ }),
|
643 |
/* 11 */
|
644 |
/***/ (function(module, exports, __webpack_require__) {
|
1081 |
|
1082 |
var _base = __webpack_require__(4);
|
1083 |
|
1084 |
+
var _helpers = __webpack_require__(10);
|
1085 |
+
|
1086 |
function checkRevision(compilerInfo) {
|
1087 |
var compilerRevision = compilerInfo && compilerInfo[0] || 1,
|
1088 |
currentRevision = _base.COMPILER_REVISION;
|
1100 |
}
|
1101 |
|
1102 |
function template(templateSpec, env) {
|
1103 |
+
|
1104 |
/* istanbul ignore next */
|
1105 |
if (!env) {
|
1106 |
throw new _exception2['default']('No environment passed to template');
|
1112 |
templateSpec.main.decorator = templateSpec.main_d;
|
1113 |
|
1114 |
// Note: Using env.VM references rather than local var references throughout this section to allow
|
1115 |
+
// for external users to override these as pseudo-supported APIs.
|
1116 |
env.VM.checkRevision(templateSpec.compiler);
|
1117 |
|
1118 |
function invokePartialWrapper(partial, context, options) {
|
1122 |
options.ids[0] = true;
|
1123 |
}
|
1124 |
}
|
|
|
1125 |
partial = env.VM.resolvePartial.call(this, partial, context, options);
|
1126 |
+
|
1127 |
+
var optionsWithHooks = Utils.extend({}, options, { hooks: this.hooks });
|
1128 |
+
|
1129 |
+
var result = env.VM.invokePartial.call(this, partial, context, optionsWithHooks);
|
1130 |
|
1131 |
if (result == null && env.compile) {
|
1132 |
options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env);
|
1133 |
+
result = options.partials[options.name](context, optionsWithHooks);
|
1134 |
}
|
1135 |
if (result != null) {
|
1136 |
if (options.indent) {
|
1197 |
}
|
1198 |
return value;
|
1199 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1200 |
// An empty object to use as replacement for null-contexts
|
1201 |
nullContext: _Object$seal({}),
|
1202 |
|
1233 |
|
1234 |
ret._setup = function (options) {
|
1235 |
if (!options.partial) {
|
1236 |
+
container.helpers = Utils.extend({}, env.helpers, options.helpers);
|
1237 |
|
1238 |
if (templateSpec.usePartial) {
|
1239 |
+
container.partials = Utils.extend({}, env.partials, options.partials);
|
1240 |
}
|
1241 |
if (templateSpec.usePartial || templateSpec.useDecorators) {
|
1242 |
+
container.decorators = Utils.extend({}, env.decorators, options.decorators);
|
1243 |
}
|
1244 |
+
|
1245 |
+
container.hooks = {};
|
1246 |
+
var keepHelper = options.allowCallsToHelperMissing;
|
1247 |
+
_helpers.moveHelperToHooks(container, 'helperMissing', keepHelper);
|
1248 |
+
_helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelper);
|
1249 |
} else {
|
1250 |
container.helpers = options.helpers;
|
1251 |
container.partials = options.partials;
|
1252 |
container.decorators = options.decorators;
|
1253 |
+
container.hooks = options.hooks;
|
1254 |
}
|
1255 |
};
|
1256 |
|
1287 |
return prog;
|
1288 |
}
|
1289 |
|
1290 |
+
/**
|
1291 |
+
* This is currently part of the official API, therefore implementation details should not be changed.
|
1292 |
+
*/
|
1293 |
+
|
1294 |
function resolvePartial(partial, context, options) {
|
1295 |
if (!partial) {
|
1296 |
if (options.name === '@partial-block') {
|
1606 |
|
1607 |
var _parser2 = _interopRequireDefault(_parser);
|
1608 |
|
1609 |
+
var _whitespaceControl = __webpack_require__(40);
|
1610 |
|
1611 |
var _whitespaceControl2 = _interopRequireDefault(_whitespaceControl);
|
1612 |
|
1613 |
+
var _helpers = __webpack_require__(42);
|
1614 |
|
1615 |
var Helpers = _interopRequireWildcard(_helpers);
|
1616 |
|
1640 |
|
1641 |
/***/ }),
|
1642 |
/* 37 */
|
1643 |
+
/***/ (function(module, exports, __webpack_require__) {
|
1644 |
|
1645 |
// File ignored in coverage tests via setting in .istanbul.yml
|
1646 |
+
/* parser generated by jison 0.4.16 */
|
1647 |
+
/*
|
1648 |
+
Returns a Parser object of the following structure:
|
1649 |
+
|
1650 |
+
Parser: {
|
1651 |
+
yy: {}
|
1652 |
+
}
|
1653 |
+
|
1654 |
+
Parser.prototype: {
|
1655 |
+
yy: {},
|
1656 |
+
trace: function(),
|
1657 |
+
symbols_: {associative list: name ==> number},
|
1658 |
+
terminals_: {associative list: number ==> name},
|
1659 |
+
productions_: [...],
|
1660 |
+
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$),
|
1661 |
+
table: [...],
|
1662 |
+
defaultActions: {...},
|
1663 |
+
parseError: function(str, hash),
|
1664 |
+
parse: function(input),
|
1665 |
+
|
1666 |
+
lexer: {
|
1667 |
+
EOF: 1,
|
1668 |
+
parseError: function(str, hash),
|
1669 |
+
setInput: function(input),
|
1670 |
+
input: function(),
|
1671 |
+
unput: function(str),
|
1672 |
+
more: function(),
|
1673 |
+
less: function(n),
|
1674 |
+
pastInput: function(),
|
1675 |
+
upcomingInput: function(),
|
1676 |
+
showPosition: function(),
|
1677 |
+
test_match: function(regex_match_array, rule_index),
|
1678 |
+
next: function(),
|
1679 |
+
lex: function(),
|
1680 |
+
begin: function(condition),
|
1681 |
+
popState: function(),
|
1682 |
+
_currentRules: function(),
|
1683 |
+
topState: function(),
|
1684 |
+
pushState: function(condition),
|
1685 |
+
|
1686 |
+
options: {
|
1687 |
+
ranges: boolean (optional: true ==> token location info will include a .range[] member)
|
1688 |
+
flex: boolean (optional: true ==> flex-like lexing behaviour where the rules are tested exhaustively to find the longest match)
|
1689 |
+
backtrack_lexer: boolean (optional: true ==> lexer regexes are tested in order and for each matching regex the action code is invoked; the lexer terminates the scan when a token is returned by the action code)
|
1690 |
+
},
|
1691 |
+
|
1692 |
+
performAction: function(yy, yy_, $avoiding_name_collisions, YY_START),
|
1693 |
+
rules: [...],
|
1694 |
+
conditions: {associative list: name ==> set},
|
1695 |
+
}
|
1696 |
+
}
|
1697 |
+
|
1698 |
+
|
1699 |
+
token location info (@$, _$, etc.): {
|
1700 |
+
first_line: n,
|
1701 |
+
last_line: n,
|
1702 |
+
first_column: n,
|
1703 |
+
last_column: n,
|
1704 |
+
range: [start_number, end_number] (where the numbers are indexes into the input string, regular zero-based)
|
1705 |
+
}
|
1706 |
+
|
1707 |
+
|
1708 |
+
the parseError function receives a 'hash' object with these members for lexer and parser errors: {
|
1709 |
+
text: (matched text)
|
1710 |
+
token: (the produced terminal token, if any)
|
1711 |
+
line: (yylineno)
|
1712 |
+
}
|
1713 |
+
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
|
1714 |
+
loc: (yylloc)
|
1715 |
+
expected: (string describing the set of expected tokens)
|
1716 |
+
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
|
1717 |
+
}
|
1718 |
+
*/
|
1719 |
"use strict";
|
1720 |
|
1721 |
+
var _Object$create = __webpack_require__(38)["default"];
|
1722 |
+
|
1723 |
exports.__esModule = true;
|
1724 |
var handlebars = (function () {
|
1725 |
+
var o = function o(k, v, _o, l) {
|
1726 |
+
for (_o = _o || {}, l = k.length; l--; _o[k[l]] = v);return _o;
|
1727 |
+
},
|
1728 |
+
$V0 = [2, 46],
|
1729 |
+
$V1 = [1, 20],
|
1730 |
+
$V2 = [5, 14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
|
1731 |
+
$V3 = [1, 35],
|
1732 |
+
$V4 = [1, 28],
|
1733 |
+
$V5 = [1, 29],
|
1734 |
+
$V6 = [1, 30],
|
1735 |
+
$V7 = [1, 31],
|
1736 |
+
$V8 = [1, 32],
|
1737 |
+
$V9 = [1, 34],
|
1738 |
+
$Va = [14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
|
1739 |
+
$Vb = [14, 15, 19, 29, 34, 44, 47, 48, 51, 55, 60],
|
1740 |
+
$Vc = [1, 44],
|
1741 |
+
$Vd = [14, 15, 19, 29, 34, 47, 48, 51, 55, 60],
|
1742 |
+
$Ve = [33, 65, 72, 80, 81, 82, 83, 84, 85],
|
1743 |
+
$Vf = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85],
|
1744 |
+
$Vg = [1, 51],
|
1745 |
+
$Vh = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85, 87],
|
1746 |
+
$Vi = [2, 45],
|
1747 |
+
$Vj = [54, 65, 72, 80, 81, 82, 83, 84, 85],
|
1748 |
+
$Vk = [1, 58],
|
1749 |
+
$Vl = [1, 59],
|
1750 |
+
$Vm = [15, 18],
|
1751 |
+
$Vn = [1, 67],
|
1752 |
+
$Vo = [33, 65, 72, 75, 80, 81, 82, 83, 84, 85],
|
1753 |
+
$Vp = [23, 65, 72, 80, 81, 82, 83, 84, 85],
|
1754 |
+
$Vq = [1, 79],
|
1755 |
+
$Vr = [65, 68, 72, 80, 81, 82, 83, 84, 85],
|
1756 |
+
$Vs = [33, 75],
|
1757 |
+
$Vt = [23, 33, 54, 68, 72, 75],
|
1758 |
+
$Vu = [1, 109],
|
1759 |
+
$Vv = [1, 121],
|
1760 |
+
$Vw = [72, 77];
|
1761 |
var parser = { trace: function trace() {},
|
1762 |
yy: {},
|
1763 |
symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetition0": 6, "statement": 7, "mustache": 8, "block": 9, "rawBlock": 10, "partial": 11, "partialBlock": 12, "content": 13, "COMMENT": 14, "CONTENT": 15, "openRawBlock": 16, "rawBlock_repetition_plus0": 17, "END_RAW_BLOCK": 18, "OPEN_RAW_BLOCK": 19, "helperName": 20, "openRawBlock_repetition0": 21, "openRawBlock_option0": 22, "CLOSE_RAW_BLOCK": 23, "openBlock": 24, "block_option0": 25, "closeBlock": 26, "openInverse": 27, "block_option1": 28, "OPEN_BLOCK": 29, "openBlock_repetition0": 30, "openBlock_option0": 31, "openBlock_option1": 32, "CLOSE": 33, "OPEN_INVERSE": 34, "openInverse_repetition0": 35, "openInverse_option0": 36, "openInverse_option1": 37, "openInverseChain": 38, "OPEN_INVERSE_CHAIN": 39, "openInverseChain_repetition0": 40, "openInverseChain_option0": 41, "openInverseChain_option1": 42, "inverseAndProgram": 43, "INVERSE": 44, "inverseChain": 45, "inverseChain_option0": 46, "OPEN_ENDBLOCK": 47, "OPEN": 48, "mustache_repetition0": 49, "mustache_option0": 50, "OPEN_UNESCAPED": 51, "mustache_repetition1": 52, "mustache_option1": 53, "CLOSE_UNESCAPED": 54, "OPEN_PARTIAL": 55, "partialName": 56, "partial_repetition0": 57, "partial_option0": 58, "openPartialBlock": 59, "OPEN_PARTIAL_BLOCK": 60, "openPartialBlock_repetition0": 61, "openPartialBlock_option0": 62, "param": 63, "sexpr": 64, "OPEN_SEXPR": 65, "sexpr_repetition0": 66, "sexpr_option0": 67, "CLOSE_SEXPR": 68, "hash": 69, "hash_repetition_plus0": 70, "hashSegment": 71, "ID": 72, "EQUALS": 73, "blockParams": 74, "OPEN_BLOCK_PARAMS": 75, "blockParams_repetition_plus0": 76, "CLOSE_BLOCK_PARAMS": 77, "path": 78, "dataName": 79, "STRING": 80, "NUMBER": 81, "BOOLEAN": 82, "UNDEFINED": 83, "NULL": 84, "DATA": 85, "pathSegments": 86, "SEP": 87, "$accept": 0, "$end": 1 },
|
1764 |
terminals_: { 2: "error", 5: "EOF", 14: "COMMENT", 15: "CONTENT", 18: "END_RAW_BLOCK", 19: "OPEN_RAW_BLOCK", 23: "CLOSE_RAW_BLOCK", 29: "OPEN_BLOCK", 33: "CLOSE", 34: "OPEN_INVERSE", 39: "OPEN_INVERSE_CHAIN", 44: "INVERSE", 47: "OPEN_ENDBLOCK", 48: "OPEN", 51: "OPEN_UNESCAPED", 54: "CLOSE_UNESCAPED", 55: "OPEN_PARTIAL", 60: "OPEN_PARTIAL_BLOCK", 65: "OPEN_SEXPR", 68: "CLOSE_SEXPR", 72: "ID", 73: "EQUALS", 75: "OPEN_BLOCK_PARAMS", 77: "CLOSE_BLOCK_PARAMS", 80: "STRING", 81: "NUMBER", 82: "BOOLEAN", 83: "UNDEFINED", 84: "NULL", 85: "DATA", 87: "SEP" },
|
1765 |
productions_: [0, [3, 2], [4, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [13, 1], [10, 3], [16, 5], [9, 4], [9, 4], [24, 6], [27, 6], [38, 6], [43, 2], [45, 3], [45, 1], [26, 3], [8, 5], [8, 5], [11, 5], [12, 3], [59, 5], [63, 1], [63, 1], [64, 5], [69, 1], [71, 3], [74, 3], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [56, 1], [56, 1], [79, 2], [78, 1], [86, 3], [86, 1], [6, 0], [6, 2], [17, 1], [17, 2], [21, 0], [21, 2], [22, 0], [22, 1], [25, 0], [25, 1], [28, 0], [28, 1], [30, 0], [30, 2], [31, 0], [31, 1], [32, 0], [32, 1], [35, 0], [35, 2], [36, 0], [36, 1], [37, 0], [37, 1], [40, 0], [40, 2], [41, 0], [41, 1], [42, 0], [42, 1], [46, 0], [46, 1], [49, 0], [49, 2], [50, 0], [50, 1], [52, 0], [52, 2], [53, 0], [53, 1], [57, 0], [57, 2], [58, 0], [58, 1], [61, 0], [61, 2], [62, 0], [62, 1], [66, 0], [66, 2], [67, 0], [67, 1], [70, 1], [70, 2], [76, 1], [76, 2]],
|
1766 |
+
performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, /* action[1] */$$, /* vstack */_$ /* lstack */) {
|
1767 |
+
/* this == yyval */
|
1768 |
|
1769 |
var $0 = $$.length - 1;
|
1770 |
switch (yystate) {
|
1774 |
case 2:
|
1775 |
this.$ = yy.prepareProgram($$[$0]);
|
1776 |
break;
|
1777 |
+
case 3:case 4:case 5:case 6:case 7:case 8:case 20:case 27:case 28:case 33:case 34:case 40:case 41:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1778 |
this.$ = $$[$0];
|
1779 |
break;
|
1780 |
case 9:
|
1781 |
+
|
1782 |
this.$ = {
|
1783 |
type: 'CommentStatement',
|
1784 |
value: yy.stripComment($$[$0]),
|
1788 |
|
1789 |
break;
|
1790 |
case 10:
|
1791 |
+
|
1792 |
this.$ = {
|
1793 |
type: 'ContentStatement',
|
1794 |
original: $$[$0],
|
1812 |
case 15:
|
1813 |
this.$ = { open: $$[$0 - 5], path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
1814 |
break;
|
1815 |
+
case 16:case 17:
|
|
|
|
|
|
|
1816 |
this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
|
1817 |
break;
|
1818 |
case 18:
|
1819 |
this.$ = { strip: yy.stripFlags($$[$0 - 1], $$[$0 - 1]), program: $$[$0] };
|
1820 |
break;
|
1821 |
case 19:
|
1822 |
+
|
1823 |
var inverse = yy.prepareBlock($$[$0 - 2], $$[$0 - 1], $$[$0], $$[$0], false, this._$),
|
1824 |
program = yy.prepareProgram([inverse], $$[$0 - 1].loc);
|
1825 |
program.chained = true;
|
1826 |
|
1827 |
this.$ = { strip: $$[$0 - 2].strip, program: program, chain: true };
|
1828 |
|
|
|
|
|
|
|
1829 |
break;
|
1830 |
case 21:
|
1831 |
this.$ = { path: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 2], $$[$0]) };
|
1832 |
break;
|
1833 |
+
case 22:case 23:
|
|
|
|
|
|
|
1834 |
this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
|
1835 |
break;
|
1836 |
case 24:
|
1837 |
+
|
1838 |
this.$ = {
|
1839 |
type: 'PartialStatement',
|
1840 |
name: $$[$0 - 3],
|
1852 |
case 26:
|
1853 |
this.$ = { path: $$[$0 - 3], params: $$[$0 - 2], hash: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 4], $$[$0]) };
|
1854 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
1855 |
case 29:
|
1856 |
+
|
1857 |
this.$ = {
|
1858 |
type: 'SubExpression',
|
1859 |
path: $$[$0 - 3],
|
1872 |
case 32:
|
1873 |
this.$ = yy.id($$[$0 - 1]);
|
1874 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
1875 |
case 35:
|
1876 |
this.$ = { type: 'StringLiteral', value: $$[$0], original: $$[$0], loc: yy.locInfo(this._$) };
|
1877 |
break;
|
1887 |
case 39:
|
1888 |
this.$ = { type: 'NullLiteral', original: null, value: null, loc: yy.locInfo(this._$) };
|
1889 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
1890 |
case 42:
|
1891 |
this.$ = yy.preparePath(true, $$[$0], this._$);
|
1892 |
break;
|
1899 |
case 45:
|
1900 |
this.$ = [{ part: yy.id($$[$0]), original: $$[$0] }];
|
1901 |
break;
|
1902 |
+
case 46:case 50:case 58:case 64:case 70:case 78:case 82:case 86:case 90:case 94:
|
1903 |
this.$ = [];
|
1904 |
break;
|
1905 |
+
case 47:case 49:case 51:case 59:case 65:case 71:case 79:case 83:case 87:case 91:case 95:case 99:case 101:
|
1906 |
$$[$0 - 1].push($$[$0]);
|
1907 |
break;
|
1908 |
+
case 48:case 98:case 100:
|
1909 |
this.$ = [$$[$0]];
|
1910 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1911 |
}
|
1912 |
},
|
1913 |
+
table: [o([5, 14, 15, 19, 29, 34, 48, 51, 55, 60], $V0, { 3: 1, 4: 2, 6: 3 }), { 1: [3] }, { 5: [1, 4] }, o([5, 39, 44, 47], [2, 2], { 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 24: 15, 27: 16, 16: 17, 59: 19, 14: [1, 12], 15: $V1, 19: [1, 23], 29: [1, 21], 34: [1, 22], 48: [1, 13], 51: [1, 14], 55: [1, 18], 60: [1, 24] }), { 1: [2, 1] }, o($V2, [2, 47]), o($V2, [2, 3]), o($V2, [2, 4]), o($V2, [2, 5]), o($V2, [2, 6]), o($V2, [2, 7]), o($V2, [2, 8]), o($V2, [2, 9]), { 20: 25, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 36, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Va, $V0, { 6: 3, 4: 37 }), o($Vb, $V0, { 6: 3, 4: 38 }), { 13: 40, 15: $V1, 17: 39 }, { 20: 42, 56: 41, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 45 }), o([5, 14, 15, 18, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60], [2, 10]), { 20: 46, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 47, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 48, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 42, 56: 49, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Ve, [2, 78], { 49: 50 }), o($Vf, [2, 33]), o($Vf, [2, 34]), o($Vf, [2, 35]), o($Vf, [2, 36]), o($Vf, [2, 37]), o($Vf, [2, 38]), o($Vf, [2, 39]), o($Vf, [2, 43], { 87: $Vg }), { 72: $V3, 86: 52 }, o($Vh, $Vi), o($Vj, [2, 82], { 52: 53 }), { 25: 54, 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 55, 47: [2, 54] }, { 28: 60, 43: 61, 44: $Vl, 47: [2, 56] }, { 13: 63, 15: $V1, 18: [1, 62] }, o($Vm, [2, 48]), o($Ve, [2, 86], { 57: 64 }), o($Ve, [2, 40]), o($Ve, [2, 41]), { 20: 65, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 66, 47: $Vn }, o($Vo, [2, 58], { 30: 68 }), o($Vo, [2, 64], { 35: 69 }), o($Vp, [2, 50], { 21: 70 }), o($Ve, [2, 90], { 61: 71 }), { 20: 75, 33: [2, 80], 50: 72, 63: 73, 64: 76, 65: $Vc, 69: 74, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 72: [1, 80] }, o($Vf, [2, 42], { 87: $Vg }), { 20: 75, 53: 81, 54: [2, 84], 63: 82, 64: 76, 65: $Vc, 69: 83, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 84, 47: $Vn }, { 47: [2, 55] }, o($Va, $V0, { 6: 3, 4: 85 }), { 47: [2, 20] }, { 20: 86, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 87 }), { 26: 88, 47: $Vn }, { 47: [2, 57] }, o($V2, [2, 11]), o($Vm, [2, 49]), { 20: 75, 33: [2, 88], 58: 89, 63: 90, 64: 76, 65: $Vc, 69: 91, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vr, [2, 94], { 66: 92 }), o($V2, [2, 25]), { 20: 93, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vs, [2, 60], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 31: 94, 63: 95, 69: 96, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($Vs, [2, 66], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 36: 97, 63: 98, 69: 99, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), { 20: 75, 22: 100, 23: [2, 52], 63: 101, 64: 76, 65: $Vc, 69: 102, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 75, 33: [2, 92], 62: 103, 63: 104, 64: 76, 65: $Vc, 69: 105, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 106] }, o($Ve, [2, 79]), { 33: [2, 81] }, o($Vf, [2, 27]), o($Vf, [2, 28]), o([23, 33, 54, 68, 75], [2, 30], { 71: 107, 72: [1, 108] }), o($Vt, [2, 98]), o($Vh, $Vi, { 73: $Vu }), o($Vh, [2, 44]), { 54: [1, 110] }, o($Vj, [2, 83]), { 54: [2, 85] }, o($V2, [2, 13]), { 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 112, 46: 111, 47: [2, 76] }, o($Vo, [2, 70], { 40: 113 }), { 47: [2, 18] }, o($V2, [2, 14]), { 33: [1, 114] }, o($Ve, [2, 87]), { 33: [2, 89] }, { 20: 75, 63: 116, 64: 76, 65: $Vc, 67: 115, 68: [2, 96], 69: 117, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 118] }, { 32: 119, 33: [2, 62], 74: 120, 75: $Vv }, o($Vo, [2, 59]), o($Vs, [2, 61]), { 33: [2, 68], 37: 122, 74: 123, 75: $Vv }, o($Vo, [2, 65]), o($Vs, [2, 67]), { 23: [1, 124] }, o($Vp, [2, 51]), { 23: [2, 53] }, { 33: [1, 125] }, o($Ve, [2, 91]), { 33: [2, 93] }, o($V2, [2, 22]), o($Vt, [2, 99]), { 73: $Vu }, { 20: 75, 63: 126, 64: 76, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($V2, [2, 23]), { 47: [2, 19] }, { 47: [2, 77] }, o($Vs, [2, 72], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 41: 127, 63: 128, 69: 129, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($V2, [2, 24]), { 68: [1, 130] }, o($Vr, [2, 95]), { 68: [2, 97] }, o($V2, [2, 21]), { 33: [1, 131] }, { 33: [2, 63] }, { 72: [1, 133], 76: 132 }, { 33: [1, 134] }, { 33: [2, 69] }, { 15: [2, 12] }, o($Vd, [2, 26]), o($Vt, [2, 31]), { 33: [2, 74], 42: 135, 74: 136, 75: $Vv }, o($Vo, [2, 71]), o($Vs, [2, 73]), o($Vf, [2, 29]), o($Va, [2, 15]), { 72: [1, 138], 77: [1, 137] }, o($Vw, [2, 100]), o($Vb, [2, 16]), { 33: [1, 139] }, { 33: [2, 75] }, { 33: [2, 32] }, o($Vw, [2, 101]), o($Va, [2, 17])],
|
1914 |
defaultActions: { 4: [2, 1], 55: [2, 55], 57: [2, 20], 61: [2, 57], 74: [2, 81], 83: [2, 85], 87: [2, 18], 91: [2, 89], 102: [2, 53], 105: [2, 93], 111: [2, 19], 112: [2, 77], 117: [2, 97], 120: [2, 63], 123: [2, 69], 124: [2, 12], 136: [2, 75], 137: [2, 32] },
|
1915 |
parseError: function parseError(str, hash) {
|
1916 |
+
if (hash.recoverable) {
|
1917 |
+
this.trace(str);
|
1918 |
+
} else {
|
1919 |
+
var _parseError = function _parseError(msg, hash) {
|
1920 |
+
this.message = msg;
|
1921 |
+
this.hash = hash;
|
1922 |
+
};
|
1923 |
+
|
1924 |
+
_parseError.prototype = new Error();
|
1925 |
+
|
1926 |
+
throw new _parseError(str, hash);
|
1927 |
+
}
|
1928 |
},
|
1929 |
parse: function parse(input) {
|
1930 |
var self = this,
|
1931 |
stack = [0],
|
1932 |
+
tstack = [],
|
1933 |
vstack = [null],
|
1934 |
lstack = [],
|
1935 |
table = this.table,
|
1936 |
+
yytext = '',
|
1937 |
yylineno = 0,
|
1938 |
yyleng = 0,
|
1939 |
recovering = 0,
|
1940 |
TERROR = 2,
|
1941 |
EOF = 1;
|
1942 |
+
var args = lstack.slice.call(arguments, 1);
|
1943 |
+
var lexer = _Object$create(this.lexer);
|
1944 |
+
var sharedState = { yy: {} };
|
1945 |
+
for (var k in this.yy) {
|
1946 |
+
if (Object.prototype.hasOwnProperty.call(this.yy, k)) {
|
1947 |
+
sharedState.yy[k] = this.yy[k];
|
1948 |
+
}
|
1949 |
+
}
|
1950 |
+
lexer.setInput(input, sharedState.yy);
|
1951 |
+
sharedState.yy.lexer = lexer;
|
1952 |
+
sharedState.yy.parser = this;
|
1953 |
+
if (typeof lexer.yylloc == 'undefined') {
|
1954 |
+
lexer.yylloc = {};
|
1955 |
+
}
|
1956 |
+
var yyloc = lexer.yylloc;
|
1957 |
lstack.push(yyloc);
|
1958 |
+
var ranges = lexer.options && lexer.options.ranges;
|
1959 |
+
if (typeof sharedState.yy.parseError === 'function') {
|
1960 |
+
this.parseError = sharedState.yy.parseError;
|
1961 |
+
} else {
|
1962 |
+
this.parseError = Object.getPrototypeOf(this).parseError;
|
1963 |
+
}
|
1964 |
function popStack(n) {
|
1965 |
stack.length = stack.length - 2 * n;
|
1966 |
vstack.length = vstack.length - n;
|
1967 |
lstack.length = lstack.length - n;
|
1968 |
}
|
1969 |
+
_token_stack: var lex = function lex() {
|
1970 |
var token;
|
1971 |
+
token = lexer.lex() || EOF;
|
1972 |
+
if (typeof token !== 'number') {
|
1973 |
token = self.symbols_[token] || token;
|
1974 |
}
|
1975 |
return token;
|
1976 |
+
};
|
1977 |
var symbol,
|
1978 |
preErrorSymbol,
|
1979 |
state,
|
1990 |
if (this.defaultActions[state]) {
|
1991 |
action = this.defaultActions[state];
|
1992 |
} else {
|
1993 |
+
if (symbol === null || typeof symbol == 'undefined') {
|
1994 |
symbol = lex();
|
1995 |
}
|
1996 |
action = table[state] && table[state][symbol];
|
1997 |
}
|
1998 |
+
if (typeof action === 'undefined' || !action.length || !action[0]) {
|
1999 |
+
var errStr = '';
|
2000 |
+
expected = [];
|
2001 |
+
for (p in table[state]) {
|
2002 |
+
if (this.terminals_[p] && p > TERROR) {
|
2003 |
+
expected.push('\'' + this.terminals_[p] + '\'');
|
|
|
|
|
|
|
|
|
|
|
2004 |
}
|
|
|
2005 |
}
|
2006 |
+
if (lexer.showPosition) {
|
2007 |
+
errStr = 'Parse error on line ' + (yylineno + 1) + ':\n' + lexer.showPosition() + '\nExpecting ' + expected.join(', ') + ', got \'' + (this.terminals_[symbol] || symbol) + '\'';
|
2008 |
+
} else {
|
2009 |
+
errStr = 'Parse error on line ' + (yylineno + 1) + ': Unexpected ' + (symbol == EOF ? 'end of input' : '\'' + (this.terminals_[symbol] || symbol) + '\'');
|
2010 |
+
}
|
2011 |
+
this.parseError(errStr, {
|
2012 |
+
text: lexer.match,
|
2013 |
+
token: this.terminals_[symbol] || symbol,
|
2014 |
+
line: lexer.yylineno,
|
2015 |
+
loc: yyloc,
|
2016 |
+
expected: expected
|
2017 |
+
});
|
2018 |
}
|
2019 |
if (action[0] instanceof Array && action.length > 1) {
|
2020 |
+
throw new Error('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol);
|
2021 |
}
|
2022 |
switch (action[0]) {
|
2023 |
case 1:
|
2024 |
stack.push(symbol);
|
2025 |
+
vstack.push(lexer.yytext);
|
2026 |
+
lstack.push(lexer.yylloc);
|
2027 |
stack.push(action[1]);
|
2028 |
symbol = null;
|
2029 |
if (!preErrorSymbol) {
|
2030 |
+
yyleng = lexer.yyleng;
|
2031 |
+
yytext = lexer.yytext;
|
2032 |
+
yylineno = lexer.yylineno;
|
2033 |
+
yyloc = lexer.yylloc;
|
2034 |
+
if (recovering > 0) {
|
2035 |
+
recovering--;
|
2036 |
+
}
|
2037 |
} else {
|
2038 |
symbol = preErrorSymbol;
|
2039 |
preErrorSymbol = null;
|
2042 |
case 2:
|
2043 |
len = this.productions_[action[1]][1];
|
2044 |
yyval.$ = vstack[vstack.length - len];
|
2045 |
+
yyval._$ = {
|
2046 |
+
first_line: lstack[lstack.length - (len || 1)].first_line,
|
2047 |
+
last_line: lstack[lstack.length - 1].last_line,
|
2048 |
+
first_column: lstack[lstack.length - (len || 1)].first_column,
|
2049 |
+
last_column: lstack[lstack.length - 1].last_column
|
2050 |
+
};
|
2051 |
if (ranges) {
|
2052 |
yyval._$.range = [lstack[lstack.length - (len || 1)].range[0], lstack[lstack.length - 1].range[1]];
|
2053 |
}
|
2054 |
+
r = this.performAction.apply(yyval, [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args));
|
2055 |
+
if (typeof r !== 'undefined') {
|
2056 |
return r;
|
2057 |
}
|
2058 |
if (len) {
|
2071 |
}
|
2072 |
}
|
2073 |
return true;
|
2074 |
+
} };
|
2075 |
+
/* generated by jison-lex 0.3.4 */
|
|
|
2076 |
var lexer = (function () {
|
2077 |
+
var lexer = {
|
2078 |
+
|
2079 |
+
EOF: 1,
|
2080 |
+
|
2081 |
parseError: function parseError(str, hash) {
|
2082 |
if (this.yy.parser) {
|
2083 |
this.yy.parser.parseError(str, hash);
|
2085 |
throw new Error(str);
|
2086 |
}
|
2087 |
},
|
2088 |
+
|
2089 |
+
// resets the lexer, sets new input
|
2090 |
+
setInput: function setInput(input, yy) {
|
2091 |
+
this.yy = yy || this.yy || {};
|
2092 |
this._input = input;
|
2093 |
+
this._more = this._backtrack = this.done = false;
|
2094 |
this.yylineno = this.yyleng = 0;
|
2095 |
this.yytext = this.matched = this.match = '';
|
2096 |
this.conditionStack = ['INITIAL'];
|
2097 |
+
this.yylloc = {
|
2098 |
+
first_line: 1,
|
2099 |
+
first_column: 0,
|
2100 |
+
last_line: 1,
|
2101 |
+
last_column: 0
|
2102 |
+
};
|
2103 |
+
if (this.options.ranges) {
|
2104 |
+
this.yylloc.range = [0, 0];
|
2105 |
+
}
|
2106 |
this.offset = 0;
|
2107 |
return this;
|
2108 |
},
|
2109 |
+
|
2110 |
+
// consumes and returns one char from the input
|
2111 |
input: function input() {
|
2112 |
var ch = this._input[0];
|
2113 |
this.yytext += ch;
|
2122 |
} else {
|
2123 |
this.yylloc.last_column++;
|
2124 |
}
|
2125 |
+
if (this.options.ranges) {
|
2126 |
+
this.yylloc.range[1]++;
|
2127 |
+
}
|
2128 |
|
2129 |
this._input = this._input.slice(1);
|
2130 |
return ch;
|
2131 |
},
|
2132 |
+
|
2133 |
+
// unshifts one char (or a string) into the input
|
2134 |
unput: function unput(ch) {
|
2135 |
var len = ch.length;
|
2136 |
var lines = ch.split(/(?:\r\n?|\n)/g);
|
2137 |
|
2138 |
this._input = ch + this._input;
|
2139 |
+
this.yytext = this.yytext.substr(0, this.yytext.length - len);
|
2140 |
//this.yyleng -= len;
|
2141 |
this.offset -= len;
|
2142 |
var oldLines = this.match.split(/(?:\r\n?|\n)/g);
|
2143 |
this.match = this.match.substr(0, this.match.length - 1);
|
2144 |
this.matched = this.matched.substr(0, this.matched.length - 1);
|
2145 |
|
2146 |
+
if (lines.length - 1) {
|
2147 |
+
this.yylineno -= lines.length - 1;
|
2148 |
+
}
|
2149 |
var r = this.yylloc.range;
|
2150 |
|
2151 |
+
this.yylloc = {
|
2152 |
+
first_line: this.yylloc.first_line,
|
2153 |
last_line: this.yylineno + 1,
|
2154 |
first_column: this.yylloc.first_column,
|
2155 |
last_column: lines ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length - lines[0].length : this.yylloc.first_column - len
|
2158 |
if (this.options.ranges) {
|
2159 |
this.yylloc.range = [r[0], r[0] + this.yyleng - len];
|
2160 |
}
|
2161 |
+
this.yyleng = this.yytext.length;
|
2162 |
return this;
|
2163 |
},
|
2164 |
+
|
2165 |
+
// When called from action, caches matched text and appends it on next action
|
2166 |
more: function more() {
|
2167 |
this._more = true;
|
2168 |
return this;
|
2169 |
},
|
2170 |
+
|
2171 |
+
// When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead.
|
2172 |
+
reject: function reject() {
|
2173 |
+
if (this.options.backtrack_lexer) {
|
2174 |
+
this._backtrack = true;
|
2175 |
+
} else {
|
2176 |
+
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n' + this.showPosition(), {
|
2177 |
+
text: "",
|
2178 |
+
token: null,
|
2179 |
+
line: this.yylineno
|
2180 |
+
});
|
2181 |
+
}
|
2182 |
+
return this;
|
2183 |
+
},
|
2184 |
+
|
2185 |
+
// retain first n characters of the match
|
2186 |
less: function less(n) {
|
2187 |
this.unput(this.match.slice(n));
|
2188 |
},
|
2189 |
+
|
2190 |
+
// displays already matched input, i.e. for error messages
|
2191 |
pastInput: function pastInput() {
|
2192 |
var past = this.matched.substr(0, this.matched.length - this.match.length);
|
2193 |
return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, "");
|
2194 |
},
|
2195 |
+
|
2196 |
+
// displays upcoming input, i.e. for error messages
|
2197 |
upcomingInput: function upcomingInput() {
|
2198 |
var next = this.match;
|
2199 |
if (next.length < 20) {
|
2201 |
}
|
2202 |
return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, "");
|
2203 |
},
|
2204 |
+
|
2205 |
+
// displays the character position where the lexing error occurred, i.e. for error messages
|
2206 |
showPosition: function showPosition() {
|
2207 |
var pre = this.pastInput();
|
2208 |
var c = new Array(pre.length + 1).join("-");
|
2209 |
return pre + this.upcomingInput() + "\n" + c + "^";
|
2210 |
},
|
2211 |
+
|
2212 |
+
// test the lexed token: return FALSE when not a match, otherwise return token
|
2213 |
+
test_match: function test_match(match, indexed_rule) {
|
2214 |
+
var token, lines, backup;
|
2215 |
+
|
2216 |
+
if (this.options.backtrack_lexer) {
|
2217 |
+
// save context
|
2218 |
+
backup = {
|
2219 |
+
yylineno: this.yylineno,
|
2220 |
+
yylloc: {
|
2221 |
+
first_line: this.yylloc.first_line,
|
2222 |
+
last_line: this.last_line,
|
2223 |
+
first_column: this.yylloc.first_column,
|
2224 |
+
last_column: this.yylloc.last_column
|
2225 |
+
},
|
2226 |
+
yytext: this.yytext,
|
2227 |
+
match: this.match,
|
2228 |
+
matches: this.matches,
|
2229 |
+
matched: this.matched,
|
2230 |
+
yyleng: this.yyleng,
|
2231 |
+
offset: this.offset,
|
2232 |
+
_more: this._more,
|
2233 |
+
_input: this._input,
|
2234 |
+
yy: this.yy,
|
2235 |
+
conditionStack: this.conditionStack.slice(0),
|
2236 |
+
done: this.done
|
2237 |
+
};
|
2238 |
+
if (this.options.ranges) {
|
2239 |
+
backup.yylloc.range = this.yylloc.range.slice(0);
|
2240 |
+
}
|
2241 |
+
}
|
2242 |
+
|
2243 |
+
lines = match[0].match(/(?:\r\n?|\n).*/g);
|
2244 |
+
if (lines) {
|
2245 |
+
this.yylineno += lines.length;
|
2246 |
+
}
|
2247 |
+
this.yylloc = {
|
2248 |
+
first_line: this.yylloc.last_line,
|
2249 |
+
last_line: this.yylineno + 1,
|
2250 |
+
first_column: this.yylloc.last_column,
|
2251 |
+
last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length
|
2252 |
+
};
|
2253 |
+
this.yytext += match[0];
|
2254 |
+
this.match += match[0];
|
2255 |
+
this.matches = match;
|
2256 |
+
this.yyleng = this.yytext.length;
|
2257 |
+
if (this.options.ranges) {
|
2258 |
+
this.yylloc.range = [this.offset, this.offset += this.yyleng];
|
2259 |
+
}
|
2260 |
+
this._more = false;
|
2261 |
+
this._backtrack = false;
|
2262 |
+
this._input = this._input.slice(match[0].length);
|
2263 |
+
this.matched += match[0];
|
2264 |
+
token = this.performAction.call(this, this.yy, this, indexed_rule, this.conditionStack[this.conditionStack.length - 1]);
|
2265 |
+
if (this.done && this._input) {
|
2266 |
+
this.done = false;
|
2267 |
+
}
|
2268 |
+
if (token) {
|
2269 |
+
return token;
|
2270 |
+
} else if (this._backtrack) {
|
2271 |
+
// recover context
|
2272 |
+
for (var k in backup) {
|
2273 |
+
this[k] = backup[k];
|
2274 |
+
}
|
2275 |
+
return false; // rule action called reject() implying the next rule should be tested instead.
|
2276 |
+
}
|
2277 |
+
return false;
|
2278 |
+
},
|
2279 |
+
|
2280 |
+
// return next match in input
|
2281 |
next: function next() {
|
2282 |
if (this.done) {
|
2283 |
return this.EOF;
|
2284 |
}
|
2285 |
+
if (!this._input) {
|
2286 |
+
this.done = true;
|
2287 |
+
}
|
2288 |
|
2289 |
+
var token, match, tempMatch, index;
|
2290 |
if (!this._more) {
|
2291 |
this.yytext = '';
|
2292 |
this.match = '';
|
2297 |
if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {
|
2298 |
match = tempMatch;
|
2299 |
index = i;
|
2300 |
+
if (this.options.backtrack_lexer) {
|
2301 |
+
token = this.test_match(tempMatch, rules[i]);
|
2302 |
+
if (token !== false) {
|
2303 |
+
return token;
|
2304 |
+
} else if (this._backtrack) {
|
2305 |
+
match = false;
|
2306 |
+
continue; // rule action called reject() implying a rule MISmatch.
|
2307 |
+
} else {
|
2308 |
+
// else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)
|
2309 |
+
return false;
|
2310 |
+
}
|
2311 |
+
} else if (!this.options.flex) {
|
2312 |
+
break;
|
2313 |
+
}
|
2314 |
}
|
2315 |
}
|
2316 |
if (match) {
|
2317 |
+
token = this.test_match(match, rules[index]);
|
2318 |
+
if (token !== false) {
|
2319 |
+
return token;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2320 |
}
|
2321 |
+
// else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)
|
2322 |
+
return false;
|
|
|
|
|
|
|
|
|
2323 |
}
|
2324 |
if (this._input === "") {
|
2325 |
return this.EOF;
|
2326 |
} else {
|
2327 |
+
return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), {
|
2328 |
+
text: "",
|
2329 |
+
token: null,
|
2330 |
+
line: this.yylineno
|
2331 |
+
});
|
2332 |
}
|
2333 |
},
|
2334 |
+
|
2335 |
+
// return next match that has a token
|
2336 |
lex: function lex() {
|
2337 |
var r = this.next();
|
2338 |
+
if (r) {
|
2339 |
return r;
|
2340 |
} else {
|
2341 |
return this.lex();
|
2342 |
}
|
2343 |
},
|
2344 |
+
|
2345 |
+
// activates a new lexer condition state (pushes the new lexer condition state onto the condition stack)
|
2346 |
begin: function begin(condition) {
|
2347 |
this.conditionStack.push(condition);
|
2348 |
},
|
2349 |
+
|
2350 |
+
// pop the previously active lexer condition state off the condition stack
|
2351 |
popState: function popState() {
|
2352 |
+
var n = this.conditionStack.length - 1;
|
2353 |
+
if (n > 0) {
|
2354 |
+
return this.conditionStack.pop();
|
2355 |
+
} else {
|
2356 |
+
return this.conditionStack[0];
|
2357 |
+
}
|
2358 |
},
|
2359 |
+
|
2360 |
+
// produce the lexer rule set which is active for the currently active lexer condition state
|
2361 |
_currentRules: function _currentRules() {
|
2362 |
+
if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) {
|
2363 |
+
return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
|
2364 |
+
} else {
|
2365 |
+
return this.conditions["INITIAL"].rules;
|
2366 |
+
}
|
2367 |
},
|
2368 |
+
|
2369 |
+
// return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available
|
2370 |
+
topState: function topState(n) {
|
2371 |
+
n = this.conditionStack.length - 1 - Math.abs(n || 0);
|
2372 |
+
if (n >= 0) {
|
2373 |
+
return this.conditionStack[n];
|
2374 |
+
} else {
|
2375 |
+
return "INITIAL";
|
2376 |
+
}
|
2377 |
},
|
2378 |
+
|
2379 |
+
// alias for begin(condition)
|
2380 |
+
pushState: function pushState(condition) {
|
2381 |
this.begin(condition);
|
2382 |
+
},
|
|
|
|
|
2383 |
|
2384 |
+
// return the number of states currently on the stack
|
2385 |
+
stateStackSize: function stateStackSize() {
|
2386 |
+
return this.conditionStack.length;
|
2387 |
+
},
|
2388 |
+
options: {},
|
2389 |
+
performAction: function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
|
2390 |
|
2391 |
+
function strip(start, end) {
|
2392 |
+
return yy_.yytext = yy_.yytext.substring(start, yy_.yyleng - end + start);
|
2393 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2394 |
|
2395 |
+
var YYSTATE = YY_START;
|
2396 |
+
switch ($avoiding_name_collisions) {
|
2397 |
+
case 0:
|
2398 |
+
if (yy_.yytext.slice(-2) === "\\\\") {
|
2399 |
+
strip(0, 1);
|
2400 |
+
this.begin("mu");
|
2401 |
+
} else if (yy_.yytext.slice(-1) === "\\") {
|
2402 |
+
strip(0, 1);
|
2403 |
+
this.begin("emu");
|
2404 |
+
} else {
|
2405 |
+
this.begin("mu");
|
2406 |
+
}
|
2407 |
+
if (yy_.yytext) return 15;
|
2408 |
|
2409 |
+
break;
|
2410 |
+
case 1:
|
2411 |
+
return 15;
|
2412 |
+
break;
|
2413 |
+
case 2:
|
2414 |
+
this.popState();
|
|
|
|
|
|
|
|
|
2415 |
return 15;
|
|
|
|
|
|
|
|
|
2416 |
|
2417 |
+
break;
|
2418 |
+
case 3:
|
2419 |
+
this.begin('raw');return 15;
|
2420 |
+
break;
|
2421 |
+
case 4:
|
2422 |
+
this.popState();
|
2423 |
+
// Should be using `this.topState()` below, but it currently
|
2424 |
+
// returns the second top instead of the first top. Opened an
|
2425 |
+
// issue about it at https://github.com/zaach/jison/issues/291
|
2426 |
+
if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
|
2427 |
+
return 15;
|
2428 |
+
} else {
|
2429 |
+
strip(5, 9);
|
2430 |
+
return 18;
|
2431 |
+
}
|
2432 |
|
2433 |
+
break;
|
2434 |
+
case 5:
|
2435 |
+
return 15;
|
2436 |
+
break;
|
2437 |
+
case 6:
|
2438 |
+
this.popState();
|
2439 |
+
return 14;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2440 |
|
2441 |
+
break;
|
2442 |
+
case 7:
|
2443 |
+
return 65;
|
2444 |
+
break;
|
2445 |
+
case 8:
|
2446 |
+
return 68;
|
2447 |
+
break;
|
2448 |
+
case 9:
|
2449 |
+
return 19;
|
2450 |
+
break;
|
2451 |
+
case 10:
|
2452 |
+
this.popState();
|
2453 |
+
this.begin('raw');
|
2454 |
+
return 23;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2455 |
|
2456 |
+
break;
|
2457 |
+
case 11:
|
2458 |
+
return 55;
|
2459 |
+
break;
|
2460 |
+
case 12:
|
2461 |
+
return 60;
|
2462 |
+
break;
|
2463 |
+
case 13:
|
2464 |
+
return 29;
|
2465 |
+
break;
|
2466 |
+
case 14:
|
2467 |
+
return 47;
|
2468 |
+
break;
|
2469 |
+
case 15:
|
2470 |
+
this.popState();return 44;
|
2471 |
+
break;
|
2472 |
+
case 16:
|
2473 |
+
this.popState();return 44;
|
2474 |
+
break;
|
2475 |
+
case 17:
|
2476 |
+
return 34;
|
2477 |
+
break;
|
2478 |
+
case 18:
|
2479 |
+
return 39;
|
2480 |
+
break;
|
2481 |
+
case 19:
|
2482 |
+
return 51;
|
2483 |
+
break;
|
2484 |
+
case 20:
|
2485 |
+
return 48;
|
2486 |
+
break;
|
2487 |
+
case 21:
|
2488 |
+
this.unput(yy_.yytext);
|
2489 |
+
this.popState();
|
2490 |
+
this.begin('com');
|
2491 |
|
2492 |
+
break;
|
2493 |
+
case 22:
|
2494 |
+
this.popState();
|
2495 |
+
return 14;
|
2496 |
+
|
2497 |
+
break;
|
2498 |
+
case 23:
|
2499 |
+
return 48;
|
2500 |
+
break;
|
2501 |
+
case 24:
|
2502 |
+
return 73;
|
2503 |
+
break;
|
2504 |
+
case 25:
|
2505 |
+
return 72;
|
2506 |
+
break;
|
2507 |
+
case 26:
|
2508 |
+
return 72;
|
2509 |
+
break;
|
2510 |
+
case 27:
|
2511 |
+
return 87;
|
2512 |
+
break;
|
2513 |
+
case 28:
|
2514 |
+
// ignore whitespace
|
2515 |
+
break;
|
2516 |
+
case 29:
|
2517 |
+
this.popState();return 54;
|
2518 |
+
break;
|
2519 |
+
case 30:
|
2520 |
+
this.popState();return 33;
|
2521 |
+
break;
|
2522 |
+
case 31:
|
2523 |
+
yy_.yytext = strip(1, 2).replace(/\\"/g, '"');return 80;
|
2524 |
+
break;
|
2525 |
+
case 32:
|
2526 |
+
yy_.yytext = strip(1, 2).replace(/\\'/g, "'");return 80;
|
2527 |
+
break;
|
2528 |
+
case 33:
|
2529 |
+
return 85;
|
2530 |
+
break;
|
2531 |
+
case 34:
|
2532 |
+
return 82;
|
2533 |
+
break;
|
2534 |
+
case 35:
|
2535 |
+
return 82;
|
2536 |
+
break;
|
2537 |
+
case 36:
|
2538 |
+
return 83;
|
2539 |
+
break;
|
2540 |
+
case 37:
|
2541 |
+
return 84;
|
2542 |
+
break;
|
2543 |
+
case 38:
|
2544 |
+
return 81;
|
2545 |
+
break;
|
2546 |
+
case 39:
|
2547 |
+
return 75;
|
2548 |
+
break;
|
2549 |
+
case 40:
|
2550 |
+
return 77;
|
2551 |
+
break;
|
2552 |
+
case 41:
|
2553 |
+
return 72;
|
2554 |
+
break;
|
2555 |
+
case 42:
|
2556 |
+
yy_.yytext = yy_.yytext.replace(/\\([\\\]])/g, '$1');return 72;
|
2557 |
+
break;
|
2558 |
+
case 43:
|
2559 |
+
return 'INVALID';
|
2560 |
+
break;
|
2561 |
+
case 44:
|
2562 |
+
return 5;
|
2563 |
+
break;
|
2564 |
+
}
|
2565 |
+
},
|
2566 |
+
rules: [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]*?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/],
|
2567 |
+
conditions: { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } }
|
2568 |
};
|
|
|
|
|
2569 |
return lexer;
|
2570 |
})();
|
2571 |
parser.lexer = lexer;
|
2572 |
function Parser() {
|
2573 |
this.yy = {};
|
2574 |
+
}
|
2575 |
+
Parser.prototype = parser;parser.Parser = Parser;
|
2576 |
return new Parser();
|
2577 |
})();exports["default"] = handlebars;
|
2578 |
module.exports = exports["default"];
|
2579 |
|
2580 |
/***/ }),
|
2581 |
/* 38 */
|
2582 |
+
/***/ (function(module, exports, __webpack_require__) {
|
2583 |
+
|
2584 |
+
module.exports = { "default": __webpack_require__(39), __esModule: true };
|
2585 |
+
|
2586 |
+
/***/ }),
|
2587 |
+
/* 39 */
|
2588 |
+
/***/ (function(module, exports, __webpack_require__) {
|
2589 |
+
|
2590 |
+
var $ = __webpack_require__(9);
|
2591 |
+
module.exports = function create(P, D){
|
2592 |
+
return $.create(P, D);
|
2593 |
+
};
|
2594 |
+
|
2595 |
+
/***/ }),
|
2596 |
+
/* 40 */
|
2597 |
/***/ (function(module, exports, __webpack_require__) {
|
2598 |
|
2599 |
'use strict';
|
2602 |
|
2603 |
exports.__esModule = true;
|
2604 |
|
2605 |
+
var _visitor = __webpack_require__(41);
|
2606 |
|
2607 |
var _visitor2 = _interopRequireDefault(_visitor);
|
2608 |
|
2806 |
return;
|
2807 |
}
|
2808 |
|
2809 |
+
// We omit the last node if it's whitespace only and not preceded by a non-content node.
|
2810 |
var original = current.value;
|
2811 |
current.value = current.value.replace(multiple ? /\s+$/ : /[ \t]+$/, '');
|
2812 |
current.leftStripped = current.value !== original;
|
2817 |
module.exports = exports['default'];
|
2818 |
|
2819 |
/***/ }),
|
2820 |
+
/* 41 */
|
2821 |
/***/ (function(module, exports, __webpack_require__) {
|
2822 |
|
2823 |
'use strict';
|
2960 |
module.exports = exports['default'];
|
2961 |
|
2962 |
/***/ }),
|
2963 |
+
/* 42 */
|
2964 |
/***/ (function(module, exports, __webpack_require__) {
|
2965 |
|
2966 |
'use strict';
|
3191 |
}
|
3192 |
|
3193 |
/***/ }),
|
3194 |
+
/* 43 */
|
3195 |
/***/ (function(module, exports, __webpack_require__) {
|
3196 |
|
3197 |
/* eslint-disable new-cap */
|
3767 |
}
|
3768 |
|
3769 |
/***/ }),
|
3770 |
+
/* 44 */
|
3771 |
/***/ (function(module, exports, __webpack_require__) {
|
3772 |
|
3773 |
'use strict';
|
3784 |
|
3785 |
var _utils = __webpack_require__(5);
|
3786 |
|
3787 |
+
var _codeGen = __webpack_require__(45);
|
3788 |
|
3789 |
var _codeGen2 = _interopRequireDefault(_codeGen);
|
3790 |
|
4098 |
// replace it on the stack with the result of properly
|
4099 |
// invoking blockHelperMissing.
|
4100 |
blockValue: function blockValue(name) {
|
4101 |
+
var blockHelperMissing = this.aliasable('container.hooks.blockHelperMissing'),
|
4102 |
params = [this.contextName(0)];
|
4103 |
this.setupHelperArgs(name, 0, params);
|
4104 |
|
4116 |
// On stack, after, if lastHelper: value
|
4117 |
ambiguousBlockValue: function ambiguousBlockValue() {
|
4118 |
// We're being a bit cheeky and reusing the options value from the prior exec
|
4119 |
+
var blockHelperMissing = this.aliasable('container.hooks.blockHelperMissing'),
|
4120 |
params = [this.contextName(0)];
|
4121 |
this.setupHelperArgs('', 0, params, true);
|
4122 |
|
4407 |
// If the helper is not found, `helperMissing` is called.
|
4408 |
invokeHelper: function invokeHelper(paramSize, name, isSimple) {
|
4409 |
var nonHelper = this.popStack(),
|
4410 |
+
helper = this.setupHelper(paramSize, name);
|
|
|
4411 |
|
4412 |
+
var possibleFunctionCalls = [];
|
4413 |
+
|
4414 |
+
if (isSimple) {
|
4415 |
+
// direct call to helper
|
4416 |
+
possibleFunctionCalls.push(helper.name);
|
4417 |
+
}
|
4418 |
+
// call a function from the input object
|
4419 |
+
possibleFunctionCalls.push(nonHelper);
|
4420 |
if (!this.options.strict) {
|
4421 |
+
possibleFunctionCalls.push(this.aliasable('container.hooks.helperMissing'));
|
4422 |
}
|
|
|
4423 |
|
4424 |
+
var functionLookupCode = ['(', this.itemsSeparatedBy(possibleFunctionCalls, '||'), ')'];
|
4425 |
+
var functionCall = this.source.functionCall(functionLookupCode, 'call', helper.callParams);
|
4426 |
+
this.push(functionCall);
|
4427 |
},
|
4428 |
|
4429 |
+
itemsSeparatedBy: function itemsSeparatedBy(items, separator) {
|
4430 |
+
var result = [];
|
4431 |
+
result.push(items[0]);
|
4432 |
+
for (var i = 1; i < items.length; i++) {
|
4433 |
+
result.push(separator, items[i]);
|
4434 |
+
}
|
4435 |
+
return result;
|
4436 |
+
},
|
4437 |
// [invokeKnownHelper]
|
4438 |
//
|
4439 |
// On stack, before: hash, inverse, program, params..., ...
|
4471 |
var lookup = ['(', '(helper = ', helperName, ' || ', nonHelper, ')'];
|
4472 |
if (!this.options.strict) {
|
4473 |
lookup[0] = '(helper = ';
|
4474 |
+
lookup.push(' != null ? helper : ', this.aliasable('container.hooks.helperMissing'));
|
4475 |
}
|
4476 |
|
4477 |
this.push(['(', lookup, helper.paramsInit ? ['),(', helper.paramsInit] : [], '),', '(typeof helper === ', this.aliasable('"function"'), ' ? ', this.source.functionCall('helper', 'call', helper.callParams), ' : helper))']);
|
4916 |
module.exports = exports['default'];
|
4917 |
|
4918 |
/***/ }),
|
4919 |
+
/* 45 */
|
4920 |
/***/ (function(module, exports, __webpack_require__) {
|
4921 |
|
4922 |
/* global define */
|
@@ -1,7 +1,7 @@
|
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
-
handlebars v4.
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
@@ -24,6 +24,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24 |
THE SOFTWARE.
|
25 |
|
26 |
*/
|
27 |
-
!function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=r();return a.compile=function(b,c){return k.compile(b,c,a)},a.precompile=function(b,c){return k.precompile(b,c,a)},a.AST=i["default"],a.Compiler=k.Compiler,a.JavaScriptCompiler=m["default"],a.Parser=j.parser,a.parse=j.parse,a}var e=c(1)["default"];b.__esModule=!0;var f=c(2),g=e(f),h=c(35),i=e(h),j=c(36),k=c(41),l=c(42),m=e(l),n=c(39),o=e(n),p=c(34),q=e(p),r=g["default"].create,s=d();s.create=d,q["default"](s),s.Visitor=o["default"],s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(3)["default"],f=c(1)["default"];b.__esModule=!0;var g=c(4),h=e(g),i=c(21),j=f(i),k=c(6),l=f(k),m=c(5),n=e(m),o=c(22),p=e(o),q=c(34),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(1)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(5),g=c(6),h=e(g),i=c(10),j=c(18),k=c(20),l=e(k),m="4.1.2";b.VERSION=m;var n=7;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`","=":"="},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(7)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(8),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){g["default"](a),i["default"](a),k["default"](a),m["default"](a),o["default"](a),q["default"](a),s["default"](a)}var e=c(1)["default"];b.__esModule=!0,b.registerDefaultHelpers=d;var f=c(11),g=e(f),h=c(12),i=e(h),j=c(13),k=e(j),l=c(14),m=e(l),n=c(15),o=e(n),p=c(16),q=e(p),r=c(17),s=e(r)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(5),f=c(6),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(6),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(1)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(19),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=b.VM.invokePartial.call(this,c,d,e);if(null==f&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),f=e.partials[e.name](d,e)),null!=f){if(e.indent){for(var g=f.split("\n"),h=0,i=g.length;h<i&&(g[h]||h+1!==i);h++)g[h]=e.indent+g[h];f=g.join("\n")}return f}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},merge:function(a,b){var c=a||b;return a&&b&&a!==b&&(c=p.extend({},b,a)),c},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){c.partial?(e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators):(e.helpers=e.merge(c.helpers,b.helpers),a.usePartial&&(e.partials=e.merge(c.partials,b.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=e.merge(c.decorators,b.decorators)))},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(23)["default"],m=c(3)["default"],n=c(1)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(5),p=m(o),q=c(6),r=n(q),s=c(4)},function(a,b,c){a.exports={"default":c(24),__esModule:!0}},function(a,b,c){c(25),a.exports=c(30).Object.seal},function(a,b,c){var d=c(26);c(27)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(28),e=c(30),f=c(33);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(29),e=c(30),f=c(31),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(32);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b){"use strict";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return"SubExpression"===a.type||("MustacheStatement"===a.type||"BlockStatement"===a.type)&&!!(a.params&&a.params.length||a.hash)},scopedId:function(a){return/^\.|this\b/.test(a.original)},simpleId:function(a){return 1===a.parts.length&&!c.helpers.scopedId(a)&&!a.depth}}};b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if("Program"===a.type)return a;h["default"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b&&b.srcName,a)};var c=new j["default"](b);return c.accept(h["default"].parse(a))}var e=c(1)["default"],f=c(3)["default"];b.__esModule=!0,b.parse=d;var g=c(37),h=e(g),i=c(38),j=e(i),k=c(40),l=f(k),m=c(5);b.parser=h["default"];var n={};m.extend(n,l)},function(a,b){"use strict";b.__esModule=!0;var c=function(){function a(){this.yy={}}var b={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition_plus0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,1],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:this.$=f[h];break;case 4:this.$=f[h];break;case 5:this.$=f[h];break;case 6:this.$=f[h];break;case 7:this.$=f[h];break;case 8:this.$=f[h];break;case 9:this.$={type:"CommentStatement",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 20:this.$=f[h];break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:"PartialStatement",name:f[h-3],params:f[h-2],hash:f[h-1],indent:"",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 27:this.$=f[h];break;case 28:this.$=f[h];break;case 29:this.$={type:"SubExpression",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 33:this.$=f[h];break;case 34:this.$=f[h];break;case 35:this.$={type:"StringLiteral",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===f[h],original:"true"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:d.locInfo(this._$)};break;case 40:this.$=f[h];break;case 41:this.$=f[h];break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:this.$=[];break;case 47:f[h-1].push(f[h]);break;case 48:this.$=[f[h]];break;case 49:f[h-1].push(f[h]);break;case 50:this.$=[];break;case 51:f[h-1].push(f[h]);break;case 58:this.$=[];break;case 59:f[h-1].push(f[h]);break;case 64:this.$=[];break;case 65:f[h-1].push(f[h]);break;case 70:this.$=[];break;case 71:f[h-1].push(f[h]);break;case 78:this.$=[];break;case 79:f[h-1].push(f[h]);break;case 82:this.$=[];break;case 83:f[h-1].push(f[h]);break;case 86:this.$=[];break;case 87:f[h-1].push(f[h]);break;case 90:this.$=[];break;case 91:f[h-1].push(f[h]);break;case 94:this.$=[];break;case 95:f[h-1].push(f[h]);break;case 98:this.$=[f[h]];break;case 99:f[h-1].push(f[h]);break;case 100:this.$=[f[h]];break;case 101:f[h-1].push(f[h])}},table:[{3:1,4:2,5:[2,46],6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{1:[3]},{5:[1,4]},{5:[2,2],7:5,8:6,9:7,10:8,11:9,12:10,13:11,14:[1,12],15:[1,20],16:17,19:[1,23],24:15,27:16,29:[1,21],34:[1,22],39:[2,2],44:[2,2],47:[2,2],48:[1,13],51:[1,14],55:[1,18],59:19,60:[1,24]},{1:[2,1]},{5:[2,47],14:[2,47],15:[2,47],19:[2,47],29:[2,47],34:[2,47],39:[2,47],44:[2,47],47:[2,47],48:[2,47],51:[2,47],55:[2,47],60:[2,47]},{5:[2,3],14:[2,3],15:[2,3],19:[2,3],29:[2,3],34:[2,3],39:[2,3],44:[2,3],47:[2,3],48:[2,3],51:[2,3],55:[2,3],60:[2,3]},{5:[2,4],14:[2,4],15:[2,4],19:[2,4],29:[2,4],34:[2,4],39:[2,4],44:[2,4],47:[2,4],48:[2,4],51:[2,4],55:[2,4],60:[2,4]},{5:[2,5],14:[2,5],15:[2,5],19:[2,5],29:[2,5],34:[2,5],39:[2,5],44:[2,5],47:[2,5],48:[2,5],51:[2,5],55:[2,5],60:[2,5]},{5:[2,6],14:[2,6],15:[2,6],19:[2,6],29:[2,6],34:[2,6],39:[2,6],44:[2,6],47:[2,6],48:[2,6],51:[2,6],55:[2,6],60:[2,6]},{5:[2,7],14:[2,7],15:[2,7],19:[2,7],29:[2,7],34:[2,7],39:[2,7],44:[2,7],47:[2,7],48:[2,7],51:[2,7],55:[2,7],60:[2,7]},{5:[2,8],14:[2,8],15:[2,8],19:[2,8],29:[2,8],34:[2,8],39:[2,8],44:[2,8],47:[2,8],48:[2,8],51:[2,8],55:[2,8],60:[2,8]},{5:[2,9],14:[2,9],15:[2,9],19:[2,9],29:[2,9],34:[2,9],39:[2,9],44:[2,9],47:[2,9],48:[2,9],51:[2,9],55:[2,9],60:[2,9]},{20:25,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:36,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:37,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{4:38,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{13:40,15:[1,20],17:39},{20:42,56:41,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:45,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{5:[2,10],14:[2,10],15:[2,10],18:[2,10],19:[2,10],29:[2,10],34:[2,10],39:[2,10],44:[2,10],47:[2,10],48:[2,10],51:[2,10],55:[2,10],60:[2,10]},{20:46,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:47,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:48,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:42,56:49,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[2,78],49:50,65:[2,78],72:[2,78],80:[2,78],81:[2,78],82:[2,78],83:[2,78],84:[2,78],85:[2,78]},{23:[2,33],33:[2,33],54:[2,33],65:[2,33],68:[2,33],72:[2,33],75:[2,33],80:[2,33],81:[2,33],82:[2,33],83:[2,33],84:[2,33],85:[2,33]},{23:[2,34],33:[2,34],54:[2,34],65:[2,34],68:[2,34],72:[2,34],75:[2,34],80:[2,34],81:[2,34],82:[2,34],83:[2,34],84:[2,34],85:[2,34]},{23:[2,35],33:[2,35],54:[2,35],65:[2,35],68:[2,35],72:[2,35],75:[2,35],80:[2,35],81:[2,35],82:[2,35],83:[2,35],84:[2,35],85:[2,35]},{23:[2,36],33:[2,36],54:[2,36],65:[2,36],68:[2,36],72:[2,36],75:[2,36],80:[2,36],81:[2,36],82:[2,36],83:[2,36],84:[2,36],85:[2,36]},{23:[2,37],33:[2,37],54:[2,37],65:[2,37],68:[2,37],72:[2,37],75:[2,37],80:[2,37],81:[2,37],82:[2,37],83:[2,37],84:[2,37],85:[2,37]},{23:[2,38],33:[2,38],54:[2,38],65:[2,38],68:[2,38],72:[2,38],75:[2,38],80:[2,38],81:[2,38],82:[2,38],83:[2,38],84:[2,38],85:[2,38]},{23:[2,39],33:[2,39],54:[2,39],65:[2,39],68:[2,39],72:[2,39],75:[2,39],80:[2,39],81:[2,39],82:[2,39],83:[2,39],84:[2,39],85:[2,39]},{23:[2,43],33:[2,43],54:[2,43],65:[2,43],68:[2,43],72:[2,43],75:[2,43],80:[2,43],81:[2,43],82:[2,43],83:[2,43],84:[2,43],85:[2,43],87:[1,51]},{72:[1,35],86:52},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{52:53,54:[2,82],65:[2,82],72:[2,82],80:[2,82],81:[2,82],82:[2,82],83:[2,82],84:[2,82],85:[2,82]},{25:54,38:56,39:[1,58],43:57,44:[1,59],45:55,47:[2,54]},{28:60,43:61,44:[1,59],47:[2,56]},{13:63,15:[1,20],18:[1,62]},{15:[2,48],18:[2,48]},{33:[2,86],57:64,65:[2,86],72:[2,86],80:[2,86],81:[2,86],82:[2,86],83:[2,86],84:[2,86],85:[2,86]},{33:[2,40],65:[2,40],72:[2,40],80:[2,40],81:[2,40],82:[2,40],83:[2,40],84:[2,40],85:[2,40]},{33:[2,41],65:[2,41],72:[2,41],80:[2,41],81:[2,41],82:[2,41],83:[2,41],84:[2,41],85:[2,41]},{20:65,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:66,47:[1,67]},{30:68,33:[2,58],65:[2,58],72:[2,58],75:[2,58],80:[2,58],81:[2,58],82:[2,58],83:[2,58],84:[2,58],85:[2,58]},{33:[2,64],35:69,65:[2,64],72:[2,64],75:[2,64],80:[2,64],81:[2,64],82:[2,64],83:[2,64],84:[2,64],85:[2,64]},{21:70,23:[2,50],65:[2,50],72:[2,50],80:[2,50],81:[2,50],82:[2,50],83:[2,50],84:[2,50],85:[2,50]},{33:[2,90],61:71,65:[2,90],72:[2,90],80:[2,90],81:[2,90],82:[2,90],83:[2,90],84:[2,90],85:[2,90]},{20:75,33:[2,80],50:72,63:73,64:76,65:[1,44],69:74,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{72:[1,80]},{23:[2,42],33:[2,42],54:[2,42],65:[2,42],68:[2,42],72:[2,42],75:[2,42],80:[2,42],81:[2,42],82:[2,42],83:[2,42],84:[2,42],85:[2,42],87:[1,51]},{20:75,53:81,54:[2,84],63:82,64:76,65:[1,44],69:83,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:84,47:[1,67]},{47:[2,55]},{4:85,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{47:[2,20]},{20:86,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:87,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{26:88,47:[1,67]},{47:[2,57]},{5:[2,11],14:[2,11],15:[2,11],19:[2,11],29:[2,11],34:[2,11],39:[2,11],44:[2,11],47:[2,11],48:[2,11],51:[2,11],55:[2,11],60:[2,11]},{15:[2,49],18:[2,49]},{20:75,33:[2,88],58:89,63:90,64:76,65:[1,44],69:91,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{65:[2,94],66:92,68:[2,94],72:[2,94],80:[2,94],81:[2,94],82:[2,94],83:[2,94],84:[2,94],85:[2,94]},{5:[2,25],14:[2,25],15:[2,25],19:[2,25],29:[2,25],34:[2,25],39:[2,25],44:[2,25],47:[2,25],48:[2,25],51:[2,25],55:[2,25],60:[2,25]},{20:93,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,31:94,33:[2,60],63:95,64:76,65:[1,44],69:96,70:77,71:78,72:[1,79],75:[2,60],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,66],36:97,63:98,64:76,65:[1,44],69:99,70:77,71:78,72:[1,79],75:[2,66],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,22:100,23:[2,52],63:101,64:76,65:[1,44],69:102,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,92],62:103,63:104,64:76,65:[1,44],69:105,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,106]},{33:[2,79],65:[2,79],72:[2,79],80:[2,79],81:[2,79],82:[2,79],83:[2,79],84:[2,79],85:[2,79]},{33:[2,81]},{23:[2,27],33:[2,27],54:[2,27],65:[2,27],68:[2,27],72:[2,27],75:[2,27],80:[2,27],81:[2,27],82:[2,27],83:[2,27],84:[2,27],85:[2,27]},{23:[2,28],33:[2,28],54:[2,28],65:[2,28],68:[2,28],72:[2,28],75:[2,28],80:[2,28],81:[2,28],82:[2,28],83:[2,28],84:[2,28],85:[2,28]},{23:[2,30],33:[2,30],54:[2,30],68:[2,30],71:107,72:[1,108],75:[2,30]},{23:[2,98],33:[2,98],54:[2,98],68:[2,98],72:[2,98],75:[2,98]},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],73:[1,109],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{23:[2,44],33:[2,44],54:[2,44],65:[2,44],68:[2,44],72:[2,44],75:[2,44],80:[2,44],81:[2,44],82:[2,44],83:[2,44],84:[2,44],85:[2,44],87:[2,44]},{54:[1,110]},{54:[2,83],65:[2,83],72:[2,83],80:[2,83],81:[2,83],82:[2,83],83:[2,83],84:[2,83],85:[2,83]},{54:[2,85]},{5:[2,13],14:[2,13],15:[2,13],19:[2,13],29:[2,13],34:[2,13],39:[2,13],44:[2,13],47:[2,13],48:[2,13],51:[2,13],55:[2,13],60:[2,13]},{38:56,39:[1,58],43:57,44:[1,59],45:112,46:111,47:[2,76]},{33:[2,70],40:113,65:[2,70],72:[2,70],75:[2,70],80:[2,70],81:[2,70],82:[2,70],83:[2,70],84:[2,70],85:[2,70]},{47:[2,18]},{5:[2,14],14:[2,14],15:[2,14],19:[2,14],29:[2,14],34:[2,14],39:[2,14],44:[2,14],47:[2,14],48:[2,14],51:[2,14],55:[2,14],60:[2,14]},{33:[1,114]},{33:[2,87],65:[2,87],
|
28 |
-
72:[2,87],80:[2,87],81:[2,87],82:[2,87],83:[2,87],84:[2,87],85:[2,87]},{33:[2,89]},{20:75,63:116,64:76,65:[1,44],67:115,68:[2,96],69:117,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,118]},{32:119,33:[2,62],74:120,75:[1,121]},{33:[2,59],65:[2,59],72:[2,59],75:[2,59],80:[2,59],81:[2,59],82:[2,59],83:[2,59],84:[2,59],85:[2,59]},{33:[2,61],75:[2,61]},{33:[2,68],37:122,74:123,75:[1,121]},{33:[2,65],65:[2,65],72:[2,65],75:[2,65],80:[2,65],81:[2,65],82:[2,65],83:[2,65],84:[2,65],85:[2,65]},{33:[2,67],75:[2,67]},{23:[1,124]},{23:[2,51],65:[2,51],72:[2,51],80:[2,51],81:[2,51],82:[2,51],83:[2,51],84:[2,51],85:[2,51]},{23:[2,53]},{33:[1,125]},{33:[2,91],65:[2,91],72:[2,91],80:[2,91],81:[2,91],82:[2,91],83:[2,91],84:[2,91],85:[2,91]},{33:[2,93]},{5:[2,22],14:[2,22],15:[2,22],19:[2,22],29:[2,22],34:[2,22],39:[2,22],44:[2,22],47:[2,22],48:[2,22],51:[2,22],55:[2,22],60:[2,22]},{23:[2,99],33:[2,99],54:[2,99],68:[2,99],72:[2,99],75:[2,99]},{73:[1,109]},{20:75,63:126,64:76,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,23],14:[2,23],15:[2,23],19:[2,23],29:[2,23],34:[2,23],39:[2,23],44:[2,23],47:[2,23],48:[2,23],51:[2,23],55:[2,23],60:[2,23]},{47:[2,19]},{47:[2,77]},{20:75,33:[2,72],41:127,63:128,64:76,65:[1,44],69:129,70:77,71:78,72:[1,79],75:[2,72],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,24],14:[2,24],15:[2,24],19:[2,24],29:[2,24],34:[2,24],39:[2,24],44:[2,24],47:[2,24],48:[2,24],51:[2,24],55:[2,24],60:[2,24]},{68:[1,130]},{65:[2,95],68:[2,95],72:[2,95],80:[2,95],81:[2,95],82:[2,95],83:[2,95],84:[2,95],85:[2,95]},{68:[2,97]},{5:[2,21],14:[2,21],15:[2,21],19:[2,21],29:[2,21],34:[2,21],39:[2,21],44:[2,21],47:[2,21],48:[2,21],51:[2,21],55:[2,21],60:[2,21]},{33:[1,131]},{33:[2,63]},{72:[1,133],76:132},{33:[1,134]},{33:[2,69]},{15:[2,12]},{14:[2,26],15:[2,26],19:[2,26],29:[2,26],34:[2,26],47:[2,26],48:[2,26],51:[2,26],55:[2,26],60:[2,26]},{23:[2,31],33:[2,31],54:[2,31],68:[2,31],72:[2,31],75:[2,31]},{33:[2,74],42:135,74:136,75:[1,121]},{33:[2,71],65:[2,71],72:[2,71],75:[2,71],80:[2,71],81:[2,71],82:[2,71],83:[2,71],84:[2,71],85:[2,71]},{33:[2,73],75:[2,73]},{23:[2,29],33:[2,29],54:[2,29],65:[2,29],68:[2,29],72:[2,29],75:[2,29],80:[2,29],81:[2,29],82:[2,29],83:[2,29],84:[2,29],85:[2,29]},{14:[2,15],15:[2,15],19:[2,15],29:[2,15],34:[2,15],39:[2,15],44:[2,15],47:[2,15],48:[2,15],51:[2,15],55:[2,15],60:[2,15]},{72:[1,138],77:[1,137]},{72:[2,100],77:[2,100]},{14:[2,16],15:[2,16],19:[2,16],29:[2,16],34:[2,16],44:[2,16],47:[2,16],48:[2,16],51:[2,16],55:[2,16],60:[2,16]},{33:[1,139]},{33:[2,75]},{33:[2,32]},{72:[2,101],77:[2,101]},{14:[2,17],15:[2,17],19:[2,17],29:[2,17],34:[2,17],39:[2,17],44:[2,17],47:[2,17],48:[2,17],51:[2,17],55:[2,17],60:[2,17]}],defaultActions:{4:[2,1],55:[2,55],57:[2,20],61:[2,57],74:[2,81],83:[2,85],87:[2,18],91:[2,89],102:[2,53],105:[2,93],111:[2,19],112:[2,77],117:[2,97],120:[2,63],123:[2,69],124:[2,12],136:[2,75],137:[2,32]},parseError:function(a,b){throw new Error(a)},parse:function(a){function b(){var a;return a=c.lexer.lex()||1,"number"!=typeof a&&(a=c.symbols_[a]||a),a}var c=this,d=[0],e=[null],f=[],g=this.table,h="",i=0,j=0,k=0;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,"undefined"==typeof this.lexer.yylloc&&(this.lexer.yylloc={});var l=this.lexer.yylloc;f.push(l);var m=this.lexer.options&&this.lexer.options.ranges;"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var n,o,p,q,r,s,t,u,v,w={};;){if(p=d[d.length-1],this.defaultActions[p]?q=this.defaultActions[p]:(null!==n&&"undefined"!=typeof n||(n=b()),q=g[p]&&g[p][n]),"undefined"==typeof q||!q.length||!q[0]){var x="";if(!k){v=[];for(s in g[p])this.terminals_[s]&&s>2&&v.push("'"+this.terminals_[s]+"'");x=this.lexer.showPosition?"Parse error on line "+(i+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+v.join(", ")+", got '"+(this.terminals_[n]||n)+"'":"Parse error on line "+(i+1)+": Unexpected "+(1==n?"end of input":"'"+(this.terminals_[n]||n)+"'"),this.parseError(x,{text:this.lexer.match,token:this.terminals_[n]||n,line:this.lexer.yylineno,loc:l,expected:v})}}if(q[0]instanceof Array&&q.length>1)throw new Error("Parse Error: multiple actions possible at state: "+p+", token: "+n);switch(q[0]){case 1:d.push(n),e.push(this.lexer.yytext),f.push(this.lexer.yylloc),d.push(q[1]),n=null,o?(n=o,o=null):(j=this.lexer.yyleng,h=this.lexer.yytext,i=this.lexer.yylineno,l=this.lexer.yylloc,k>0&&k--);break;case 2:if(t=this.productions_[q[1]][1],w.$=e[e.length-t],w._$={first_line:f[f.length-(t||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(t||1)].first_column,last_column:f[f.length-1].last_column},m&&(w._$.range=[f[f.length-(t||1)].range[0],f[f.length-1].range[1]]),r=this.performAction.call(w,h,j,i,this.yy,q[1],e,f),"undefined"!=typeof r)return r;t&&(d=d.slice(0,-1*t*2),e=e.slice(0,-1*t),f=f.slice(0,-1*t)),d.push(this.productions_[q[1]][0]),e.push(w.$),f.push(w._$),u=g[d[d.length-2]][d[d.length-1]],d.push(u);break;case 3:return!0}}return!0}},c=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a){return this._input=a,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(/(?:\r\n?|\n).*/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(/(?:\r\n?|\n)/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b-1),this.offset-=b;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges&&(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this},more:function(){return this._more=!0,this},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+b+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d,e;this._more||(this.yytext="",this.match="");for(var f=this._currentRules(),g=0;g<f.length&&(c=this._input.match(this.rules[f[g]]),!c||b&&!(c[0].length>b[0].length)||(b=c,d=g,this.options.flex));g++);return b?(e=b[0].match(/(?:\r\n?|\n).*/g),e&&(this.yylineno+=e.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:e?e[e.length-1].length-e[e.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+b[0].length},this.yytext+=b[0],this.match+=b[0],this.matches=b,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(b[0].length),this.matched+=b[0],a=this.performAction.call(this,this.yy,this,f[d],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),a?a:void 0):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return"undefined"!=typeof a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(a){this.begin(a)}};return a.options={},a.performAction=function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substring(a,b.yyleng-c+a)}switch(c){case 0:if("\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin("mu")):"\\"===b.yytext.slice(-1)?(e(0,1),this.begin("emu")):this.begin("mu"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(e(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(/\\"/g,'"'),80;case 32:return b.yytext=e(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},a.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]*?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],a.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},a}();return b.lexer=c,a.prototype=b,b.Parser=a,new a}();b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b&&(b=a.length);var d=a[b-1],e=a[b-2];return d?"ContentStatement"===d.type?(e||!c?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:c}function f(a,b,c){void 0===b&&(b=-1);var d=a[b+1],e=a[b+2];return d?"ContentStatement"===d.type?(e||!c?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d&&"ContentStatement"===d.type&&(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d&&"ContentStatement"===d.type&&(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)["default"];b.__esModule=!0;var j=c(39),k=i(j);d.prototype=new k["default"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;i<j;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone&&m,p=l.closeStandalone&&n,q=l.inlineStandalone&&m&&n;l.close&&g(d,i,!0),l.open&&h(d,i,!0),b&&q&&(g(d,i),h(d,i)&&"PartialStatement"===k.type&&(k.indent=/([ \t]+$)/.exec(d[i-1].original)[1])),b&&o&&(g((k.program||k.inverse).body),h(d,i)),b&&p&&(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program&&a.inverse,d=c,i=c;if(c&&c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close&&g(b.body,null,!0),c){var k=a.inverseStrip;k.open&&h(b.body,null,!0),k.close&&g(d.body,null,!0),a.closeStrip.open&&h(i.body,null,!0),!this.options.ignoreStandalone&&e(b.body)&&f(d.body)&&(h(b.body),g(d.body))}else a.closeStrip.open&&h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(){this.parents=[]}function e(a){this.acceptRequired(a,"path"),this.acceptArray(a.params),this.acceptKey(a,"hash")}function f(a){e.call(this,a),this.acceptKey(a,"program"),this.acceptKey(a,"inverse")}function g(a){this.acceptRequired(a,"name"),this.acceptArray(a.params),this.acceptKey(a,"hash")}var h=c(1)["default"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c&&!d.prototype[c.type])throw new j["default"]('Unexpected node type "'+c.type+'" found when accepting '+b+" on "+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j["default"](a.type+" requires "+b)},acceptArray:function(a){for(var b=0,c=a.length;b<c;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j["default"]("Unknown type: "+a.type,a);this.current&&this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,"program")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,"value")}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q["default"](a.path.original+" doesn't match "+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return/^\[.*\]$/.test(a)?a.substring(1,a.length-1):a}function g(a,b){return{open:"~"===a.charAt(2),close:"~"===b.charAt(b.length-3)}}function h(a){return a.replace(/^\{\{~?!-?-?/,"").replace(/-?-?~?\}\}$/,"")}function i(a,b,c){c=this.locInfo(c);for(var d=a?"@":"",e=[],f=0,g=0,h=b.length;g<h;g++){var i=b[g].part,j=b[g].original!==i;if(d+=(b[g].separator||"")+i,j||".."!==i&&"."!==i&&"this"!==i)e.push(i);else{if(e.length>0)throw new q["default"]("Invalid path: "+d,{loc:c});".."===i&&f++}}return{type:"PathExpression",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h="{"!==g&&"&"!==g,i=/\*/.test(d);return{type:i?"Decorator":"MustacheStatement",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:"Program",body:b,strip:{},loc:e};return{type:"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e&&e.path&&d(a,e);var h=/\*/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q["default"]("Unexpected inverse block on decorator",c);c.chain&&(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f&&(f=i,i=b,b=f),{type:h?"DecoratorBlock":"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e&&e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b&&a.length){var c=a[0].loc,d=a[a.length-1].loc;c&&d&&(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:"Program",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:"PartialBlockStatement",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c&&c.strip,loc:this.locInfo(e)}}var o=c(1)["default"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){"use strict";function d(){}function e(a,b,c){if(null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+a);b=b||{},"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b&&(b={}),null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+a);b=l.extend({},b),"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)&&l.isArray(b)&&a.length===b.length){for(var c=0;c<a.length;c++)if(!g(a[c],b[c]))return!1;return!0}}function h(a){if(!a.path.parts){var b=a.path;a.path={type:"PathExpression",data:!1,depth:0,parts:[b.original+""],original:b.original+"",loc:b.loc}}}var i=c(1)["default"];b.__esModule=!0,b.Compiler=d,b.precompile=e,b.compile=f;var j=c(6),k=i(j),l=c(5),m=c(35),n=i(m),o=[].slice;d.prototype={compiler:d,equals:function(a){var b=this.opcodes.length;if(a.opcodes.length!==b)return!1;for(var c=0;c<b;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;c<b;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,"if":!0,unless:!0,"with":!0,log:!0,lookup:!0},c)for(var d in c)this.options.knownHelpers[d]=c[d];return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k["default"]("Unknown type: "+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;d<c;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b&&this.compileProgram(b),c=c&&this.compileProgram(c);var d=this.classifySexpr(a);"helper"===d?this.helperSexpr(a,b,c):"simple"===d?(this.simpleSexpr(a),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("blockValue",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("ambiguousBlockValue")),this.opcode("append")},DecoratorBlock:function(a){var b=a.program&&this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode("registerDecorator",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b&&(b=this.compileProgram(a.program));var c=a.params;if(c.length>1)throw new k["default"]("Unsupported number of partial arguments: "+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):c.push({type:"PathExpression",parts:[],depth:0}));var d=a.name.original,e="SubExpression"===a.name.type;e&&this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||"";this.options.preventIndent&&f&&(this.opcode("appendContent",f),f=""),this.opcode("invokePartial",e,d,f),this.opcode("append")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value&&this.opcode("appendContent",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);"simple"===b?this.simpleSexpr(a):"helper"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode("getContext",d.depth),this.opcode("pushProgram",b),this.opcode("pushProgram",c),d.strict=!0,this.accept(d),this.opcode("invokeAmbiguous",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode("resolvePossibleLambda")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode("invokeKnownHelper",d.length,f);else{if(this.options.knownHelpersOnly)throw new k["default"]("You specified knownHelpersOnly, but used the unknown helper "+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode("invokeHelper",d.length,e.original,n["default"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode("getContext",a.depth);var b=a.parts[0],c=n["default"].helpers.scopedId(a),d=!a.depth&&!c&&this.blockParamIndex(b);d?this.opcode("lookupBlockParam",d,a.parts):b?a.data?(this.options.data=!0,this.opcode("lookupData",a.depth,a.parts,a.strict)):this.opcode("lookupOnContext",a.parts,a.falsy,a.strict,c):this.opcode("pushContext")},StringLiteral:function(a){this.opcode("pushString",a.value)},NumberLiteral:function(a){this.opcode("pushLiteral",a.value)},BooleanLiteral:function(a){this.opcode("pushLiteral",a.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode("pushHash");c<d;c++)this.pushParam(b[c].value);for(;c--;)this.opcode("assignToHash",b[c].key);this.opcode("popHash")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a&&(this.useDepths=!0)},classifySexpr:function(a){var b=n["default"].helpers.simpleId(a.path),c=b&&!!this.blockParamIndex(a.path.parts[0]),d=!c&&n["default"].helpers.helperExpression(a),e=!c&&(d||b);if(e&&!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly&&(e=!1)}return d?"helper":e?"ambiguous":"simple"},pushParams:function(a){for(var b=0,c=a.length;b<c;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||"";if(this.stringParams)b.replace&&(b=b.replace(/^(\.?\.\/)*/g,"").replace(/\//g,".")),a.depth&&this.addDepth(a.depth),this.opcode("getContext",a.depth||0),this.opcode("pushStringParam",b,a.type),"SubExpression"===a.type&&this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n["default"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(".");this.opcode("pushId","BlockParam",c,d)}else b=a.original||b,b.replace&&(b=b.replace(/^this(?:\.|$)/,"").replace(/^\.\//,"").replace(/^\.$/,"")),this.opcode("pushId",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode("pushProgram",b),this.opcode("pushProgram",c),a.hash?this.accept(a.hash):this.opcode("emptyHash",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;b<c;b++){var d=this.options.blockParams[b],e=d&&l.indexOf(d,a);if(d&&e>=0)return[b,e]}}}},function(a,b,c){"use strict";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a&&g--;f<g;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable("container.strict"),"(",e,", ",b.quotedString(c[f]),")"]:e}var g=c(1)["default"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(43),m=g(l);e.prototype={nameLookup:function(a,b){return"constructor"===b?["(",a,".propertyIsEnumerable('constructor') ? ",a,".constructor : undefined",")"]:e.isValidJavaScriptVariableName(b)?[a,".",b]:[a,"[",JSON.stringify(b),"]"]},depthedLookup:function(a){return[this.aliasable("container.lookup"),'(depths, "',a,'")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?["return ",a,";"]:c?["buffer += ",a,";"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString("")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;h<i;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j["default"]("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend("var decorators = container.decorators;\n"),this.decorators.push("return fn;"),d?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend("function(fn, props, container, depth0, data, blockParams, depths) {\n"),this.decorators.push("}\n"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators&&(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;h<i;h++)n[h]&&(l[h]=n[h],o[h]&&(l[h+"_d"]=o[h],l.useDecorators=!0));return this.environment.usePartial&&(l.usePartial=!0),this.options.data&&(l.useData=!0),this.useDepths&&(l.useDepths=!0),this.useBlockParams&&(l.useBlockParams=!0),this.options.compat&&(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map&&l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m["default"](this.options.srcName),this.decorators=new m["default"](this.options.srcName)},createFunctionContext:function(a){var b="",c=this.stackVars.concat(this.registers.list);c.length>0&&(b+=", "+c.join(", "));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)&&f.children&&f.referenceCount>1&&(b+=", alias"+ ++d+"="+e,f.children[0]="alias"+d)}var g=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&g.push("blockParams"),this.useDepths&&g.push("depths");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap(["function(",g.join(","),") {\n ",h,"}"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(" + "):f=a,g=a):(f&&(e?f.prepend("buffer += "):d=!0,g.add(";"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend("return "),g.add(";")):e||this.source.push('return "";'):(a+=", buffer = "+(d?"":this.initializeBuffer()),f?(f.prepend("return buffer + "),g.add(";")):this.source.push("return buffer;")),a&&this.source.prepend("var "+a.substring(2)+(d?"":";\n")),this.source.merge()},blockValue:function(a){var b=this.aliasable("helpers.blockHelperMissing"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,"call",c))},ambiguousBlockValue:function(){var a=this.aliasable("helpers.blockHelperMissing"),b=[this.contextName(0)];this.setupHelperArgs("",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource(["if (!",this.lastHelper,") { ",c," = ",this.source.functionCall(a,"call",b),"}"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[" != null ? ",a,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource(["if (",a," != null) { ",this.appendToBuffer(a,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath("context",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push(["blockParams[",a[0],"][",a[1],"]"]),this.resolvePath("context",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral("container.data(data, "+a+")"):this.pushStackLiteral("data"),this.resolvePath("data",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict&&e,this,b,a));
|
29 |
-
for(var h=b.length;c<h;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);return d?[" && ",f]:[" != null ? ",f," : ",e]})},resolvePossibleLambda:function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),"SubExpression"!==b&&("string"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(a?"undefined":"{}")},pushHash:function(){this.hash&&this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(a.ids)),this.stringParams&&(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup("decorators",b,"decorator"),d=this.setupHelperArgs(b,a);this.decorators.push(["fn = ",this.decorators.functionCall(c,"",["fn","props","container",d])," || fn;"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=c?[e.name," || "]:"",g=["("].concat(f,d);this.options.strict||g.push(" || ",this.aliasable("helpers.helperMissing")),g.push(")"),this.push(this.source.functionCall(g,"call",e.callParams))},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,"call",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister("helper");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup("helpers",a,"helper"),f=["(","(helper = ",e," || ",c,")"];this.options.strict||(f[0]="(helper = ",f.push(" != null ? helper : ",this.aliasable("helpers.helperMissing"))),this.push(["(",f,d.paramsInit?["),(",d.paramsInit]:[],"),","(typeof helper === ",this.aliasable('"function"')," ? ",this.source.functionCall("helper","call",d.callParams)," : helper))"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a&&(b=this.popStack(),delete e.name),c&&(e.indent=JSON.stringify(c)),e.helpers="helpers",e.partials="partials",e.decorators="container.decorators",a?d.unshift(b):d.unshift(this.nameLookup("partials",b,"partial")),this.options.compat&&(e.depths="depths"),e=this.objectLiteral(e),d.push(e),this.push(this.source.functionCall("container.invokePartial","",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds&&(e=this.popStack()),this.stringParams&&(d=this.popStack(),c=this.popStack());var f=this.hash;c&&(f.contexts[a]=c),d&&(f.types[a]=d),e&&(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){"BlockParam"===a?this.pushStackLiteral("blockParams["+b[0]+"].path["+b[1]+"]"+(c?" + "+JSON.stringify("."+c):"")):"PathExpression"===a?this.pushString(b):"SubExpression"===a?this.pushStackLiteral("true"):this.pushStackLiteral("null")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;f<g;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);if(null==h){this.context.programs.push("");var i=this.context.programs.length;d.index=i,d.name="program"+i,this.context.programs[i]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[i]=e.decorators,this.context.environments[i]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams,d.useDepths=this.useDepths,d.useBlockParams=this.useBlockParams}else d.index=h.index,d.name="program"+h.index,this.useDepths=this.useDepths||h.useDepths,this.useBlockParams=this.useBlockParams||h.useBlockParams}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;b<c;b++){var d=this.context.environments[b];if(d&&d.equals(a))return d}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,"data",b.blockParams];return(this.useBlockParams||this.useDepths)&&c.push("blockParams"),this.useDepths&&c.push("depths"),"container.program("+c.join(", ")+")"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent&&(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a&&this.source.push(a)},replaceStack:function(a){var b=["("],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j["default"]("replaceStack on non-inline");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=["(",c],f=!0;else{e=!0;var h=this.incrStack();b=["((",this.push(h)," = ",g,")"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e&&this.stackSlot--,this.push(b.concat(i,")"))},incrStack:function(){return this.stackSlot++,this.stackSlot>this.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;b<c;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f," = ",e,";"]),this.compileStack.push(f)}}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a&&c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j["default"]("Invalid stack pop");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths&&a?"depths["+a+"]":"depth"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup("helpers",b,"helper"),g=this.aliasable(this.contextName(0)+" != null ? "+this.contextName(0)+" : (container.nullContext || {})");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h&&(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds&&(d.hashIds=this.popStack()),this.stringParams&&(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)&&(d.fn=k||"container.noop",d.inverse=j||"container.noop");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds&&(g[l]=this.popStack()),this.stringParams&&(f[l]=this.popStack(),e[l]=this.popStack());return h&&(d.args=this.source.generateArray(c)),this.trackIds&&(d.ids=this.source.generateArray(g)),this.stringParams&&(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data&&(d.data="data"),this.useBlockParams&&(d.blockParams="blockParams"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister("options"),c.push("options"),["options=",e]):c?(c.push(e),""):e}},function(){for(var a="break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false".split(" "),b=e.RESERVED_WORDS={},c=0,d=a.length;c<d;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]&&/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)},b["default"]=e,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;e<g;e++)d.push(b.wrap(a[e],c));return d}return"boolean"==typeof a||"number"==typeof a?a+"":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src="",d&&this.add(d)},g.prototype={add:function(a){f.isArray(a)&&(a=a.join("")),this.src+=a},prepend:function(a){f.isArray(a)&&(a=a.join("")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([" ",b,"\n"])}),a},each:function(a){for(var b=0,c=this.source.length;b<c;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length<=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?"."+b+"(":"(",c,")"])},quotedString:function(a){return'"'+(a+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);"undefined"!==e&&b.push([this.quotedString(c),":",e])}var f=this.generateList(b);return f.prepend("{"),f.add("}"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;c<e;c++)c&&b.add(","),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend("["),b.add("]"),b}},b["default"]=e,a.exports=b["default"]}])});
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
+
handlebars v4.3.0
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
24 |
THE SOFTWARE.
|
25 |
|
26 |
*/
|
27 |
+
!function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=r();return a.compile=function(b,c){return k.compile(b,c,a)},a.precompile=function(b,c){return k.precompile(b,c,a)},a.AST=i["default"],a.Compiler=k.Compiler,a.JavaScriptCompiler=m["default"],a.Parser=j.parser,a.parse=j.parse,a}var e=c(1)["default"];b.__esModule=!0;var f=c(2),g=e(f),h=c(35),i=e(h),j=c(36),k=c(43),l=c(44),m=e(l),n=c(41),o=e(n),p=c(34),q=e(p),r=g["default"].create,s=d();s.create=d,q["default"](s),s.Visitor=o["default"],s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(3)["default"],f=c(1)["default"];b.__esModule=!0;var g=c(4),h=e(g),i=c(21),j=f(i),k=c(6),l=f(k),m=c(5),n=e(m),o=c(22),p=e(o),q=c(34),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(1)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(5),g=c(6),h=e(g),i=c(10),j=c(18),k=c(20),l=e(k),m="4.3.0";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`","=":"="},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(7)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(8),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(1)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(11),h=f(g),i=c(12),j=f(i),k=c(13),l=f(k),m=c(14),n=f(m),o=c(15),p=f(o),q=c(16),r=f(q),s=c(17),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(5),f=c(6),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(6),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(1)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(19),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators,e.hooks=c.hooks;else{e.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(e.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=p.extend({},b.decorators,c.decorators)),e.hooks={};var d=c.allowCallsToHelperMissing;t.moveHelperToHooks(e,"helperMissing",d),t.moveHelperToHooks(e,"blockHelperMissing",d)}},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(23)["default"],m=c(3)["default"],n=c(1)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(5),p=m(o),q=c(6),r=n(q),s=c(4),t=c(10)},function(a,b,c){a.exports={"default":c(24),__esModule:!0}},function(a,b,c){c(25),a.exports=c(30).Object.seal},function(a,b,c){var d=c(26);c(27)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(28),e=c(30),f=c(33);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(29),e=c(30),f=c(31),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(32);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b){"use strict";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return"SubExpression"===a.type||("MustacheStatement"===a.type||"BlockStatement"===a.type)&&!!(a.params&&a.params.length||a.hash)},scopedId:function(a){return/^\.|this\b/.test(a.original)},simpleId:function(a){return 1===a.parts.length&&!c.helpers.scopedId(a)&&!a.depth}}};b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if("Program"===a.type)return a;h["default"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b&&b.srcName,a)};var c=new j["default"](b);return c.accept(h["default"].parse(a))}var e=c(1)["default"],f=c(3)["default"];b.__esModule=!0,b.parse=d;var g=c(37),h=e(g),i=c(40),j=e(i),k=c(42),l=f(k),m=c(5);b.parser=h["default"];var n={};m.extend(n,l)},function(a,b,c){"use strict";var d=c(38)["default"];b.__esModule=!0;var e=function(){function a(){this.yy={}}var b=function(a,b,c,d){for(c=c||{},d=a.length;d--;c[a[d]]=b);return c},c=[2,46],e=[1,20],f=[5,14,15,19,29,34,39,44,47,48,51,55,60],g=[1,35],h=[1,28],i=[1,29],j=[1,30],k=[1,31],l=[1,32],m=[1,34],n=[14,15,19,29,34,39,44,47,48,51,55,60],o=[14,15,19,29,34,44,47,48,51,55,60],p=[1,44],q=[14,15,19,29,34,47,48,51,55,60],r=[33,65,72,80,81,82,83,84,85],s=[23,33,54,65,68,72,75,80,81,82,83,84,85],t=[1,51],u=[23,33,54,65,68,72,75,80,81,82,83,84,85,87],v=[2,45],w=[54,65,72,80,81,82,83,84,85],x=[1,58],y=[1,59],z=[15,18],A=[1,67],B=[33,65,72,75,80,81,82,83,84,85],C=[23,65,72,80,81,82,83,84,85],D=[1,79],E=[65,68,72,80,81,82,83,84,85],F=[33,75],G=[23,33,54,68,72,75],H=[1,109],I=[1,121],J=[72,77],K={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition_plus0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,1],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:case 4:case 5:case 6:case 7:case 8:case 20:case 27:case 28:case 33:case 34:case 40:case 41:this.$=f[h];break;case 9:this.$={type:"CommentStatement",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:"PartialStatement",name:f[h-3],params:f[h-2],hash:f[h-1],indent:"",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 29:this.$={type:"SubExpression",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 35:this.$={type:"StringLiteral",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===f[h],original:"true"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:d.locInfo(this._$)};break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:case 50:case 58:case 64:case 70:case 78:case 82:case 86:case 90:case 94:this.$=[];break;case 47:case 49:case 51:case 59:case 65:case 71:case 79:case 83:case 87:case 91:case 95:case 99:case 101:f[h-1].push(f[h]);break;case 48:case 98:case 100:this.$=[f[h]]}},table:[b([5,14,15,19,29,34,48,51,55,60],c,{3:1,4:2,6:3}),{1:[3]},{5:[1,4]},b([5,39,44,47],[2,2],{7:5,8:6,9:7,10:8,11:9,12:10,13:11,24:15,27:16,16:17,59:19,14:[1,12],15:e,19:[1,23],29:[1,21],34:[1,22],48:[1,13],51:[1,14],55:[1,18],60:[1,24]}),{1:[2,1]},b(f,[2,47]),b(f,[2,3]),b(f,[2,4]),b(f,[2,5]),b(f,[2,6]),b(f,[2,7]),b(f,[2,8]),b(f,[2,9]),{20:25,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:36,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(n,c,{6:3,4:37}),b(o,c,{6:3,4:38}),{13:40,15:e,17:39},{20:42,56:41,64:43,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(q,c,{6:3,4:45}),b([5,14,15,18,19,29,34,39,44,47,48,51,55,60],[2,10]),{20:46,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:47,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:48,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:42,56:49,64:43,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(r,[2,78],{49:50}),b(s,[2,33]),b(s,[2,34]),b(s,[2,35]),b(s,[2,36]),b(s,[2,37]),b(s,[2,38]),b(s,[2,39]),b(s,[2,43],{87:t}),{72:g,86:52},b(u,v),b(w,[2,82],{52:53}),{25:54,38:56,39:x,43:57,44:y,45:55,47:[2,54]},{28:60,43:61,44:y,47:[2,56]},{13:63,15:e,18:[1,62]},b(z,[2,48]),b(r,[2,86],{57:64}),b(r,[2,40]),b(r,[2,41]),{20:65,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{26:66,47:A},b(B,[2,58],{30:68}),b(B,[2,64],{35:69}),b(C,[2,50],{21:70}),b(r,[2,90],{61:71}),{20:75,33:[2,80],50:72,63:73,64:76,65:p,69:74,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{72:[1,80]},b(s,[2,42],{87:t}),{20:75,53:81,54:[2,84],63:82,64:76,65:p,69:83,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{26:84,47:A},{47:[2,55]},b(n,c,{6:3,4:85}),{47:[2,20]},{20:86,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(q,c,{6:3,4:87}),{26:88,47:A},{47:[2,57]},b(f,[2,11]),b(z,[2,49]),{20:75,33:[2,88],58:89,63:90,64:76,65:p,69:91,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(E,[2,94],{66:92}),b(f,[2,25]),{20:93,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(F,[2,60],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,31:94,63:95,69:96,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),b(F,[2,66],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,36:97,63:98,69:99,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),{20:75,22:100,23:[2,52],63:101,64:76,65:p,69:102,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:75,33:[2,92],62:103,63:104,64:76,65:p,69:105,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{33:[1,106]},b(r,[2,79]),{33:[2,81]},b(s,[2,27]),b(s,[2,28]),b([23,33,54,68,75],[2,30],{71:107,72:[1,108]}),b(G,[2,98]),b(u,v,{73:H}),b(u,[2,44]),{54:[1,110]},b(w,[2,83]),{54:[2,85]},b(f,[2,13]),{38:56,39:x,43:57,44:y,45:112,46:111,47:[2,76]},b(B,[2,70],{40:113}),{47:[2,18]},b(f,[2,14]),{33:[1,114]},b(r,[2,87]),{33:[2,89]},{20:75,63:116,64:76,65:p,67:115,68:[2,96],69:117,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{33:[1,118]},{32:119,33:[2,62],74:120,75:I},b(B,[2,59]),b(F,[2,61]),{33:[2,68],37:122,74:123,75:I},b(B,[2,65]),b(F,[2,67]),{23:[1,124]},b(C,[2,51]),{23:[2,53]},{33:[1,125]},b(r,[2,91]),{33:[2,93]},b(f,[2,22]),b(G,[2,99]),{73:H},{20:75,63:126,64:76,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(f,[2,23]),{47:[2,19]},{47:[2,77]},b(F,[2,72],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,41:127,63:128,69:129,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),b(f,[2,24]),{68:[1,130]},b(E,[2,95]),{68:[2,97]},b(f,[2,21]),{33:[1,131]},{33:[2,63]},{72:[1,133],76:132},{33:[1,134]},{33:[2,69]},{15:[2,12]},b(q,[2,26]),b(G,[2,31]),{33:[2,74],42:135,74:136,75:I},b(B,[2,71]),b(F,[2,73]),b(s,[2,29]),b(n,[2,15]),{72:[1,138],77:[1,137]},b(J,[2,100]),b(o,[2,16]),{33:[1,139]},{33:[2,75]},{33:[2,32]},b(J,[2,101]),b(n,[2,17])],defaultActions:{4:[2,1],55:[2,55],57:[2,20],61:[2,57],74:[2,81],83:[2,85],87:[2,18],91:[2,89],102:[2,53],105:[2,93],111:[2,19],112:[2,77],117:[2,97],120:[2,63],123:[2,69],124:[2,12],136:[2,75],137:[2,32]},parseError:function(a,b){if(!b.recoverable){var c=function(a,b){this.message=a,this.hash=b};throw c.prototype=new Error,new c(a,b)}this.trace(a)},parse:function(a){var b=this,c=[0],e=[null],f=[],g=this.table,h="",i=0,j=0,k=0,l=2,m=1,n=f.slice.call(arguments,1),o=d(this.lexer),p={yy:{}};for(var q in this.yy)Object.prototype.hasOwnProperty.call(this.yy,q)&&(p.yy[q]=this.yy[q]);o.setInput(a,p.yy),p.yy.lexer=o,p.yy.parser=this,"undefined"==typeof o.yylloc&&(o.yylloc={});var r=o.yylloc;f.push(r);var s=o.options&&o.options.ranges;"function"==typeof p.yy.parseError?this.parseError=p.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var t,u,v,w,x,y,z,A,B,C=function(){var a;return a=o.lex()||m,"number"!=typeof a&&(a=b.symbols_[a]||a),a},D={};;){if(v=c[c.length-1],this.defaultActions[v]?w=this.defaultActions[v]:(null!==t&&"undefined"!=typeof t||(t=C()),w=g[v]&&g[v][t]),"undefined"==typeof w||!w.length||!w[0]){var E="";B=[];for(y in g[v])this.terminals_[y]&&y>l&&B.push("'"+this.terminals_[y]+"'");E=o.showPosition?"Parse error on line "+(i+1)+":\n"+o.showPosition()+"\nExpecting "+B.join(", ")+", got '"+(this.terminals_[t]||t)+"'":"Parse error on line "+(i+1)+": Unexpected "+(t==m?"end of input":"'"+(this.terminals_[t]||t)+"'"),this.parseError(E,{text:o.match,token:this.terminals_[t]||t,line:o.yylineno,loc:r,expected:B})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+v+", token: "+t);switch(w[0]){case 1:c.push(t),e.push(o.yytext),f.push(o.yylloc),c.push(w[1]),t=null,u?(t=u,u=null):(j=o.yyleng,h=o.yytext,i=o.yylineno,r=o.yylloc,k>0&&k--);break;case 2:if(z=this.productions_[w[1]][1],D.$=e[e.length-z],D._$={first_line:f[f.length-(z||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(z||1)].first_column,last_column:f[f.length-1].last_column},s&&(D._$.range=[f[f.length-(z||1)].range[0],f[f.length-1].range[1]]),x=this.performAction.apply(D,[h,j,i,p.yy,w[1],e,f].concat(n)),"undefined"!=typeof x)return x;z&&(c=c.slice(0,-1*z*2),e=e.slice(0,-1*z),f=f.slice(0,-1*z)),c.push(this.productions_[w[1]][0]),e.push(D.$),f.push(D._$),A=g[c[c.length-2]][c[c.length-1]],c.push(A);break;case 3:return!0}}return!0}},L=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a,b){return this.yy=b||this.yy||{},this._input=a,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(/(?:\r\n?|\n).*/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(/(?:\r\n?|\n)/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b),this.offset-=b;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges&&(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"");
|
28 |
+
},showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+b+"^"},test_match:function(a,b){var c,d,e;if(this.options.backtrack_lexer&&(e={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(e.yylloc.range=this.yylloc.range.slice(0))),d=a[0].match(/(?:\r\n?|\n).*/g),d&&(this.yylineno+=d.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:d?d[d.length-1].length-d[d.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+a[0].length},this.yytext+=a[0],this.match+=a[0],this.matches=a,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(a[0].length),this.matched+=a[0],c=this.performAction.call(this,this.yy,this,b,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),c)return c;if(this._backtrack){for(var f in e)this[f]=e[f];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d;this._more||(this.yytext="",this.match="");for(var e=this._currentRules(),f=0;f<e.length;f++)if(c=this._input.match(this.rules[e[f]]),c&&(!b||c[0].length>b[0].length)){if(b=c,d=f,this.options.backtrack_lexer){if(a=this.test_match(c,e[f]),a!==!1)return a;if(this._backtrack){b=!1;continue}return!1}if(!this.options.flex)break}return b?(a=this.test_match(b,e[d]),a!==!1&&a):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){var a=this.conditionStack.length-1;return a>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(a){return a=this.conditionStack.length-1-Math.abs(a||0),a>=0?this.conditionStack[a]:"INITIAL"},pushState:function(a){this.begin(a)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substring(a,b.yyleng-c+a)}switch(c){case 0:if("\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin("mu")):"\\"===b.yytext.slice(-1)?(e(0,1),this.begin("emu")):this.begin("mu"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(e(5,9),18);case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(/\\"/g,'"'),80;case 32:return b.yytext=e(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},rules:[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]*?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],conditions:{mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}}};return a}();return K.lexer=L,a.prototype=K,K.Parser=a,new a}();b["default"]=e,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(39),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b){return d.create(a,b)}},function(a,b,c){"use strict";function d(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b&&(b=a.length);var d=a[b-1],e=a[b-2];return d?"ContentStatement"===d.type?(e||!c?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:c}function f(a,b,c){void 0===b&&(b=-1);var d=a[b+1],e=a[b+2];return d?"ContentStatement"===d.type?(e||!c?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d&&"ContentStatement"===d.type&&(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d&&"ContentStatement"===d.type&&(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)["default"];b.__esModule=!0;var j=c(41),k=i(j);d.prototype=new k["default"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;i<j;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone&&m,p=l.closeStandalone&&n,q=l.inlineStandalone&&m&&n;l.close&&g(d,i,!0),l.open&&h(d,i,!0),b&&q&&(g(d,i),h(d,i)&&"PartialStatement"===k.type&&(k.indent=/([ \t]+$)/.exec(d[i-1].original)[1])),b&&o&&(g((k.program||k.inverse).body),h(d,i)),b&&p&&(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program&&a.inverse,d=c,i=c;if(c&&c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close&&g(b.body,null,!0),c){var k=a.inverseStrip;k.open&&h(b.body,null,!0),k.close&&g(d.body,null,!0),a.closeStrip.open&&h(i.body,null,!0),!this.options.ignoreStandalone&&e(b.body)&&f(d.body)&&(h(b.body),g(d.body))}else a.closeStrip.open&&h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(){this.parents=[]}function e(a){this.acceptRequired(a,"path"),this.acceptArray(a.params),this.acceptKey(a,"hash")}function f(a){e.call(this,a),this.acceptKey(a,"program"),this.acceptKey(a,"inverse")}function g(a){this.acceptRequired(a,"name"),this.acceptArray(a.params),this.acceptKey(a,"hash")}var h=c(1)["default"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c&&!d.prototype[c.type])throw new j["default"]('Unexpected node type "'+c.type+'" found when accepting '+b+" on "+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j["default"](a.type+" requires "+b)},acceptArray:function(a){for(var b=0,c=a.length;b<c;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j["default"]("Unknown type: "+a.type,a);this.current&&this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,"program")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,"value")}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q["default"](a.path.original+" doesn't match "+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return/^\[.*\]$/.test(a)?a.substring(1,a.length-1):a}function g(a,b){return{open:"~"===a.charAt(2),close:"~"===b.charAt(b.length-3)}}function h(a){return a.replace(/^\{\{~?!-?-?/,"").replace(/-?-?~?\}\}$/,"")}function i(a,b,c){c=this.locInfo(c);for(var d=a?"@":"",e=[],f=0,g=0,h=b.length;g<h;g++){var i=b[g].part,j=b[g].original!==i;if(d+=(b[g].separator||"")+i,j||".."!==i&&"."!==i&&"this"!==i)e.push(i);else{if(e.length>0)throw new q["default"]("Invalid path: "+d,{loc:c});".."===i&&f++}}return{type:"PathExpression",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h="{"!==g&&"&"!==g,i=/\*/.test(d);return{type:i?"Decorator":"MustacheStatement",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:"Program",body:b,strip:{},loc:e};return{type:"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e&&e.path&&d(a,e);var h=/\*/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q["default"]("Unexpected inverse block on decorator",c);c.chain&&(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f&&(f=i,i=b,b=f),{type:h?"DecoratorBlock":"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e&&e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b&&a.length){var c=a[0].loc,d=a[a.length-1].loc;c&&d&&(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:"Program",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:"PartialBlockStatement",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c&&c.strip,loc:this.locInfo(e)}}var o=c(1)["default"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){"use strict";function d(){}function e(a,b,c){if(null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+a);b=b||{},"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b&&(b={}),null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+a);b=l.extend({},b),"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)&&l.isArray(b)&&a.length===b.length){for(var c=0;c<a.length;c++)if(!g(a[c],b[c]))return!1;return!0}}function h(a){if(!a.path.parts){var b=a.path;a.path={type:"PathExpression",data:!1,depth:0,parts:[b.original+""],original:b.original+"",loc:b.loc}}}var i=c(1)["default"];b.__esModule=!0,b.Compiler=d,b.precompile=e,b.compile=f;var j=c(6),k=i(j),l=c(5),m=c(35),n=i(m),o=[].slice;d.prototype={compiler:d,equals:function(a){var b=this.opcodes.length;if(a.opcodes.length!==b)return!1;for(var c=0;c<b;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;c<b;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,"if":!0,unless:!0,"with":!0,log:!0,lookup:!0},c)for(var d in c)this.options.knownHelpers[d]=c[d];return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k["default"]("Unknown type: "+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;d<c;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b&&this.compileProgram(b),c=c&&this.compileProgram(c);var d=this.classifySexpr(a);"helper"===d?this.helperSexpr(a,b,c):"simple"===d?(this.simpleSexpr(a),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("blockValue",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("ambiguousBlockValue")),this.opcode("append")},DecoratorBlock:function(a){var b=a.program&&this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode("registerDecorator",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b&&(b=this.compileProgram(a.program));var c=a.params;if(c.length>1)throw new k["default"]("Unsupported number of partial arguments: "+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):c.push({type:"PathExpression",parts:[],depth:0}));var d=a.name.original,e="SubExpression"===a.name.type;e&&this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||"";this.options.preventIndent&&f&&(this.opcode("appendContent",f),f=""),this.opcode("invokePartial",e,d,f),this.opcode("append")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value&&this.opcode("appendContent",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);"simple"===b?this.simpleSexpr(a):"helper"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode("getContext",d.depth),this.opcode("pushProgram",b),this.opcode("pushProgram",c),d.strict=!0,this.accept(d),this.opcode("invokeAmbiguous",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode("resolvePossibleLambda")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode("invokeKnownHelper",d.length,f);else{if(this.options.knownHelpersOnly)throw new k["default"]("You specified knownHelpersOnly, but used the unknown helper "+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode("invokeHelper",d.length,e.original,n["default"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode("getContext",a.depth);var b=a.parts[0],c=n["default"].helpers.scopedId(a),d=!a.depth&&!c&&this.blockParamIndex(b);d?this.opcode("lookupBlockParam",d,a.parts):b?a.data?(this.options.data=!0,this.opcode("lookupData",a.depth,a.parts,a.strict)):this.opcode("lookupOnContext",a.parts,a.falsy,a.strict,c):this.opcode("pushContext")},StringLiteral:function(a){this.opcode("pushString",a.value)},NumberLiteral:function(a){this.opcode("pushLiteral",a.value)},BooleanLiteral:function(a){this.opcode("pushLiteral",a.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode("pushHash");c<d;c++)this.pushParam(b[c].value);for(;c--;)this.opcode("assignToHash",b[c].key);this.opcode("popHash")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a&&(this.useDepths=!0)},classifySexpr:function(a){var b=n["default"].helpers.simpleId(a.path),c=b&&!!this.blockParamIndex(a.path.parts[0]),d=!c&&n["default"].helpers.helperExpression(a),e=!c&&(d||b);if(e&&!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly&&(e=!1)}return d?"helper":e?"ambiguous":"simple"},pushParams:function(a){for(var b=0,c=a.length;b<c;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||"";if(this.stringParams)b.replace&&(b=b.replace(/^(\.?\.\/)*/g,"").replace(/\//g,".")),a.depth&&this.addDepth(a.depth),this.opcode("getContext",a.depth||0),this.opcode("pushStringParam",b,a.type),"SubExpression"===a.type&&this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n["default"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(".");this.opcode("pushId","BlockParam",c,d)}else b=a.original||b,b.replace&&(b=b.replace(/^this(?:\.|$)/,"").replace(/^\.\//,"").replace(/^\.$/,"")),this.opcode("pushId",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode("pushProgram",b),this.opcode("pushProgram",c),a.hash?this.accept(a.hash):this.opcode("emptyHash",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;b<c;b++){var d=this.options.blockParams[b],e=d&&l.indexOf(d,a);if(d&&e>=0)return[b,e]}}}},function(a,b,c){"use strict";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a&&g--;f<g;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable("container.strict"),"(",e,", ",b.quotedString(c[f]),")"]:e}var g=c(1)["default"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(45),m=g(l);e.prototype={nameLookup:function(a,b){return"constructor"===b?["(",a,".propertyIsEnumerable('constructor') ? ",a,".constructor : undefined",")"]:e.isValidJavaScriptVariableName(b)?[a,".",b]:[a,"[",JSON.stringify(b),"]"]},depthedLookup:function(a){return[this.aliasable("container.lookup"),'(depths, "',a,'")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?["return ",a,";"]:c?["buffer += ",a,";"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString("")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;h<i;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j["default"]("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend("var decorators = container.decorators;\n"),this.decorators.push("return fn;"),d?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend("function(fn, props, container, depth0, data, blockParams, depths) {\n"),this.decorators.push("}\n"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators&&(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;h<i;h++)n[h]&&(l[h]=n[h],o[h]&&(l[h+"_d"]=o[h],l.useDecorators=!0));return this.environment.usePartial&&(l.usePartial=!0),this.options.data&&(l.useData=!0),this.useDepths&&(l.useDepths=!0),this.useBlockParams&&(l.useBlockParams=!0),this.options.compat&&(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map&&l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m["default"](this.options.srcName),this.decorators=new m["default"](this.options.srcName)},createFunctionContext:function(a){var b="",c=this.stackVars.concat(this.registers.list);c.length>0&&(b+=", "+c.join(", "));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)&&f.children&&f.referenceCount>1&&(b+=", alias"+ ++d+"="+e,f.children[0]="alias"+d)}var g=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&g.push("blockParams"),this.useDepths&&g.push("depths");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap(["function(",g.join(","),") {\n ",h,"}"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(" + "):f=a,g=a):(f&&(e?f.prepend("buffer += "):d=!0,g.add(";"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend("return "),g.add(";")):e||this.source.push('return "";'):(a+=", buffer = "+(d?"":this.initializeBuffer()),f?(f.prepend("return buffer + "),g.add(";")):this.source.push("return buffer;")),a&&this.source.prepend("var "+a.substring(2)+(d?"":";\n")),this.source.merge()},blockValue:function(a){var b=this.aliasable("container.hooks.blockHelperMissing"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,"call",c))},ambiguousBlockValue:function(){var a=this.aliasable("container.hooks.blockHelperMissing"),b=[this.contextName(0)];this.setupHelperArgs("",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource(["if (!",this.lastHelper,") { ",c," = ",this.source.functionCall(a,"call",b),"}"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[" != null ? ",a,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource(["if (",a," != null) { ",this.appendToBuffer(a,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath("context",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push(["blockParams[",a[0],"][",a[1],"]"]),this.resolvePath("context",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral("container.data(data, "+a+")"):this.pushStackLiteral("data"),this.resolvePath("data",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict&&e,this,b,a));for(var h=b.length;c<h;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);return d?[" && ",f]:[" != null ? ",f," : ",e]})},resolvePossibleLambda:function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),"SubExpression"!==b&&("string"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(a?"undefined":"{}")},pushHash:function(){this.hash&&this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(a.ids)),this.stringParams&&(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup("decorators",b,"decorator"),d=this.setupHelperArgs(b,a);this.decorators.push(["fn = ",this.decorators.functionCall(c,"",["fn","props","container",d])," || fn;"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=[];c&&f.push(e.name),f.push(d),this.options.strict||f.push(this.aliasable("container.hooks.helperMissing"));var g=["(",this.itemsSeparatedBy(f,"||"),")"],h=this.source.functionCall(g,"call",e.callParams);this.push(h)},itemsSeparatedBy:function(a,b){var c=[];c.push(a[0]);for(var d=1;d<a.length;d++)c.push(b,a[d]);return c},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,"call",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister("helper");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup("helpers",a,"helper"),f=["(","(helper = ",e," || ",c,")"];this.options.strict||(f[0]="(helper = ",f.push(" != null ? helper : ",this.aliasable("container.hooks.helperMissing"))),this.push(["(",f,d.paramsInit?["),(",d.paramsInit]:[],"),","(typeof helper === ",this.aliasable('"function"')," ? ",this.source.functionCall("helper","call",d.callParams)," : helper))"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a&&(b=this.popStack(),delete e.name),c&&(e.indent=JSON.stringify(c)),e.helpers="helpers",e.partials="partials",e.decorators="container.decorators",a?d.unshift(b):d.unshift(this.nameLookup("partials",b,"partial")),this.options.compat&&(e.depths="depths"),e=this.objectLiteral(e),d.push(e),this.push(this.source.functionCall("container.invokePartial","",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds&&(e=this.popStack()),this.stringParams&&(d=this.popStack(),c=this.popStack());var f=this.hash;c&&(f.contexts[a]=c),d&&(f.types[a]=d),e&&(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){"BlockParam"===a?this.pushStackLiteral("blockParams["+b[0]+"].path["+b[1]+"]"+(c?" + "+JSON.stringify("."+c):"")):"PathExpression"===a?this.pushString(b):"SubExpression"===a?this.pushStackLiteral("true"):this.pushStackLiteral("null")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;f<g;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);if(null==h){this.context.programs.push("");var i=this.context.programs.length;d.index=i,d.name="program"+i,this.context.programs[i]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[i]=e.decorators,this.context.environments[i]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams,d.useDepths=this.useDepths,d.useBlockParams=this.useBlockParams}else d.index=h.index,d.name="program"+h.index,this.useDepths=this.useDepths||h.useDepths,this.useBlockParams=this.useBlockParams||h.useBlockParams}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;b<c;b++){var d=this.context.environments[b];if(d&&d.equals(a))return d}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,"data",b.blockParams];return(this.useBlockParams||this.useDepths)&&c.push("blockParams"),this.useDepths&&c.push("depths"),"container.program("+c.join(", ")+")"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent&&(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a&&this.source.push(a)},replaceStack:function(a){var b=["("],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j["default"]("replaceStack on non-inline");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=["(",c],f=!0;else{e=!0;var h=this.incrStack();b=["((",this.push(h)," = ",g,")"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e&&this.stackSlot--,this.push(b.concat(i,")"))},incrStack:function(){return this.stackSlot++,this.stackSlot>this.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;b<c;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f," = ",e,";"]),this.compileStack.push(f);
|
29 |
+
}}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a&&c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j["default"]("Invalid stack pop");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths&&a?"depths["+a+"]":"depth"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup("helpers",b,"helper"),g=this.aliasable(this.contextName(0)+" != null ? "+this.contextName(0)+" : (container.nullContext || {})");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h&&(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds&&(d.hashIds=this.popStack()),this.stringParams&&(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)&&(d.fn=k||"container.noop",d.inverse=j||"container.noop");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds&&(g[l]=this.popStack()),this.stringParams&&(f[l]=this.popStack(),e[l]=this.popStack());return h&&(d.args=this.source.generateArray(c)),this.trackIds&&(d.ids=this.source.generateArray(g)),this.stringParams&&(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data&&(d.data="data"),this.useBlockParams&&(d.blockParams="blockParams"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister("options"),c.push("options"),["options=",e]):c?(c.push(e),""):e}},function(){for(var a="break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false".split(" "),b=e.RESERVED_WORDS={},c=0,d=a.length;c<d;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]&&/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)},b["default"]=e,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;e<g;e++)d.push(b.wrap(a[e],c));return d}return"boolean"==typeof a||"number"==typeof a?a+"":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src="",d&&this.add(d)},g.prototype={add:function(a){f.isArray(a)&&(a=a.join("")),this.src+=a},prepend:function(a){f.isArray(a)&&(a=a.join("")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([" ",b,"\n"])}),a},each:function(a){for(var b=0,c=this.source.length;b<c;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length<=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?"."+b+"(":"(",c,")"])},quotedString:function(a){return'"'+(a+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);"undefined"!==e&&b.push([this.quotedString(c),":",e])}var f=this.generateList(b);return f.prepend("{"),f.add("}"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;c<e;c++)c&&b.add(","),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend("["),b.add("]"),b}},b["default"]=e,a.exports=b["default"]}])});
|
@@ -1,7 +1,7 @@
|
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
-
handlebars v4.
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
@@ -207,9 +207,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
207 |
|
208 |
var _logger2 = _interopRequireDefault(_logger);
|
209 |
|
210 |
-
var VERSION = '4.
|
211 |
exports.VERSION = VERSION;
|
212 |
-
var COMPILER_REVISION =
|
213 |
|
214 |
exports.COMPILER_REVISION = COMPILER_REVISION;
|
215 |
var REVISION_CHANGES = {
|
@@ -219,7 +219,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
219 |
4: '== 1.x.x',
|
220 |
5: '== 2.0.0-alpha.x',
|
221 |
6: '>= 2.0.0-beta.1',
|
222 |
-
7: '>= 4.0.0'
|
|
|
223 |
};
|
224 |
|
225 |
exports.REVISION_CHANGES = REVISION_CHANGES;
|
@@ -303,6 +304,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
303 |
exports.createFrame = createFrame;
|
304 |
exports.blockParams = blockParams;
|
305 |
exports.appendContextPath = appendContextPath;
|
|
|
306 |
var escape = {
|
307 |
'&': '&',
|
308 |
'<': '<',
|
@@ -520,6 +522,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
520 |
|
521 |
exports.__esModule = true;
|
522 |
exports.registerDefaultHelpers = registerDefaultHelpers;
|
|
|
523 |
|
524 |
var _helpersBlockHelperMissing = __webpack_require__(10);
|
525 |
|
@@ -559,6 +562,15 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
559 |
_helpersWith2['default'](instance);
|
560 |
}
|
561 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
/***/ }),
|
563 |
/* 10 */
|
564 |
/***/ (function(module, exports, __webpack_require__) {
|
@@ -1001,6 +1013,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1001 |
|
1002 |
var _base = __webpack_require__(3);
|
1003 |
|
|
|
|
|
1004 |
function checkRevision(compilerInfo) {
|
1005 |
var compilerRevision = compilerInfo && compilerInfo[0] || 1,
|
1006 |
currentRevision = _base.COMPILER_REVISION;
|
@@ -1018,6 +1032,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1018 |
}
|
1019 |
|
1020 |
function template(templateSpec, env) {
|
|
|
1021 |
/* istanbul ignore next */
|
1022 |
if (!env) {
|
1023 |
throw new _exception2['default']('No environment passed to template');
|
@@ -1029,7 +1044,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1029 |
templateSpec.main.decorator = templateSpec.main_d;
|
1030 |
|
1031 |
// Note: Using env.VM references rather than local var references throughout this section to allow
|
1032 |
-
// for external users to override these as
|
1033 |
env.VM.checkRevision(templateSpec.compiler);
|
1034 |
|
1035 |
function invokePartialWrapper(partial, context, options) {
|
@@ -1039,13 +1054,15 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1039 |
options.ids[0] = true;
|
1040 |
}
|
1041 |
}
|
1042 |
-
|
1043 |
partial = env.VM.resolvePartial.call(this, partial, context, options);
|
1044 |
-
|
|
|
|
|
|
|
1045 |
|
1046 |
if (result == null && env.compile) {
|
1047 |
options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env);
|
1048 |
-
result = options.partials[options.name](context,
|
1049 |
}
|
1050 |
if (result != null) {
|
1051 |
if (options.indent) {
|
@@ -1112,15 +1129,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1112 |
}
|
1113 |
return value;
|
1114 |
},
|
1115 |
-
merge: function merge(param, common) {
|
1116 |
-
var obj = param || common;
|
1117 |
-
|
1118 |
-
if (param && common && param !== common) {
|
1119 |
-
obj = Utils.extend({}, common, param);
|
1120 |
-
}
|
1121 |
-
|
1122 |
-
return obj;
|
1123 |
-
},
|
1124 |
// An empty object to use as replacement for null-contexts
|
1125 |
nullContext: _Object$seal({}),
|
1126 |
|
@@ -1157,18 +1165,24 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1157 |
|
1158 |
ret._setup = function (options) {
|
1159 |
if (!options.partial) {
|
1160 |
-
container.helpers =
|
1161 |
|
1162 |
if (templateSpec.usePartial) {
|
1163 |
-
container.partials =
|
1164 |
}
|
1165 |
if (templateSpec.usePartial || templateSpec.useDecorators) {
|
1166 |
-
container.decorators =
|
1167 |
}
|
|
|
|
|
|
|
|
|
|
|
1168 |
} else {
|
1169 |
container.helpers = options.helpers;
|
1170 |
container.partials = options.partials;
|
1171 |
container.decorators = options.decorators;
|
|
|
1172 |
}
|
1173 |
};
|
1174 |
|
@@ -1205,6 +1219,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1205 |
return prog;
|
1206 |
}
|
1207 |
|
|
|
|
|
|
|
|
|
1208 |
function resolvePartial(partial, context, options) {
|
1209 |
if (!partial) {
|
1210 |
if (options.name === '@partial-block') {
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
+
handlebars v4.3.0
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
207 |
|
208 |
var _logger2 = _interopRequireDefault(_logger);
|
209 |
|
210 |
+
var VERSION = '4.3.0';
|
211 |
exports.VERSION = VERSION;
|
212 |
+
var COMPILER_REVISION = 8;
|
213 |
|
214 |
exports.COMPILER_REVISION = COMPILER_REVISION;
|
215 |
var REVISION_CHANGES = {
|
219 |
4: '== 1.x.x',
|
220 |
5: '== 2.0.0-alpha.x',
|
221 |
6: '>= 2.0.0-beta.1',
|
222 |
+
7: '>= 4.0.0 <4.3.0',
|
223 |
+
8: '>= 4.3.0'
|
224 |
};
|
225 |
|
226 |
exports.REVISION_CHANGES = REVISION_CHANGES;
|
304 |
exports.createFrame = createFrame;
|
305 |
exports.blockParams = blockParams;
|
306 |
exports.appendContextPath = appendContextPath;
|
307 |
+
|
308 |
var escape = {
|
309 |
'&': '&',
|
310 |
'<': '<',
|
522 |
|
523 |
exports.__esModule = true;
|
524 |
exports.registerDefaultHelpers = registerDefaultHelpers;
|
525 |
+
exports.moveHelperToHooks = moveHelperToHooks;
|
526 |
|
527 |
var _helpersBlockHelperMissing = __webpack_require__(10);
|
528 |
|
562 |
_helpersWith2['default'](instance);
|
563 |
}
|
564 |
|
565 |
+
function moveHelperToHooks(instance, helperName, keepHelper) {
|
566 |
+
if (instance.helpers[helperName]) {
|
567 |
+
instance.hooks[helperName] = instance.helpers[helperName];
|
568 |
+
if (!keepHelper) {
|
569 |
+
delete instance.helpers[helperName];
|
570 |
+
}
|
571 |
+
}
|
572 |
+
}
|
573 |
+
|
574 |
/***/ }),
|
575 |
/* 10 */
|
576 |
/***/ (function(module, exports, __webpack_require__) {
|
1013 |
|
1014 |
var _base = __webpack_require__(3);
|
1015 |
|
1016 |
+
var _helpers = __webpack_require__(9);
|
1017 |
+
|
1018 |
function checkRevision(compilerInfo) {
|
1019 |
var compilerRevision = compilerInfo && compilerInfo[0] || 1,
|
1020 |
currentRevision = _base.COMPILER_REVISION;
|
1032 |
}
|
1033 |
|
1034 |
function template(templateSpec, env) {
|
1035 |
+
|
1036 |
/* istanbul ignore next */
|
1037 |
if (!env) {
|
1038 |
throw new _exception2['default']('No environment passed to template');
|
1044 |
templateSpec.main.decorator = templateSpec.main_d;
|
1045 |
|
1046 |
// Note: Using env.VM references rather than local var references throughout this section to allow
|
1047 |
+
// for external users to override these as pseudo-supported APIs.
|
1048 |
env.VM.checkRevision(templateSpec.compiler);
|
1049 |
|
1050 |
function invokePartialWrapper(partial, context, options) {
|
1054 |
options.ids[0] = true;
|
1055 |
}
|
1056 |
}
|
|
|
1057 |
partial = env.VM.resolvePartial.call(this, partial, context, options);
|
1058 |
+
|
1059 |
+
var optionsWithHooks = Utils.extend({}, options, { hooks: this.hooks });
|
1060 |
+
|
1061 |
+
var result = env.VM.invokePartial.call(this, partial, context, optionsWithHooks);
|
1062 |
|
1063 |
if (result == null && env.compile) {
|
1064 |
options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env);
|
1065 |
+
result = options.partials[options.name](context, optionsWithHooks);
|
1066 |
}
|
1067 |
if (result != null) {
|
1068 |
if (options.indent) {
|
1129 |
}
|
1130 |
return value;
|
1131 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1132 |
// An empty object to use as replacement for null-contexts
|
1133 |
nullContext: _Object$seal({}),
|
1134 |
|
1165 |
|
1166 |
ret._setup = function (options) {
|
1167 |
if (!options.partial) {
|
1168 |
+
container.helpers = Utils.extend({}, env.helpers, options.helpers);
|
1169 |
|
1170 |
if (templateSpec.usePartial) {
|
1171 |
+
container.partials = Utils.extend({}, env.partials, options.partials);
|
1172 |
}
|
1173 |
if (templateSpec.usePartial || templateSpec.useDecorators) {
|
1174 |
+
container.decorators = Utils.extend({}, env.decorators, options.decorators);
|
1175 |
}
|
1176 |
+
|
1177 |
+
container.hooks = {};
|
1178 |
+
var keepHelper = options.allowCallsToHelperMissing;
|
1179 |
+
_helpers.moveHelperToHooks(container, 'helperMissing', keepHelper);
|
1180 |
+
_helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelper);
|
1181 |
} else {
|
1182 |
container.helpers = options.helpers;
|
1183 |
container.partials = options.partials;
|
1184 |
container.decorators = options.decorators;
|
1185 |
+
container.hooks = options.hooks;
|
1186 |
}
|
1187 |
};
|
1188 |
|
1219 |
return prog;
|
1220 |
}
|
1221 |
|
1222 |
+
/**
|
1223 |
+
* This is currently part of the official API, therefore implementation details should not be changed.
|
1224 |
+
*/
|
1225 |
+
|
1226 |
function resolvePartial(partial, context, options) {
|
1227 |
if (!partial) {
|
1228 |
if (options.name === '@partial-block') {
|
@@ -1,7 +1,7 @@
|
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
-
handlebars v4.
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
@@ -24,4 +24,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24 |
THE SOFTWARE.
|
25 |
|
26 |
*/
|
27 |
-
!function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(1)["default"],f=c(2)["default"];b.__esModule=!0;var g=c(3),h=e(g),i=c(20),j=f(i),k=c(5),l=f(k),m=c(4),n=e(m),o=c(21),p=e(o),q=c(33),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(2)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(4),g=c(5),h=e(g),i=c(9),j=c(17),k=c(19),l=e(k),m="4.1.2";b.VERSION=m;var n=7;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`","=":"="},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(6)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(7),__esModule:!0}},function(a,b,c){var d=c(8);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){g["default"](a),i["default"](a),k["default"](a),m["default"](a),o["default"](a),q["default"](a),s["default"](a)}var e=c(2)["default"];b.__esModule=!0,b.registerDefaultHelpers=d;var f=c(10),g=e(f),h=c(11),i=e(h),j=c(12),k=e(j),l=c(13),m=e(l),n=c(14),o=e(n),p=c(15),q=e(p),r=c(16),s=e(r)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(4),f=c(5),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(5),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(2)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(18),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=b.VM.invokePartial.call(this,c,d,e);if(null==f&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),f=e.partials[e.name](d,e)),null!=f){if(e.indent){for(var g=f.split("\n"),h=0,i=g.length;h<i&&(g[h]||h+1!==i);h++)g[h]=e.indent+g[h];f=g.join("\n")}return f}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},merge:function(a,b){var c=a||b;return a&&b&&a!==b&&(c=p.extend({},b,a)),c},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){c.partial?(e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators):(e.helpers=e.merge(c.helpers,b.helpers),a.usePartial&&(e.partials=e.merge(c.partials,b.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=e.merge(c.decorators,b.decorators)))},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(22)["default"],m=c(1)["default"],n=c(2)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(4),p=m(o),q=c(5),r=n(q),s=c(3)},function(a,b,c){a.exports={"default":c(23),__esModule:!0}},function(a,b,c){c(24),a.exports=c(29).Object.seal},function(a,b,c){var d=c(25);c(26)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(27),e=c(29),f=c(32);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(28),e=c(29),f=c(30),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(31);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())}])});
|
1 |
/**!
|
2 |
|
3 |
@license
|
4 |
+
handlebars v4.3.0
|
5 |
|
6 |
Copyright (C) 2011-2017 by Yehuda Katz
|
7 |
|
24 |
THE SOFTWARE.
|
25 |
|
26 |
*/
|
27 |
+
!function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(1)["default"],f=c(2)["default"];b.__esModule=!0;var g=c(3),h=e(g),i=c(20),j=f(i),k=c(5),l=f(k),m=c(4),n=e(m),o=c(21),p=e(o),q=c(33),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(2)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(4),g=c(5),h=e(g),i=c(9),j=c(17),k=c(19),l=e(k),m="4.3.0";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`","=":"="},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(6)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(7),__esModule:!0}},function(a,b,c){var d=c(8);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(2)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(10),h=f(g),i=c(11),j=f(i),k=c(12),l=f(k),m=c(13),n=f(m),o=c(14),p=f(o),q=c(15),r=f(q),s=c(16),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(4),f=c(5),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(5),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(2)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(18),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators,e.hooks=c.hooks;else{e.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(e.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=p.extend({},b.decorators,c.decorators)),e.hooks={};var d=c.allowCallsToHelperMissing;t.moveHelperToHooks(e,"helperMissing",d),t.moveHelperToHooks(e,"blockHelperMissing",d)}},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(22)["default"],m=c(1)["default"],n=c(2)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(4),p=m(o),q=c(5),r=n(q),s=c(3),t=c(9)},function(a,b,c){a.exports={"default":c(23),__esModule:!0}},function(a,b,c){c(24),a.exports=c(29).Object.seal},function(a,b,c){var d=c(25);c(26)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(27),e=c(29),f=c(32);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(28),e=c(29),f=c(30),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(31);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())}])});
|
File without changes
|
@@ -88,7 +88,7 @@ function Updraft_Queue() {
|
|
88 |
var item = queue[offset];
|
89 |
|
90 |
// Increment the offset and remove the free space if necessary.
|
91 |
-
if ((++
|
92 |
queue = queue.slice(offset);
|
93 |
offset = 0;
|
94 |
}
|
88 |
var item = queue[offset];
|
89 |
|
90 |
// Increment the offset and remove the free space if necessary.
|
91 |
+
if ((++offset * 2) >= queue.length) {
|
92 |
queue = queue.slice(offset);
|
93 |
offset = 0;
|
94 |
}
|
File without changes
|
@@ -141,7 +141,7 @@ var WP_Optimize = function (send_command) {
|
|
141 |
// external filter (column specific or any match)
|
142 |
filter_external: table_list_filter,
|
143 |
// add a default type search to the second table column
|
144 |
-
filter_defaultFilter: { 2 : '~{query}' }
|
145 |
}
|
146 |
});
|
147 |
|
@@ -510,7 +510,7 @@ var WP_Optimize = function (send_command) {
|
|
510 |
} else if (additional_data_length > 0) {
|
511 |
// check if additional data passed for optimization.
|
512 |
data = {
|
513 |
-
optimization_id: id
|
514 |
};
|
515 |
|
516 |
for (var i in additional_data) {
|
141 |
// external filter (column specific or any match)
|
142 |
filter_external: table_list_filter,
|
143 |
// add a default type search to the second table column
|
144 |
+
filter_defaultFilter: { 2 : '~{query}' }
|
145 |
}
|
146 |
});
|
147 |
|
510 |
} else if (additional_data_length > 0) {
|
511 |
// check if additional data passed for optimization.
|
512 |
data = {
|
513 |
+
optimization_id: id
|
514 |
};
|
515 |
|
516 |
for (var i in additional_data) {
|
@@ -1 +0,0 @@
|
|
1 |
-
function wpo_parse_json(s){try{var e=JSON.parse(s);return e}catch(o){console.log("WPO: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(s)}var i=s.indexOf("{"),a=s.lastIndexOf("}");if(i>-1&&a>-1){var t=s.slice(i,a+1);try{var n=JSON.parse(t);return console.log("WPO: JSON re-parse successful"),n}catch(o){console.log("WPO: Exception when trying to parse JSON (2) - will attempt to fix/re-parse based upon bracket counting");for(var m=i,r=0,_="",u=!1;(r>0||m==i)&&m<=a;){var c=s.charAt(m);u||"{"!=c?u||"}"!=c?'"'==c&&"\\"!=_&&(u=!u):r--:r++,_=c,m++}console.log("Started at cursor="+i+", ended at cursor="+m+" with result following:"),console.log(s.substring(i,m));try{var n=JSON.parse(s.substring(i,m));return console.log("WPO: JSON re-parse successful"),n}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(document).ready(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(s){var s="undefined"==typeof s||s,e={use_cache:s};console.log("Loading information about uncompressed images."),O.html("..."),I.hide(),d(!0),k("get_ui_update",e,function(s){console.log("Information about uncompressed images loaded."),b(s,m),h(),d(!1)})}function e(){y("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:y(this).val(),blog_id:y(this).data("blog")},Q.push(image)}),data={optimization_id:"smush",selected_images:Q,smush_options:{compression_server:y("input[name='compression_server']:checked").val(),image_quality:y("#image_quality").val(),lossy_compression:y("#smush-lossy-compression").is(":checked"),back_up_original:y("#smush-backup-original").is(":checked"),preserve_exif:y("#smush-preserve-exif").is(":checked")}},r(),k("process_bulk_smush",data)}function o(){if(y("#wp-optimize-wrap").length){y("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),y("#enable_custom_compression").is(":checked")?(image_quality=y("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=y("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100);var s={compression_server:y("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:y("#smush-backup-original").is(":checked"),preserve_exif:y("#smush-preserve-exif").is(":checked"),autosmush:y("#smush-automatically").is(":checked"),show_smush_metabox:y("#smush-show-metabox").is(":checked")};k("update_smush_options",s,function(s){y("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(y("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),q.hide()):(y("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),q.show())})}}function a(){A=!0,T++,seconds=T%60+""<10?"0"+T%60:T%60,minutes=parseInt(T/60)+""<10?"0"+parseInt(T/60):parseInt(T/60),y("#smush_stats_timer").text(minutes+":"+seconds),t(T)}function t(s){0==s%3&&n(),0==s%60&&k("process_pending_images",{},function(s){b(s,_)})}function n(s){data={update_ui:!0,use_cache:!1},k("get_ui_update",data,function(s){b(s,_)})}function m(s){if(x.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&x.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&I.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images)for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],p(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}function r(){A||(v(y("#wpo_smush_images_information_container")),service=y('.compression_server input[type="radio"]:checked + label small').text(),y("#wpo_smush_images_information_server").html(service),y("#smush_stats_pending_images").html("..."),y("#smush_stats_completed_images").html("..."),y("#smush_stats_bytes_saved").html("..."),y("#smush_stats_percent_saved").html("..."),y("#smush_stats_timer").html("..."),E=window.setInterval(a,1e3),d(!0))}function _(s){y("#smush_stats_pending_images").html(s.pending_tasks),y("#smush_stats_completed_images").html(s.completed_task_count),y("#smush_stats_bytes_saved").html(s.bytes_saved),y("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(u,1500)}function u(){data={update_ui:!0,use_cache:!1,image_list:Q},k("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),c(summary)})}function c(s){D||(y("#summary-message").html(s),l(),v(y("#smush-complete-summary")),D=!0)}function l(){T=0,A=!1,D=!1,Q=[],window.clearInterval(E),d(!1)}function p(s,e,o){var i=["wpo_smush_",e,"_",s.id].join("");image_html='<div class="wpo_smush_image" data-filesize="'+s.filesize+'">',image_html+='<a class="button" href="'+o+'" target="_blank"> '+wposmush.view_image+" </a>",image_html+='<input id="'+i+'" type="checkbox" data-blog="'+e+'" class="wpo_smush_image__input" value="'+s.id+'">',image_html+='<label for="'+i+'"></a>',image_html+='<div class="thumbnail">',image_html+='<img class="lazyload" src="'+s.thumb_url+'">',image_html+="</div></label></div>",x.append(image_html)}function h(){features=wposmush.features,service=y("input[name^='compression_server']:checked").val();for(feature in features[service])y("."+feature).prop("disabled",!features[service][feature]),y("."+feature).prop("checked",features[service][feature]);y(".wpo_smush_image").each(function(){y(this).data("filesize")>wposmush.features[service].max_filesize?y(this).hide():y(this).show()})}function d(s){y.each([N,U,j,q,S,z],function(e,o){o.prop("disabled",s)}),s?(y("#wpo_smush_images_refresh").hide(),y(".wpo_smush_images_loader").show()):(y("#wpo_smush_images_refresh").show(),y(".wpo_smush_images_loader").hide())}function g(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},v(wposmush.compress_single_image_dialog),k("compress_single_image",data,function(s){b(s,w)}))}function f(s){0!=s.length&&(v(wposmush.please_wait,y.unblockUI),data={selected_image:s},k("restore_single_image",data,function(s){b(s,w)}))}function w(s){s.hasOwnProperty("success")&&s.success?(y("#smush-information").text(s.summary),v(y("#smush-information-modal"),y.unblockUI),y(".toggle-smush-advanced.wpo_smush_single_image").removeClass("opened"),"compress"==s.operation?(y(".wpo_smush_single_image").hide(),y(".wpo_restore_single_image").show(),y("#smush_info").text(s.summary),s.restore_possible?y(".restore_possible").show():y(".restore_possible").hide()):(y(".wpo_smush_single_image").show(),y(".wpo_restore_single_image").hide())):(y("#smush-information").text(s.error_message),v(y("#smush-information-modal"),y.unblockUI))}function v(s,e){y.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function b(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function k(s,e,o,i){i="undefined"==typeof i||i,e=y.isEmptyObject(e)?{use_cache:!1}:e;var a={action:"updraft_smush_ajax",subaction:s,nonce:wposmush.smush_ajax_nonce,data:e},t={type:"POST",url:ajaxurl,data:a,success:function(s){if(i){try{var e=wpo_parse_json(s)}catch(a){console.log("smush_manager_send_command JSON parse error"),console.log(a),console.log(s),alert(wposmush.error_unexpected_response)}"undefined"!=typeof o&&o(e)}else"undefined"!=typeof o&&o(s)},error:function(s,e,i){console.log("smush_manager_send_command AJAX parse error: "+e+" ("+i+")"),"undefined"!=typeof o?o(s):(console.log(s),alert(wposmush.error_unexpected_response))},dataType:"text"};y.ajax(t)}var y=jQuery,x=(y("#wp-optimize-images-nav-tab-smush"),y("#wpo_smush_images_grid")),O=y("#smush_info_images"),I=y("#wpo_smush_images_pending_tasks_container"),z=y("#wpo_smush_images_pending_tasks_button"),P=y("#wpo_smush_images_pending_tasks_cancel_button"),q=y(".wpo-fieldgroup #wpo_smush_images_save_options_button"),S=y("#wpo_smush_images_refresh"),U=y("#wpo_smush_images_select_all"),j=y("#wpo_smush_images_select_none"),J=y("#wpo_smush_clear_stats_btn"),N=y("#wpo_smush_images_btn"),W=(y(".wpo_smush_single_image .button"),y(".wpo_restore_single_image .button"),y(".wpo_smush_get_logs")),C=y(".compression_server"),T=0,A=!1,E=0,Q=[],D=!1;y("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){y(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&s()}),y("#wp-optimize-wrap").on("page-change",function(e,o){"wpo_images"==o.page&&y("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&s()}),y("#smush-metabox").length>0&&h(),C.on("change",function(s){h(),o()}),N.off().on("click",function(){return 0==y('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(y("#smush-information-modal #smush-information").text(wposmush.please_select_images),void v(y("#smush-information-modal"),y.unblockUI)):(y("#smush-information-modal #smush-information").text(wposmush.server_check),v(y("#smush-information-modal")),data={server:y("input[name='compression_server']:checked").val()},void k("check_server_status",data,function(s){s.online?e():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,y("#smush-information-modal #smush-information").html(error_message)):y("#smush-information-modal #smush-information").text(wposmush.server_error),v(y("#smush-information-modal"),y.unblockUI))}))}),S.off().on("click",function(){s()}),U.off().on("click",function(){y('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0)}),j.off().on("click",function(){y('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1)}),W.off().on("click",function(){y("#log-panel").text("Please wait, fetching logs."),k("get_smush_logs",{},function(s){y.blockUI({message:y("#smush-log-modal"),onOverlayClick:y.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),y("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,y("#smush-log-modal a").attr("href",download_link),console.log(download_link)},!1)}),q.off().on("click",function(s){o()}),J.off().on("click",function(s){y("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),k("clear_smush_stats",{},function(s){y("#wpo_smush_images_clear_stats_spinner").hide(),y("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),z.off().on("click",function(s){y("#smush-information-modal #smush-information").text(wposmush.server_check),v(y("#smush-information-modal"),y.unblockUI),data={server:y("input[name='compression_server']:checked").val()},k("check_server_status",data,function(s){s.online?(r(),k("process_pending_images",{},function(s){b(s,_)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,y("#smush-information-modal #smush-information").html(error_message)):y("#smush-information-modal #smush-information").text(wposmush.server_error),v(y("#smush-information-modal"),y.unblockUI))})}),P.on("click",function(s){k("clear_pending_images",{},function(s){s.status&&I.delay(3e3).fadeOut()})}),y("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:y(this).attr("id").substring(15),blog_id:y(this).data("blog")},y("#enable_custom_compression").is(":checked")?(image_quality=y("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=y("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100),smush_options={compression_server:y("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:y("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:y("#smush_exif_"+image.attachment_id).is(":checked")},console.log("Compressing Image : "+image.attachment_id),data={server:y("input[name='compression_server_"+y(this).attr("id").substring(15)+"']:checked").val()},v(wposmush.server_check),k("check_server_status",data,function(s){s.online?g(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,v(error_message,y.unblockUI)):v(wposmush.server_error,y.unblockUI)})}),y("body").on("click",".wpo_restore_single_image .button",function(){var s=y(this).attr("id");s&&(image_id=s.substring(25),console.log("Restoring Image : "+image_id),f(image_id))}),y("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){y.unblockUI()}),y("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){y.unblockUI(),s(),setTimeout(l,500)}),y("body").on("click",".toggle-smush-advanced",function(s){s.preventDefault(),y(this).toggleClass("opened")}),y(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox").on("change",function(s){o()}),y("body").on("change",".smush-options.compression_level",function(){y("#enable_custom_compression").is(":checked")?y(".smush-options.custom_compression").show():y(".smush-options.custom_compression").hide()}),y("body").on("change",'.smush-advanced input[type="radio"]',function(){h()})};
|
|
@@ -0,0 +1 @@
|
|
|
1 |
+
function wpo_parse_json(s){try{var e=JSON.parse(s);return e}catch(o){console.log("WPO: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(s)}var i=s.indexOf("{"),a=s.lastIndexOf("}");if(i>-1&&a>-1){var n=s.slice(i,a+1);try{var t=JSON.parse(n);return console.log("WPO: JSON re-parse successful"),t}catch(o){console.log("WPO: Exception when trying to parse JSON (2) - will attempt to fix/re-parse based upon bracket counting");for(var m=i,_=0,r="",u=!1;(_>0||m==i)&&m<=a;){var c=s.charAt(m);u||"{"!=c?u||"}"!=c?'"'==c&&"\\"!=r&&(u=!u):_--:_++,r=c,m++}console.log("Started at cursor="+i+", ended at cursor="+m+" with result following:"),console.log(s.substring(i,m));try{var t=JSON.parse(s.substring(i,m));return console.log("WPO: JSON re-parse successful"),t}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(document).ready(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(){var s=0==x('input[type="checkbox"]:checked',O).length;W.prop("disabled",s),C.prop("disabled",s)}function e(e){var e="undefined"==typeof e||e,o={use_cache:e};console.log("Loading information about uncompressed images."),I.html("..."),U.hide(),g(!0),y("get_ui_update",o,function(e){console.log("Information about uncompressed images loaded."),v(e,_),d(),g(!1),s()})}function o(){x("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:x(this).val(),blog_id:x(this).data("blog")},R.push(image)}),data={optimization_id:"smush",selected_images:R,smush_options:{compression_server:x("input[name='compression_server']:checked").val(),image_quality:x("#image_quality").val(),lossy_compression:x("#smush-lossy-compression").is(":checked"),back_up_original:x("#smush-backup-original").is(":checked"),preserve_exif:x("#smush-preserve-exif").is(":checked")}},r(),y("process_bulk_smush",data)}function a(){if(x("#wp-optimize-wrap").length){x("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100);var s={compression_server:x("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush-backup-original").is(":checked"),back_up_delete_after:x("#smush-backup-delete").is(":checked"),back_up_delete_after_days:x("#smush-backup-delete-days").val(),preserve_exif:x("#smush-preserve-exif").is(":checked"),autosmush:x("#smush-automatically").is(":checked"),show_smush_metabox:x("#smush-show-metabox").is(":checked")};y("update_smush_options",s,function(s){x("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(x("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),q.hide()):(x("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),q.show())})}}function n(){D=!0,Q++,seconds=Q%60+""<10?"0"+Q%60:Q%60,minutes=parseInt(Q/60)+""<10?"0"+parseInt(Q/60):parseInt(Q/60),x("#smush_stats_timer").text(minutes+":"+seconds),t(Q)}function t(s){0==s%3&&m(),0==s%60&&y("process_pending_images",{},function(s){v(s,u)})}function m(s){data={update_ui:!0,use_cache:!1},y("get_ui_update",data,function(s){v(s,u)})}function _(s){if(O.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&O.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&U.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images)for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],p(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}function r(){D||(k(x("#wpo_smush_images_information_container")),service=x('.compression_server input[type="radio"]:checked + label small').text(),x("#wpo_smush_images_information_server").html(service),x("#smush_stats_pending_images").html("..."),x("#smush_stats_completed_images").html("..."),x("#smush_stats_bytes_saved").html("..."),x("#smush_stats_percent_saved").html("..."),x("#smush_stats_timer").html("..."),L=window.setInterval(n,1e3),g(!0))}function u(s){x("#smush_stats_pending_images").html(s.pending_tasks),x("#smush_stats_completed_images").html(s.completed_task_count),x("#smush_stats_bytes_saved").html(s.bytes_saved),x("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(c,1500)}function c(){data={update_ui:!0,use_cache:!1,image_list:R},y("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),l(summary)})}function l(s){X||(x("#summary-message").html(s),h(),k(x("#smush-complete-summary")),X=!0)}function h(){Q=0,D=!1,X=!1,R=[],window.clearInterval(L),g(!1)}function p(s,e,o){var i=["wpo_smush_",e,"_",s.id].join("");image_html='<div class="wpo_smush_image" data-filesize="'+s.filesize+'">',image_html+='<a class="button" href="'+o+'" target="_blank"> '+wposmush.view_image+" </a>",image_html+='<input id="'+i+'" type="checkbox" data-blog="'+e+'" class="wpo_smush_image__input" value="'+s.id+'">',image_html+='<label for="'+i+'"></a>',image_html+='<div class="thumbnail">',image_html+='<img class="lazyload" src="'+s.thumb_url+'">',image_html+="</div></label></div>",O.append(image_html)}function d(){features=wposmush.features,service=x("input[name^='compression_server']:checked").val();for(feature in features[service])x("."+feature).prop("disabled",!features[service][feature]);x(".wpo_smush_image").each(function(){x(this).data("filesize")>wposmush.features[service].max_filesize?x(this).hide():x(this).show()})}function g(s){x.each([W,j,J,q,S,z,C],function(e,o){o.prop("disabled",s)}),s?(x("#wpo_smush_images_refresh").hide(),x(".wpo_smush_images_loader").show()):(x("#wpo_smush_images_refresh").show(),x(".wpo_smush_images_loader").hide())}function f(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},k(wposmush.compress_single_image_dialog),y("compress_single_image",data,function(s){v(s,b)}))}function w(s){0!=s.length&&(k(wposmush.please_wait,x.unblockUI),data={selected_image:s},y("restore_single_image",data,function(s){v(s,b)}))}function b(s){if(s.hasOwnProperty("success")&&s.success)if(x("#smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),x(".toggle-smush-advanced.wpo_smush_single_image").removeClass("opened"),"compress"==s.operation)x(".wpo_smush_single_image").hide(),x(".wpo_restore_single_image").show(),x("#smush_info").text(s.summary),x(".wpo_smush_mark_single_image").hide(),s.restore_possible?x(".restore_possible").show():x(".restore_possible").hide();else{x(".wpo_smush_single_image").show(),x(".wpo_restore_single_image").hide();x("#smush_info").closest("#smush-metabox-inside-wrapper");x(".wpo_smush_mark_single_image").show()}else x("#smush-information").text(s.error_message),k(x("#smush-information-modal"),x.unblockUI)}function k(s,e){x.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function v(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function y(s,e,o,i){i="undefined"==typeof i||i,e=x.isEmptyObject(e)?{use_cache:!1}:e;var a={action:"updraft_smush_ajax",subaction:s,nonce:wposmush.smush_ajax_nonce,data:e},n={type:"POST",url:ajaxurl,data:a,success:function(s){if(i){try{var e=wpo_parse_json(s)}catch(a){console.log("smush_manager_send_command JSON parse error"),console.log(a),console.log(s),alert(wposmush.error_unexpected_response)}"undefined"!=typeof o&&o(e)}else"undefined"!=typeof o&&o(s)},error:function(s,e,i){console.log("smush_manager_send_command AJAX parse error: "+e+" ("+i+")"),"undefined"!=typeof o?o(s):(console.log(s),alert(wposmush.error_unexpected_response))},dataType:"text"};x.ajax(n)}var x=jQuery,O=(x("#wp-optimize-images-nav-tab-smush"),x("#wpo_smush_images_grid")),I=x("#smush_info_images"),U=x("#wpo_smush_images_pending_tasks_container"),z=x("#wpo_smush_images_pending_tasks_button"),P=x("#wpo_smush_images_pending_tasks_cancel_button"),q=x(".wpo-fieldgroup #wpo_smush_images_save_options_button"),S=x("#wpo_smush_images_refresh"),j=x("#wpo_smush_images_select_all"),J=x("#wpo_smush_images_select_none"),N=x("#wpo_smush_clear_stats_btn"),W=x("#wpo_smush_images_btn"),C=x("#wpo_smush_mark_as_compressed"),T=(x(".wpo_smush_single_image .button"),x(".wpo_restore_single_image .button"),x(".wpo_smush_get_logs")),A=x("#wpo_smush_delete_backup_btn"),E=x(".compression_server"),Q=0,D=!1,L=0,R=[],X=!1;x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){x(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#wp-optimize-wrap").on("page-change",function(s,o){"wpo_images"==o.page&&x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#smush-metabox").length>0&&d(),O.on("change",'input[type="checkbox"]',function(){s()}),s(),E.on("change",function(s){d(),a()}),W.off().on("click",function(){return 0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(x("#smush-information-modal #smush-information").text(wposmush.please_select_images),void k(x("#smush-information-modal"),x.unblockUI)):(x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal")),data={server:x("input[name='compression_server']:checked").val()},void y("check_server_status",data,function(s){s.online?o():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))}))}),C.off().on("click",function(){if(0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length)return x("#smush-information-modal #smush-information").text(wposmush.please_select_compressed_images),void k(x("#smush-information-modal"),x.unblockUI);var s,o=[];x("#wpo_smush_images_grid input:checked").each(function(){s={attachment_id:x(this).val(),blog_id:x(this).data("blog")},o.push(s)}),k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:o},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),e()})}),S.off().on("click",function(){e()}),j.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0),s()}),J.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1),s()}),T.off().on("click",function(){x("#log-panel").text("Please wait, fetching logs."),y("get_smush_logs",{},function(s){x.blockUI({message:x("#smush-log-modal"),onOverlayClick:x.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),x("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,x("#smush-log-modal a").attr("href",download_link),console.log(download_link)},!1)}),A.on("click",function(){if(confirm(wposmush.delete_image_backup_confirm)){A.prop("disabled",!0);var s=x("#wpo_smush_delete_backup_spinner"),e=x("#wpo_smush_delete_backup_done");s.show(),y("clean_all_backup_images",{},function(){s.hide(),A.prop("disabled",!1),e.css("display","inline-block").delay(3e3).fadeOut()})}}),q.off().on("click",function(s){a()}),N.off().on("click",function(s){x("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),y("clear_smush_stats",{},function(s){x("#wpo_smush_images_clear_stats_spinner").hide(),x("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),z.off().on("click",function(s){x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal"),x.unblockUI),data={server:x("input[name='compression_server']:checked").val()},y("check_server_status",data,function(s){s.online?(r(),y("process_pending_images",{},function(s){v(s,u)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))})}),P.on("click",function(s){y("clear_pending_images",{},function(s){s.status&&U.delay(3e3).fadeOut()})}),x("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100),smush_options={compression_server:x("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:x("#smush_exif_"+image.attachment_id).is(":checked")},console.log("Compressing Image : "+image.attachment_id),data={server:x("input[name='compression_server_"+x(this).attr("id").substring(15)+"']:checked").val()},k(wposmush.server_check),y("check_server_status",data,function(s){s.online?f(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,k(error_message,x.unblockUI)):k(wposmush.server_error,x.unblockUI)})}),x("body").on("click",".wpo_restore_single_image .button",function(){var s=x(this).attr("id");s&&(image_id=s.substring(25),console.log("Restoring Image : "+image_id),w(image_id))}),x("body").on("click",".wpo_smush_mark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s]},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).hide(),x(".toggle-smush-advanced",e).removeClass("opened"),x(".wpo_smush_mark_single_image",e).hide(),x(".wpo_smush_unmark_single_image",e).show(),x(".wpo_restore_single_image",e).show(),x("#smush_info",e).text(s.info))})}),x("body").on("click",".wpo_smush_unmark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s],unmark:!0},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).show(),x(".wpo_smush_mark_single_image",e).show(),x(".wpo_smush_unmark_single_image",e).hide(),x(".wpo_restore_single_image",e).hide(),x("#smush_info",e).text(""))})}),x("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){x.unblockUI()}),x("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){x.unblockUI(),e(),setTimeout(h,500)}),x("body").on("click",".toggle-smush-advanced",function(s){s.preventDefault(),x(this).toggleClass("opened")}),x(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox").on("change",function(s){a()}),x("body").on("change",".smush-options.compression_level",function(){x("#enable_custom_compression").is(":checked")?x(".smush-options.custom_compression").show():x(".smush-options.custom_compression").hide()}),x("body").on("change",'.smush-advanced input[type="radio"]',function(){d()})};
|
@@ -21,9 +21,11 @@ var WP_Optimize_Smush = function() {
|
|
21 |
smush_images_select_none_btn = $('#wpo_smush_images_select_none'),
|
22 |
smush_images_stats_clear_btn = $('#wpo_smush_clear_stats_btn'),
|
23 |
smush_selected_images_btn = $('#wpo_smush_images_btn'),
|
|
|
24 |
smush_single_image_btn = $('.wpo_smush_single_image .button'),
|
25 |
smush_single_restore_btn = $('.wpo_restore_single_image .button'),
|
26 |
smush_view_logs_btn = $('.wpo_smush_get_logs'),
|
|
|
27 |
compression_server_select = $('.compression_server'),
|
28 |
smush_images_tab_loaded = false,
|
29 |
smush_service_features = [],
|
@@ -58,6 +60,22 @@ var WP_Optimize_Smush = function() {
|
|
58 |
update_view_available_options();
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
/**
|
62 |
* Handles change of smush service provider
|
63 |
*/
|
@@ -96,6 +114,37 @@ var WP_Optimize_Smush = function() {
|
|
96 |
});
|
97 |
});
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
/**
|
100 |
* Refresh image list
|
101 |
*/
|
@@ -108,6 +157,7 @@ var WP_Optimize_Smush = function() {
|
|
108 |
*/
|
109 |
smush_images_select_all_btn.off().on('click', function() {
|
110 |
$('#wpo_smush_images_grid input[type="checkbox"]').prop("checked", true);
|
|
|
111 |
});
|
112 |
|
113 |
|
@@ -116,6 +166,7 @@ var WP_Optimize_Smush = function() {
|
|
116 |
*/
|
117 |
smush_images_select_none_btn.off().on('click', function() {
|
118 |
$('#wpo_smush_images_grid input[type="checkbox"]').prop("checked", false);
|
|
|
119 |
});
|
120 |
|
121 |
/**
|
@@ -131,7 +182,7 @@ var WP_Optimize_Smush = function() {
|
|
131 |
width: '80%',
|
132 |
height: '80%',
|
133 |
top: '15%',
|
134 |
-
left: '15%'
|
135 |
}
|
136 |
});
|
137 |
$("#log-panel").html("<pre>" + resp + "</pre>");
|
@@ -141,6 +192,25 @@ var WP_Optimize_Smush = function() {
|
|
141 |
}, false);
|
142 |
});
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
/**
|
145 |
* Saves options
|
146 |
*/
|
@@ -204,7 +274,7 @@ var WP_Optimize_Smush = function() {
|
|
204 |
$('body').on('click', '.wpo_smush_single_image .button', function() {
|
205 |
|
206 |
image = {
|
207 |
-
'attachment_id':$(this).
|
208 |
'blog_id': $(this).data('blog')
|
209 |
};
|
210 |
|
@@ -221,7 +291,7 @@ var WP_Optimize_Smush = function() {
|
|
221 |
'image_quality': image_quality,
|
222 |
'lossy_compression': lossy_compression,
|
223 |
'back_up_original': $('#smush_backup_' + image.attachment_id).is(":checked"),
|
224 |
-
'preserve_exif': $('#smush_exif_' + image.attachment_id).is(":checked")
|
225 |
}
|
226 |
|
227 |
console.log("Compressing Image : " + image.attachment_id);
|
@@ -253,6 +323,59 @@ var WP_Optimize_Smush = function() {
|
|
253 |
restore_selected_image(image_id);
|
254 |
});
|
255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
$('body').on('click', '#smush-log-modal .close, #smush-information-modal .information-modal-close', function() {
|
257 |
$.unblockUI();
|
258 |
});
|
@@ -308,6 +431,7 @@ var WP_Optimize_Smush = function() {
|
|
308 |
handle_response_from_smush_manager(resp, update_view_show_uncompressed_images);
|
309 |
update_view_available_options();
|
310 |
disable_image_optimization_controls(false);
|
|
|
311 |
});
|
312 |
}
|
313 |
|
@@ -335,7 +459,7 @@ var WP_Optimize_Smush = function() {
|
|
335 |
'image_quality': $('#image_quality').val(),
|
336 |
'lossy_compression': $('#smush-lossy-compression').is(":checked"),
|
337 |
'back_up_original': $('#smush-backup-original').is(":checked"),
|
338 |
-
'preserve_exif': $('#smush-preserve-exif').is(":checked")
|
339 |
}
|
340 |
}
|
341 |
|
@@ -367,9 +491,11 @@ var WP_Optimize_Smush = function() {
|
|
367 |
'image_quality': image_quality,
|
368 |
'lossy_compression': lossy_compression,
|
369 |
'back_up_original': $('#smush-backup-original').is(":checked"),
|
|
|
|
|
370 |
'preserve_exif': $('#smush-preserve-exif').is(":checked"),
|
371 |
'autosmush': $('#smush-automatically').is(":checked"),
|
372 |
-
'show_smush_metabox': $('#smush-show-metabox').is(":checked")
|
373 |
}
|
374 |
|
375 |
smush_manager_send_command('update_smush_options', smush_options, function(resp) {
|
@@ -615,7 +741,6 @@ var WP_Optimize_Smush = function() {
|
|
615 |
|
616 |
for (feature in features[service]) {
|
617 |
$('.' + feature).prop('disabled', !features[service][feature]);
|
618 |
-
$('.' + feature).prop('checked', features[service][feature]);
|
619 |
}
|
620 |
|
621 |
$('.wpo_smush_image').each(function() {
|
@@ -642,6 +767,7 @@ var WP_Optimize_Smush = function() {
|
|
642 |
smush_images_save_options_btn,
|
643 |
smush_images_refresh_btn,
|
644 |
smush_images_pending_tasks_btn,
|
|
|
645 |
], function(i, el) {
|
646 |
el.prop('disabled', disable);
|
647 |
});
|
@@ -716,7 +842,9 @@ var WP_Optimize_Smush = function() {
|
|
716 |
$(".wpo_restore_single_image").show();
|
717 |
|
718 |
$("#smush_info").text(resp.summary);
|
719 |
-
|
|
|
|
|
720 |
if (resp.restore_possible) {
|
721 |
$(".restore_possible").show();
|
722 |
} else {
|
@@ -725,6 +853,10 @@ var WP_Optimize_Smush = function() {
|
|
725 |
} else {
|
726 |
$(".wpo_smush_single_image").show();
|
727 |
$(".wpo_restore_single_image").hide();
|
|
|
|
|
|
|
|
|
728 |
}
|
729 |
} else {
|
730 |
$("#smush-information").text(resp.error_message)
|
21 |
smush_images_select_none_btn = $('#wpo_smush_images_select_none'),
|
22 |
smush_images_stats_clear_btn = $('#wpo_smush_clear_stats_btn'),
|
23 |
smush_selected_images_btn = $('#wpo_smush_images_btn'),
|
24 |
+
smush_mark_as_compressed_btn = $('#wpo_smush_mark_as_compressed'),
|
25 |
smush_single_image_btn = $('.wpo_smush_single_image .button'),
|
26 |
smush_single_restore_btn = $('.wpo_restore_single_image .button'),
|
27 |
smush_view_logs_btn = $('.wpo_smush_get_logs'),
|
28 |
+
smush_delete_backup_images_btn = $('#wpo_smush_delete_backup_btn'),
|
29 |
compression_server_select = $('.compression_server'),
|
30 |
smush_images_tab_loaded = false,
|
31 |
smush_service_features = [],
|
60 |
update_view_available_options();
|
61 |
}
|
62 |
|
63 |
+
smush_images_grid.on('change', 'input[type="checkbox"]', function() {
|
64 |
+
update_smush_action_buttons_state();
|
65 |
+
});
|
66 |
+
|
67 |
+
/**
|
68 |
+
* Disable smush actions buttons if no images selected.
|
69 |
+
*/
|
70 |
+
function update_smush_action_buttons_state() {
|
71 |
+
var state = (0 == $('input[type="checkbox"]:checked', smush_images_grid).length);
|
72 |
+
|
73 |
+
smush_selected_images_btn.prop('disabled', state);
|
74 |
+
smush_mark_as_compressed_btn.prop('disabled', state);
|
75 |
+
}
|
76 |
+
|
77 |
+
update_smush_action_buttons_state();
|
78 |
+
|
79 |
/**
|
80 |
* Handles change of smush service provider
|
81 |
*/
|
114 |
});
|
115 |
});
|
116 |
|
117 |
+
/**
|
118 |
+
* Mark as compressed
|
119 |
+
*/
|
120 |
+
smush_mark_as_compressed_btn.off().on('click', function() {
|
121 |
+
if (0 == $('#wpo_smush_images_grid input[type="checkbox"]:checked').length) {
|
122 |
+
$('#smush-information-modal #smush-information').text(wposmush.please_select_compressed_images)
|
123 |
+
update_view_modal_message($('#smush-information-modal'), $.unblockUI);
|
124 |
+
return;
|
125 |
+
}
|
126 |
+
|
127 |
+
var selected_images = [],
|
128 |
+
image;
|
129 |
+
|
130 |
+
$('#wpo_smush_images_grid input:checked').each(function() {
|
131 |
+
image = {
|
132 |
+
'attachment_id':$(this).val(),
|
133 |
+
'blog_id': $(this).data('blog')
|
134 |
+
};
|
135 |
+
selected_images.push(image);
|
136 |
+
});
|
137 |
+
|
138 |
+
update_view_modal_message(wposmush.please_updating_images_info);
|
139 |
+
|
140 |
+
smush_manager_send_command('mark_as_compressed', {selected_images: selected_images}, function(response) {
|
141 |
+
$('#smush-information-modal #smush-information').text(response.summary);
|
142 |
+
update_view_modal_message($('#smush-information-modal'), $.unblockUI);
|
143 |
+
// refresh images list.
|
144 |
+
get_info_from_smush_manager();
|
145 |
+
});
|
146 |
+
});
|
147 |
+
|
148 |
/**
|
149 |
* Refresh image list
|
150 |
*/
|
157 |
*/
|
158 |
smush_images_select_all_btn.off().on('click', function() {
|
159 |
$('#wpo_smush_images_grid input[type="checkbox"]').prop("checked", true);
|
160 |
+
update_smush_action_buttons_state();
|
161 |
});
|
162 |
|
163 |
|
166 |
*/
|
167 |
smush_images_select_none_btn.off().on('click', function() {
|
168 |
$('#wpo_smush_images_grid input[type="checkbox"]').prop("checked", false);
|
169 |
+
update_smush_action_buttons_state();
|
170 |
});
|
171 |
|
172 |
/**
|
182 |
width: '80%',
|
183 |
height: '80%',
|
184 |
top: '15%',
|
185 |
+
left: '15%'
|
186 |
}
|
187 |
});
|
188 |
$("#log-panel").html("<pre>" + resp + "</pre>");
|
192 |
}, false);
|
193 |
});
|
194 |
|
195 |
+
/**
|
196 |
+
* Handle delete all backup images button click.
|
197 |
+
*/
|
198 |
+
smush_delete_backup_images_btn.on('click', function() {
|
199 |
+
|
200 |
+
if (!confirm(wposmush.delete_image_backup_confirm)) return;
|
201 |
+
smush_delete_backup_images_btn.prop('disabled', true);
|
202 |
+
var spinner = $('#wpo_smush_delete_backup_spinner'),
|
203 |
+
done = $('#wpo_smush_delete_backup_done');
|
204 |
+
|
205 |
+
spinner.show();
|
206 |
+
|
207 |
+
smush_manager_send_command('clean_all_backup_images', {}, function() {
|
208 |
+
spinner.hide();
|
209 |
+
smush_delete_backup_images_btn.prop('disabled', false);
|
210 |
+
done.css('display', 'inline-block').delay(3000).fadeOut();
|
211 |
+
});
|
212 |
+
});
|
213 |
+
|
214 |
/**
|
215 |
* Saves options
|
216 |
*/
|
274 |
$('body').on('click', '.wpo_smush_single_image .button', function() {
|
275 |
|
276 |
image = {
|
277 |
+
'attachment_id':$(this).data('id'),
|
278 |
'blog_id': $(this).data('blog')
|
279 |
};
|
280 |
|
291 |
'image_quality': image_quality,
|
292 |
'lossy_compression': lossy_compression,
|
293 |
'back_up_original': $('#smush_backup_' + image.attachment_id).is(":checked"),
|
294 |
+
'preserve_exif': $('#smush_exif_' + image.attachment_id).is(":checked")
|
295 |
}
|
296 |
|
297 |
console.log("Compressing Image : " + image.attachment_id);
|
323 |
restore_selected_image(image_id);
|
324 |
});
|
325 |
|
326 |
+
/**
|
327 |
+
* Mark as compressed
|
328 |
+
*/
|
329 |
+
$('body').on('click', '.wpo_smush_mark_single_image .button', function() {
|
330 |
+
var image = {
|
331 |
+
'attachment_id':$(this).data('id'),
|
332 |
+
'blog_id': $(this).data('blog')
|
333 |
+
},
|
334 |
+
wrapper = $(this).closest('#smush-metabox-inside-wrapper');
|
335 |
+
|
336 |
+
update_view_modal_message(wposmush.please_updating_images_info);
|
337 |
+
|
338 |
+
smush_manager_send_command('mark_as_compressed', {selected_images: [ image ]}, function(response) {
|
339 |
+
$('#smush-information-modal #smush-information').text(response.summary);
|
340 |
+
update_view_modal_message($('#smush-information-modal'), $.unblockUI);
|
341 |
+
|
342 |
+
if (response.status) {
|
343 |
+
$('.wpo_smush_single_image', wrapper).hide();
|
344 |
+
$('.toggle-smush-advanced', wrapper).removeClass('opened');
|
345 |
+
$('.wpo_smush_mark_single_image', wrapper).hide();
|
346 |
+
$('.wpo_smush_unmark_single_image', wrapper).show();
|
347 |
+
$('.wpo_restore_single_image', wrapper).show();
|
348 |
+
$('#smush_info', wrapper).text(response.info);
|
349 |
+
}
|
350 |
+
});
|
351 |
+
});
|
352 |
+
|
353 |
+
/**
|
354 |
+
* Unmark as uncompressed
|
355 |
+
*/
|
356 |
+
$('body').on('click', '.wpo_smush_unmark_single_image .button', function() {
|
357 |
+
var image = {
|
358 |
+
'attachment_id':$(this).data('id'),
|
359 |
+
'blog_id': $(this).data('blog')
|
360 |
+
},
|
361 |
+
wrapper = $(this).closest('#smush-metabox-inside-wrapper');
|
362 |
+
|
363 |
+
update_view_modal_message(wposmush.please_updating_images_info);
|
364 |
+
|
365 |
+
smush_manager_send_command('mark_as_compressed', {selected_images: [ image ], unmark: true}, function(response) {
|
366 |
+
$('#smush-information-modal #smush-information').text(response.summary);
|
367 |
+
update_view_modal_message($('#smush-information-modal'), $.unblockUI);
|
368 |
+
|
369 |
+
if (response.status) {
|
370 |
+
$('.wpo_smush_single_image', wrapper).show();
|
371 |
+
$('.wpo_smush_mark_single_image', wrapper).show();
|
372 |
+
$('.wpo_smush_unmark_single_image', wrapper).hide();
|
373 |
+
$('.wpo_restore_single_image', wrapper).hide();
|
374 |
+
$('#smush_info', wrapper).text('');
|
375 |
+
}
|
376 |
+
});
|
377 |
+
});
|
378 |
+
|
379 |
$('body').on('click', '#smush-log-modal .close, #smush-information-modal .information-modal-close', function() {
|
380 |
$.unblockUI();
|
381 |
});
|
431 |
handle_response_from_smush_manager(resp, update_view_show_uncompressed_images);
|
432 |
update_view_available_options();
|
433 |
disable_image_optimization_controls(false);
|
434 |
+
update_smush_action_buttons_state();
|
435 |
});
|
436 |
}
|
437 |
|
459 |
'image_quality': $('#image_quality').val(),
|
460 |
'lossy_compression': $('#smush-lossy-compression').is(":checked"),
|
461 |
'back_up_original': $('#smush-backup-original').is(":checked"),
|
462 |
+
'preserve_exif': $('#smush-preserve-exif').is(":checked")
|
463 |
}
|
464 |
}
|
465 |
|
491 |
'image_quality': image_quality,
|
492 |
'lossy_compression': lossy_compression,
|
493 |
'back_up_original': $('#smush-backup-original').is(":checked"),
|
494 |
+
'back_up_delete_after': $('#smush-backup-delete').is(":checked"),
|
495 |
+
'back_up_delete_after_days': $('#smush-backup-delete-days').val(),
|
496 |
'preserve_exif': $('#smush-preserve-exif').is(":checked"),
|
497 |
'autosmush': $('#smush-automatically').is(":checked"),
|
498 |
+
'show_smush_metabox': $('#smush-show-metabox').is(":checked")
|
499 |
}
|
500 |
|
501 |
smush_manager_send_command('update_smush_options', smush_options, function(resp) {
|
741 |
|
742 |
for (feature in features[service]) {
|
743 |
$('.' + feature).prop('disabled', !features[service][feature]);
|
|
|
744 |
}
|
745 |
|
746 |
$('.wpo_smush_image').each(function() {
|
767 |
smush_images_save_options_btn,
|
768 |
smush_images_refresh_btn,
|
769 |
smush_images_pending_tasks_btn,
|
770 |
+
smush_mark_as_compressed_btn,
|
771 |
], function(i, el) {
|
772 |
el.prop('disabled', disable);
|
773 |
});
|
842 |
$(".wpo_restore_single_image").show();
|
843 |
|
844 |
$("#smush_info").text(resp.summary);
|
845 |
+
|
846 |
+
$('.wpo_smush_mark_single_image').hide();
|
847 |
+
|
848 |
if (resp.restore_possible) {
|
849 |
$(".restore_possible").show();
|
850 |
} else {
|
853 |
} else {
|
854 |
$(".wpo_smush_single_image").show();
|
855 |
$(".wpo_restore_single_image").hide();
|
856 |
+
|
857 |
+
var wrapper = $("#smush_info").closest('#smush-metabox-inside-wrapper');
|
858 |
+
|
859 |
+
$('.wpo_smush_mark_single_image').show();
|
860 |
}
|
861 |
} else {
|
862 |
$("#smush-information").text(resp.error_message)
|
@@ -45,6 +45,14 @@ msgid_plural "%d urls found."
|
|
45 |
msgstr[0] ""
|
46 |
msgstr[1] ""
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
#: src/cache/file-based-page-cache-functions.php:29
|
49 |
msgid "Output is too small (less than %d bytes) to be worth cacheing"
|
50 |
msgstr ""
|
@@ -81,7 +89,7 @@ msgstr ""
|
|
81 |
msgid "We could not determine if Gzip compression is enabled."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: src/includes/class-commands.php:400, src/includes/class-commands.php:
|
85 |
msgid "Please upload a valid settings file."
|
86 |
msgstr ""
|
87 |
|
@@ -113,111 +121,139 @@ msgstr ""
|
|
113 |
msgid "How many last records store?"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
117 |
msgid "Image restored successfully"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
121 |
msgid "Since your compression statistics were last reset, a total of %d image(s) were compressed on this site, saving approximately %s of space at an average of %02d percent per image."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
125 |
msgid "%d image(s) could not be compressed. Please see the logs for more information, or try again later."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
129 |
msgid "%d image(s) images were selected for compressing previously, but were not all processed. You can either complete them now or cancel and retry later."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
133 |
msgid "A total of %d image(s) were successfully compressed in this iteration. "
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
137 |
msgid "%d selected image(s) could not be compressed. Please see the logs for more information, you may try again later."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
141 |
msgid "Options could not be updated"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
145 |
msgid "Options updated successfully"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
149 |
msgid "Stats could not be cleared"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
153 |
msgid "Stats cleared successfully"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
157 |
msgid "Pending tasks could not be cleared"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
161 |
msgid "Pending tasks cleared successfully"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: src/includes/class-updraft-smush-manager-commands.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
msgid "Log file does not exist or could not be read"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: src/includes/class-updraft-smush-manager.php:
|
169 |
msgid "Backup not found, it may have been deleted or already restored"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: src/includes/class-updraft-smush-manager.php:
|
173 |
msgid "The destination could not be written to, please check your folder permissions"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: src/includes/class-updraft-smush-manager.php:
|
177 |
msgid "Could not copy file, check your PHP error logs for details"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: src/includes/class-updraft-smush-manager.php:
|
181 |
msgid "No uncompressed images were found."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: src/includes/class-updraft-smush-manager.php:
|
185 |
msgid "An unexpected response was received from the server. More information has been logged in the browser console."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: src/includes/class-updraft-smush-manager.php:
|
189 |
msgid "Please wait: compressing the selected image."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: src/includes/class-updraft-smush-manager.php:
|
193 |
msgid "Please try again later."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: src/includes/class-updraft-smush-manager.php:
|
197 |
msgid "Connecting to the Smush API server, please wait"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: src/includes/class-updraft-smush-manager.php:
|
201 |
msgid "Please wait while the request is being processed"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: src/includes/class-updraft-smush-manager.php:
|
205 |
msgid "There was an error connecting to the image compression server. This could mean either the server is temporarily unavailable or there are connectivity issues with your internet connection. Please try later."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: src/includes/class-updraft-smush-manager.php:
|
209 |
msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: src/includes/class-updraft-smush-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "View Image"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: src/includes/class-updraft-smush-manager.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "Compress Image"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: src/includes/class-updraft-smush-manager.php:
|
221 |
msgid "Compress image"
|
222 |
msgstr ""
|
223 |
|
@@ -313,7 +349,7 @@ msgstr ""
|
|
313 |
msgid "No such optimization"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: src/includes/class-wp-optimizer.php:364, src/includes/wp-optimize-database-information.php:
|
317 |
msgid "WordPress core"
|
318 |
msgstr ""
|
319 |
|
@@ -869,7 +905,7 @@ msgstr ""
|
|
869 |
msgid "Restore"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: src/templates/admin-metabox-smush.php:15, src/templates/images/smush.php:
|
873 |
msgid "Prioritize maximum compression"
|
874 |
msgstr ""
|
875 |
|
@@ -877,15 +913,15 @@ msgstr ""
|
|
877 |
msgid "Potentially uses lossy compression to ensure maximum savings per image, the resulting images are of a slightly lower quality"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: src/templates/admin-metabox-smush.php:20, src/templates/images/smush.php:
|
881 |
msgid "Prioritize retention of detail"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: src/templates/admin-metabox-smush.php:21, src/templates/images/smush.php:
|
885 |
msgid "Uses lossless compression, which results in much better image quality but lower filesize savings per image"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: src/templates/admin-metabox-smush.php:25, src/templates/images/smush.php:
|
889 |
msgid "Custom"
|
890 |
msgstr ""
|
891 |
|
@@ -897,7 +933,7 @@ msgstr ""
|
|
897 |
msgid "Best image quality"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: src/templates/admin-metabox-smush.php:40, src/templates/images/smush.php:
|
901 |
msgid "Show advanced options"
|
902 |
msgstr ""
|
903 |
|
@@ -905,7 +941,7 @@ msgstr ""
|
|
905 |
msgid "Service provider"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: src/templates/admin-metabox-smush.php:46, src/templates/images/smush.php:
|
909 |
msgid "reSmush.it"
|
910 |
msgstr ""
|
911 |
|
@@ -929,11 +965,19 @@ msgstr ""
|
|
929 |
msgid "Compress"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: src/templates/admin-metabox-smush.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
msgid "WP-Optimize image settings"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: src/templates/admin-metabox-smush.php:
|
937 |
msgid "Close"
|
938 |
msgstr ""
|
939 |
|
@@ -969,7 +1013,7 @@ msgstr ""
|
|
969 |
msgid "Twitter"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: src/templates/admin-page-header.php:14, src/templates/notices/install-or-update-notice.php:
|
973 |
msgid "Support"
|
974 |
msgstr ""
|
975 |
|
@@ -989,7 +1033,7 @@ msgstr ""
|
|
989 |
msgid "More plugins"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: src/templates/admin-page-header.php:29, src/templates/settings/may-also-like.php:26, src/wp-optimize.php:
|
993 |
msgid "Premium"
|
994 |
msgstr ""
|
995 |
|
@@ -1017,11 +1061,11 @@ msgstr ""
|
|
1017 |
msgid "disabled"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: src/templates/cache/browser-cache.php:32, src/wp-optimize.php:
|
1021 |
msgid "Update"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: src/templates/cache/browser-cache.php:32, src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:13, src/templates/settings/settings-trackback-and-comments.php:29, src/wp-optimize.php:
|
1025 |
msgid "Enable"
|
1026 |
msgstr ""
|
1027 |
|
@@ -1069,7 +1113,7 @@ msgstr ""
|
|
1069 |
msgid "Check status again"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:15, src/templates/settings/settings-trackback-and-comments.php:31, src/wp-optimize.php:
|
1073 |
msgid "Disable"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1129,11 +1173,11 @@ msgstr ""
|
|
1129 |
msgid "Preload now"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: src/templates/cache/page-cache-preload.php:7, src/templates/images/smush.php:
|
1133 |
msgid "Cancel"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: src/templates/cache/page-cache-preload.php:7, src/wp-optimize.php:
|
1137 |
msgid "Run now"
|
1138 |
msgstr ""
|
1139 |
|
@@ -1161,7 +1205,7 @@ msgstr ""
|
|
1161 |
msgid "Select schedule type"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: src/templates/cache/page-cache-preload.php:49, src/templates/cache/page-cache.php:
|
1165 |
msgid "Save changes"
|
1166 |
msgstr ""
|
1167 |
|
@@ -1181,91 +1225,91 @@ msgstr ""
|
|
1181 |
msgid "Cache video preview"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: src/templates/cache/page-cache.php:9, src/templates/images/smush.php:
|
1185 |
msgid "Loads a video hosted on vimeo.com"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: src/templates/cache/page-cache.php:9, src/templates/images/smush.php:
|
1189 |
msgid "Open the video in a new window"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: src/templates/cache/page-cache.php:
|
1193 |
msgid "Enable page caching"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: src/templates/cache/page-cache.php:
|
1197 |
msgid "This is all that's needed for caching to work."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: src/templates/cache/page-cache.php:
|
1201 |
msgid "WP-Optimize will automatically detect and configure itself optimally for your site."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: src/templates/cache/page-cache.php:
|
1205 |
msgid "You can tweak the the settings below and in the advanced settings tab, if needed."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: src/templates/cache/page-cache.php:
|
1209 |
msgid "It looks like you already have an active caching plugin (%s) installed. Having more than one active page cache might cause unexpected results."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: src/templates/cache/page-cache.php:
|
1213 |
msgid "Purge the cache"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: src/templates/cache/page-cache.php:
|
1217 |
msgid "Purge cache"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: src/templates/cache/page-cache.php:
|
1221 |
msgid "Deletes the entire cache contents but keeps the page cache enabled."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: src/templates/cache/page-cache.php:
|
1225 |
msgid "Current cache size:"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: src/templates/cache/page-cache.php:
|
1229 |
msgid "Number of files:"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: src/templates/cache/page-cache.php:
|
1233 |
msgid "Cache settings"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: src/templates/cache/page-cache.php:
|
1237 |
msgid "Generate separate files for mobile devices"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: src/templates/cache/page-cache.php:
|
1241 |
msgid "Useful if your website has mobile-specific content."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: src/templates/cache/page-cache.php:
|
1245 |
msgid "Serve cached pages to logged in users"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: src/templates/cache/page-cache.php:
|
1249 |
msgid "Enable this option if you do not have user-specific or restricted content on your website."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: src/templates/cache/page-cache.php:
|
1253 |
msgid "Cache lifespan"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: src/templates/cache/page-cache.php:
|
1257 |
msgid "Hours"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: src/templates/cache/page-cache.php:
|
1261 |
msgid "Days"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: src/templates/cache/page-cache.php:
|
1265 |
msgid "Months"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: src/templates/cache/page-cache.php:
|
1269 |
msgid "Time after which a new cached version will be generated (0 = only when the cache is emptied)"
|
1270 |
msgstr ""
|
1271 |
|
@@ -1285,7 +1329,7 @@ msgstr ""
|
|
1285 |
msgid "Warning: This operation is permanent. Continue?"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: src/templates/database/optimize-table.php:25, src/wp-optimize.php:
|
1289 |
msgid "Optimizations"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1403,7 +1447,7 @@ msgstr ""
|
|
1403 |
msgid "Follow this link to read more about lazy-loading images and video"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: src/templates/images/lazyload.php:22, src/wp-optimize.php:
|
1407 |
msgid "Images"
|
1408 |
msgstr ""
|
1409 |
|
@@ -1423,171 +1467,191 @@ msgstr ""
|
|
1423 |
msgid "Enable Lazy-loading with WP-Optimize Premium."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: src/templates/images/smush.php:
|
1427 |
msgid "How to use the image compression feature"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: src/templates/images/smush.php:
|
1431 |
msgid "Not sure how to use the image compression feature?"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: src/templates/images/smush.php:
|
1435 |
msgid "Watch our howto video below."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: src/templates/images/smush.php:
|
1439 |
msgid "Note: Currently this feature uses third party services from reSmush.it and Nitrosmush (by iSenseLabs). The performance of these free smushing services may be limited for large workloads. We are working on a premium service."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/templates/images/smush.php:
|
1443 |
msgid "Automatically compress newly-added images"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: src/templates/images/smush.php:
|
1447 |
msgid "The images will be added to a background queue, which will start automatically within the next hour. This avoids the site from freezing during media uploads. The time taken to complete the compression will depend upon the size and quantity of the images."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: src/templates/images/smush.php:
|
1451 |
msgid "Show compression meta-box on an image's dashboard media page."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: src/templates/images/smush.php:
|
1455 |
msgid "The image compression metabox allows you to compress specific images from the media library. But if you are using a solution other than WP-Optimize to compress your images, you can hide these metaboxes by disabling this switch."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: src/templates/images/smush.php:
|
1459 |
msgid "Compression options"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: src/templates/images/smush.php:
|
1463 |
msgid "Uses lossy compression to ensure maximum savings per image, the resulting images are of a slightly lower quality"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: src/templates/images/smush.php:
|
1467 |
msgid "Maximum Compression"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: src/templates/images/smush.php:
|
1471 |
msgid "Best Image Quality"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: src/templates/images/smush.php:
|
1475 |
msgid "Not sure what to choose?"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: src/templates/images/smush.php:
|
1479 |
msgid "Read our article \"Lossy vs Lossless image compression\""
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: src/templates/images/smush.php:
|
1483 |
msgid "Hide advanced options"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: src/templates/images/smush.php:
|
1487 |
msgid "Compression service"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: src/templates/images/smush.php:
|
1491 |
msgid "Can keep EXIF data"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: src/templates/images/smush.php:
|
1495 |
msgid "Service provided by reSmush.it"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: src/templates/images/smush.php:
|
1499 |
msgid "Nitrosmush"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: src/templates/images/smush.php:
|
1503 |
msgid "Max image size - 100MB"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: src/templates/images/smush.php:
|
1507 |
msgid "Service provided by iSenseLabs"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: src/templates/images/smush.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1511 |
msgid "Backup original images"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: src/templates/images/smush.php:
|
1515 |
msgid "The original images are stored alongside the compressed images, you can visit the edit screen of the individual images in the Media Library to restore them."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: src/templates/images/smush.php:
|
1519 |
-
msgid "
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: src/templates/images/smush.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1523 |
msgid "Save options"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: src/templates/images/smush.php:
|
1527 |
msgid "Saved options"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: src/templates/images/smush.php:
|
1531 |
msgid "Failed to save options"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: src/templates/images/smush.php:
|
1535 |
msgid "Uncompressed images"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: src/templates/images/smush.php:
|
1539 |
msgid "Select all"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: src/templates/images/smush.php:
|
1543 |
msgid "Select none"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: src/templates/images/smush.php:
|
1547 |
msgid "Refresh image list"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: src/templates/images/smush.php:
|
1551 |
msgid "Compress the selected images"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: src/templates/images/smush.php:
|
1555 |
msgid "View logs"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: src/templates/images/smush.php:
|
1559 |
msgid "Compressing images"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: src/templates/images/smush.php:
|
1563 |
msgid "The selected images are being processed; please do not close the browser"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: src/templates/images/smush.php:
|
1567 |
msgid "Images pending"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: src/templates/images/smush.php:
|
1571 |
msgid "Images completed"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: src/templates/images/smush.php:
|
1575 |
msgid "Size savings"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: src/templates/images/smush.php:
|
1579 |
msgid "Average savings per image"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: src/templates/images/smush.php:
|
1583 |
msgid "Time elapsed"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: src/templates/images/smush.php:
|
1587 |
msgid "Clear compression statistics"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: src/templates/images/smush.php:
|
1591 |
msgid "Download log file"
|
1592 |
msgstr ""
|
1593 |
|
@@ -1635,7 +1699,7 @@ msgstr ""
|
|
1635 |
msgid "notice image"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: src/templates/notices/horizontal-notice.php:16, src/templates/notices/horizontal-notice.php:18, src/templates/notices/install-or-update-notice.php:23, src/templates/notices/install-or-update-notice.php:
|
1639 |
msgid "Dismiss"
|
1640 |
msgstr ""
|
1641 |
|
@@ -1702,27 +1766,32 @@ msgstr ""
|
|
1702 |
|
1703 |
#: src/templates/notices/install-or-update-notice.php:32
|
1704 |
msgctxt "%s will be replaced by a \"strong\" tag"
|
1705 |
-
msgid "This new version includes the ability to %s
|
1706 |
msgstr ""
|
1707 |
|
1708 |
#: src/templates/notices/install-or-update-notice.php:33
|
1709 |
-
msgid "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
#: src/templates/notices/install-or-update-notice.php:35
|
1713 |
-
msgid "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: src/templates/notices/install-or-update-notice.php:
|
|
|
|
|
|
|
|
|
|
|
1717 |
msgctxt "%s is replaced by a link tag"
|
1718 |
msgid "PS - check out our new improved Premium version %shere%s."
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: src/templates/notices/install-or-update-notice.php:
|
1722 |
msgid "%sRead the documentation%s or if you have any questions, please ask %sPremium support%s"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: src/templates/notices/install-or-update-notice.php:
|
1726 |
msgid "Read the documentation"
|
1727 |
msgstr ""
|
1728 |
|
@@ -2000,19 +2069,19 @@ msgstr ""
|
|
2000 |
msgid "Select schedule type (default is Weekly)"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: src/templates/settings/settings-auto-cleanup.php:27, src/wp-optimize.php:
|
2004 |
msgid "Daily"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: src/templates/settings/settings-auto-cleanup.php:28, src/wp-optimize.php:
|
2008 |
msgid "Weekly"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: src/templates/settings/settings-auto-cleanup.php:29, src/wp-optimize.php:
|
2012 |
msgid "Fortnightly"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: src/templates/settings/settings-auto-cleanup.php:30, src/wp-optimize.php:
|
2016 |
msgid "Monthly (approx. - every 30 days)"
|
2017 |
msgstr ""
|
2018 |
|
@@ -2222,226 +2291,234 @@ msgstr ""
|
|
2222 |
msgid "UpdraftPlus is installed but currently not active. Follow this link to activate UpdraftPlus, to take a backup before optimization."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: src/wp-optimize.php:
|
2226 |
msgid "WP-Optimize (Free) has been de-activated, because WP-Optimize Premium is active."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: src/wp-optimize.php:
|
2230 |
msgid "New feature: WP-Optimize Premium can now optimize all sites within a multisite install, not just the main one."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: src/wp-optimize.php:
|
2234 |
msgid "Options can only be saved by network admin"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: src/wp-optimize.php:
|
2238 |
msgid "Tables"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: src/wp-optimize.php:
|
2242 |
msgid "Compress images"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: src/wp-optimize.php:
|
2246 |
msgid "Unused images and sizes"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: src/wp-optimize.php:
|
2250 |
msgid "Lazy-load"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: src/wp-optimize.php:
|
2254 |
msgid "Page cache"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: src/wp-optimize.php:
|
2258 |
msgid "Preload"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: src/wp-optimize.php:
|
2262 |
msgid "Advanced settings"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: src/wp-optimize.php:
|
2266 |
msgid "Gzip compression"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: src/wp-optimize.php:
|
2270 |
msgid "Static file headers"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: src/wp-optimize.php:
|
2274 |
msgid "Settings"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: src/wp-optimize.php:
|
2278 |
msgid "Support / FAQs"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: src/wp-optimize.php:
|
2282 |
msgid "Premium / Plugin family"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: src/wp-optimize.php:
|
2286 |
msgid "Same as cache lifespan"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: src/wp-optimize.php:
|
2290 |
msgid "Automatic backup before optimizations"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: src/wp-optimize.php:
|
2294 |
msgid "An unexpected response was received."
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: src/wp-optimize.php:
|
2298 |
msgid "Optimization complete"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: src/wp-optimize.php:
|
2302 |
msgid "Run optimizations"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: src/wp-optimize.php:
|
2306 |
msgid "Please, select settings file."
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: src/wp-optimize.php:
|
2310 |
msgid "Are you sure you want to remove this logging destination?"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: src/wp-optimize.php:
|
2314 |
msgid "Before saving, you need to complete the currently incomplete settings (or remove them)."
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: src/wp-optimize.php:
|
2318 |
msgid "%s was not repaired. For more details, please check the logs (configured in your logging destinations settings)."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: src/wp-optimize.php:
|
2322 |
-
msgid "
|
2323 |
msgstr ""
|
2324 |
|
2325 |
#: src/wp-optimize.php:960
|
2326 |
-
msgid "
|
|
|
|
|
|
|
|
|
2327 |
msgstr ""
|
2328 |
|
2329 |
#: src/wp-optimize.php:961
|
2330 |
-
msgid "
|
2331 |
msgstr ""
|
2332 |
|
2333 |
#: src/wp-optimize.php:962
|
|
|
|
|
|
|
|
|
2334 |
msgid "Please use valid values."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: src/wp-optimize.php:
|
2338 |
msgid "Started preload..."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: src/wp-optimize.php:
|
2342 |
msgid "Loading URLs..."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: src/wp-optimize.php:
|
2346 |
msgid "Optimize"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: src/wp-optimize.php:
|
2350 |
msgid "Repair"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: src/wp-optimize.php:
|
2354 |
msgid "Remove"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: src/wp-optimize.php:
|
2358 |
msgid "Warning"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: src/wp-optimize.php:
|
2362 |
msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: src/wp-optimize.php:
|
2366 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: src/wp-optimize.php:
|
2370 |
msgid "Database"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: src/wp-optimize.php:
|
2374 |
msgid "Cache"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: src/wp-optimize.php:
|
2378 |
msgid "Support & FAQs"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: src/wp-optimize.php:
|
2382 |
msgid "Help"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: src/wp-optimize.php:
|
2386 |
msgid "Premium Upgrade"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: src/wp-optimize.php:
|
2390 |
msgid "Error:"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: src/wp-optimize.php:
|
2394 |
msgid "template not found"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: src/wp-optimize.php:
|
2398 |
msgid "Automatic Operation Completed"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: src/wp-optimize.php:
|
2402 |
msgid "Scheduled optimization was executed at"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: src/wp-optimize.php:
|
2406 |
msgid "You can safely delete this email."
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: src/wp-optimize.php:
|
2410 |
msgid "Regards,"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: src/wp-optimize.php:
|
2414 |
msgid "WP-Optimize Plugin"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: src/wp-optimize.php:
|
2418 |
msgid "GB"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: src/wp-optimize.php:
|
2422 |
msgid "MB"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: src/wp-optimize.php:
|
2426 |
msgid "KB"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: src/wp-optimize.php:
|
2430 |
msgid "bytes"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: src/wp-optimize.php:
|
2434 |
msgid "You have no permissions to run optimizations."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: src/wp-optimize.php:
|
2438 |
msgid "You have no permissions to manage WP-Optimize settings."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: src/wp-optimize.php:
|
2442 |
msgid "Only Network Administrator can activate WP-Optimize plugin."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: src/wp-optimize.php:
|
2446 |
msgid "go back"
|
2447 |
msgstr ""
|
45 |
msgstr[0] ""
|
46 |
msgstr[1] ""
|
47 |
|
48 |
+
#: src/cache/class-wpo-page-cache.php:147
|
49 |
+
msgid "Purge from cache"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/cache/class-wpo-page-cache.php:184, src/cache/class-wpo-page-cache.php:191
|
53 |
+
msgid "The page cache was successfully purged."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
#: src/cache/file-based-page-cache-functions.php:29
|
57 |
msgid "Output is too small (less than %d bytes) to be worth cacheing"
|
58 |
msgstr ""
|
89 |
msgid "We could not determine if Gzip compression is enabled."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: src/includes/class-commands.php:400, src/includes/class-commands.php:409
|
93 |
msgid "Please upload a valid settings file."
|
94 |
msgstr ""
|
95 |
|
121 |
msgid "How many last records store?"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: src/includes/class-updraft-smush-manager-commands.php:117
|
125 |
msgid "Image restored successfully"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: src/includes/class-updraft-smush-manager-commands.php:158
|
129 |
msgid "Since your compression statistics were last reset, a total of %d image(s) were compressed on this site, saving approximately %s of space at an average of %02d percent per image."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: src/includes/class-updraft-smush-manager-commands.php:159
|
133 |
msgid "%d image(s) could not be compressed. Please see the logs for more information, or try again later."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: src/includes/class-updraft-smush-manager-commands.php:160
|
137 |
msgid "%d image(s) images were selected for compressing previously, but were not all processed. You can either complete them now or cancel and retry later."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: src/includes/class-updraft-smush-manager-commands.php:169
|
141 |
msgid "A total of %d image(s) were successfully compressed in this iteration. "
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: src/includes/class-updraft-smush-manager-commands.php:173
|
145 |
msgid "%d selected image(s) could not be compressed. Please see the logs for more information, you may try again later."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: src/includes/class-updraft-smush-manager-commands.php:202
|
149 |
msgid "Options could not be updated"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/includes/class-updraft-smush-manager-commands.php:207
|
153 |
msgid "Options updated successfully"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/includes/class-updraft-smush-manager-commands.php:222
|
157 |
msgid "Stats could not be cleared"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: src/includes/class-updraft-smush-manager-commands.php:226
|
161 |
msgid "Stats cleared successfully"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: src/includes/class-updraft-smush-manager-commands.php:265
|
165 |
msgid "Pending tasks could not be cleared"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: src/includes/class-updraft-smush-manager-commands.php:269
|
169 |
msgid "Pending tasks cleared successfully"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: src/includes/class-updraft-smush-manager-commands.php:292
|
173 |
+
msgid "This image is marked as already compressed by another tool."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: src/includes/class-updraft-smush-manager-commands.php:315
|
177 |
+
msgid "Selected image marked as uncompressed successfully"
|
178 |
+
msgid_plural "Selected images marked as uncompressed successfully"
|
179 |
+
msgstr[0] ""
|
180 |
+
msgstr[1] ""
|
181 |
+
|
182 |
+
#: src/includes/class-updraft-smush-manager-commands.php:317
|
183 |
+
msgid "Selected image marked as compressed successfully"
|
184 |
+
msgid_plural "Selected images marked as compressed successfully"
|
185 |
+
msgstr[0] ""
|
186 |
+
msgstr[1] ""
|
187 |
+
|
188 |
+
#: src/includes/class-updraft-smush-manager-commands.php:349
|
189 |
msgid "Log file does not exist or could not be read"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: src/includes/class-updraft-smush-manager.php:238
|
193 |
msgid "Backup not found, it may have been deleted or already restored"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: src/includes/class-updraft-smush-manager.php:242
|
197 |
msgid "The destination could not be written to, please check your folder permissions"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: src/includes/class-updraft-smush-manager.php:248
|
201 |
msgid "Could not copy file, check your PHP error logs for details"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: src/includes/class-updraft-smush-manager.php:488
|
205 |
msgid "No uncompressed images were found."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: src/includes/class-updraft-smush-manager.php:489
|
209 |
msgid "An unexpected response was received from the server. More information has been logged in the browser console."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: src/includes/class-updraft-smush-manager.php:490
|
213 |
msgid "Please wait: compressing the selected image."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: src/includes/class-updraft-smush-manager.php:491
|
217 |
msgid "Please try again later."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: src/includes/class-updraft-smush-manager.php:492
|
221 |
msgid "Connecting to the Smush API server, please wait"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: src/includes/class-updraft-smush-manager.php:493
|
225 |
msgid "Please wait while the request is being processed"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: src/includes/class-updraft-smush-manager.php:494
|
229 |
msgid "There was an error connecting to the image compression server. This could mean either the server is temporarily unavailable or there are connectivity issues with your internet connection. Please try later."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/includes/class-updraft-smush-manager.php:495
|
233 |
msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: src/includes/class-updraft-smush-manager.php:496
|
237 |
+
msgid "Please wait: updating information about the selected image."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: src/includes/class-updraft-smush-manager.php:497
|
241 |
+
msgid "Please select the images you want to mark as already compressed from the \"Uncompressed images\" panel first"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: src/includes/class-updraft-smush-manager.php:498
|
245 |
msgid "View Image"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: src/includes/class-updraft-smush-manager.php:499
|
249 |
+
msgid "Do you really want to delete all backup images now? This action is irreversible."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: src/includes/class-updraft-smush-manager.php:516
|
253 |
msgid "Compress Image"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: src/includes/class-updraft-smush-manager.php:1179
|
257 |
msgid "Compress image"
|
258 |
msgstr ""
|
259 |
|
349 |
msgid "No such optimization"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: src/includes/class-wp-optimizer.php:364, src/includes/wp-optimize-database-information.php:407, src/includes/wp-optimize-database-information.php:455, src/templates/database/tables-body.php:34
|
353 |
msgid "WordPress core"
|
354 |
msgstr ""
|
355 |
|
905 |
msgid "Restore"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: src/templates/admin-metabox-smush.php:15, src/templates/images/smush.php:41
|
909 |
msgid "Prioritize maximum compression"
|
910 |
msgstr ""
|
911 |
|
913 |
msgid "Potentially uses lossy compression to ensure maximum savings per image, the resulting images are of a slightly lower quality"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: src/templates/admin-metabox-smush.php:20, src/templates/images/smush.php:45
|
917 |
msgid "Prioritize retention of detail"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: src/templates/admin-metabox-smush.php:21, src/templates/images/smush.php:46
|
921 |
msgid "Uses lossless compression, which results in much better image quality but lower filesize savings per image"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: src/templates/admin-metabox-smush.php:25, src/templates/images/smush.php:49
|
925 |
msgid "Custom"
|
926 |
msgstr ""
|
927 |
|
933 |
msgid "Best image quality"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: src/templates/admin-metabox-smush.php:40, src/templates/images/smush.php:65
|
937 |
msgid "Show advanced options"
|
938 |
msgstr ""
|
939 |
|
941 |
msgid "Service provider"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: src/templates/admin-metabox-smush.php:46, src/templates/images/smush.php:71
|
945 |
msgid "reSmush.it"
|
946 |
msgstr ""
|
947 |
|
965 |
msgid "Compress"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: src/templates/admin-metabox-smush.php:71, src/templates/images/smush.php:125
|
969 |
+
msgid "Mark as already compressed"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: src/templates/admin-metabox-smush.php:75
|
973 |
+
msgid "Mark as uncompressed"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: src/templates/admin-metabox-smush.php:87
|
977 |
msgid "WP-Optimize image settings"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: src/templates/admin-metabox-smush.php:93, src/templates/cache/page-cache.php:3, src/templates/images/smush.php:4, src/templates/images/smush.php:181, src/templates/images/smush.php:187, src/templates/images/smush.php:192
|
981 |
msgid "Close"
|
982 |
msgstr ""
|
983 |
|
1013 |
msgid "Twitter"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: src/templates/admin-page-header.php:14, src/templates/notices/install-or-update-notice.php:47, src/templates/pages-menu.php:33
|
1017 |
msgid "Support"
|
1018 |
msgstr ""
|
1019 |
|
1033 |
msgid "More plugins"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: src/templates/admin-page-header.php:29, src/templates/settings/may-also-like.php:26, src/wp-optimize.php:1039
|
1037 |
msgid "Premium"
|
1038 |
msgstr ""
|
1039 |
|
1061 |
msgid "disabled"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: src/templates/cache/browser-cache.php:32, src/wp-optimize.php:964
|
1065 |
msgid "Update"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: src/templates/cache/browser-cache.php:32, src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:13, src/templates/settings/settings-trackback-and-comments.php:29, src/wp-optimize.php:954
|
1069 |
msgid "Enable"
|
1070 |
msgstr ""
|
1071 |
|
1113 |
msgid "Check status again"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:15, src/templates/settings/settings-trackback-and-comments.php:31, src/wp-optimize.php:955
|
1117 |
msgid "Disable"
|
1118 |
msgstr ""
|
1119 |
|
1173 |
msgid "Preload now"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: src/templates/cache/page-cache-preload.php:7, src/templates/images/smush.php:164, src/wp-optimize.php:953
|
1177 |
msgid "Cancel"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: src/templates/cache/page-cache-preload.php:7, src/wp-optimize.php:965
|
1181 |
msgid "Run now"
|
1182 |
msgstr ""
|
1183 |
|
1205 |
msgid "Select schedule type"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: src/templates/cache/page-cache-preload.php:49, src/templates/cache/page-cache.php:93
|
1209 |
msgid "Save changes"
|
1210 |
msgstr ""
|
1211 |
|
1225 |
msgid "Cache video preview"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: src/templates/cache/page-cache.php:9, src/templates/images/smush.php:10
|
1229 |
msgid "Loads a video hosted on vimeo.com"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: src/templates/cache/page-cache.php:9, src/templates/images/smush.php:10
|
1233 |
msgid "Open the video in a new window"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: src/templates/cache/page-cache.php:23
|
1237 |
msgid "Enable page caching"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: src/templates/cache/page-cache.php:27
|
1241 |
msgid "This is all that's needed for caching to work."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: src/templates/cache/page-cache.php:27
|
1245 |
msgid "WP-Optimize will automatically detect and configure itself optimally for your site."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: src/templates/cache/page-cache.php:27
|
1249 |
msgid "You can tweak the the settings below and in the advanced settings tab, if needed."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: src/templates/cache/page-cache.php:33
|
1253 |
msgid "It looks like you already have an active caching plugin (%s) installed. Having more than one active page cache might cause unexpected results."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: src/templates/cache/page-cache.php:40
|
1257 |
msgid "Purge the cache"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: src/templates/cache/page-cache.php:43
|
1261 |
msgid "Purge cache"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: src/templates/cache/page-cache.php:48
|
1265 |
msgid "Deletes the entire cache contents but keeps the page cache enabled."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: src/templates/cache/page-cache.php:51, src/wp-optimize.php:968
|
1269 |
msgid "Current cache size:"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: src/templates/cache/page-cache.php:52, src/wp-optimize.php:969
|
1273 |
msgid "Number of files:"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: src/templates/cache/page-cache.php:56
|
1277 |
msgid "Cache settings"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: src/templates/cache/page-cache.php:63
|
1281 |
msgid "Generate separate files for mobile devices"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: src/templates/cache/page-cache.php:65
|
1285 |
msgid "Useful if your website has mobile-specific content."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: src/templates/cache/page-cache.php:71
|
1289 |
msgid "Serve cached pages to logged in users"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: src/templates/cache/page-cache.php:73
|
1293 |
msgid "Enable this option if you do not have user-specific or restricted content on your website."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: src/templates/cache/page-cache.php:77
|
1297 |
msgid "Cache lifespan"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: src/templates/cache/page-cache.php:81
|
1301 |
msgid "Hours"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: src/templates/cache/page-cache.php:82
|
1305 |
msgid "Days"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: src/templates/cache/page-cache.php:83
|
1309 |
msgid "Months"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: src/templates/cache/page-cache.php:87
|
1313 |
msgid "Time after which a new cached version will be generated (0 = only when the cache is emptied)"
|
1314 |
msgstr ""
|
1315 |
|
1329 |
msgid "Warning: This operation is permanent. Continue?"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: src/templates/database/optimize-table.php:25, src/wp-optimize.php:583
|
1333 |
msgid "Optimizations"
|
1334 |
msgstr ""
|
1335 |
|
1447 |
msgid "Follow this link to read more about lazy-loading images and video"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: src/templates/images/lazyload.php:22, src/wp-optimize.php:1238, src/wp-optimize.php:1239
|
1451 |
msgid "Images"
|
1452 |
msgstr ""
|
1453 |
|
1467 |
msgid "Enable Lazy-loading with WP-Optimize Premium."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: src/templates/images/smush.php:4
|
1471 |
msgid "How to use the image compression feature"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: src/templates/images/smush.php:6
|
1475 |
msgid "Not sure how to use the image compression feature?"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: src/templates/images/smush.php:6
|
1479 |
msgid "Watch our howto video below."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: src/templates/images/smush.php:14
|
1483 |
msgid "Note: Currently this feature uses third party services from reSmush.it and Nitrosmush (by iSenseLabs). The performance of these free smushing services may be limited for large workloads. We are working on a premium service."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: src/templates/images/smush.php:22
|
1487 |
msgid "Automatically compress newly-added images"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: src/templates/images/smush.php:23
|
1491 |
msgid "The images will be added to a background queue, which will start automatically within the next hour. This avoids the site from freezing during media uploads. The time taken to complete the compression will depend upon the size and quantity of the images."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: src/templates/images/smush.php:33
|
1495 |
msgid "Show compression meta-box on an image's dashboard media page."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: src/templates/images/smush.php:34
|
1499 |
msgid "The image compression metabox allows you to compress specific images from the media library. But if you are using a solution other than WP-Optimize to compress your images, you can hide these metaboxes by disabling this switch."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: src/templates/images/smush.php:39
|
1503 |
msgid "Compression options"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: src/templates/images/smush.php:42
|
1507 |
msgid "Uses lossy compression to ensure maximum savings per image, the resulting images are of a slightly lower quality"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: src/templates/images/smush.php:52
|
1511 |
msgid "Maximum Compression"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: src/templates/images/smush.php:61
|
1515 |
msgid "Best Image Quality"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: src/templates/images/smush.php:63
|
1519 |
msgid "Not sure what to choose?"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: src/templates/images/smush.php:63
|
1523 |
msgid "Read our article \"Lossy vs Lossless image compression\""
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: src/templates/images/smush.php:65
|
1527 |
msgid "Hide advanced options"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: src/templates/images/smush.php:68
|
1531 |
msgid "Compression service"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: src/templates/images/smush.php:72
|
1535 |
msgid "Can keep EXIF data"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: src/templates/images/smush.php:73
|
1539 |
msgid "Service provided by reSmush.it"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: src/templates/images/smush.php:78
|
1543 |
msgid "Nitrosmush"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: src/templates/images/smush.php:79
|
1547 |
msgid "Max image size - 100MB"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: src/templates/images/smush.php:80
|
1551 |
msgid "Service provided by iSenseLabs"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: src/templates/images/smush.php:85
|
1555 |
+
msgid "More options"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: src/templates/images/smush.php:88
|
1559 |
+
msgid "Preserve EXIF data"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: src/templates/images/smush.php:91
|
1563 |
msgid "Backup original images"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: src/templates/images/smush.php:92
|
1567 |
msgid "The original images are stored alongside the compressed images, you can visit the edit screen of the individual images in the Media Library to restore them."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: src/templates/images/smush.php:95
|
1571 |
+
msgid "Automatically delete image backups after"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: src/templates/images/smush.php:95
|
1575 |
+
msgid "days"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: src/templates/images/smush.php:95
|
1579 |
+
msgid "or"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: src/templates/images/smush.php:95
|
1583 |
+
msgid "Delete all backup images now"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: src/templates/images/smush.php:101
|
1587 |
msgid "Save options"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: src/templates/images/smush.php:103
|
1591 |
msgid "Saved options"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: src/templates/images/smush.php:104
|
1595 |
msgid "Failed to save options"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: src/templates/images/smush.php:109
|
1599 |
msgid "Uncompressed images"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: src/templates/images/smush.php:112
|
1603 |
msgid "Select all"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: src/templates/images/smush.php:113
|
1607 |
msgid "Select none"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: src/templates/images/smush.php:116
|
1611 |
msgid "Refresh image list"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: src/templates/images/smush.php:124
|
1615 |
msgid "Compress the selected images"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: src/templates/images/smush.php:126, src/templates/images/smush.php:176
|
1619 |
msgid "View logs"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: src/templates/images/smush.php:133
|
1623 |
msgid "Compressing images"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: src/templates/images/smush.php:138
|
1627 |
msgid "The selected images are being processed; please do not close the browser"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: src/templates/images/smush.php:142
|
1631 |
msgid "Images pending"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: src/templates/images/smush.php:146
|
1635 |
msgid "Images completed"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: src/templates/images/smush.php:150
|
1639 |
msgid "Size savings"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: src/templates/images/smush.php:154
|
1643 |
msgid "Average savings per image"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: src/templates/images/smush.php:158
|
1647 |
msgid "Time elapsed"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: src/templates/images/smush.php:177
|
1651 |
msgid "Clear compression statistics"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: src/templates/images/smush.php:186
|
1655 |
msgid "Download log file"
|
1656 |
msgstr ""
|
1657 |
|
1699 |
msgid "notice image"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: src/templates/notices/horizontal-notice.php:16, src/templates/notices/horizontal-notice.php:18, src/templates/notices/install-or-update-notice.php:23, src/templates/notices/install-or-update-notice.php:42
|
1703 |
msgid "Dismiss"
|
1704 |
msgstr ""
|
1705 |
|
1766 |
|
1767 |
#: src/templates/notices/install-or-update-notice.php:32
|
1768 |
msgctxt "%s will be replaced by a \"strong\" tag"
|
1769 |
+
msgid "This new version includes the ability to %s cache your site.%s"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
#: src/templates/notices/install-or-update-notice.php:33
|
1773 |
+
msgid "We've built this around the most powerful caching technology we know and subjected it to many months of highly intensive testing."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
#: src/templates/notices/install-or-update-notice.php:35
|
1777 |
+
msgid "If you already have plugins for images and caching, don't worry - WP-Optimize won't interfere unless you turn these options on."
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: src/templates/notices/install-or-update-notice.php:36
|
1781 |
+
msgctxt "%s will be replaced by a link"
|
1782 |
+
msgid "However, %s tests by us%s and early adopters show WP-Optimize's cache feature alone can make your site faster than every other caching plugin we've tested, and it's simpler too. So we encourage you to give it a go!"
|
1783 |
+
msgstr ""
|
1784 |
+
|
1785 |
+
#: src/templates/notices/install-or-update-notice.php:38
|
1786 |
msgctxt "%s is replaced by a link tag"
|
1787 |
msgid "PS - check out our new improved Premium version %shere%s."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: src/templates/notices/install-or-update-notice.php:44
|
1791 |
msgid "%sRead the documentation%s or if you have any questions, please ask %sPremium support%s"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: src/templates/notices/install-or-update-notice.php:46
|
1795 |
msgid "Read the documentation"
|
1796 |
msgstr ""
|
1797 |
|
2069 |
msgid "Select schedule type (default is Weekly)"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: src/templates/settings/settings-auto-cleanup.php:27, src/wp-optimize.php:824
|
2073 |
msgid "Daily"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: src/templates/settings/settings-auto-cleanup.php:28, src/wp-optimize.php:825
|
2077 |
msgid "Weekly"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: src/templates/settings/settings-auto-cleanup.php:29, src/wp-optimize.php:826
|
2081 |
msgid "Fortnightly"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: src/templates/settings/settings-auto-cleanup.php:30, src/wp-optimize.php:827
|
2085 |
msgid "Monthly (approx. - every 30 days)"
|
2086 |
msgstr ""
|
2087 |
|
2291 |
msgid "UpdraftPlus is installed but currently not active. Follow this link to activate UpdraftPlus, to take a backup before optimization."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: src/wp-optimize.php:433
|
2295 |
msgid "WP-Optimize (Free) has been de-activated, because WP-Optimize Premium is active."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: src/wp-optimize.php:443
|
2299 |
msgid "New feature: WP-Optimize Premium can now optimize all sites within a multisite install, not just the main one."
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: src/wp-optimize.php:496
|
2303 |
msgid "Options can only be saved by network admin"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: src/wp-optimize.php:583
|
2307 |
msgid "Tables"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: src/wp-optimize.php:585
|
2311 |
msgid "Compress images"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: src/wp-optimize.php:586
|
2315 |
msgid "Unused images and sizes"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: src/wp-optimize.php:587
|
2319 |
msgid "Lazy-load"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: src/wp-optimize.php:590
|
2323 |
msgid "Page cache"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: src/wp-optimize.php:591
|
2327 |
msgid "Preload"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: src/wp-optimize.php:592
|
2331 |
msgid "Advanced settings"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: src/wp-optimize.php:593
|
2335 |
msgid "Gzip compression"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: src/wp-optimize.php:594
|
2339 |
msgid "Static file headers"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: src/wp-optimize.php:598, src/wp-optimize.php:1043, src/wp-optimize.php:1261, src/wp-optimize.php:1262
|
2343 |
msgid "Settings"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: src/wp-optimize.php:601
|
2347 |
msgid "Support / FAQs"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: src/wp-optimize.php:602
|
2351 |
msgid "Premium / Plugin family"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: src/wp-optimize.php:823
|
2355 |
msgid "Same as cache lifespan"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: src/wp-optimize.php:949
|
2359 |
msgid "Automatic backup before optimizations"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: src/wp-optimize.php:950
|
2363 |
msgid "An unexpected response was received."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: src/wp-optimize.php:951
|
2367 |
msgid "Optimization complete"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: src/wp-optimize.php:952
|
2371 |
msgid "Run optimizations"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: src/wp-optimize.php:956
|
2375 |
msgid "Please, select settings file."
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: src/wp-optimize.php:957
|
2379 |
msgid "Are you sure you want to remove this logging destination?"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: src/wp-optimize.php:958
|
2383 |
msgid "Before saving, you need to complete the currently incomplete settings (or remove them)."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: src/wp-optimize.php:959
|
2387 |
msgid "%s was not repaired. For more details, please check the logs (configured in your logging destinations settings)."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: src/wp-optimize.php:960
|
2391 |
+
msgid "WARNING - some plugins might not be detected as installed or activated if they are in unknown folders (for example premium plugins)."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
#: src/wp-optimize.php:960
|
2395 |
+
msgid "Only delete a table if you are sure of what you are doing, and after taking a backup."
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
+
#: src/wp-optimize.php:960
|
2399 |
+
msgid "Are you sure you want to remove this table?"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
#: src/wp-optimize.php:961
|
2403 |
+
msgid "%s was not deleted. For more details, please check your logs configured in logging destinations settings."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
#: src/wp-optimize.php:962
|
2407 |
+
msgid "Please use positive integers."
|
2408 |
+
msgstr ""
|
2409 |
+
|
2410 |
+
#: src/wp-optimize.php:963
|
2411 |
msgid "Please use valid values."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: src/wp-optimize.php:966
|
2415 |
msgid "Started preload..."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: src/wp-optimize.php:967
|
2419 |
msgid "Loading URLs..."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: src/wp-optimize.php:1046
|
2423 |
msgid "Optimize"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: src/wp-optimize.php:1062
|
2427 |
msgid "Repair"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: src/wp-optimize.php:1071
|
2431 |
msgid "Remove"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: src/wp-optimize.php:1189
|
2435 |
msgid "Warning"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: src/wp-optimize.php:1189
|
2439 |
msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: src/wp-optimize.php:1189
|
2443 |
msgid "Read this page for a guide to possible causes and how to fix it."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: src/wp-optimize.php:1229, src/wp-optimize.php:1230
|
2447 |
msgid "Database"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: src/wp-optimize.php:1247, src/wp-optimize.php:1248
|
2451 |
msgid "Cache"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: src/wp-optimize.php:1270
|
2455 |
msgid "Support & FAQs"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: src/wp-optimize.php:1271
|
2459 |
msgid "Help"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: src/wp-optimize.php:1279, src/wp-optimize.php:1280
|
2463 |
msgid "Premium Upgrade"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: src/wp-optimize.php:1351
|
2467 |
msgid "Error:"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: src/wp-optimize.php:1351
|
2471 |
msgid "template not found"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: src/wp-optimize.php:1403
|
2475 |
msgid "Automatic Operation Completed"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: src/wp-optimize.php:1405
|
2479 |
msgid "Scheduled optimization was executed at"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: src/wp-optimize.php:1406
|
2483 |
msgid "You can safely delete this email."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: src/wp-optimize.php:1408
|
2487 |
msgid "Regards,"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: src/wp-optimize.php:1409
|
2491 |
msgid "WP-Optimize Plugin"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: src/wp-optimize.php:1435
|
2495 |
msgid "GB"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: src/wp-optimize.php:1437
|
2499 |
msgid "MB"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: src/wp-optimize.php:1439
|
2503 |
msgid "KB"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: src/wp-optimize.php:1441
|
2507 |
msgid "bytes"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/wp-optimize.php:1750
|
2511 |
msgid "You have no permissions to run optimizations."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/wp-optimize.php:1757
|
2515 |
msgid "You have no permissions to manage WP-Optimize settings."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: src/wp-optimize.php:1970
|
2519 |
msgid "Only Network Administrator can activate WP-Optimize plugin."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: src/wp-optimize.php:1971
|
2523 |
msgid "go back"
|
2524 |
msgstr ""
|
@@ -1 +1 @@
|
|
1 |
-
{"yoast_seo_meta":["wordpress-seo"],"yoast_seo_links":["wordpress-seo"],"woocommerce_log":["woocommerce","lazyeater"],"woocommerce_sessions":["woocommerce","lazyeater"],"woocommerce_downloadable_product_permissions":["woocommerce","lazyeater"],"woocommerce_attribute_taxonomies":["woocommerce","lazyeater"],"woocommerce_api_keys":["woocommerce","lazyeater"],"woocommerce_order_itemmeta":["woocommerce","lazyeater"],"wc_download_log":["woocommerce","lazyeater"],"woocommerce_order_items":["woocommerce","lazyeater"],"woocommerce_payment_tokenmeta":["woocommerce","lazyeater"],"woocommerce_payment_tokens":["woocommerce","lazyeater"],"wc_product_meta_lookup":["woocommerce"],"wc_webhooks":["woocommerce","lazyeater"],"woocommerce_shipping_zone_locations":["woocommerce","lazyeater"],"woocommerce_tax_rates":["woocommerce","lazyeater"],"woocommerce_shipping_zone_methods":["woocommerce","lazyeater"],"woocommerce_shipping_zones":["woocommerce","lazyeater"],"woocommerce_tax_rate_locations":["woocommerce","lazyeater"],"wfls_2fa_secrets":["wordfence","wordfence-login-security"],"wfpendingissues":["wordfence"],"wfscanners":["wordfence"],"wfsnipcache":["wordfence"],"wfnotifications":["wordfence"],"wfnet404s":["wordfence"],"wfstatus":["wordfence"],"wfthrottlelog":["wordfence"],"wfls_settings":["wordfence","wordfence-login-security"],"wfblocks7":["wordfence"],"wfblockedcommentlog":["wordfence"],"wflogins":["wordfence"],"wffilemods":["wordfence"],"wfblocks":["wordfence"],"wfblockediplog":["wordfence"],"wfconfig":["wordfence"],"wfbadleechers":["wordfence"],"wfcrawlers":["wordfence"],"wffilechanges":["wordfence"],"wfhits":["wordfence"],"wflocs":["wordfence"],"wfhoover":["wordfence"],"wfissues":["wordfence"],"wfknownfilelist":["wordfence"],"wfvulnscanners":["wordfence"],"wfleechers":["wordfence"],"wflivetraffichuman":["wordfence"],"wflockedout":["wordfence"],"wftrafficrates":["wordfence"],"wfreversecache":["wordfence"],"wfblocksadv":["wordfence"],"smush_dir_images":["wp-smushit"],"redirection_items":["redirection"],"redirection_logs":["redirection"],"duplicator_packages":["duplicator"],"nf3_action_meta":["ninja-forms"],"redirection_404":["redirection"],"nf3_chunks":["ninja-forms"],"nf3_field_meta":["ninja-forms"],"nf3_actions":["ninja-forms"],"nf3_fields":["ninja-forms"],"nf3_form_meta":["ninja-forms"],"nf3_upgrades":["ninja-forms"],"nf3_relationships":["ninja-forms"],"redirection_groups":["redirection"],"nf3_object_meta":["ninja-forms"],"nf3_objects":["ninja-forms"],"nf3_forms":["ninja-forms"],"itsec_temp":["better-wp-security","ithemes-security-pro"],"itsec_logs":["better-wp-security","ithemes-security-pro"],"itsec_log":["better-wp-security","ithemes-security-pro"],"itsec_lockouts":["better-wp-security","ithemes-security-pro"],"itsec_geolocation_cache":["better-wp-security","ithemes-security-pro"],"itsec_fingerprints":["better-wp-security","ithemes-security-pro"],"itsec_distributed_storage":["better-wp-security","ithemes-security-pro"],"ngg_album":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_pictures":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_gallery":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"tm_tasks":["wp-optimize"],"tm_taskmeta":["wp-optimize"],"aiowps_permanent_block":["all-in-one-wp-security-and-firewall"],"aiowps_login_lockdown":["all-in-one-wp-security-and-firewall"],"aiowps_login_activity":["all-in-one-wp-security-and-firewall"],"aiowps_global_meta":["all-in-one-wp-security-and-firewall"],"aiowps_failed_logins":["all-in-one-wp-security-and-firewall"],"loginizer_logs":["loginizer"],"aiowps_events":["all-in-one-wp-security-and-firewall"],"blc_instances":["broken-link-checker"],"blc_synch":["broken-link-checker"],"blc_filters":["broken-link-checker"],"ewwwio_images":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"blc_links":["broken-link-checker"],"ewwwio_queue":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"litespeed_optimizer":["litespeed-cache"],"wpmm_subscribers":["wp-maintenance-mode"],"litespeed_img_optm":["litespeed-cache"],"statistics_exclusions":["wp-statistics"],"statistics_visitor":["wp-statistics"],"statistics_historical":["wp-statistics"],"statistics_pages":["wp-statistics"],"statistics_visit":["wp-statistics"],"statistics_search":["wp-statistics"],"statistics_useronline":["wp-statistics"],"nextend2_image_storage":["smart-slider-3"],"navy_grid_grids":["essential-grid"],"wpgmza_categories":["wp-google-maps"],"wpfm_backup":["wp-file-manager"],"nextend2_smartslider3_slides":["smart-slider-3"],"nextend2_smartslider3_sliders_xref":["smart-slider-3"],"nextend2_smartslider3_sliders":["smart-slider-3"],"nextend2_smartslider3_generators":["smart-slider-3"],"nextend2_section_storage":["smart-slider-3"],"wpgmza_category_maps":["wp-google-maps"],"wpgmza":["wp-google-maps"],"wpgmza_circles":["wp-google-maps"],"wpgmza_maps":["wp-google-maps"],"wpgmza_polylines":["wp-google-maps"],"wpgmza_rectangles":["wp-google-maps"],"navy_grid_images":["essential-grid"],"wpgmza_polygon":["wp-google-maps"],"bwg_album_gallery":["photo-gallery"],"cptch_blacklist_ip":["captcha"],"bwg_image":["photo-gallery"],"bwg_file_paths":["photo-gallery"],"bwg_gallery":["photo-gallery"],"wc_order_product_lookup":["woocommerce-admin"],"wc_order_stats":["woocommerce-admin"],"bwg_album":["photo-gallery"],"wc_order_tax_lookup":["woocommerce-admin"],"popularpostsdata":["wordpress-popular-posts","popular-posts","mh-board"],"popularpostssummary":["wordpress-popular-posts"],"bwg_shortcode":["photo-gallery"],"bwg_image_comment":["photo-gallery"],"pum_subscribers":["popup-maker"],"wc_admin_notes":["woocommerce-admin"],"newsletter":["newsletter","fv-feedburner-replacement","newsletter-signup","digital-media-combined"],"newsletter_emails":["newsletter","digital-media-combined"],"newsletter_sent":["newsletter","digital-media-combined"],"newsletter_stats":["newsletter","digital-media-combined"],"newsletter_user_logs":["newsletter"],"bwg_image_rate":["photo-gallery"],"hctpc_packages":["captcha"],"hctpc_images":["captcha"],"wc_admin_note_actions":["woocommerce-admin"],"hctpc_whitelist":["captcha"],"cptch_whitelist":["captcha"],"cptch_packages":["captcha","captcha-bws"],"cptch_images":["captcha","captcha-bws"],"bwg_image_tag":["photo-gallery"],"wc_customer_lookup":["woocommerce-admin"],"bwg_theme":["photo-gallery"],"cptch_track_countries":["captcha"],"cptch_track_visitor":["captcha"],"wc_order_coupon_lookup":["woocommerce-admin"],"bp_activity_meta":["buddypress"],"bp_activity":["buddypress"],"bp_xprofile_meta":["buddypress"],"prli_links":["pretty-link"],"prli_link_metas":["pretty-link"],"bp_xprofile_data":["buddypress"],"yarpp_related_cache":["yet-another-related-posts-plugin"],"bp_xprofile_groups":["buddypress"],"prli_groups":["pretty-link"],"prli_clicks":["pretty-link"],"bp_notifications":["buddypress"],"bp_notifications_meta":["buddypress"],"bp_xprofile_fields":["buddypress"],"cf_forms":["caldera-forms"],"toolset_post_guid_id":["types"],"cf_form_entries":["caldera-forms"],"wysija_email_user_url":["wysija-newsletters"],"wysija_email_user_stat":["wysija-newsletters"],"wysija_email":["wysija-newsletters"],"wysija_custom_field":["wysija-newsletters"],"signups":["buddypress","miniorange-user-manager","wp-user-signups"],"imagify_folders":["imagify"],"imagify_files":["imagify"],"wysija_campaign_list":["wysija-newsletters"],"wysija_campaign":["wysija-newsletters"],"cf_form_entry_meta":["caldera-forms"],"gglcptch_whitelist":["google-captcha"],"cf_form_entry_values":["caldera-forms"],"frm_fields":["formidable"],"frm_forms":["formidable"],"frm_item_metas":["formidable"],"frm_items":["formidable"],"cf_tracking_meta":["caldera-forms"],"cf_tracking":["caldera-forms"],"cf_queue_jobs":["caldera-forms"],"cf_queue_failures":["caldera-forms"],"eum_logs":["stops-core-theme-and-plugin-updates"],"wysija_form":["wysija-newsletters"],"wysija_list":["wysija-newsletters"],"wysija_subscriber_ips":["wysija-newsletters"],"brizy_logs":["unyson","brizy"],"db7_forms":["contact-form-cfdb7"],"cf_pro_messages":["caldera-forms"],"wysija_user_list":["wysija-newsletters"],"wysija_user_history":["wysija-newsletters"],"wysija_user_field":["wysija-newsletters"],"wysija_user":["wysija-newsletters"],"siteguard_login":["siteguard"],"siteguard_history":["siteguard"],"wysija_url":["wysija-newsletters"],"wysija_url_mail":["wysija-newsletters"],"wysija_queue":["wysija-newsletters"],"relevanssi_stopwords":["relevanssi"],"sg_popup":["popup-builder"],"404_to_301":["404-to-301"],"slim_stats":["wp-slimstat"],"sg_fblike_popup":["popup-builder"],"sg_html_popup":["popup-builder"],"slim_stats_archive":["wp-slimstat"],"sg_image_popup":["popup-builder"],"sg_popup_addons":["popup-builder"],"slim_events_archive":["wp-slimstat"],"formmaker_display_options":["form-maker","contact-form-maker"],"cntctfrm_field":["contact-form-plugin"],"relevanssi":["relevanssi"],"sgpb_subscribers":["popup-builder"],"sg_shortcode_popup":["popup-builder"],"ratings":["wp-postratings"],"formmaker_groups":["form-maker","contact-form-maker"],"formmaker_backup":["form-maker","contact-form-maker"],"formmaker_query":["form-maker","contact-form-maker"],"cerber_uss":["wp-cerber"],"formmaker":["form-maker","contact-form-maker"],"formmaker_themes":["form-maker","contact-form-maker"],"wpgdprc_log":["wp-gdpr-compliance"],"wpgdprc_consents":["wp-gdpr-compliance"],"formmaker_submits":["form-maker","contact-form-maker"],"cerber_sets":["wp-cerber"],"cerber_files":["wp-cerber"],"formmaker_views":["form-maker","contact-form-maker"],"slim_events":["wp-slimstat"],"formmaker_blocked":["form-maker","contact-form-maker"],"cbnetpo_ping_optimizer":["wordpress-ping-optimizer"],"ms_snippets":["code-snippets"],"formmaker_sessions":["form-maker","contact-form-maker"],"sgpb_subscription_error_log":["popup-builder"],"responsive_menu":["responsive-menu"],"relevanssi_log":["relevanssi"],"sg_popup_addons_connection":["popup-builder"],"em_events":["events-manager"],"evf_entries":["everest-forms"],"ber_countries":["wp-cerber"],"ber_files":["wp-cerber"],"ber_lab":["wp-cerber"],"ber_lab_ip":["wp-cerber"],"ber_lab_net":["wp-cerber"],"ber_log":["wp-cerber"],"ber_qmem":["wp-cerber"],"ber_traffic":["wp-cerber"],"odb_logs":["rvg-optimize-database"],"yikes_easy_mc_forms":["yikes-inc-easy-mailchimp-extender"],"wpeditor_settings":["wp-editor"],"mailpoet_custom_fields":["mailpoet"],"evf_entrymeta":["everest-forms"],"ber_acl":["wp-cerber"],"evf_sessions":["everest-forms"],"mailpoet_feature_flags":["mailpoet"],"mailpoet_log":["mailpoet"],"mailpoet_mapping_to_external_entities":["mailpoet"],"pmxi_files":["wp-all-import"],"download_log":["download-monitor"],"pmxi_history":["wp-all-import"],"pmxi_images":["wp-all-import"],"pmxi_imports":["wp-all-import"],"pmxi_posts":["wp-all-import"],"pmxi_templates":["wp-all-import"],"mailpoet_newsletter_links":["mailpoet"],"ber_blocks":["wp-cerber"],"ig_contacts_ips":["email-subscribers"],"pollsa":["wp-polls"],"es_deliverreport":["email-subscribers"],"ig_lists":["email-subscribers"],"ig_lists_contacts":["email-subscribers"],"ig_mailing_queue":["email-subscribers"],"em_locations":["events-manager"],"em_meta":["events-manager"],"em_bookings":["events-manager","event-monster"],"ai1ec_event_category_meta":["all-in-one-event-calendar"],"ai1ec_event_feeds":["all-in-one-event-calendar"],"ig_sending_queue":["email-subscribers"],"ai1ec_event_instances":["all-in-one-event-calendar"],"ai1ec_events":["all-in-one-event-calendar"],"login_fails":["login-lockdown"],"es_emaillist":["email-subscribers"],"ahm_download_stats":["download-manager"],"ig_forms":["email-subscribers"],"es_notification":["email-subscribers","gnaritas-amazon-ses"],"es_sentdetails":["email-subscribers"],"es_subscriber_ips":["email-subscribers"],"es_templatetable":["email-subscribers"],"wp_rp_tags":["wordpress-23-related-posts-plugin"],"ahm_emails":["download-manager"],"ig_blocked_emails":["email-subscribers"],"ig_campaigns":["email-subscribers"],"ig_contacts":["email-subscribers"],"em_tickets":["events-manager","event-monster"],"hugeit_slider_slide":["slider-image"],"hugeit_slider_slider":["slider-image"],"mailpoet_newsletter_option":["mailpoet"],"mailpoet_forms":["mailpoet"],"pollsip":["wp-polls"],"mailpoet_user_flags":["mailpoet"],"mailpoet_scheduled_tasks":["mailpoet"],"mailpoet_segments":["mailpoet"],"mailpoet_sending_queues":["mailpoet"],"mailpoet_settings":["mailpoet"],"mailpoet_statistics_clicks":["mailpoet"],"mailpoet_statistics_forms":["mailpoet"],"mailpoet_statistics_newsletters":["mailpoet"],"mailpoet_statistics_unsubscribes":["mailpoet"],"mailpoet_statistics_woocommerce_purchases":["mailpoet"],"mailpoet_stats_notifications":["mailpoet"],"mailpoet_subscriber_custom_field":["mailpoet"],"mailpoet_subscriber_ips":["mailpoet"],"mailpoet_subscriber_segment":["mailpoet"],"mailpoet_subscribers":["mailpoet"],"aryo_activity_log":["aryo-activity-log"],"mailpoet_newsletters":["mailpoet"],"map_locations":["wp-google-map-plugin"],"masterslider_options":["master-slider"],"masterslider_sliders":["master-slider"],"maxbuttons_collections":["maxbuttons"],"create_map":["wp-google-map-plugin"],"group_map":["wp-google-map-plugin"],"maxbuttons_collections_trans":["maxbuttons"],"maxbuttonsv3":["maxbuttons"],"social_users":["nextend-facebook-connect","nextend-google-connect","nextend-twitter-connect"],"cpd_counter":["count-per-day"],"snippets":["code-snippets"],"sg_popup_settings":["popup-builder"],"em_tickets_bookings":["events-manager"],"lockdowns":["login-lockdown"],"mailpoet_scheduled_task_subscribers":["mailpoet"],"mailpoet_statistics_opens":["mailpoet"],"nxs_query":["social-networks-auto-poster-facebook-twitter-g"],"dlm_order_transaction":["download-monitor"],"post_views":["post-views-counter","author-page-views","access-expiration"],"nxs_log":["social-networks-auto-poster-facebook-twitter-g"],"pollsq":["wp-polls"],"dlm_order":["download-monitor"],"dlm_order_customer":["download-monitor"],"dlm_order_item":["download-monitor"],"dlm_session":["download-monitor"],"statify":["statify"],"mailpoet_newsletter_option_fields":["mailpoet"],"mailpoet_newsletter_posts":["mailpoet"],"mailpoet_newsletter_segment":["mailpoet"],"mailpoet_newsletter_templates":["mailpoet"],"wsal_options":["wp-security-audit-log"],"simple_history_contexts":["simple-history"],"wsal_metadata":["wp-security-audit-log","activity-log-mainwp"],"visual_form_builder_fields":["visual-form-builder"],"visual_form_builder_forms":["visual-form-builder"],"wsal_occurrences":["wp-security-audit-log","activity-log-mainwp"],"visual_form_builder_entries":["visual-form-builder"],"mappress_posts":["mappress-google-maps-for-wordpress"],"cleantalk_sessions":["cleantalk-spam-protect"],"cleantalk_sfw":["cleantalk-spam-protect"],"login_redirects":["peters-login-redirect"],"cleantalk_sfw_logs":["cleantalk-spam-protect"],"mappress_maps":["mappress-google-maps-for-wordpress"],"simple_history":["simple-history"],"icwp_wpsf_traffic":["wp-simple-firewall"],"icwp_wpsf_statistics":["wp-simple-firewall"],"optin_meta":["wordpress-popup"],"optins":["wordpress-popup"],"hustle_modules":["wordpress-popup"],"wdi_feeds":["wd-instagram-feed"],"icwp_wpsf_sessions":["wp-simple-firewall"],"icwp_wpsf_scanner":["wp-simple-firewall"],"strong_views":["strong-testimonials"],"hustle_tracking":["wordpress-popup"],"pmpro_discount_codes":["paid-memberships-pro"],"pmpro_discount_codes_levels":["paid-memberships-pro"],"hustle_modules_meta":["wordpress-popup"],"pmpro_discount_codes_uses":["paid-memberships-pro"],"hustle_entries_meta":["wordpress-popup"],"hustle_entries":["wordpress-popup"],"pmpro_membership_levels":["paid-memberships-pro"],"pmpro_membership_orders":["paid-memberships-pro"],"pmpro_memberships_categories":["paid-memberships-pro"],"wdi_themes":["wd-instagram-feed"],"icwp_wpsf_audit_trail":["wp-simple-firewall"],"icwp_wpsf_geoip":["wp-simple-firewall"],"icwp_wpsf_ip_lists":["wp-simple-firewall"],"icwp_wpsf_notes":["wp-simple-firewall"],"icwp_wpsf_reporting":["wp-simple-firewall"],"pmpro_memberships_pages":["paid-memberships-pro"],"pmpro_memberships_users":["paid-memberships-pro"],"pmpro_membership_levelmeta":["paid-memberships-pro"],"gg_galleries_resources":["gallery-by-supsystic"],"gde_profiles":["google-document-embedder"],"gg_galleries_excluded":["gallery-by-supsystic"],"rank_math_sc_analytics":["seo-by-rank-math"],"gde_secure":["google-document-embedder"],"gg_galleries":["gallery-by-supsystic"],"gg_folders":["gallery-by-supsystic"],"gg_cdn":["gallery-by-supsystic"],"gg_attributes":["gallery-by-supsystic"],"bpspro_seclog_ignore":["bulletproof-security"],"bpspro_mscan":["bulletproof-security"],"bpspro_login_security":["bulletproof-security"],"bpspro_db_backup":["bulletproof-security"],"sg_action":["backup"],"sg_config":["backup"],"gg_membership_presets":["gallery-by-supsystic"],"gg_image_optimize":["gallery-by-supsystic"],"sg_schedule":["backup"],"gg_photos":["gallery-by-supsystic"],"rank_math_404_logs":["seo-by-rank-math","404-monitor"],"rank_math_redirections_cache":["seo-by-rank-math","redirections"],"gg_photos_pos":["gallery-by-supsystic"],"wpml_mails":["wp-mail-logging"],"podsrel":["pods"],"filemeta":["advanced-code-editor"],"wsluserscontacts":["wordpress-social-login"],"wslusersprofiles":["wordpress-social-login"],"rank_math_internal_links":["seo-by-rank-math"],"rank_math_internal_meta":["seo-by-rank-math"],"rank_math_redirections":["seo-by-rank-math","redirections"],"gg_tags":["gallery-by-supsystic"],"gg_stats":["gallery-by-supsystic"],"gg_settings_sets":["gallery-by-supsystic"],"gg_settings_presets":["gallery-by-supsystic"],"gg_photos_settings":["gallery-by-supsystic"],"give_sessions":["give"],"learnpress_section_items":["learnpress"],"learnpress_sections":["learnpress"],"learnpress_sessions":["learnpress"],"hugeit_maps_polygons":["google-maps"],"hfcm_scripts":["header-footer-code-manager"],"hugeit_maps_polylines":["google-maps"],"learnpress_user_itemmeta":["learnpress"],"wdslayer":["slider-wd"],"learnpress_user_items":["learnpress"],"wdsslider":["slider-wd"],"hugeit_maps_markers":["google-maps"],"learnpress_review_logs":["learnpress"],"learnpress_order_items":["learnpress"],"learnpress_quiz_questions":["learnpress"],"give_donormeta":["give"],"huge_itportfolio_images":["portfolio-gallery"],"huge_itportfolio_portfolios":["portfolio-gallery"],"hugeit_maps_circles":["google-maps"],"hugeit_maps_directions":["google-maps"],"give_commentmeta":["give"],"give_comments":["give"],"give_customermeta":["give"],"give_customers":["give"],"give_donationmeta":["give"],"give_donors":["give"],"learnpress_question_answers":["learnpress"],"give_formmeta":["give"],"give_logmeta":["give"],"give_logs":["give"],"give_paymentmeta":["give"],"give_sequential_ordering":["give"],"hugeit_maps_maps":["google-maps"],"learnpress_order_itemmeta":["learnpress"],"yuzoviews":["yuzo-related-post"],"learnpress_question_answermeta":["learnpress"],"wdsslide":["slider-wd"],"hugeit_maps_stores":["google-maps"],"pmxe_exports":["wp-all-export"],"wpb2d_processed_dbtables":["wordpress-backup-to-dropbox"],"redirects":["eps-301-redirects","301-redirects","links-auditor"],"pmxe_google_cats":["wp-all-export"],"pmxe_posts":["wp-all-export"],"pmxe_templates":["wp-all-export"],"edd_customermeta":["easy-digital-downloads"],"edd_customers":["easy-digital-downloads"],"wpb2d_excluded_files":["wordpress-backup-to-dropbox"],"wpb2d_options":["wordpress-backup-to-dropbox"],"wpb2d_processed_files":["wordpress-backup-to-dropbox"],"dynamic_widgets":["dynamic-widgets"],"ktaisession":["ktai-style"],"wprss_logs":["wp-rss-aggregator"],"wpfront_ure_options":["wpfront-user-role-editor"],"wpfront_ure_login_redirect":["wpfront-user-role-editor"],"gmp_options":["google-maps-easy"],"gmp_options_categories":["google-maps-easy"],"gmp_usage_stat":["google-maps-easy"],"woocommerce_ir":["persian-woocommerce"],"xcloner_scheduler":["xcloner-backup-and-restore"],"adrotate_tracker":["adrotate"],"gmp_membership_presets":["google-maps-easy"],"gmp_modules_type":["google-maps-easy"],"wplc_roi_conversions":["wp-live-chat-support"],"cf7_vdata":["advanced-cf7-db"],"cf7_vdata_entry":["advanced-cf7-db"],"wplc_departments":["wp-live-chat-support"],"wplc_offline_messages":["wp-live-chat-support"],"rp4wp_cache":["related-posts-for-wp"],"rio_process_queue":["robin-image-optimizer"],"wplc_roi_goals":["wp-live-chat-support"],"fm_log":["file-manager"],"gmp_icons":["google-maps-easy"],"gmp_maps":["google-maps-easy"],"gmp_marker_groups":["google-maps-easy"],"gmp_marker_groups_relation":["google-maps-easy"],"gmp_markers":["google-maps-easy"],"gmp_modules":["google-maps-easy"],"cn_social_icon":["easy-social-icons"],"auto_updates":["companion-auto-update"],"wplc_webhooks":["wp-live-chat-support"],"wp_seo_cache":["seo-redirection","404-redirection-manager"],"adrotate_stats_archive":["adrotate"],"adrotate_stats":["adrotate"],"adrotate_schedule":["adrotate"],"adrotate_linkmeta":["adrotate"],"adrotate_groups":["adrotate"],"adrotate":["adrotate"],"bookingdates":["booking"],"huge_it_videogallery_videos":["gallery-video"],"huge_it_videogallery_galleries":["gallery-video"],"wp_seo_redirection_log":["seo-redirection","404-redirection-manager"],"wp_seo_redirection":["seo-redirection","404-redirection-manager"],"wp_seo_404_links":["seo-redirection","404-redirection-manager"],"alm":["ajax-load-more"],"subscribe2":["subscribe2"],"mail_bank":["wp-mail-bank"],"mail_bank_email_logs":["wp-mail-bank"],"mail_bank_logs":["wp-mail-bank"],"aps_social_icons":["accesspress-social-icons"],"mail_bank_meta":["wp-mail-bank"],"wplc_chat_triggers":["wp-live-chat-support"],"aalb_asin_response":["amazon-associates-link-builder"],"_wsd_plugin_scans":["wp-security-scan"],"_wsd_plugin_scan":["wp-security-scan"],"_wsd_plugin_alerts":["wp-security-scan","secure-wordpress"],"wplc_custom_fields":["wp-live-chat-support"],"_wsd_plugin_live_traffic":["wp-security-scan","secure-wordpress"],"wplc_chat_sessions":["wp-live-chat-support"],"wplc_chat_msgs":["wp-live-chat-support"],"wplc_chat_ratings":["wp-live-chat-support"],"wc_comments_subscription":["wpdiscuz"],"wc_avatars_cache":["wpdiscuz"],"wc_users_voted":["wpdiscuz"],"modula_images":["modula-best-grid-gallery"],"booking":["booking","asi-taxi-booking"],"modula":["modula-best-grid-gallery"],"wc_follow_users":["wpdiscuz"],"wc_phrases":["wpdiscuz"],"adrotate_transactions":["adrotate"],"swpm_members_tbl":["simple-membership"],"limit_login":["wp-limit-login-attempts"],"stream_meta":["stream"],"stream":["stream"],"gwolle_gb_log":["gwolle-gb"],"gwolle_gb_entries":["gwolle-gb"],"xyz_ips_short_code":["insert-php-code-snippet"],"xsg_sitemap_meta":["www-xml-sitemap-generator-org"],"uam_accessgroups":["user-access-manager"],"swpm_membership_tbl":["simple-membership"],"cp_calculated_fields_form_settings":["calculated-fields-form"],"cp_calculated_fields_form_revision":["calculated-fields-form"],"cp_calculated_fields_form_posts":["calculated-fields-form"],"cp_calculated_fields_form_discount_codes":["calculated-fields-form"],"contactformmaker_views":["contact-form-builder"],"contactformmaker_themes":["contact-form-builder"],"contactformmaker_submits":["contact-form-builder"],"contactformmaker_blocked":["contact-form-builder"],"contactformmaker":["contact-form-builder"],"trp_gettext_en_us":["translatepress-multilingual"],"swpm_membership_meta_tbl":["simple-membership"],"wd_fb_option":["wd-facebook-feed"],"swpm_payments_tbl":["simple-membership"],"_settings":["visitors-traffic-real-time-statistics","photo-video-store"],"_browsers":["visitors-traffic-real-time-statistics"],"_countries":["visitors-traffic-real-time-statistics","photo-video-store","mymovingloads-leads-form"],"_daily_visitors_stats":["visitors-traffic-real-time-statistics"],"_hits":["visitors-traffic-real-time-statistics"],"_keywords":["visitors-traffic-real-time-statistics","project-supremacy"],"_online_users":["visitors-traffic-real-time-statistics"],"_recent_visitors":["visitors-traffic-real-time-statistics"],"aepc_custom_audiences":["pixel-caffeine"],"aepc_logs":["pixel-caffeine"],"_refering_sites":["visitors-traffic-real-time-statistics"],"_search_engine_crawlers":["visitors-traffic-real-time-statistics"],"_search_engines":["visitors-traffic-real-time-statistics"],"_searching_visits":["visitors-traffic-real-time-statistics"],"_title_traffic":["visitors-traffic-real-time-statistics"],"wd_fb_theme":["wd-facebook-feed"],"_visitors":["visitors-traffic-real-time-statistics"],"_visits_time":["visitors-traffic-real-time-statistics"],"eo_events":["event-organiser"],"eo_venuemeta":["event-organiser"],"_post_sched_settings":["blog2social"],"_posts":["blog2social"],"_posts_network_details":["blog2social"],"_posts_sched_details":["blog2social"],"_user":["blog2social"],"_user_contact":["blog2social"],"_user_network_settings":["blog2social"],"wd_fb_data":["wd-facebook-feed"],"wd_fb_info":["wd-facebook-feed"],"wd_fb_shortcode":["wd-facebook-feed"],"trp_gettext_":["translatepress-multilingual"],"uam_accessgroup_to_object":["user-access-manager"],"ip_geo_block_stat":["ip-geo-block"],"ip_geo_block_cache":["ip-geo-block"],"cfs_values":["custom-field-suite"],"fv_player_players":["fv-wordpress-flowplayer"],"cfs_sessions":["custom-field-suite"],"ip_geo_block_logs":["ip-geo-block"],"bad_behavior":["bad-behavior"],"ninja_table_items":["ninja-tables"],"ac_sent_history_lite":["woocommerce-abandoned-cart"],"huge_it_contact_contacts":["forms-contact"],"huge_it_contact_contacts_fields":["forms-contact"],"huge_it_contact_general_options":["forms-contact"],"huge_it_contact_style_fields":["forms-contact"],"wassup_tmp":["wassup"],"metaseo_images":["wp-meta-seo"],"iqblock_logging":["iq-block-country"],"visitor_maps_wo":["visitor-maps"],"visitor_maps_st":["visitor-maps"],"huge_it_contact_styles":["forms-contact"],"visitor_maps_ge":["visitor-maps"],"ac_guest_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"user_login_log":["crazy-bone"],"ariadminer_connections":["ari-adminer"],"huge_it_contact_subscribers":["forms-contact"],"huge_it_contact_submission":["forms-contact"],"grp_google_place":["widget-google-reviews","wp-social-seo"],"ac_email_templates_lite":["woocommerce-abandoned-cart"],"pps_statistics":["popup-by-supsystic"],"pts_modules":["pricing-table-by-supsystic"],"pts_modules_type":["pricing-table-by-supsystic"],"pts_tables":["pricing-table-by-supsystic"],"pts_usage_stat":["pricing-table-by-supsystic"],"cscs_db_subscriptions":["igniteup"],"external_links_masks":["wp-noexternallinks","mihdan-no-external-links"],"top_ten_daily":["top-10"],"external_links_logs":["wp-noexternallinks","mihdan-no-external-links"],"pps_usage_stat":["popup-by-supsystic"],"wpms_links":["wp-meta-seo"],"pps_subscribers":["popup-by-supsystic"],"pps_popup_show_pages":["popup-by-supsystic"],"ac_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"pps_popup_show_categories":["popup-by-supsystic"],"pps_popup":["popup-by-supsystic"],"pps_modules_type":["popup-by-supsystic"],"pps_modules":["popup-by-supsystic"],"top_ten":["top-10"],"pps_countries":["popup-by-supsystic"],"cftemail_forms":["contact-form-to-email"],"cftemail_messages":["contact-form-to-email"],"statpress":["newstatpress","statpress-seolution","statpresscn"],"wassup":["wassup"],"xyz_ihs_short_code":["insert-html-snippet"],"wassup_meta":["wassup"],"grp_google_review":["widget-google-reviews","wp-social-seo"],"supsystic_tbl_woo_columns":["data-tables-generator-by-supsystic"],"supsystic_tbl_tables":["data-tables-generator-by-supsystic"],"my_calendar_category_relationships":["my-calendar"],"finaltilesimages":["final-tiles-grid-gallery-lite"],"leafletmapsmarker_markers":["leaflet-maps-marker"],"supsystic_tbl_rows":["data-tables-generator-by-supsystic"],"similar_posts":["similar-posts"],"hidemysitesecure":["hide-my-site","wp-privacy"],"wpadm_ga_cache":["analytics-counter"],"my_calendar_locations":["my-calendar"],"my_calendar_events":["my-calendar"],"my_calendar_categories":["my-calendar"],"finaltiles_gallery_images":["final-tiles-grid-gallery-lite"],"my_calendar":["my-calendar"],"fo_elements":["font-organizer"],"ufbl_forms":["ultimate-form-builder-lite"],"ufbl_entries":["ultimate-form-builder-lite"],"searchmeter_recent":["search-meter"],"fo_usable_fonts":["font-organizer"],"searchmeter":["search-meter"],"leafletmapsmarker_layers":["leaflet-maps-marker"],"finaltilesgalleries":["final-tiles-grid-gallery-lite"],"mo_openid_linked_user":["miniorange-login-openid"],"supsystic_tbl_columns":["data-tables-generator-by-supsystic"],"em_theme_metas":["easy-modal"],"gpi_page_reports":["google-pagespeed-insights"],"gpi_page_stats":["google-pagespeed-insights"],"em_themes":["easy-modal"],"gpi_summary_snapshots":["google-pagespeed-insights"],"wpdatatables":["wpdatatables"],"gpi_custom_urls":["google-pagespeed-insights"],"wpdatatables_columns":["wpdatatables"],"gpi_page_blacklist":["google-pagespeed-insights"],"gpi_api_error_logs":["google-pagespeed-insights"],"em_modals":["easy-modal"],"supsystic_tbl_diagrams":["data-tables-generator-by-supsystic"],"em_modal_metas":["easy-modal"],"wpdatacharts":["wpdatatables"],"finaltiles_gallery":["final-tiles-grid-gallery-lite"],"wpmcleaner":["media-cleaner"],"wp_pro_quiz_statistic_ref":["wp-pro-quiz"],"yoppoll_votes":["yop-poll"],"wp_pro_quiz_form":["wp-pro-quiz"],"yop2_poll_logs":["yop-poll"],"yop2_poll_questionmeta":["yop-poll"],"lrgawidget_global_settings":["lara-google-analytics"],"yop2_poll_questions":["yop-poll"],"wp_pro_quiz_lock":["wp-pro-quiz"],"yop2_poll_votes_custom_fields":["yop-poll"],"yop2_poll_results":["yop-poll"],"yoppoll_logs":["yop-poll"],"wp_pro_quiz_master":["wp-pro-quiz"],"yoppoll_templates":["yop-poll"],"yoppoll_subelements":["yop-poll"],"yoppoll_skins":["yop-poll"],"wp_pro_quiz_prerequisite":["wp-pro-quiz"],"wppa_albums":["wp-photo-album-plus"],"yoppoll_polls":["yop-poll"],"wp_pro_quiz_question":["wp-pro-quiz"],"yop2_poll_templates":["yop-poll"],"yoppoll_elements":["yop-poll"],"bookly_shop":["bookly-responsive-appointment-booking-tool"],"yoppoll_bans":["yop-poll"],"yop2_polls":["yop-poll"],"wp_pro_quiz_statistic":["wp-pro-quiz"],"yop2_pollmeta":["yop-poll"],"cfs_usage_stat":["contact-form-by-supsystic"],"wp_pro_quiz_category":["wp-pro-quiz"],"hsa_plugin":["horizontal-scrolling-announcement"],"gmedia_term_relationships":["grand-media"],"wp_pro_quiz_template":["wp-pro-quiz"],"cegg_product":["content-egg"],"huge_it_reslider_sliders":["slider"],"huge_it_reslider_slides":["slider"],"bookly_staff_services":["bookly-responsive-appointment-booking-tool"],"bookly_stats":["bookly-responsive-appointment-booking-tool"],"cfs_contacts":["contact-form-by-supsystic"],"wpsc_visitors":["wp-e-commerce"],"wpsc_visitor_meta":["wp-e-commerce"],"frmt_form_entry":["forminator"],"frmt_form_entry_meta":["forminator"],"frmt_form_views":["forminator"],"gallery_galleriesslides":["slideshow-gallery"],"taxonomymeta":["taxonomy-metadata","ultimate-taxonomy-manager","wp-symposium-pro","bulk-photo-to-product-importer-extension-for-woocommerce","ultimate-cms","magic-wp-coupons","manage-issue-based-magazine","seo-plus","multiupload-in-custom-taxonomy","travel-routes"],"bookly_sub_services":["bookly-responsive-appointment-booking-tool"],"cfs_countries":["contact-form-by-supsystic"],"cegg_price_history":["content-egg"],"cegg_price_alert":["content-egg"],"cegg_autoblog":["content-egg"],"mp_timetable_data":["mp-timetable"],"gallery_galleries":["slideshow-gallery"],"rt_rtm_activity":["buddypress-media"],"rt_rtm_api":["buddypress-media"],"rt_rtm_media":["buddypress-media"],"rt_rtm_media_meta":["buddypress-media"],"email_log":["email-log"],"mo2f_user_details":["miniorange-2-factor-authentication"],"mo2f_user_login_info":["miniorange-2-factor-authentication"],"mo_campaign_log":["mailoptin"],"wfu_userdata":["wp-file-upload"],"wfu_log":["wp-file-upload"],"cfs_statistics":["contact-form-by-supsystic"],"p2pmeta":["posts-to-posts","badgeos","gamipress","wp-ticket","employee-scheduler","campus-directory","software-issue-manager","wp-easy-events","open-badge-factory","rtbiz"],"cfs_modules_type":["contact-form-by-supsystic"],"wp_pro_quiz_toplist":["wp-pro-quiz"],"wpsc_meta":["wp-e-commerce"],"cfs_modules":["contact-form-by-supsystic"],"cfs_membership_presets":["contact-form-by-supsystic"],"cfs_forms":["contact-form-by-supsystic"],"mo_conversions":["mailoptin"],"mo_campaign_logmeta":["mailoptin"],"bookly_staff":["bookly-responsive-appointment-booking-tool"],"bookly_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"page_visit_history":["page-visit-counter"],"page_visit":["page-visit-counter"],"logger_ginger":["ginger"],"wfu_dbxqueue":["wp-file-upload"],"p2p":["posts-to-posts","badgeos","gamipress","wp-ticket","employee-scheduler","software-issue-manager","wp-easy-events","campus-directory","open-badge-factory","rtbiz"],"oses_emails":["wp-ses"],"oses_clicks":["wp-ses"],"eig_sso":["eig-sso"],"wpsc_product_rating":["wp-e-commerce"],"wpsc_purchase_logs":["wp-e-commerce"],"wpsc_purchase_meta":["wp-e-commerce"],"ta_link_clicks":["thirstyaffiliates"],"yop2_poll_bans":["yop-poll"],"wpsc_region_tax":["wp-e-commerce"],"ta_link_clicks_meta":["thirstyaffiliates"],"wpsc_submited_form_data":["wp-e-commerce"],"gallery_slides":["slideshow-gallery"],"yop2_poll_custom_fields":["yop-poll"],"dokan_vendor_balance":["dokan-lite"],"yop2_poll_answers":["yop-poll"],"quotescollection":["quotes-collection"],"mlw_questions":["quiz-master-next"],"mlw_quizzes":["quiz-master-next"],"gmedia_term":["grand-media"],"gmedia_meta":["grand-media"],"gmedia_log":["grand-media"],"convertkit_user_history":["convertkit"],"wpbdp_form_fields":["business-directory-plugin"],"wpbdp_fees":["business-directory-plugin"],"gmedia":["grand-media"],"mclean_scan":["media-cleaner"],"mclean_refs":["media-cleaner"],"wprm_ratings":["wp-recipe-maker"],"mlw_results":["quiz-master-next"],"mech_statistik":["mechanic-visitor-counter"],"qss":["squirrly-seo","quickseo-by-squirrly"],"mo2f_network_blocked_ips":["miniorange-2-factor-authentication"],"wppa_session":["wp-photo-album-plus"],"wppa_rating":["wp-photo-album-plus"],"mo2f_network_email_sent_audit":["miniorange-2-factor-authentication"],"mo2f_network_transactions":["miniorange-2-factor-authentication"],"groups_capability":["groups"],"groups_group":["groups"],"groups_group_capability":["groups"],"groups_user_capability":["groups"],"groups_user_group":["groups"],"wppa_photos":["wp-photo-album-plus"],"crellyslider_elements":["crelly-slider"],"wpbdp_listing_fees":["business-directory-plugin"],"mediafromftp_log":["media-from-ftp"],"crellyslider_sliders":["crelly-slider"],"gmwd_polygons":["wd-google-maps"],"sdm_downloads":["simple-download-monitor"],"gdpr_consent":["gdpr-framework"],"mo_optin_campaigns":["mailoptin"],"mo_optin_campaignmeta":["mailoptin"],"gdpr_userlogs":["gdpr-framework"],"gmedia_term_meta":["grand-media"],"gmwd_circles":["wd-google-maps"],"gmwd_maps":["wd-google-maps"],"gmwd_mapstyles":["wd-google-maps"],"gmwd_markercategories":["wd-google-maps"],"gmwd_markers":["wd-google-maps"],"gmwd_options":["wd-google-maps"],"gmwd_polylines":["wd-google-maps"],"wpbdp_listings":["business-directory-plugin"],"gmwd_rectangles":["wd-google-maps"],"wpbdp_submit_state":["business-directory-plugin"],"wpbdp_plans":["business-directory-plugin"],"flag_pictures":["flash-album-gallery"],"flag_gallery":["flash-album-gallery"],"flag_comments":["flash-album-gallery"],"flag_album":["flash-album-gallery"],"wpbdp_payments_items":["business-directory-plugin"],"wpbdp_payments":["business-directory-plugin"],"wpbdp_logs":["business-directory-plugin"],"gmwd_shortcodes":["wd-google-maps"],"gmwd_themes":["wd-google-maps"],"mlw_qm_audit_trail":["quiz-master-next"],"crellyslider_nonces":["crelly-slider"],"wppa_iptc":["wp-photo-album-plus"],"yop2_poll_answermeta":["yop-poll"],"apsl_users_social_profile_details":["accesspress-social-login-lite"],"gdbc_attempts":["goodbye-captcha"],"dokan_withdraw":["dokan-lite"],"bookly_holidays":["bookly-responsive-appointment-booking-tool"],"bookly_messages":["bookly-responsive-appointment-booking-tool"],"bookly_notifications":["bookly-responsive-appointment-booking-tool"],"wpsc_also_bought":["wp-e-commerce","wp-e-commerce-cross-sales"],"bookly_payments":["bookly-responsive-appointment-booking-tool"],"wpsc_cart_contents":["wp-e-commerce"],"wpsc_cart_item_meta":["wp-e-commerce"],"mailerlite_forms":["official-mailerlite-sign-up-forms"],"wpsm_tables":["table-maker"],"bookly_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"bookly_sent_notifications":["bookly-responsive-appointment-booking-tool"],"dokan_orders":["dokan-lite"],"stock_log":["woocommerce-stock-manager"],"wppa_exif":["wp-photo-album-plus"],"bookly_series":["bookly-responsive-appointment-booking-tool"],"say_what_strings":["say-what"],"wpsc_checkout_forms":["wp-e-commerce"],"structuring_markup":["wp-structuring-markup"],"bookly_services":["bookly-responsive-appointment-booking-tool"],"wppa_comments":["wp-photo-album-plus"],"subscribe_reloaded_subscribers":["subscribe-to-comments-reloaded"],"wpsc_claimed_stock":["wp-e-commerce"],"wpsc_coupon_codes":["wp-e-commerce"],"wpsc_currency_list":["wp-e-commerce"],"wpsc_download_status":["wp-e-commerce"],"dokan_refund":["dokan-lite"],"dokan_announcement":["dokan-lite"],"wppa_index":["wp-photo-album-plus"],"mainwp_stream_meta":["mainwp-child-reports"],"mo_email_campaigns":["mailoptin"],"crellyslider_slides":["crelly-slider"],"mo2f_network_whitelisted_ips":["miniorange-2-factor-authentication"],"yasr_log":["yet-another-stars-rating"],"yasr_multi_set":["yet-another-stars-rating"],"yasr_multi_set_fields":["yet-another-stars-rating"],"spidercalendar_calendar":["spider-event-calendar"],"spidercalendar_event":["spider-event-calendar"],"spidercalendar_event_category":["spider-event-calendar"],"spidercalendar_theme":["spider-event-calendar"],"yasr_multi_values":["yet-another-stars-rating"],"wpuf_transaction":["wp-user-frontend"],"mainwp_stream_context":["mainwp-child-reports"],"wp125_ads":["wp125"],"mainwp_stream":["mainwp-child-reports"],"pz_linkcard":["pz-linkcard"],"rt_rtm_media_interaction":["buddypress-media"],"fb3d_pages":["interactive-3d-flipbook-powered-physics-engine","unreal-flipbook-addon-for-visual-composer"],"mo_email_campaignmeta":["mailoptin"],"cwa":["wp-custom-widget-area"],"wpbackitup_job_tasks":["wp-backitup"],"wpbackitup_job_items":["wp-backitup"],"wpbackitup_job_control":["wp-backitup"],"bookly_appointments":["bookly-responsive-appointment-booking-tool"],"bookly_categories":["bookly-responsive-appointment-booking-tool"],"bookly_customer_appointments":["bookly-responsive-appointment-booking-tool"],"bookly_customers":["bookly-responsive-appointment-booking-tool"],"wpuf_subscribers":["wp-user-frontend"],"spidercalendar_widget_theme":["spider-event-calendar"],"wpforo_activity":["wpforo"],"ab_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"unitegallery_categories":["unite-gallery-lite"],"unitegallery_galleries":["unite-gallery-lite"],"ab_sent_notifications":["bookly-responsive-appointment-booking-tool"],"ab_series":["bookly-responsive-appointment-booking-tool"],"iowd_images":["image-optimizer-wd"],"ab_services":["bookly-responsive-appointment-booking-tool"],"ab_staff":["bookly-responsive-appointment-booking-tool"],"ab_staff_preference_orders":["bookly-responsive-appointment-booking-tool"],"zerospam_blocked_ips":["zero-spam"],"vod_upload":["vod-infomaniak"],"zerospam_log":["zero-spam"],"ab_staff_services":["bookly-responsive-appointment-booking-tool"],"ab_stats":["bookly-responsive-appointment-booking-tool"],"ab_sub_services":["bookly-responsive-appointment-booking-tool"],"unitegallery_items":["unite-gallery-lite"],"m_tables":["table-maker"],"user_registration_sessions":["user-registration"],"wpforo_accesses":["wpforo"],"useronline":["wp-useronline","mingle-users-online","usermap"],"vod_video":["vod-infomaniak"],"vod_playlist":["vod-infomaniak"],"ulike_comments":["wp-ulike"],"itro_plugin_field":["itro-popup"],"ab_messages":["bookly-responsive-appointment-booking-tool"],"ab_notifications":["bookly-responsive-appointment-booking-tool"],"instapage_debug":["instapage"],"instapage_options":["instapage"],"instapage_pages":["instapage"],"wpforo_profiles":["wpforo"],"wpforo_subscribes":["wpforo"],"ab_holidays":["bookly-responsive-appointment-booking-tool"],"itro_plugin_option":["itro-popup"],"ab_customers":["bookly-responsive-appointment-booking-tool"],"vod_player":["vod-infomaniak"],"ab_customer_appointments":["bookly-responsive-appointment-booking-tool"],"wpforo_languages":["wpforo"],"vod_folder":["vod-infomaniak"],"ab_payments":["bookly-responsive-appointment-booking-tool"],"ab_coupons":["bookly-responsive-appointment-booking-tool"],"ab_coupon_services":["bookly-responsive-appointment-booking-tool"],"ab_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"ab_categories":["bookly-responsive-appointment-booking-tool"],"ab_appointments":["bookly-responsive-appointment-booking-tool"],"ulike_forums":["wp-ulike"],"wpforo_votes":["wpforo"],"translations_log":["transposh-translation-filter-for-wordpress"],"uji_subscriptions":["uji-countdown"],"translations":["transposh-translation-filter-for-wordpress"],"wpforo_topics":["wpforo"],"uji_counter":["uji-countdown"],"wpforo_visits":["wpforo"],"wpforo_tags":["wpforo"],"irecommendthis_votes":["i-recommend-this"],"wpforo_forums":["wpforo"],"ulike":["wp-ulike"],"wpforo_posts":["wpforo"],"wpforo_phrases":["wpforo"],"econtactform7_lookup":["save-contact-form-7"],"wpforo_usergroups":["wpforo"],"ulike_activities":["wp-ulike"],"wpforo_views":["wpforo"],"wpforo_likes":["wpforo"],"audit_trail":["audit-trail"],"rich_web_slider_effect4_loader":["slider-images"],"custom_404_pro_options":["custom-404-pro"],"h5p_contents":["h5p"],"weforms_entries":["weforms"],"mainwp_wp_settings_backup":["mainwp"],"sp_email_logs":["sparkpost"],"spider_video_player_player":["player"],"mainwp_wp_sync":["mainwp"],"weforms_entrymeta":["weforms"],"rich_web_slider_effect6_loader":["slider-images"],"spider_video_player_theme":["player"],"spider_video_player_playlist":["player"],"spider_video_player_tag":["player"],"rich_web_slider_effect4":["slider-images"],"easymail_recipients":["alo-easymail"],"spider_video_player_video":["player"],"h5p_contents_libraries":["h5p"],"wise_chat_users":["wise-chat"],"erp_hr_announcement":["erp"],"h5p_contents_tags":["h5p"],"erp_hr_employee_notes":["erp"],"upcp_tag_groups":["ultimate-product-catalogue"],"sbb_badips":["stopbadbots"],"rich_web_slider_effect3_loader":["slider-images"],"weforms_payments":["weforms"],"awpcp_tasks":["another-wordpress-classifieds-plugin"],"nextend_smartslider_slides":["smart-slider-2"],"awpcp_payments":["another-wordpress-classifieds-plugin"],"rich_web_slider_effect9_loader":["slider-images"],"avhec_category_groups":["extended-categories-widget"],"upcp_subcategories":["ultimate-product-catalogue"],"rich_web_slider_effect5_loader":["slider-images"],"rich_web_slider_id":["slider-images"],"rich_web_slider_effect6":["slider-images"],"rich_web_slider_font_family":["slider-images"],"rich_web_slider_effects_data":["slider-images"],"rich_web_slider_effect9":["slider-images"],"psninja_amdd":["psn-pagespeed-ninja"],"rich_web_slider_effect8_loader":["slider-images"],"rich_web_slider_effect8":["slider-images"],"calendar_config":["calendar","calendar-plus"],"rich_web_slider_effect7_loader":["slider-images"],"erp_hr_dependents":["erp"],"calendar_categories":["calendar","calendar-plus"],"rich_web_slider_effect7":["slider-images"],"erp_hr_depts":["erp"],"psninja_amdd_cache":["psn-pagespeed-ninja"],"custom_404_pro_logs":["custom-404-pro"],"awpcp_media":["another-wordpress-classifieds-plugin"],"nextend_smartslider_storage":["smart-slider-2"],"calendar":["calendar","calendar-plus"],"nextend_smartslider_sliders":["smart-slider-2"],"nextend_smartslider_layouts":["smart-slider-2"],"erp_hr_employee_history":["erp"],"erp_hr_education":["erp"],"erp_hr_designations":["erp"],"awpcp_credit_plans":["another-wordpress-classifieds-plugin"],"psninja_urls":["psn-pagespeed-ninja"],"awpcp_categories":["another-wordpress-classifieds-plugin"],"awpcp_ads":["another-wordpress-classifieds-plugin"],"awpcp_admeta":["another-wordpress-classifieds-plugin"],"awpcp_adfees":["another-wordpress-classifieds-plugin"],"awpcp_ad_regions":["another-wordpress-classifieds-plugin"],"rich_web_slider_effect5":["slider-images"],"psp":["premium-seo-pack"],"h5p_contents_user_data":["h5p"],"upcp_tagged_items":["ultimate-product-catalogue"],"h5p_counters":["h5p"],"gallery_bank_meta":["gallery-bank"],"erp_hr_leave_entitlements":["erp"],"wplnst_urls":["wp-link-status"],"wplnst_scans_objects":["wp-link-status"],"participants_database_groups":["participants-database"],"participants_database_fields":["participants-database"],"gallery_albums":["gallery-bank"],"gallery_bank":["gallery-bank"],"sticky":["wp-sticky"],"wplnst_scans":["wp-link-status"],"wcfm_marketplace_affiliate_orders_meta":["wc-multivendor-marketplace"],"wcfm_marketplace_affiliate_orders":["wc-multivendor-marketplace"],"inbound_events":["cta","landing-pages","leads"],"inbound_page_views":["cta","landing-pages","leads"],"cimy_uef_data":["cimy-user-extra-fields"],"upcp_videos":["ultimate-product-catalogue"],"cimy_uef_fields":["cimy-user-extra-fields"],"wcfm_marketplace_orders":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"cimy_uef_wp_fields":["cimy-user-extra-fields"],"wow_fmp":["float-menu"],"rs_settings_presets":["slider-by-supsystic"],"rs_settings_sets":["slider-by-supsystic"],"wcfm_marketplace_product_multivendor":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"erp_hr_leave_policies":["erp"],"wptc_included_files":["wp-time-capsule"],"aps_log":["auto-post-scheduler"],"wptc_included_tables":["wp-time-capsule"],"wptc_options":["wp-time-capsule"],"wcfm_marketplace_orders_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wptc_processed_restored_files":["wp-time-capsule"],"rs_sliders":["slider-by-supsystic"],"rs_sorting":["slider-by-supsystic"],"rs_stats":["slider-by-supsystic"],"nm_personalized":["woocommerce-product-addon"],"rs_tags":["slider-by-supsystic"],"rs_videos":["slider-by-supsystic"],"wptc_processed_dbtables":["wp-time-capsule"],"wptc_processed_files":["wp-time-capsule"],"wptc_processed_iterator":["wp-time-capsule"],"private_blog_access_logs":["password-protect-wordpress"],"h5p_events":["h5p"],"mainwp_wp_options":["mainwp"],"mainwp_users":["mainwp"],"fa_user_logins":["user-login-history"],"opanda_leads":["social-locker","opt-in-panda"],"geodir_attachments":["geodirectory"],"mainwp_wp":["mainwp"],"erp_hr_employees":["erp"],"mainwp_wp_backup":["mainwp"],"mainwp_wp_backup_progress":["mainwp"],"h5p_tmpfiles":["h5p"],"captcha_bank":["captcha-bank"],"h5p_tags":["h5p"],"h5p_results":["h5p"],"h5p_libraries_libraries":["h5p"],"mondula_form_wizards":["multi-step-form"],"h5p_libraries_languages":["h5p"],"h5p_libraries_hub_cache":["h5p"],"h5p_libraries_cachedassets":["h5p"],"erp_hr_employee_performance":["erp"],"h5p_libraries":["h5p"],"mainwp_tips":["mainwp"],"mainwp_request_log":["mainwp"],"upcp_tags":["ultimate-product-catalogue"],"mainwp_client_report":["mainwp"],"participants_database":["participants-database"],"pantheon_sessions":["wp-native-php-sessions","stripe"],"inbound_tracked_links":["cta","landing-pages","leads"],"erp_hr_holiday":["erp"],"gallery_pics":["gallery-bank"],"maintenance_page":["maintenance-page"],"gallery_settings":["gallery-bank"],"captcha_bank_ip_locations":["captcha-bank"],"mainwp_client_report_client":["mainwp"],"mainwp_client_report_format":["mainwp"],"captcha_bank_meta":["captcha-bank"],"mainwp_client_report_site_token":["mainwp"],"srzfb_galleries":["srizon-facebook-album"],"srzfb_albums":["srizon-facebook-album"],"srs_simple_hits_counter":["srs-simple-hits-counter"],"mainwp_client_report_token":["mainwp"],"mainwp_group":["mainwp"],"mainwp_wp_group":["mainwp"],"crp_projects":["portfolio-wp"],"sbb_badref":["stopbadbots"],"connections_address":["connections"],"rednao_smart_forms_entry":["smart-forms"],"feedmanager_channel":["wp-product-feed-manager"],"erp_company_locations":["erp"],"ultimate_csv_importer_log_values":["wp-ultimate-csv-importer"],"feedmanager_country":["wp-product-feed-manager"],"feedmanager_errors":["wp-product-feed-manager"],"ultimate_csv_importer_acf_fields":["wp-ultimate-csv-importer"],"connections":["connections"],"wpwc_posts":["wp-word-count"],"erp_audit_log":["erp"],"feedmanager_feed_status":["wp-product-feed-manager"],"feedmanager_field_categories":["wp-product-feed-manager"],"feedmanager_product_feed":["wp-product-feed-manager"],"feedmanager_product_feedmeta":["wp-product-feed-manager"],"connections_date":["connections"],"feedmanager_source":["wp-product-feed-manager"],"micro_revisions":["microthemer"],"ff_cache":["flow-flow-social-streams"],"ff_comments":["flow-flow-social-streams"],"rednao_smart_forms_entry_detail":["smart-forms"],"erp_ac_transactions":["erp"],"ff_image_cache":["flow-flow-social-streams"],"fileaway_metadata":["file-away"],"wti_like_post":["wti-like-post"],"erp_ac_banks":["erp"],"erp_ac_chart_classes":["erp"],"erp_ac_chart_types":["erp"],"erp_ac_journals":["erp"],"erp_ac_ledger":["erp"],"erp_ac_payments":["erp"],"erp_ac_tax":["erp"],"erp_ac_tax_items":["erp"],"erp_ac_transaction_items":["erp"],"ultimate_csv_importer_manageshortcodes":["wp-ultimate-csv-importer"],"simple_login_log":["simple-login-log"],"ultimate_csv_importer_shortcodes_statusrel":["wp-ultimate-csv-importer"],"ultimate_csv_importer_shortcode_manager":["wp-ultimate-csv-importer"],"countries":["geodirectory","wp-bannerize-pro"],"ultimate_csv_importer_media":["wp-ultimate-csv-importer"],"ultimate_csv_importer_mappingtemplate":["wp-ultimate-csv-importer"],"fileaway_downloads":["file-away"],"rednao_smart_forms_uploaded_files":["smart-forms"],"rednao_smart_forms_table_name":["smart-forms"],"erp_crm_activities_task":["erp"],"erp_crm_campaign_group":["erp"],"reorder_post_rel":["reorder-post-within-categories"],"ff_snapshots":["flow-flow-social-streams"],"ff_streams":["flow-flow-social-streams"],"ff_streams_sources":["flow-flow-social-streams"],"connections_term_meta":["connections"],"contact_bank_meta":["contact-bank"],"geodir_tabs_layout":["geodirectory"],"geodir_post_review":["geodirectory"],"geodir_post_icon":["geodirectory"],"geodir_gd_place_detail":["geodirectory"],"contact_bank":["contact-bank"],"connections_social":["connections"],"connections_terms":["connections"],"geodir_api_keys":["geodirectory"],"wbz404_redirects":["404-redirected"],"wbz404_logs":["404-redirected"],"geodir_custom_sort_fields":["geodirectory"],"connections_term_taxonomy":["connections"],"connections_term_relationships":["connections"],"geodir_custom_fields":["geodirectory"],"geodir_countries":["geodirectory"],"sgmb_widget":["social-media-builder"],"ualp_user_activity":["user-activity-log"],"ff_options":["flow-flow-social-streams"],"lead_form_options":["lead-form-builder"],"gigpress_venues":["gigpress"],"gigpress_tours":["gigpress"],"gigpress_shows":["gigpress"],"gigpress_artists":["gigpress"],"connections_email":["connections"],"connections_link":["connections"],"connections_messenger":["connections"],"erp_crm_campaigns":["erp"],"ff_post_media":["flow-flow-social-streams"],"lead_form_extension":["lead-form-builder"],"mltlngg_translate":["multilanguage"],"rt_forms_uploaded_files":["smart-forms"],"lead_form_data":["lead-form-builder"],"lead_form":["lead-form-builder"],"ckuci_history":["wp-ultimate-csv-importer"],"ff_posts":["flow-flow-social-streams"],"connections_meta":["connections"],"ckuci_events":["wp-ultimate-csv-importer"],"erp_crm_contact_group":["erp"],"connections_phone":["connections"],"mltlngg_terms_translate":["multilanguage"],"simply_static_pages":["simply-static"],"bsk_pdf_manager_cats":["bsk-pdf-manager"],"easymail_stats":["alo-easymail"],"rich_web_photo_slider_instal_video":["slider-images"],"fblb":["wp-like-button"],"xt_statistic":["xt-visitor-counter"],"rich_web_slider_effect10_loader":["slider-images"],"rich_web_slider_effect10":["slider-images"],"rich_web_slider_effect1":["slider-images"],"rich_web_photo_slider_manager":["slider-images"],"upcp_items":["ultimate-product-catalogue"],"gr_variants_map":["getresponse-integration"],"upcp_item_images":["ultimate-product-catalogue"],"gr_schedule_jobs_queue":["getresponse-integration"],"smuzform_entry":["contact-form-add"],"gr_products_map":["getresponse-integration"],"upcp_fields_meta":["ultimate-product-catalogue"],"upcp_custom_fields":["ultimate-product-catalogue"],"upcp_categories":["ultimate-product-catalogue"],"smooth_slider_postmeta":["smooth-slider"],"smooth_slider_meta":["smooth-slider"],"smooth_slider":["smooth-slider"],"upcp_catalogues":["ultimate-product-catalogue"],"sml":["mail-subscribe-list"],"erp_crm_customer_activities":["erp"],"smuzform_entry_data":["contact-form-add"],"upcp_catalogue_items":["ultimate-product-catalogue"],"pvc_total":["page-views-count"],"sbb_blacklist":["stopbadbots"],"sbb_stats":["stopbadbots"],"easymail_subscribers":["alo-easymail"],"easymail_unsubscribed":["alo-easymail"],"wise_chat_messages":["wise-chat"],"wise_chat_kicks":["wise-chat"],"wise_chat_channels":["wise-chat"],"wise_chat_channel_users":["wise-chat"],"pvc_daily":["page-views-count"],"wise_chat_bans":["wise-chat"],"erp_crm_customer_companies":["erp"],"cb_create_control_form":["contact-bank"],"erp_crm_save_search":["erp"],"crp_portfolios":["portfolio-wp"],"rich_web_slider_effect3":["slider-images"],"rich_web_slider_effect2_loader":["slider-images"],"rich_web_slider_effect2":["slider-images"],"erp_crm_save_email_replies":["erp"],"rich_web_slider_effect1_loader":["slider-images"],"gr_orders_map":["getresponse-integration"],"gr_configuration":["getresponse-integration"],"bsk_pdf_manager_pdfs":["bsk-pdf-manager"],"wpusb_report":["wpupper-share-buttons","jogar-mais-social-share-buttons"],"wonderplugin_slider":["wonderplugin-slider-lite"],"sm_sessions":["stripe","participants-database","awesome-support","wp-session-manager","content-protector","mz-mindbody-api"],"totalsoft_galleryv_manager":["gallery-videos"],"totalsoft_galleryv_sg":["gallery-videos"],"sm_advanced_search_temp":["smart-manager-for-wp-e-commerce"],"totalsoft_galleryv_ttvg":["gallery-videos"],"totalsoft_galleryv_videos":["gallery-videos"],"slp_extendo_meta":["store-locator-le"],"totalsoft_galleryv_lvg":["gallery-videos"],"wpusb_url_shortener":["wpupper-share-buttons"],"totalsoft_new_plugin":["gallery-videos","poll-wp","calendar-event","gallery-portfolio"],"nep_native_emoji":["native-emoji"],"cm_popfly_history":["cm-pop-up-banners"],"legal_pages":["wplegalpages"],"gdgalleryimages":["photo-gallery-image"],"gdgallerysettings":["photo-gallery-image"],"seamless_donations_audit":["seamless-donations"],"bsk_pdf_manager_relationships":["bsk-pdf-manager"],"fca_eoi_subscribers":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","mad-mimi-wp"],"totalsoft_galleryv_id":["gallery-videos"],"wise_chat_actions":["wise-chat"],"media_file_manager_log":["media-file-manager"],"totalsoft_fonts":["gallery-videos","poll-wp","calendar-event","gallery-portfolio","woo-pricing-table","event-calendars"],"erp_crm_contact_subscriber":["erp"],"rich_web_photo_slider_instal":["slider-images"],"totalsoft_galleryv_check":["gallery-videos"],"totalsoft_galleryv_ctpg":["gallery-videos"],"bannerize":["wp-bannerize"],"mec_dates":["modern-events-calendar-lite"],"mec_events":["modern-events-calendar-lite"],"totalsoft_galleryv_dbt":["gallery-videos"],"vimeography_gallery_meta":["vimeography"],"fca_eoi_activity":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","email-popup","mad-mimi-wp"],"vimeography_gallery":["vimeography"],"totalsoft_galleryv_dbt_1":["gallery-videos"],"totalsoft_galleryv_dbt_2":["gallery-videos"],"my_custom_php":["my-custom-css"],"totalsoft_galleryv_dbt_3":["gallery-videos"],"totalsoft_galleryv_dbt_4":["gallery-videos"],"gdgallerygalleries":["photo-gallery-image"],"totalsoft_galleryv_fg":["gallery-videos"],"totalsoft_galleryv_gvg":["gallery-videos"],"totalsoft_galleryv_hlg":["gallery-videos"],"cb_contact_form":["contact-bank"],"geodir_business_hours":["geodirectory"],"rs_resources":["slider-by-supsystic"],"forum_reports":["asgaros-forum"],"forum_polls":["asgaros-forum"],"forum_polls_options":["asgaros-forum"],"wpam_tracking_tokens_purchase_logs":["affiliates-manager"],"forum_posts":["asgaros-forum"],"easy_pie_contacts":["easy-pie-coming-soon"],"addonlibrary_categories":["unlimited-addons-for-wpbakery-page-builder","unlimited-elements-for-elementor","addon-library","blox-page-builder"],"huge_it_catalogs":["product-catalog"],"forum_reactions":["asgaros-forum"],"huge_it_catalog_reviews":["product-catalog"],"usces_member_meta":["usc-e-shop"],"addonlibrary_addons":["unlimited-addons-for-wpbakery-page-builder","unlimited-elements-for-elementor","addon-library","blox-page-builder"],"smackcsv_file_events":["wp-ultimate-csv-importer"],"wpam_creatives":["affiliates-manager"],"forum_topics":["asgaros-forum"],"eafl_clicks":["easy-affiliate-links"],"wpam_transactions":["affiliates-manager"],"richreviews":["rich-reviews"],"wpam_affiliates_fields":["affiliates-manager"],"usces_member":["usc-e-shop"],"rm_custom_status":["custom-registration-form-builder-with-submission-manager"],"rm_fields":["custom-registration-form-builder-with-submission-manager"],"rm_forms":["custom-registration-form-builder-with-submission-manager"],"rm_front_users":["custom-registration-form-builder-with-submission-manager"],"rm_login":["custom-registration-form-builder-with-submission-manager"],"charitable_donors":["charitable"],"charitable_donormeta":["charitable"],"opanda_leads_fields":["social-locker","opt-in-panda"],"charitable_campaign_donations":["charitable"],"wcfm_marketplace_withdraw_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wpam_impressions":["affiliates-manager"],"vslider":["vslider"],"import_postid":["wp-ultimate-csv-importer"],"afap_logs":["accesspress-facebook-auto-post"],"usces_ordercart_meta":["usc-e-shop"],"erp_people_types":["erp"],"adl_lp_templates":["legal-pages"],"easy_pie_cs_subscribers":["easy-pie-coming-soon"],"postmark_log":["postmark-approved-wordpress-plugin"],"ea_locations":["easy-appointments"],"huge_it_videos":["video-player"],"usces_ordercart":["usc-e-shop"],"usces_order_meta":["usc-e-shop"],"usces_order":["usc-e-shop"],"ea_meta_fields":["easy-appointments"],"huge_it_video_players":["video-player"],"wplnst_urls_locations":["wp-link-status"],"ea_staff":["easy-appointments"],"import_log_detail":["wp-ultimate-csv-importer"],"huge_it_video_params":["video-player"],"erp_peoplemeta":["erp"],"import_detail_log":["wp-ultimate-csv-importer"],"wplnst_urls_locations_att":["wp-link-status"],"ea_options":["easy-appointments"],"ea_services":["easy-appointments"],"expm_maker_pages":["expand-maker"],"easy_pie_cs_entities":["easy-pie-coming-soon"],"expm_maker":["expand-maker","read-more"],"erp_peoples":["erp"],"forum_ads":["asgaros-forum"],"forum_forums":["asgaros-forum"],"rm_login_log":["custom-registration-form-builder-with-submission-manager"],"opanda_stats_v2":["social-locker","opt-in-panda"],"eemail_newsletter":["email-newsletter"],"login_log":["login-sidebar-widget","login-log"],"login_security_solution_fail":["login-security-solution"],"usces_access":["usc-e-shop"],"image_hover_ultimate_style":["image-hover-effects-ultimate"],"image_hover_ultimate_list":["image-hover-effects-ultimate"],"wpam_paypal_logs":["affiliates-manager"],"wpam_tracking_tokens":["affiliates-manager"],"huge_it_catalog_products":["product-catalog"],"huge_it_catalog_general_params":["product-catalog"],"huge_it_catalog_asc_seller":["product-catalog"],"huge_it_catalog_albums":["product-catalog"],"huge_it_catalog_album_catalog_contact":["product-catalog"],"testimonial_slider_meta":["testimonial-slider"],"testimonial_slider_postmeta":["testimonial-slider"],"wcfm_marketplace_vendor_ledger":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"cb_dynamic_settings":["contact-bank"],"rm_tasks":["custom-registration-form-builder-with-submission-manager"],"wp_quiz_play_data":["wp-quiz"],"rm_task_exe_log":["custom-registration-form-builder-with-submission-manager"],"rm_submissions":["custom-registration-form-builder-with-submission-manager"],"rm_submission_fields":["custom-registration-form-builder-with-submission-manager"],"wcfm_marketplace_store_taxonomies":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_shipping_zone_methods":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"event_list":["event-list"],"links_extrainfo":["link-library"],"pms_member_subscriptionmeta":["paid-member-subscriptions"],"pms_member_subscriptions":["paid-member-subscriptions"],"pms_paymentmeta":["paid-member-subscriptions"],"pms_payments":["paid-member-subscriptions"],"linkcategorymeta":["link-library"],"allowphp_functions":["allow-php-in-posts-and-pages"],"lsp_sliders":["logo-slider"],"rm_sessions":["custom-registration-form-builder-with-submission-manager"],"lsp_images":["logo-slider","best-local-seo-tools"],"rm_notes":["custom-registration-form-builder-with-submission-manager"],"supsystic_ss_networks":["social-share-buttons-by-supsystic"],"supsystic_ss_project_networks":["social-share-buttons-by-supsystic"],"supsystic_ss_projects":["social-share-buttons-by-supsystic"],"rm_paypal_fields":["custom-registration-form-builder-with-submission-manager"],"rm_paypal_logs":["custom-registration-form-builder-with-submission-manager"],"rm_resources":["custom-registration-form-builder-with-submission-manager"],"supsystic_ss_shares":["social-share-buttons-by-supsystic"],"rm_rules":["custom-registration-form-builder-with-submission-manager"],"supsystic_ss_shares_object":["social-share-buttons-by-supsystic"],"supsystic_ss_views":["social-share-buttons-by-supsystic"],"rm_sent_mails":["custom-registration-form-builder-with-submission-manager"],"rm_stats":["custom-registration-form-builder-with-submission-manager"],"swift_performance_warmup":["swift-performance-lite"],"wpam_messages":["affiliates-manager"],"cf7_data":["cf7-database"],"po_plugins":["plugin-organizer"],"usces_log":["usc-e-shop"],"wpam_affiliates":["affiliates-manager"],"lps_login_fails":["login-page-styler"],"lps_lockdowns":["login-page-styler"],"lp_popups":["wplegalpages"],"testimonial_slider":["testimonial-slider"],"huge_it_catalog_rating":["product-catalog"],"wplnst_urls_status":["wp-link-status"],"cf7_data_entry":["cf7-database"],"ms_my_custom_php":["my-custom-css"],"wowslider":["wowslider"],"forum_polls_votes":["asgaros-forum"],"easy_pie_emails":["easy-pie-coming-soon"],"wcmp_vendor_orders":["dc-woocommerce-multi-vendor"],"rs_folders":["slider-by-supsystic"],"ddownload_statistics":["delightful-downloads"],"ddp_log":["delete-duplicate-posts"],"wcfm_marketplace_reviews":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"anythingpopup":["anything-popup"],"rs_exclude":["slider-by-supsystic"],"wcfm_marketplace_reviews_response_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcmp_shipping_zone_methods":["dc-woocommerce-multi-vendor"],"erp_hr_leave_requests":["erp"],"wcmp_vendor_ledger":["dc-woocommerce-multi-vendor"],"wcmp_visitors_stats":["dc-woocommerce-multi-vendor"],"rs_maps":["slider-by-supsystic"],"advps_optionset":["advanced-post-slider"],"defender_lockout":["defender-security"],"lmtttmpts_failed_attempts":["limit-attempts"],"defender_lockout_log":["defender-security"],"erp_hr_leaves":["erp"],"power_stats_visits":["wp-power-stats"],"wpam_events":["affiliates-manager"],"th_popup":["lead-form-builder"],"cb_licensing":["contact-bank"],"cb_layout_settings_table":["contact-bank"],"ea_fields":["easy-appointments"],"ea_error_logs":["easy-appointments"],"cb_frontend_forms_table":["contact-bank"],"wcmp_shipping_zone_locations":["dc-woocommerce-multi-vendor"],"wpfb_gettwitter_forms":["wp-facebook-reviews"],"wcfm_membership_subscription":["wc-multivendor-membership"],"wpfb_post_templates":["wp-google-places-review-slider","wp-facebook-reviews"],"wcmp_cust_answers":["dc-woocommerce-multi-vendor"],"wcfm_marketplace_reviews_response":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_withdraw_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"lmtttmpts_blacklist":["limit-attempts"],"adtribes_my_conversions":["woo-product-feed-pro"],"wcmp_cust_questions":["dc-woocommerce-multi-vendor"],"wcmp_products_map":["dc-woocommerce-multi-vendor"],"wptc_backups":["wp-time-capsule"],"wpfb_reviews":["wp-google-places-review-slider","wp-facebook-reviews"],"ea_appointments":["easy-appointments"],"cb_roles_capability":["contact-bank"],"wptc_backup_names":["wp-time-capsule"],"wptc_auto_backup_record":["wp-time-capsule"],"wptc_activity_log":["wp-time-capsule"],"ea_connections":["easy-appointments"],"rs_photos_pos":["slider-by-supsystic"],"rs_photos":["slider-by-supsystic"],"rs_membership_presets":["slider-by-supsystic"],"wcfm_marketplace_review_rating_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"advps_thumbnail":["advanced-post-slider"],"wptc_excluded_tables":["wp-time-capsule"],"cb_frontend_data_table":["contact-bank"],"democracy_log":["democracy-poll"],"democracy_q":["democracy-poll"],"power_stats_referers":["wp-power-stats"],"eemail_newsletter_sub":["email-newsletter"],"power_stats_posts":["wp-power-stats"],"wcfm_marketplace_refund_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wptc_current_process":["wp-time-capsule"],"wptc_debug_log":["wp-time-capsule"],"democracy_a":["democracy-poll"],"wptc_excluded_files":["wp-time-capsule"],"power_stats_os":["wp-power-stats"],"power_stats_browsers":["wp-power-stats"],"wptc_inc_exc_contents":["wp-time-capsule"],"cb_form_settings_table":["contact-bank"],"store_locator":["store-locator-le"],"cb_email_template_admin":["contact-bank"],"wpam_actions":["affiliates-manager"],"erp_people_type_relations":["erp"],"power_stats_pageviews":["wp-power-stats"],"lmtttmpts_whitelist":["limit-attempts"],"wcfm_marketplace_reverse_withdrawal_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reverse_withdrawal":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_refund_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"lmtttmpts_all_failed_attempts":["limit-attempts"],"power_stats_searches":["wp-power-stats"],"wcfm_marketplace_shipping_zone_locations":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"erp_hr_work_exp":["erp"],"dopbsp_languages":["booking-system"],"dopbsp_fees":["booking-system"],"dopbsp_emails_translation":["booking-system"],"meta":["mangboard"],"dopbsp_forms":["booking-system"],"wp_floating_menu_details":["wp-floating-menu"],"options":["mangboard"],"dopbsp_discounts_items":["booking-system"],"dopbsp_discounts":["booking-system"],"analytics":["mangboard"],"lifterlms_voucher_code_redemptions":["lifterlms"],"dopbsp_reservations":["booking-system"],"dopbsp_locations":["booking-system"],"dopbsp_models":["booking-system"],"groups_rs":["role-scoper"],"dopbsp_extras_groups_items":["booking-system"],"dopbsp_extras":["booking-system"],"dopbsp_extras_groups":["booking-system"],"access_ip":["mangboard"],"dopbsp_days_unavailable":["booking-system"],"stb_styles":["wp-special-textboxes"],"bs_forms":["wp-booking-system","form-creation-for-bootstrap"],"dopbsp_api_keys":["booking-system"],"xyz_cfm_sender_email_address":["contact-form-manager"],"dopbsp_availability":["booking-system"],"sitemanager_device_group":["wp-sitemanager"],"sitemanager_device_relation":["wp-sitemanager"],"waiting":["waiting"],"xyz_cfm_form_elements":["contact-form-manager"],"dopbsp_coupons":["booking-system"],"h_editors":["mangboard"],"xyz_cfm_form":["contact-form-manager"],"xyz_cfm_theme_details":["contact-form-manager"],"dopbsp_emails":["booking-system"],"logs":["mangboard"],"dopbsp_days":["booking-system"],"files":["mangboard"],"dopbsp_availability_no":["booking-system"],"sitemanager_device":["wp-sitemanager"],"referers":["mangboard"],"dopbsp_discounts_items_rules":["booking-system"],"boards":["mangboard"],"users":["mangboard","wp-championship"],"dopbsp_days_available":["booking-system"],"site_cache":["wp-sitemanager"],"dopbsp_calendars":["booking-system"],"dopbsp_rules":["booking-system"],"sliderpatch_blacklist":["patch-for-revolution-slider"],"dopbsp_availability_price":["booking-system"],"dopbsp_smses":["booking-system"],"dopbsp_searches":["booking-system"],"mlab_popup":["homepage-pop-up"],"lifterlms_product_to_voucher":["lifterlms"],"lifterlms_notifications":["lifterlms"],"bs_calendars":["wp-booking-system"],"wow_mwp":["modal-window"],"ihrss_plugin":["image-horizontal-reel-scroll-slideshow"],"_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"photo_gallery_wp_like_dislike":["gallery-and-caption"],"hotel_booking_plans":["wp-hotel-booking"],"hotel_booking_order_items":["wp-hotel-booking"],"hotel_booking_order_itemmeta":["wp-hotel-booking"],"email":["wp-email"],"8degree_maintenance":["8-degree-coming-soon-page"],"vcp_log":["easy-visitor-counter","simple-visitor-counter-widget","awesome-visitor-counter","vieraslaskuri"],"adintegration":["active-directory-integration"],"mgmlp_folders":["media-library-plus"],"wppcp_private_page":["wp-private-content-plus"],"photo_gallery_wp_images":["gallery-and-caption"],"photo_gallery_wp_gallerys":["gallery-and-caption"],"scroll_news":["vertical-news-scroller"],"user2group_rs":["role-scoper"],"user2role2object_rs":["role-scoper"],"role_scope_rs":["role-scoper"],"cookies":["mangboard"],"8degree_comingsoon":["8-degree-coming-soon-page"],"dopbsp_forms_fields":["booking-system"],"modalsimple":["modal-window"],"wppcp_group_users":["wp-private-content-plus"],"gf_font_post":["free-google-fonts"],"mdf_stat_buffer":["wp-meta-data-filter-and-taxonomy-filter"],"gf_fontlist":["free-google-fonts"],"wp_phpmyadmin_extension__errors_log":["wp-phpmyadmin-extension"],"wp_floating_menu_custom_templates":["wp-floating-menu"],"mdf_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"dopbsp_settings_payment":["booking-system"],"dopbsp_settings_search":["booking-system"],"dopbsp_forms_select_options":["booking-system"],"dopbsp_settings_notifications":["booking-system"],"mdf_stat_tmp":["wp-meta-data-filter-and-taxonomy-filter"],"dopbsp_smses_translation":["booking-system"],"smartgoogleadwords":["smart-google-code-inserter"],"dopbsp_translation_en":["booking-system"],"lifterlms_quiz_attempts":["lifterlms"],"bs_bookings":["wp-booking-system"],"lifterlms_user_postmeta":["lifterlms"],"dopbsp_settings_calendar":["booking-system"],"dopbsp_settings":["booking-system"],"lifterlms_vouchers_codes":["lifterlms"],"cpk_wpcsv_export_queue":["wp-csv"],"wpsp_agent_assign_data":["wp-support-plus-responsive-ticket-system"],"cpk_wpcsv_log":["wp-csv"],"cmplz_cookiebanners":["complianz-gdpr"],"eme_events":["events-made-easy"],"iqfm_resultid_sequence":["inquiry-form-creator"],"woo_shippment_provider":["woo-advanced-shipment-tracking"],"eme_memberships_cf":["events-made-easy"],"eme_states":["events-made-easy"],"eme_recurrence":["events-made-easy"],"wpsp_panel_custom_menu":["wp-support-plus-responsive-ticket-system"],"eme_mqueue":["events-made-easy"],"eme_payments":["events-made-easy"],"eme_people":["events-made-easy"],"eme_events_cf":["events-made-easy"],"sendpress_connections":["sendpress"],"gmw_locations":["geo-my-wp"],"tp_special_route":["travelpayouts"],"wpda_form_submissions":["contact-forms-builder"],"eme_mailings":["events-made-easy"],"wpsp_custom_priority":["wp-support-plus-responsive-ticket-system"],"eme_locations_cf":["events-made-easy"],"eme_locations":["events-made-easy"],"eme_holidays":["events-made-easy"],"eme_groups":["events-made-easy"],"wpda_form_subfields":["contact-forms-builder"],"wpda_form_forms":["contact-forms-builder"],"wpda_form_fields":["contact-forms-builder"],"huge_it_share_params":["wp-share-buttons"],"huge_it_share_params_posts":["wp-share-buttons"],"wpsp_attachments":["wp-support-plus-responsive-ticket-system"],"eme_formfields":["events-made-easy"],"tp_special_offer":["travelpayouts"],"wpsp_custom_status":["wp-support-plus-responsive-ticket-system"],"eme_fieldtypes":["events-made-easy"],"tp_auto_replac_links":["travelpayouts"],"tp_hotel_list_shortcode":["travelpayouts"],"tp_search_shortcodes":["travelpayouts"],"wpcf7pdf_files":["send-pdf-for-contact-form-7"],"fep_attachments":["front-end-pm"],"microblogposter_user_accounts":["microblog-poster"],"fep_messagemeta":["front-end-pm"],"fep_messages":["front-end-pm","fep-contact-form"],"microblogposter_old_items":["microblog-poster"],"microblogposter_accounts":["microblog-poster"],"fep_participants":["front-end-pm"],"microblogposter_items_meta":["microblog-poster"],"wpsp_custom_fields":["wp-support-plus-responsive-ticket-system"],"wpsp_agent_settings":["wp-support-plus-responsive-ticket-system"],"wpda_form_submit_time":["contact-forms-builder"],"gmw_locationmeta":["geo-my-wp"],"sendpress_list_subscribers":["sendpress"],"gmw_forms":["geo-my-wp"],"iqfm_inquiryform_result_detail":["inquiry-form-creator"],"iqfm_inquiryform_result":["inquiry-form-creator"],"iqfm_inquiryform_mail":["inquiry-form-creator"],"iqfm_inquiryform_component":["inquiry-form-creator"],"iqfm_inquiryform":["inquiry-form-creator"],"testimonial_basics":["testimonial-basics"],"bsearch_daily":["better-search"],"bsearch":["better-search"],"sendpress_autoresponders":["sendpress"],"microblogposter_logs":["microblog-poster"],"adspage":["ads-wp-site-count"],"eme_memberships":["events-made-easy"],"sendpress_customfields":["sendpress"],"sendpress_queue":["sendpress"],"messages":["wpjam-basic","wp-live-group-chat","personal-chat-room","modalcontact"],"sendpress_subscribers_tracker":["sendpress"],"eme_members":["events-made-easy"],"sendpress_url":["sendpress"],"wpsp_faq":["wp-support-plus-responsive-ticket-system"],"sendpress_subscribers_url":["sendpress"],"wpsp_faq_catagories":["wp-support-plus-responsive-ticket-system"],"wangguarduserstatus":["wangguard"],"eme_templates":["events-made-easy"],"eme_usergroups":["events-made-easy"],"sendpress_subscribers_status":["sendpress"],"sendpress_subscribers_meta":["sendpress"],"sendpress_subscribers":["sendpress"],"wpsp_canned_reply":["wp-support-plus-responsive-ticket-system"],"wpsp_catagories":["wp-support-plus-responsive-ticket-system"],"sendpress_schedules":["sendpress"],"eme_discounts":["events-made-easy"],"lgp_log":["content-links"],"news_announcement":["news-announcement-scroll"],"vtprd_purchase_log_product":["pricing-deals-for-woocommerce"],"xyz_em_sender_email_address":["newsletter-manager"],"xyz_em_email_template":["newsletter-manager"],"xyz_em_email_campaign":["newsletter-manager"],"xyz_em_email_address":["newsletter-manager"],"formbuilder_forms":["formbuilder"],"xyz_em_attachment":["newsletter-manager"],"xyz_em_address_list_mapping":["newsletter-manager"],"xyz_em_additional_field_value":["newsletter-manager"],"xyz_em_additional_field_info":["newsletter-manager"],"vtprd_purchase_log_product_rule":["pricing-deals-for-woocommerce"],"lgp_posts":["content-links"],"eme_bookings":["events-made-easy"],"formbuilder_pages":["formbuilder"],"lgp_linking":["content-links"],"eme_categories":["events-made-easy"],"likebtn_item":["likebtn-like-button"],"eme_countries":["events-made-easy"],"wap_nex_forms_files":["nex-forms-express-wp-form-builder"],"m_membership_levels":["membership"],"lgp_crons":["content-links"],"wap_nex_forms_stats_interactions":["nex-forms-express-wp-form-builder"],"wangguardcronjobs":["wangguard"],"formbuilder_fields":["formbuilder"],"m_membership_relationships":["membership"],"wap_nex_forms_entries":["nex-forms-express-wp-form-builder"],"likebtn_vote":["likebtn-like-button"],"wpgmappity_maps":["wp-gmappity-easy-google-maps"],"custom_headers":["dynamic-headers"],"wpgmappity_markers":["wp-gmappity-easy-google-maps"],"most_popular":["wp-most-popular"],"m_communications":["membership"],"wpsp_users":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_thread":["wp-support-plus-responsive-ticket-system"],"m_coupons":["membership"],"wpsp_ticket_list_order":["wp-support-plus-responsive-ticket-system"],"m_levelmeta":["membership"],"m_member_payments":["membership"],"vtprd_purchase_log":["pricing-deals-for-woocommerce"],"wpsp_ticket_form_order":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket":["wp-support-plus-responsive-ticket-system"],"wpsp_support_menu":["wp-support-plus-responsive-ticket-system"],"wll_login_attempts":["when-last-login"],"pieregister_redirect_settings":["pie-register"],"pieregister_lockdowns":["pie-register"],"pieregister_code":["pie-register"],"wpjf3_mr_unrestricted_ips":["jf3-maintenance-mode"],"wpjf3_mr_access_keys":["jf3-maintenance-mode"],"m_membership_news":["membership"],"eme_answers":["events-made-easy"],"m_membership_rules":["membership"],"wangguardsignupsstatus":["wangguard"],"wpum_registration_formmeta":["wp-user-manager"],"410_links":["wp-410"],"formbuilder_responses":["formbuilder"],"updater_list":["updater"],"wpum_registration_forms":["wp-user-manager"],"m_subscription_transaction":["membership"],"wangguardreportqueue":["wangguard"],"hc_hmw_short_code":["healcode-mindbody-widget"],"m_pings":["membership"],"m_ping_history":["membership"],"m_urlgroups":["membership"],"m_subscriptionmeta":["membership"],"wpum_search_fields":["wp-user-manager"],"wap_nex_forms_email_templates":["nex-forms-express-wp-form-builder"],"m_subscriptions":["membership"],"wap_nex_forms":["nex-forms-express-wp-form-builder"],"formbuilder_results":["formbuilder"],"wangguardquestions":["wangguard"],"m_subscriptions_levels":["membership"],"eme_dgroups":["events-made-easy"],"wap_nex_forms_views":["nex-forms-express-wp-form-builder"],"wpum_field_groups":["wp-user-manager"],"wpum_fieldmeta":["wp-user-manager"],"formbuilder_tags":["formbuilder"],"wpum_fields":["wp-user-manager","miniorange-user-manager"],"wpum_fieldsgroups":["wp-user-manager"],"downloads":["wp-downloadmanager","hacklog-downloadmanager"],"ip2location_country_blocker_log":["ip2location-country-blocker"],"app_working_hours":["appointments"],"adsense_invalid_click_protector":["ad-invalid-click-protector"],"rich_web_vs_effect_7_loader":["slider-video"],"rich_web_vs_effect_8":["slider-video"],"app_appointmentmeta":["appointments"],"app_workers":["appointments"],"pm_settings":["wedevs-project-manager"],"rich_web_vs_effect_8_loader":["slider-video"],"app_services":["appointments"],"pm_meta":["wedevs-project-manager"],"formcraft_b_submissions":["formcraft-form-builder"],"pm_projects":["wedevs-project-manager"],"cpm_user_role":["wedevs-project-manager"],"app_appointments":["appointments"],"pm_tasks":["wedevs-project-manager"],"app_transactions":["appointments"],"formcraft_b_views":["formcraft-form-builder"],"ulogin":["ulogin"],"app_exceptions":["appointments"],"pm_role_user":["wedevs-project-manager"],"pm_roles":["wedevs-project-manager"],"redirect_404_hp_cp_log":["redirect-404-error-page-to-homepage-or-custom-page"],"rich_web_vs_effect_2":["slider-video"],"wce_editor_content":["custom-css-js-php"],"rich_web_vs_effect_7":["slider-video"],"rich_web_vs_effect_4_loader":["slider-video"],"pm_boardables":["wedevs-project-manager"],"rich_web_vs_effect_3":["slider-video"],"pm_assignees":["wedevs-project-manager"],"rich_web_vs_effect_3_loader":["slider-video"],"rich_web_vs_effect_4":["slider-video"],"oiyamaps_cache":["oi-yamaps"],"content_tabs_ultimate_import":["vc-tabs"],"content_tabs_ultimate_list":["vc-tabs"],"content_tabs_ultimate_style":["vc-tabs"],"aft_cc":["code-snippets-extended"],"pm_boards":["wedevs-project-manager"],"pm_categories":["wedevs-project-manager"],"pm_activities":["wedevs-project-manager"],"rich_web_vs_effect_5":["slider-video"],"short_links":["mts-url-shortener"],"dtree_cache":["wp-dtree-30"],"pm_category_project":["wedevs-project-manager"],"rich_web_vs_effect_5_loader":["slider-video"],"rich_web_vs_effect_6":["slider-video"],"pm_comments":["wedevs-project-manager"],"pm_files":["wedevs-project-manager"],"useful_banner_manager_banners":["useful-banner-manager"],"pm_imports":["wedevs-project-manager"],"rich_web_vs_effect_6_loader":["slider-video"],"formcraft_b_forms":["formcraft-form-builder"],"rich_web_vs_effect_2_loader":["slider-video"],"short_link_clicks":["mts-url-shortener"],"short_link_replacements":["mts-url-shortener"],"rich_web_vs_effect_1_loader":["slider-video"],"wptripadvisor_post_templates":["wp-tripadvisor-review-slider"],"easy_gallery_images":["wp-easy-gallery"],"woocommerce_ir_sms_contacts":["persian-woocommerce-sms"],"woocommerce_ir_sms_archive":["persian-woocommerce-sms"],"ptc_logs":["ptypeconverter"],"gdformsubmissionfields":["easy-contact-form-builder"],"wp_email_capture_registered_members":["wp-email-capture"],"wp_email_capture_temp_members":["wp-email-capture"],"gdformfieldtypes":["easy-contact-form-builder"],"gdformforms":["easy-contact-form-builder"],"gdformaddressfieldoptions":["easy-contact-form-builder"],"gdformsettings":["easy-contact-form-builder"],"gdformonsubmitactions":["easy-contact-form-builder"],"rich_web_vs_effect_9":["slider-video"],"gdformlabelpositions":["easy-contact-form-builder"],"quoterotator":["flexi-quote-rotator"],"sms_send":["wp-sms"],"wplx_tracking":["free-sales-funnel-squeeze-pages-landing-page-builder-templates-make"],"sms_subscribes":["wp-sms"],"yumprint_recipe_theme":["recipe-card"],"sms_subscribes_group":["wp-sms"],"yumprint_recipe_recipe":["recipe-card"],"berocket_termmeta":["advanced-product-labels-for-woocommerce"],"socialsnap_stats":["socialsnap"],"rich_web_vs_effect_9_loader":["slider-video"],"gdformsubmissions":["easy-contact-form-builder"],"gdformfields":["easy-contact-form-builder"],"cmc_coins":["cryptocurrency-price-ticker-widget"],"gdformcaptchas":["easy-contact-form-builder"],"rich_web_vs_effect_10_loader":["slider-video"],"rich_web_vs_effect_10":["slider-video"],"gdformfieldoptions":["easy-contact-form-builder"],"cpm_tasks":["wedevs-project-manager"],"cpm_project_items":["wedevs-project-manager"],"rich_web_vs_effect_1":["slider-video"],"rich_web_video_slider_videos":["slider-video"],"rich_web_video_slider_manager":["slider-video"],"gdformthemes":["easy-contact-form-builder"],"easy_gallery":["wp-easy-gallery"],"wptripadvisor_reviews":["wp-tripadvisor-review-slider"],"rich_web_video_slider_id":["slider-video"],"mapmarker_api":["map-multi-marker"],"ev_claves":["envialosimple-email-marketing-y-newsletters-gratis"],"mapmarker_option":["map-multi-marker"],"mapmarker_marker":["map-multi-marker"],"yumprint_recipe_view":["recipe-card"],"rich_web_video_slider_effects_data":["slider-video"],"rich_web_video_slider_font_family":["slider-video"],"cpm_file_relationship":["wedevs-project-manager"],"wsm_monthwisebouncerate":["wp-stats-manager"],"twp_logs":["telegram-for-wp"],"mr_rating_item_entry_value":["multi-rating"],"wppg_gallery":["simple-photo-gallery"],"way2enjoy_dir_images":["way2enjoy-compress-images","regenerate-thumbnails-in-cloud"],"watu_question":["watu"],"wsm_datewisebounce":["wp-stats-manager"],"wppg_downloads":["simple-photo-gallery"],"wsm_hourwisebounce":["wp-stats-manager"],"wsm_datewisebouncerate":["wp-stats-manager"],"wsm_monthlydailyreport":["wp-stats-manager"],"wsm_hourwisepageviews":["wp-stats-manager"],"wsm_hourwisevisitors":["wp-stats-manager"],"scs_modules":["coming-soon-by-supsystic"],"scs_modules_type":["coming-soon-by-supsystic"],"wsm_loguniquevisit":["wp-stats-manager"],"jw_easy_logo_slider_setting":["easy-logo-slider"],"wsm_logvisit":["wp-stats-manager"],"wsm_monthwise_report":["wp-stats-manager"],"wppg_album":["simple-photo-gallery"],"wsm_hourwisefirstvisitors":["wp-stats-manager"],"wsm_hourwisebouncerate":["wp-stats-manager"],"jw_easy_logo_slider":["easy-logo-slider"],"wsm_monthwisebounce":["wp-stats-manager"],"watu_master":["watu"],"wsm_datewisevisitors":["wp-stats-manager"],"wsm_datewisepageviews":["wp-stats-manager"],"wsm_datewisefirstvisitors":["wp-stats-manager"],"wsm_datewise_report":["wp-stats-manager"],"edn_subscriber":["8-degree-notification-bar"],"wppg_global_meta":["simple-photo-gallery"],"_projects":["project-supremacy"],"wsm_resolutions":["wp-stats-manager"],"wsm_searchengines":["wp-stats-manager"],"gdpr_requests":["wp-gdpr-core","gdpr-personal-data-reports"],"wsm_toolbars":["wp-stats-manager"],"wsm_uniquevisitors":["wp-stats-manager"],"wsm_url_log":["wp-stats-manager"],"wsm_visitorinfo":["wp-stats-manager"],"mprm_customer":["mp-restaurant-menu"],"_redirects":["project-supremacy"],"wsm_yearwise_report":["wp-stats-manager"],"cn_track_post":["post-views-stats"],"_groups":["project-supremacy","dms"],"watu_grading":["watu"],"seo_title_tag_category":["seo-title-tag"],"mr_rating_item":["multi-rating"],"seo_title_tag_tag":["seo-title-tag"],"seo_title_tag_url":["seo-title-tag"],"wsm_dailyhourlyreport":["wp-stats-manager"],"cd_customizations":["client-dash"],"wsm_countries":["wp-stats-manager"],"wsm_bouncevisits":["wp-stats-manager"],"mr_rating_item_entry":["multi-rating"],"wsm_regions":["wp-stats-manager"],"wsm_monthwisefirstvisitors":["wp-stats-manager"],"wsm_browsers":["wp-stats-manager"],"wppg_settings":["simple-photo-gallery"],"wsm_monthwisepageviews":["wp-stats-manager"],"watu_answer":["watu"],"responsive_thumbnail_slider":["wp-responsive-thumbnail-slider"],"un_termmeta":["usernoise"],"scs_octo":["coming-soon-by-supsystic"],"scs_octo_blocks":["coming-soon-by-supsystic"],"scs_octo_blocks_categories":["coming-soon-by-supsystic"],"scs_subscribers":["coming-soon-by-supsystic"],"scs_usage_stat":["coming-soon-by-supsystic"],"reservationmeta":["easyreservations"],"gdpr_log":["wp-gdpr-core"],"mr_rating_subject":["multi-rating"],"p2p_relationshipmeta":["awebooking"],"watu_takings":["watu"],"p2p_relationships":["awebooking"],"_reviews":["project-supremacy","photo-video-store","star-review-manager"],"gdpr_data_register":["wp-gdpr-core"],"wsm_monthwisevisitors":["wp-stats-manager"],"wsm_osystems":["wp-stats-manager"],"gdpr_del_requests":["wp-gdpr-core"],"wsm_pageviews":["wp-stats-manager"],"reservations":["easyreservations"],"apmm_custom_theme":["ap-mega-menu"],"asl_stores":["agile-store-locator"],"quick_chat_messages":["quick-chat"],"wpmlposts":["newsletters-lite"],"wpmlorders":["newsletters-lite"],"wpmloptions":["newsletters-lite"],"wpmlmailinglists":["newsletters-lite"],"quick_chat_users":["quick-chat"],"knewsautomatedposts":["knews"],"knewsautomated":["knews"],"wpdevart_calendars":["booking-calendar"],"asl_stores_categories":["agile-store-locator"],"_manage_schedule":["wp-scheduled-posts"],"wpmlfields":["newsletters-lite"],"wpmlfieldsforms":["newsletters-lite"],"wpmlfieldslists":["newsletters-lite"],"apct_testimonial_detail":["ap-custom-testimonial"],"wsm_yearlymonthlyreport":["wp-stats-manager"],"appbox":["wp-appbox"],"email_user":["wp-email-users"],"wpmlsubscribermetas":["newsletters-lite"],"hmp_playlist":["html5-jquery-audio-player"],"weu_unsubscriber":["wp-email-users"],"knewsautomatedsel":["knews"],"knewslists":["knews"],"knewsletters":["knews"],"ewd_otp_orders":["order-tracking"],"ewd_otp_sales_reps":["order-tracking"],"knewskeys":["knews"],"knewsextrafields":["knews"],"wpmlautoresponderemails":["newsletters-lite"],"hmp_rating":["html5-jquery-audio-player"],"wpmlautoresponders":["newsletters-lite"],"wpmlautorespondersforms":["newsletters-lite"],"wpmlautoresponderslists":["newsletters-lite"],"wpmlbounces":["newsletters-lite"],"wpmlclicks":["newsletters-lite"],"wpmlcontents":["newsletters-lite"],"wpmlcountries":["newsletters-lite"],"wpmlemails":["newsletters-lite"],"weu_user_notification":["wp-email-users"],"weu_subscribers":["wp-email-users"],"ewd_otp_fields_meta":["order-tracking"],"ps_groups":["contexture-page-security"],"awebooking_rooms":["awebooking"],"awebooking_relationships":["awebooking"],"awebooking_relationshipmeta":["awebooking"],"awebooking_pricing":["awebooking"],"awebooking_booking_items":["awebooking"],"awebooking_booking_itemmeta":["awebooking"],"awebooking_booking":["awebooking"],"awebooking_availability":["awebooking"],"avhfdas_ipcache":["avh-first-defense-against-spam"],"ps_security":["contexture-page-security"],"ps_group_relationships":["contexture-page-security"],"asl_categories":["agile-store-locator"],"asl_configs":["agile-store-locator"],"asl_countries":["agile-store-locator"],"asl_markers":["agile-store-locator"],"asl_storelogos":["agile-store-locator"],"awebooking_tax_rates":["awebooking"],"weu_smtp_conf":["wp-email-users"],"wpmlforms":["newsletters-lite"],"weu_sent_email":["wp-email-users"],"nggcf_fields_link":["nextgen-gallery-custom-fields"],"wpdevart_dates":["booking-calendar"],"nggcf_fields":["nextgen-gallery-custom-fields"],"wpdevart_extras":["booking-calendar"],"nggcf_field_values":["nextgen-gallery-custom-fields"],"wpdevart_forms":["booking-calendar"],"weu_group27":["wp-email-users"],"wpmlgroups":["newsletters-lite"],"wpmllinks":["newsletters-lite"],"wpmlhistoriesattachments":["newsletters-lite"],"wpdevart_payments":["booking-calendar"],"wpdevart_reservations":["booking-calendar"],"wpmlhistorieslists":["newsletters-lite"],"wpmlhistory":["newsletters-lite"],"wpmllatestposts":["newsletters-lite"],"knewsusersevents":["knews"],"wpmllatestpostssubscriptions":["newsletters-lite"],"wpdevart_themes":["booking-calendar"],"ewd_otp_order_statuses":["order-tracking"],"wpmlsubscribers":["newsletters-lite"],"ewd_otp_customers":["order-tracking"],"knewsuserslists":["knews"],"ipanorama":["ipanorama-360-virtual-tour-builder-lite"],"aff_robots":["affiliates"],"sharebar":["sharebar"],"aff_uris":["affiliates"],"aff_user_agents":["affiliates"],"knewstats":["knews"],"counterize_keywords":["counterizeii"],"wpmlunsubscribes":["newsletters-lite"],"wpmlthemes":["newsletters-lite"],"wpmltemplates":["newsletters-lite"],"knewsubmits":["knews"],"aff_referrals":["affiliates"],"pto_files":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"pto_membership":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"counterize_useragents":["counterizeii"],"knewsusersextra":["knews"],"pto_payments":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"counterize_referers":["counterizeii"],"knewsusers":["knews"],"knewsubmitsdetails":["knews"],"counterize":["counterizeii"],"ewd_otp_custom_fields":["order-tracking"],"pto_products":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"counterize_pages":["counterizeii"],"randomtext":["randomtext"],"wpmlsubscribersoptions":["newsletters-lite"],"aff_affiliates_users":["affiliates"],"aff_referral_items":["affiliates"],"wpmlsubscriberslists":["newsletters-lite"],"aff_hits":["affiliates"],"wfpklist_template_data":["print-invoices-packing-slip-labels-for-woocommerce"],"iconosquare_widget":["instagram-image-gallery"],"aff_affiliates":["affiliates"],"spiderfacebook_params":["spider-facebook"],"promocode":["wp-easycart"],"wpl_location2":["real-estate-listing-realtyna-wpl"],"wpl_location1":["real-estate-listing-realtyna-wpl"],"rsvpcustomquestionanswers":["rsvp"],"rsvpcustomquestionattendees":["rsvp"],"spiderfacebook_login":["spider-facebook"],"wps_cleaner":["wps-cleaner"],"product_subscriber":["wp-easycart"],"product_google_attributes":["wp-easycart"],"optionitemimage":["wp-easycart"],"option_to_product":["wp-easycart"],"jtrt_tables":["jtrt-responsive-tables"],"wpns_whitelisted_ips":["miniorange-limit-login-attempts","wp-security-pro"],"optionitem":["wp-easycart"],"rsvpcustomquestions":["rsvp"],"ecp_x_category":["enhanced-category-pages"],"fsevents":["wp-calendar"],"wpl_location3":["real-estate-listing-realtyna-wpl"],"pluginsl_shorturl":["shorten-url"],"events_categories":["wp-events"],"option":["wp-easycart"],"product":["wp-easycart"],"pricetier":["wp-easycart"],"vs_current_online_users":["visits-counter"],"afflctable_statistics_daily":["affiliate-link-cloaking"],"pimwick_gift_card_activity":["pw-woocommerce-gift-cards"],"statcounter":["stat-counter"],"optionitemquantity":["wp-easycart"],"abj404_logsv2":["404-solution"],"order_option":["wp-easycart"],"orderdetail":["wp-easycart"],"wpl_listing_types":["real-estate-listing-realtyna-wpl"],"rtec_registrations":["registrations-for-the-events-calendar"],"orderstatus":["wp-easycart"],"tdrd_redirection":["trash-duplicate-and-301-redirect"],"afflctable_link":["affiliate-link-cloaking"],"cfg_forms":["contact-form-generator"],"wpsp_ips":["wp-splash-page"],"abj404_lookup":["404-solution"],"abj404_permalink_cache":["404-solution"],"abj404_redirects":["404-solution"],"cfg_fields":["contact-form-generator"],"abj404_spelling_cache":["404-solution"],"afflctable_track":["affiliate-link-cloaking"],"rsvpquestiontypes":["rsvp"],"wps_cleaner_queue":["wps-cleaner"],"pageoption":["wp-easycart"],"perpage":["wp-easycart"],"pricepoint":["wp-easycart"],"order":["wp-easycart","landing-pages-leads-analytics-seo-content"],"menulevel3":["wp-easycart"],"manufacturer":["wp-easycart"],"wpl_location4":["real-estate-listing-realtyna-wpl"],"amazoncache":["amazon-product-in-a-post-plugin","app-store-assistant"],"wpl_extensions":["real-estate-listing-realtyna-wpl"],"wpl_events":["real-estate-listing-realtyna-wpl"],"vsbb_v2_lic":["wp-visual-slidebox-builder"],"lrsync_meta":["wplr-sync"],"lrsync_collections":["wplr-sync"],"lrsync":["wplr-sync"],"vsbb_v2":["wp-visual-slidebox-builder"],"post_relationships":["microkids-related-posts"],"podlove_filetype":["podlove-podcasting-plugin-for-wordpress"],"podlove_feed":["podlove-podcasting-plugin-for-wordpress"],"podlove_episodeasset":["podlove-podcasting-plugin-for-wordpress"],"wpns_blocked_ips":["miniorange-limit-login-attempts","wp-security-pro"],"address":["wp-easycart","wp-google-map"],"pp_group_members":["press-permit-core"],"funbox":["wp-visual-slidebox-builder"],"wpl_filters":["real-estate-listing-realtyna-wpl"],"wpl_item_categories":["real-estate-listing-realtyna-wpl"],"podlove_episode":["podlove-podcasting-plugin-for-wordpress"],"wpns_email_sent_audit":["miniorange-limit-login-attempts","wp-security-pro"],"podlove_useragent":["podlove-podcasting-plugin-for-wordpress"],"podlove_template":["podlove-podcasting-plugin-for-wordpress"],"podlove_modules_logging_logtable":["podlove-podcasting-plugin-for-wordpress"],"podlove_mediafile":["podlove-podcasting-plugin-for-wordpress"],"podlove_job":["podlove-podcasting-plugin-for-wordpress"],"podlove_geoareaname":["podlove-podcasting-plugin-for-wordpress"],"wpl_activities":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_payments":["real-estate-listing-realtyna-wpl"],"wpl_items":["real-estate-listing-realtyna-wpl"],"podlove_geoarea":["podlove-podcasting-plugin-for-wordpress"],"plgwpavp_config":["wp-antivirus-site-protection","wp-antivirus-website-protection-and-firewall"],"wpl_addon_idx_service_logs":["real-estate-listing-realtyna-wpl"],"lrsync_relations":["wplr-sync"],"kingkongboard_comment_meta":["kingkong-board"],"fortyfour_logs":["forty-four"],"wpl_kinds":["real-estate-listing-realtyna-wpl"],"pp_groups":["press-permit-core"],"podlove_downloadintentclean":["podlove-podcasting-plugin-for-wordpress"],"menulevel2":["wp-easycart"],"notification_logs":["notification"],"bundle":["wp-easycart"],"wpl_location5":["real-estate-listing-realtyna-wpl"],"category":["wp-easycart","udssl-time-tracker"],"categoryitem":["wp-easycart"],"thumbnail_slider":["images-thumbnail-sliderv1"],"code":["wp-easycart"],"wp_links_page_free_table":["wp-links-page"],"country":["wp-easycart","block-country","wp-domain-redirect"],"vs_overall_counter":["visits-counter"],"customfield":["wp-easycart"],"customfielddata":["wp-easycart"],"stock_ticker_data":["stock-ticker"],"download":["wp-easycart","download-manager-ms"],"giftcard":["wp-easycart"],"live_rate_cache":["wp-easycart"],"menulevel1":["wp-easycart"],"fsevents_cats":["wp-calendar"],"wpns_transactions":["miniorange-limit-login-attempts","wp-security-pro"],"podlove_downloadintent":["podlove-podcasting-plugin-for-wordpress"],"mpsl_sliders_preview":["motopress-slider-lite"],"wdpsslider":["post-slider-wd"],"pp_login_builder":["ppress"],"pp_password_reset_builder":["ppress"],"pp_registration_builder":["ppress"],"lightbox_bank_settings":["wp-lightbox-bank"],"wdpsslide":["post-slider-wd"],"mpsl_sliders":["motopress-slider-lite"],"affiliate_rule":["wp-easycart"],"wdpslayer":["post-slider-wd"],"affiliate_rule_to_affiliate":["wp-easycart"],"ppc_exception_items":["press-permit-core"],"mpsl_slides":["motopress-slider-lite"],"ppc_exceptions":["press-permit-core"],"ppc_roles":["press-permit-core"],"mpsl_slides_preview":["motopress-slider-lite"],"affiliate_rule_to_product":["wp-easycart"],"twitter_integration":["widget-twitter"],"ebay_auctions":["wp-lister-for-ebay"],"verticalmarquee":["vertical-marquee-plugin"],"idget_widget":["instagram-for-wordpress"],"cpappbk_messages":["appointment-hour-booking"],"cpappbk_forms":["appointment-hour-booking"],"nel_links_stats":["no-external-links"],"geo_mashup_administrative_names":["geo-mashup"],"copyrightpro":["copyrightpro"],"wpl_setting_categories":["real-estate-listing-realtyna-wpl"],"cpabc_appointments_discount_codes":["appointment-booking-calendar"],"wpl_addon_idx_users":["real-estate-listing-realtyna-wpl"],"ebay_transactions":["wp-lister-for-ebay"],"cpabc_appointments":["appointment-booking-calendar"],"wpl_room_types":["real-estate-listing-realtyna-wpl"],"wpl_property_types":["real-estate-listing-realtyna-wpl"],"totalsoft_poll_stwibu_1":["poll-wp"],"totalsoft_poll_stwibu_02":["poll-wp"],"cpabc_appointment_calendars_data":["appointment-booking-calendar"],"nel_mask_links":["no-external-links"],"3wp_activity_monitor_index":["threewp-activity-monitor"],"totalsoft_poll_answers":["poll-wp"],"idget_global_settings":["instagram-for-wordpress"],"wpl_dbcat":["real-estate-listing-realtyna-wpl"],"wpl_locationtextsearch":["real-estate-listing-realtyna-wpl"],"wpl_locationzips":["real-estate-listing-realtyna-wpl"],"elp_deliverreport":["email-posts-to-subscribers"],"ebay_categories":["wp-lister-for-ebay"],"ebay_jobs":["wp-lister-for-ebay"],"ebay_log":["wp-lister-for-ebay"],"wpl_addon_idx_user_wizard_steps":["real-estate-listing-realtyna-wpl"],"3wp_activity_monitor_user_statistics":["threewp-activity-monitor"],"geo_mashup_locations":["geo-mashup"],"wpl_cronjobs":["real-estate-listing-realtyna-wpl"],"ebay_messages":["wp-lister-for-ebay"],"ebay_orders":["wp-lister-for-ebay"],"geo_mashup_location_relationships":["geo-mashup"],"totalsoft_poll_dbt":["poll-wp"],"rcl_chat_messagemeta":["wp-recall"],"totalsoft_poll_inform":["poll-wp"],"ebay_shipping":["wp-lister-for-ebay"],"totalsoft_poll_impoll_02":["poll-wp"],"totalsoft_poll_impoll_1":["poll-wp"],"totalsoft_poll_imwibu":["poll-wp"],"totalsoft_poll_imwibu_01":["poll-wp"],"totalsoft_poll_imwibu_02":["poll-wp"],"totalsoft_poll_imwibu_1":["poll-wp"],"ebay_sites":["wp-lister-for-ebay"],"totalsoft_poll_impoll":["poll-wp"],"totalsoft_poll_manager":["poll-wp"],"totalsoft_poll_quest_im":["poll-wp"],"totalsoft_poll_results":["poll-wp"],"totalsoft_poll_setting":["poll-wp"],"totalsoft_poll_stpoll":["poll-wp"],"totalsoft_poll_stpoll_01":["poll-wp"],"totalsoft_poll_stpoll_02":["poll-wp"],"totalsoft_poll_impoll_01":["poll-wp"],"totalsoft_poll_iminqu_1":["poll-wp"],"cpabc_appointment_calendars":["appointment-booking-calendar"],"totalsoft_poll_stwibu":["poll-wp"],"totalsoft_poll_id":["poll-wp"],"totalsoft_poll_stwibu_01":["poll-wp"],"totalsoft_poll_iminqu":["poll-wp"],"totalsoft_poll_iminqu_01":["poll-wp"],"wpl_properties":["real-estate-listing-realtyna-wpl"],"wpl_notifications":["real-estate-listing-realtyna-wpl"],"wpl_menus":["real-estate-listing-realtyna-wpl"],"wpl_logs":["real-estate-listing-realtyna-wpl"],"totalsoft_poll_iminqu_02":["poll-wp"],"ebay_payment":["wp-lister-for-ebay"],"kpcode_url_posts":["long-url-maker"],"wpl_addon_idx_users_providers":["real-estate-listing-realtyna-wpl"],"ebay_profiles":["wp-lister-for-ebay"],"totalsoft_poll_stpoll_1":["poll-wp"],"bigbluebutton":["bigbluebutton","bbb-administration-panel"],"bigbluebutton_logs":["bigbluebutton","bbb-administration-panel"],"elp_emaillist":["email-posts-to-subscribers"],"ebay_accounts":["wp-lister-for-ebay"],"wpl_dbst":["real-estate-listing-realtyna-wpl"],"clean_up_optimizer":["wp-clean-up-optimizer"],"wpl_sort_options":["real-estate-listing-realtyna-wpl"],"role":["wp-easycart"],"aal_products":["amazon-auto-links"],"inf_infusionsoft_stats":["infusionsoft-official-opt-in-forms"],"rcl_rating_users":["wp-recall"],"roleaccess":["wp-easycart"],"mv_settings":["mediavine-control-panel","mediavine-create"],"clean_up_optimizer_ip_locations":["wp-clean-up-optimizer"],"aal_request_cache":["amazon-auto-links"],"clean_up_optimizer_meta":["wp-clean-up-optimizer"],"roleprice":["wp-easycart"],"wpl_dbst_types":["real-estate-listing-realtyna-wpl"],"wpl_addons":["real-estate-listing-realtyna-wpl"],"elp_pluginconfig":["email-posts-to-subscribers"],"rcl_rating_totals":["wp-recall"],"ps_sessions":["content-protector"],"rcl_rating_values":["wp-recall"],"review":["wp-easycart"],"shipping_class":["wp-easycart"],"calp_event_instances":["calpress-event-calendar"],"wpl_users":["real-estate-listing-realtyna-wpl"],"rcsm_subscribers":["responsive-coming-soon-page"],"associatedattendees":["rsvp"],"rcl_user_action":["wp-recall"],"custom_options_plus":["custom-options-plus"],"events":["wp-events","wp-gcalendar"],"calp_events":["calpress-event-calendar"],"calp_event_feeds":["calpress-event-calendar"],"response":["wp-easycart"],"calp_event_category_colors":["calpress-event-calendar"],"wpl_user_group_types":["real-estate-listing-realtyna-wpl"],"wpl_units":["real-estate-listing-realtyna-wpl"],"attendeeanswers":["rsvp"],"attendees":["rsvp"],"wpl_unit_types":["real-estate-listing-realtyna-wpl"],"sh_cd_shortcodes":["shortcode-variables"],"promotion":["wp-easycart"],"setting":["wp-easycart"],"ebay_store_categories":["wp-lister-for-ebay"],"shipping_class_to_rate":["wp-easycart"],"zone":["wp-easycart"],"user":["wp-easycart"],"rcl_feeds":["wp-recall"],"rcl_chats":["wp-recall"],"inserimenti_cf":["lw-contact-form"],"webhook":["wp-easycart"],"elp_sendsetting":["email-posts-to-subscribers"],"rcl_chat_users":["wp-recall"],"rcl_chat_messages":["wp-recall"],"zone_to_location":["wp-easycart"],"timezone":["wp-easycart"],"elp_postnotification":["email-posts-to-subscribers"],"q2w3_inc_manager":["q2w3-inc-manager"],"kingkongboard_meta":["kingkong-board"],"wpl_addon_idx_tasks":["real-estate-listing-realtyna-wpl"],"wpl_location6":["real-estate-listing-realtyna-wpl"],"wpl_location7":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_trial_logs":["real-estate-listing-realtyna-wpl"],"pimwick_gift_card":["pw-woocommerce-gift-cards"],"elp_sentdetails":["email-posts-to-subscribers"],"bp_follow":["buddypress-followers"],"subscription_plan":["wp-easycart"],"a3_exclude_email_subject":["wp-email-template"],"subscriber":["wp-easycart"],"state":["wp-easycart"],"taxrate":["wp-easycart"],"tempcart":["wp-easycart"],"shippingrate":["wp-easycart"],"tempcart_data":["wp-easycart"],"tempcart_optionitem":["wp-easycart"],"elp_templatetable":["email-posts-to-subscribers"],"wpl_settings":["real-estate-listing-realtyna-wpl"],"subscription":["wp-easycart"],"kontakt_fields":["plugin-kontakt"],"dprv_posts":["digiproveblog"],"wpvgw_markers":["wp-vgwort"],"wpvgw_posts_extras":["wp-vgwort"],"dprv_log":["digiproveblog"],"dprv_post_content_files":["digiproveblog"],"photoblocks":["photoblocks-grid-gallery"],"collabwriters":["peters-collaboration-e-mails"],"dprv_licenses":["digiproveblog"],"rmp_analytics":["rate-my-post"],"easy_captcha_sessions":["easy-captcha"],"collaboration":["peters-collaboration-e-mails"],"permalinks_customizer_redirects":["permalinks-customizer"],"collabrules":["peters-collaboration-e-mails"],"kontakt_options":["plugin-kontakt"],"promag_friends":["profilegrid-user-profiles-groups-and-communities"],"collabnotes":["peters-post-notes"],"ps_product_sku":["woocommerce-predictive-search"],"ppprotect":["pilotpress"],"uwp_usermeta":["userswp"],"uwp_form_fields":["userswp"],"uwp_form_extras":["userswp"],"crm_log":["wp-crm"],"crm_log_meta":["wp-crm"],"nls_subscribers":["newsletter-subscription-form"],"nl_subscriptions":["email-subscribe"],"pwebcontact_messages":["pwebcontact"],"pwebcontact_forms":["pwebcontact"],"ps_posts":["woocommerce-predictive-search"],"cpmp_player":["audio-and-video-player"],"ps_postmeta":["woocommerce-predictive-search"],"ps_exclude":["woocommerce-predictive-search"],"cvg_videos":["cool-video-gallery"],"cvg_gallery":["cool-video-gallery"],"promag_paypal_log":["profilegrid-user-profiles-groups-and-communities"],"promag_notification":["profilegrid-user-profiles-groups-and-communities"],"promag_msg_threads":["profilegrid-user-profiles-groups-and-communities"],"promag_email_templates":["profilegrid-user-profiles-groups-and-communities"],"promag_msg_conversation":["profilegrid-user-profiles-groups-and-communities"],"promag_groups":["profilegrid-user-profiles-groups-and-communities"],"promag_group_requests":["profilegrid-user-profiles-groups-and-communities"],"wpss_routes_30":["wordpress-simple-survey"],"chats_messages":["chats"],"wppipes_pipes":["wp-pipes"],"cp_contact_form_paypal_discount_codes":["cp-contact-form-with-paypal"],"cp_contact_form_paypal_posts":["cp-contact-form-with-paypal"],"cp_contact_form_paypal_settings":["cp-contact-form-with-paypal"],"cp_orders":["cryptocurrency-prices"],"wpsqt_all_questions":["wp-survey-and-quiz-tool"],"wpsqt_all_results":["wp-survey-and-quiz-tool"],"wpsqt_custom_forms":["wp-survey-and-quiz-tool"],"wpsqt_quiz_state":["wp-survey-and-quiz-tool"],"wpsqt_quiz_surveys":["wp-survey-and-quiz-tool"],"popup_banners":["wp-popup-banners","wp-popup-lite"],"nwm_routes":["nomad-world-map"],"nwm_custom":["nomad-world-map"],"wpss_results_30":["wordpress-simple-survey"],"wppipes_items":["wp-pipes"],"post_notification_cats":["post-notification"],"post_notification_posts":["post-notification"],"wpsqt_sections":["wp-survey-and-quiz-tool"],"wpsqt_survey_cache_results":["wp-survey-and-quiz-tool"],"wpss_answers_30":["wordpress-simple-survey"],"wpss_fields_30":["wordpress-simple-survey"],"promag_fields":["profilegrid-user-profiles-groups-and-communities"],"g_tables":["table-generator"],"wpss_questions_30":["wordpress-simple-survey"],"wpss_quizzes_30":["wordpress-simple-survey"],"promag_sections":["profilegrid-user-profiles-groups-and-communities"],"amelia_notifications_sms_history":["ameliabooking"],"ere_save_search":["essential-real-estate"],"all_in_one_redirection":["all-in-one-redirection"],"sitemap":["companion-sitemap-generator"],"lightbox_photoswipe_img":["lightbox-photoswipe"],"bup_staff_availability_breaks":["booking-ultra-pro"],"bup_staff_availability":["booking-ultra-pro"],"bup_services":["booking-ultra-pro"],"bup_service_variable_pricing":["booking-ultra-pro"],"bup_service_rates":["booking-ultra-pro"],"bup_orders":["booking-ultra-pro"],"bup_filters":["booking-ultra-pro"],"ap_activity":["anspress-question-answer"],"sidemenu":["side-menu","mwp-side-menu"],"bup_filter_staff":["booking-ultra-pro"],"bup_categories":["booking-ultra-pro"],"bup_carts":["booking-ultra-pro"],"bup_bookings_meta":["booking-ultra-pro"],"bup_bookings":["booking-ultra-pro"],"wpcsplog":["wp-content-security-policy"],"bsl_push":["baidu-submit-link"],"mobilepress":["mobilepress"],"ytwd_shortcodes":["wd-youtube"],"ytwd_youtube":["wd-youtube"],"amelia_users":["ameliabooking"],"gamipress_user_earnings":["gamipress"],"updraftcentral_sitemeta":["updraftcentral"],"updraftcentral_site_temporary_keys":["updraftcentral"],"captcha_booster_meta":["wp-captcha-booster"],"captcha_booster_ip_locations":["wp-captcha-booster"],"captcha_booster":["wp-captcha-booster"],"caos_webfonts_subsets":["host-webfonts-local"],"caos_webfonts":["host-webfonts-local"],"gamipress_logs":["gamipress"],"gamipress_logs_meta":["gamipress"],"gamipress_user_earnings_meta":["gamipress"],"amelia_payments":["ameliabooking"],"ap_votes":["anspress-question-answer"],"ap_views":["anspress-question-answer"],"ap_subscribers":["anspress-question-answer"],"orgseriesicons":["organize-series"],"ap_reputations":["anspress-question-answer"],"sb_image_hover_effects_list":["sb-image-hover-effects"],"sb_image_hover_effects_style":["sb-image-hover-effects"],"ap_qameta":["anspress-question-answer"],"sm_sync":["wp-stateless"],"wpmfs_queue":["wp-media-folders"],"amelia_services_views":["ameliabooking"],"updraftcentral_user_cron":["updraftcentral"],"amelia_events_to_providers":["ameliabooking"],"amelia_customer_bookings_to_extras":["ameliabooking"],"tsw_log":["traffic-stats-widget"],"gdrts_logs":["gd-rating-system"],"amelia_events":["ameliabooking"],"amelia_events_periods":["ameliabooking"],"amelia_events_tags":["ameliabooking"],"bot_block_block_list":["bot-block-stop-spam-google-analytics-referrals"],"bot_block_log":["bot-block-stop-spam-google-analytics-referrals"],"amelia_providers_to_locations":["ameliabooking"],"amelia_customer_bookings":["ameliabooking"],"amelia_extras":["ameliabooking"],"amelia_galleries":["ameliabooking"],"amelia_locations":["ameliabooking"],"amelia_providers_to_google_calendar":["ameliabooking"],"amelia_providers_to_events":["ameliabooking"],"amelia_locations_views":["ameliabooking"],"amelia_providers_to_daysoff":["ameliabooking"],"generalnotes":["peters-post-notes"],"amelia_notifications":["ameliabooking"],"amelia_notifications_log":["ameliabooking"],"amelia_customer_bookings_to_events_periods":["ameliabooking"],"gdrts_logmeta":["gd-rating-system"],"amelia_services":["ameliabooking"],"amelia_providers_to_services":["ameliabooking"],"amelia_providers_views":["ameliabooking"],"amelia_providers_to_weekdays":["ameliabooking"],"amelia_providers_to_timeouts":["ameliabooking"],"amelia_providers_to_specialdays_periods_services":["ameliabooking"],"amelia_providers_to_specialdays_periods":["ameliabooking"],"amelia_appointments":["ameliabooking"],"amelia_categories":["ameliabooking"],"amelia_coupons":["ameliabooking"],"amelia_providers_to_specialdays":["ameliabooking"],"amelia_coupons_to_events":["ameliabooking"],"amelia_providers_to_periods_services":["ameliabooking"],"amelia_custom_fields_services":["ameliabooking"],"ipblc_blacklist":["ip-blacklist-cloud"],"ipblc_login_failed":["ip-blacklist-cloud"],"amelia_providers_to_periods":["ameliabooking"],"gdrts_cache":["gd-rating-system"],"gdrts_itemmeta":["gd-rating-system"],"gdrts_items":["gd-rating-system"],"ipblc_usernames":["ip-blacklist-cloud"],"amelia_coupons_to_services":["ameliabooking"],"amelia_custom_fields":["ameliabooking"],"amelia_custom_fields_options":["ameliabooking"],"updraftcentral_sites":["updraftcentral"],"abc_requests":["advanced-booking-calendar"],"advanced_booking_calendar_calendars":["advanced-booking-calendar"],"advanced_booking_calendar_extras":["advanced-booking-calendar"],"advanced_booking_calendar_requests":["advanced-booking-calendar"],"advanced_booking_calendar_rooms":["advanced-booking-calendar"],"advanced_booking_calendar_seasons":["advanced-booking-calendar"],"advanced_booking_calendar_seasons_assignment":["advanced-booking-calendar"],"spiffy_calendar":["spiffy-calendar"],"abc_rooms":["advanced-booking-calendar"],"abc_extras":["advanced-booking-calendar"],"atap_logs":["accesspress-twitter-auto-post"],"abc_seasons_assignment":["advanced-booking-calendar"],"ycd_subscribers":["countdown-builder"],"aelia_dismissed_messages":["woocommerce-eu-vat-assistant"],"paystack_forms_payments":["payment-forms-for-paystack"],"automated_links":["wp-auto-affiliate-links"],"wcs3_schedule":["weekly-class-schedule"],"addactionsandfilters_plugin_usercode":["add-actions-and-filters"],"advanced_booking_calendar_bookings":["advanced-booking-calendar"],"abc_seasons":["advanced-booking-calendar"],"spiffy_calendar_categories":["spiffy-calendar"],"abc_calendars":["advanced-booking-calendar"],"wpfingerprint_diffs":["wp-fingerprint"],"srb_blacklist":["spamreferrerblock"],"abc_booking_extras":["advanced-booking-calendar"],"abc_bookings":["advanced-booking-calendar"],"wpfingerprint_checksums":["wp-fingerprint"],"advanced_booking_calendar_booking_extras":["advanced-booking-calendar"],"oqey_music_rel":["oqey-gallery"],"totalsoft_portfolio_settings":["gallery-portfolio"],"totalsoft_portfolio_images":["gallery-portfolio"],"nd_booking_booking":["nd-booking"],"totalsoft_portfolio_manager":["gallery-portfolio"],"amz_report_log":["woocommerce-amazon-affiliates-light-version"],"jzzf_option":["jazzy-forms"],"amz_queue":["woocommerce-amazon-affiliates-light-version"],"hms_testimonials_templates":["hms-testimonials"],"totalsoft_portfolio_phe":["gallery-portfolio"],"totalsoft_portfolio_slport":["gallery-portfolio"],"amr_reportcachelogging":["amr-users"],"spbc_scan_results":["security-malware-firewall"],"spbc_scan_signatures":["security-malware-firewall"],"amz_products":["woocommerce-amazon-affiliates-light-version"],"totalsoft_portfolio_gaanim":["gallery-portfolio"],"amz_cross_sell":["woocommerce-amazon-affiliates-light-version"],"amz_assets":["woocommerce-amazon-affiliates-light-version"],"vw_vwls_chatlog":["videowhisper-live-streaming-integration"],"hms_testimonials_groups":["hms-testimonials"],"totalsoft_portfolio_id":["gallery-portfolio"],"spbc_firewall_logs":["security-malware-firewall"],"totalsoft_portfolio_filgrid":["gallery-portfolio"],"totalsoft_portfolio_cpopup":["gallery-portfolio"],"totalsoft_portfolio_dbt_3":["gallery-portfolio"],"js_ticket_attachments":["js-support-ticket"],"spbc_backups":["security-malware-firewall"],"js_ticket_config":["js-support-ticket"],"totalsoft_portfolio_dbt_2":["gallery-portfolio"],"amz_search":["woocommerce-amazon-affiliates-light-version"],"totalsoft_portfolio_dbt_1":["gallery-portfolio"],"oxi_div_import":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"totalsoft_portfolio_dbt":["gallery-portfolio"],"totalsoft_portfolio_check":["gallery-portfolio"],"spbc_scan_links_logs":["security-malware-firewall"],"wpi_object_log":["wp-invoice"],"totalsoft_portfolio_albums":["gallery-portfolio"],"apt_appointments":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"backlinks":["incoming-links"],"totalsoft_portfolio_dbt_4":["gallery-portfolio"],"spbc_firewall_data":["security-malware-firewall"],"spbc_backuped_files":["security-malware-firewall"],"spbc_scan_frontend":["security-malware-firewall"],"totalsoft_portfolio_elgrid":["gallery-portfolio"],"amr_reportcache":["amr-users"],"totalsoft_cal_p1":["calendar-event"],"oxi_div_list":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"bp_cron_config":["beepress"],"spider_faq_category":["spider-faq"],"spider_faq_faq":["spider-faq"],"spider_faq_question":["spider-faq"],"spider_faq_theme":["spider-faq"],"ffi_image_cache":["insta-flow"],"tweetblender":["tweet-blender"],"popularitypostswidgetcache":["popularity-posts-widget"],"popularitypostswidget":["popularity-posts-widget"],"customback":["custom-post-background"],"mailpress_mailmeta":["mailpress"],"ffi_cache":["insta-flow"],"mailpress_users":["mailpress"],"dk_speakout_petitions":["speakout"],"dk_speakout_signatures":["speakout"],"mailpress_usermeta":["mailpress"],"ffi_options":["insta-flow"],"ffi_post_media":["insta-flow"],"ffi_posts":["insta-flow"],"ffi_snapshots":["insta-flow"],"ffi_streams":["insta-flow"],"ffi_comments":["insta-flow"],"pl_data_maps":["pl-platform"],"apt_category":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"wps_variants":["wpshopify"],"mistape_reports":["mistape"],"gv_responsive_slider":["wp-responsive-photo-gallery"],"post_right_content":["spider-faq"],"oxi_div_style":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"apt_clients":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_coupons":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_holidays":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"automaticseolinksstats":["automatic-seo-links"],"wps_tags":["wpshopify"],"popupwith_fancybox":["popup-with-fancybox"],"apt_staff":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"spbc_auth_logs":["security-malware-firewall"],"apt_payment":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_services":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_settings":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"ess_social_statistics":["easy-social-sharing"],"wps_collects":["wpshopify"],"wps_collections_smart":["wpshopify"],"wps_collections_custom":["wpshopify"],"pl_data_sections":["pl-platform"],"automaticseolinks":["automatic-seo-links"],"oqey_video":["oqey-gallery"],"js_ticket_tickets":["js-support-ticket"],"wpal_links":["wp-affiliate-links"],"word_balloon":["word-balloon"],"apt_appearence":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"xh_sessions":["wechat-social-login","wechat-shop-download","wc-china-checkout"],"ap_services":["appointment-calendar"],"smart_maintenance_mode":["smart-maintenance-mode"],"ap_service_category":["appointment-calendar"],"wps_images":["wpshopify"],"fbuilder_fields":["estatik"],"fbuilder_fields_order":["estatik"],"fbuilder_sections":["estatik"],"fbuilder_sections_order":["estatik"],"smart_donations_transaction_table":["smart-donations"],"sp_cu":["sp-client-document-manager"],"xh_social_channel_wechat":["wechat-social-login"],"smart_donations_progress_table":["smart-donations"],"smart_donations_donation_item":["smart-donations"],"smart_donations_campaign_table":["smart-donations"],"wps_options":["wpshopify"],"dc_mv_calendars":["cp-multi-view-calendar"],"dc_mv_configuration":["cp-multi-view-calendar"],"dc_mv_events":["cp-multi-view-calendar"],"bbpp_thankmelater_messages":["thank-me-later"],"bbpp_thankmelater_opens":["thank-me-later"],"bbpp_thankmelater_opt_outs":["thank-me-later"],"bbpp_thankmelater_schedules":["thank-me-later"],"sp_cu_cats":["sp-client-document-manager"],"xh_social_channel_qq":["wechat-social-login"],"totalsoft_cal_1":["calendar-event"],"js_ticket_replies":["js-support-ticket"],"oqey_skins":["oqey-gallery"],"totalsoft_cal_p3":["calendar-event"],"totalsoft_cal_p4":["calendar-event"],"sndr_mail_users_info":["subscriber","sender"],"totalsoft_cal_ids":["calendar-event"],"stt2_meta":["recent-search-terms"],"totalsoft_cal_events_p3":["calendar-event"],"totalsoft_cal_part":["calendar-event"],"totalsoft_cal_part1":["calendar-event"],"totalsoft_cal_types":["calendar-event"],"backlinks_block_domain":["incoming-links"],"backlinks_block_ip":["incoming-links"],"totalsoft_cal_events_p2":["calendar-event"],"totalsoft_cal_events":["calendar-event"],"totalsoft_cal_2":["calendar-event"],"accua_forms_submissions_values":["contact-forms"],"totalsoft_cal_check":["calendar-event"],"backlinks_cron":["incoming-links"],"crfp_groups":["comment-rating-field-plugin"],"crfp_fields":["comment-rating-field-plugin"],"xh_social_sessions":["wechat-social-login"],"accua_forms_submissions":["contact-forms"],"xh_social_channel_weibo":["wechat-social-login"],"totalsoft_cal_4":["calendar-event"],"ess_social_networks":["easy-social-sharing"],"totalsoft_cal_3":["calendar-event"],"sp_cu_event_log":["sp-client-document-manager"],"bbse_popup":["bbs-e-popup"],"totalsoft_cal_p2":["calendar-event"],"js_ticket_emailtemplates":["js-support-ticket"],"p_ip_hits":["who-hit-the-page-hit-counter"],"th_forms":["thrivehive"],"th_buttons":["thrivehive"],"sp_cu_groups":["sp-client-document-manager"],"p_ip2location":["who-hit-the-page-hit-counter"],"big_contacts":["bigcontact"],"big_contacts_emails":["bigcontact"],"big_contacts_phones":["bigcontact"],"big_contacts_settings":["bigcontact"],"sp_cu_groups_assign":["sp-client-document-manager"],"p_hits":["who-hit-the-page-hit-counter"],"p_hitinfo":["who-hit-the-page-hit-counter"],"simpleviews":["simple-post-views-counter","juicedmetrics"],"wps_shop":["wpshopify"],"woocommerce_tpay_clients":["woocommerce-transferujpl-payment-gateway"],"woocommerce_tpay":["woocommerce-transferujpl-payment-gateway"],"sp_cu_meta":["sp-client-document-manager"],"js_ticket_email":["js-support-ticket"],"js_ticket_departments":["js-support-ticket"],"wpal_automatches":["wp-affiliate-links"],"jigoshop_attribute_taxonomies":["jigoshop"],"sp_cu_project":["sp-client-document-manager"],"js_ticket_system_errors":["js-support-ticket"],"hms_testimonials":["hms-testimonials"],"hms_testimonials_cf":["hms-testimonials"],"hms_testimonials_cf_meta":["hms-testimonials"],"hms_testimonials_group_meta":["hms-testimonials"],"p_user_agents":["who-hit-the-page-hit-counter"],"wps_settings_syncing":["wpshopify"],"bbse_popup_agent":["bbs-e-popup"],"ap_appointments":["appointment-calendar"],"bc_random_banner":["random-banner"],"bc_random_banner_category":["random-banner"],"dc_mv_views":["cp-multi-view-calendar"],"bc_random_banner_options":["random-banner"],"wps_products":["wpshopify"],"sp_cu_form_entries":["sp-client-document-manager"],"ap_events":["appointment-calendar"],"sp_cu_forms":["sp-client-document-manager"],"wps_settings_connection":["wpshopify"],"fca_lpc_subscribers":["landing-page-cat"],"nodofollow":["dofollow-case-by-case"],"wpal_stats":["wp-affiliate-links"],"wpal_keywords":["wp-affiliate-links"],"wps_settings_general":["wpshopify"],"wow_coder":["wp-coder"],"th_wysiwyg_buttons":["thrivehive"],"th_theme_options":["thrivehive"],"th_snippets":["thrivehive"],"wpal_rules":["wp-affiliate-links"],"js_ticket_priorities":["js-support-ticket"],"wps_settings_license":["wpshopify"],"js_ticket_fieldsordering":["js-support-ticket"],"p_visiting_countries":["who-hit-the-page-hit-counter"],"ffi_streams_sources":["insta-flow"],"peepso_login_failed_attempts_logs":["peepso-core"],"mailpress_stats":["mailpress"],"jzzf_element":["jazzy-forms"],"peepso_blocks":["peepso-core"],"peepso_activity_ranking":["peepso-core"],"peepso_activity_hide":["peepso-core"],"peepso_activities":["peepso-core"],"mtouchquiz_quiz":["mtouch-quiz"],"mtouchquiz_ratings":["mtouch-quiz"],"live_weather_station_datas_day":["live-weather-station"],"moodle_enrollment":["edwiser-bridge"],"address_components":["estatik"],"table_statistics_raw":["cystats"],"wpal_destinations":["wp-affiliate-links"],"t_schema_migrations":["wp-testing"],"ums_usage_stat":["ultimate-maps-by-supsystic"],"oqey_gallery":["oqey-gallery"],"table_statistics":["cystats"],"mtouchquiz_question":["mtouch-quiz"],"live_weather_station_datas_year":["live-weather-station"],"vw_lwsessions":["videowhisper-live-streaming-integration"],"afp_categories":["awesome-filterable-portfolio"],"ums_options_categories":["ultimate-maps-by-supsystic"],"live_weather_station_infos":["live-weather-station"],"sb_sermons_tags":["sermon-browser"],"wpio_queue":["imagerecycle-pdf-image-compression"],"emailsub_spool":["email-subscription"],"live_weather_station_datas":["live-weather-station"],"t_questions":["wp-testing"],"revisr":["revisr"],"jzzf_email":["jazzy-forms"],"oqey_images":["oqey-gallery"],"wpio_listimages":["imagerecycle-pdf-image-compression"],"live_weather_station_data_year":["live-weather-station"],"afp_items":["awesome-filterable-portfolio"],"t_computed_variables":["wp-testing"],"mtouchquiz_answer":["mtouch-quiz"],"wpio_images":["imagerecycle-pdf-image-compression"],"vw_lsrooms":["videowhisper-live-streaming-integration"],"vw_sessions":["videowhisper-live-streaming-integration"],"ums_options":["ultimate-maps-by-supsystic"],"ak_404_log":["404-notifier"],"sb2_urls":["seo-booster"],"sb2_urls_meta":["seo-booster"],"sb_books":["sermon-browser"],"sb_books_sermons":["sermon-browser"],"sb_preachers":["sermon-browser"],"sb_series":["sermon-browser"],"lionscripts_ip_address_blocker":["ip-address-blocker"],"sb2_kwdt":["seo-booster"],"egoi_map_fields":["smart-marketing-for-wp"],"egoi_form_subscribers":["smart-marketing-for-wp"],"sb_sermons":["sermon-browser"],"wpie_export_log":["woo-import-export-lite"],"bws_country":["visitors-online"],"sb_tags":["sermon-browser"],"sb_stuff":["sermon-browser"],"sb2_log":["seo-booster"],"sb2_kw":["seo-booster"],"rp_sessions":["restaurantpress"],"mp_product_attributes_terms":["wordpress-ecommerce"],"t_answers":["wp-testing"],"live_weather_station_background_process":["live-weather-station"],"gd_lightbox_settings":["responsive-lightbox-popup"],"wdp_rules":["advanced-dynamic-pricing-for-woocommerce"],"wdp_orders":["advanced-dynamic-pricing-for-woocommerce"],"wdp_order_items":["advanced-dynamic-pricing-for-woocommerce"],"wdm_bidders":["ultimate-auction"],"yrw_yelp_business":["widget-yelp-reviews"],"sb2_crawl":["seo-booster"],"yrw_yelp_review":["widget-yelp-reviews"],"mp_product_attributes":["wordpress-ecommerce"],"sb2_404":["seo-booster"],"t_scores":["wp-testing"],"t_sections":["wp-testing"],"sb2_autolink":["seo-booster"],"sb2_bl":["seo-booster"],"live_weather_station_log":["live-weather-station"],"t_passings":["wp-testing"],"ums_modules_type":["ultimate-maps-by-supsystic"],"ed_downloadform":["email-download-link"],"e_portfolio":["responsive-filterable-portfolio"],"ums_icons":["ultimate-maps-by-supsystic"],"dps_modules_type":["digital-publications-by-supsystic"],"peepso_users":["peepso-core"],"peepso_unfollow":["peepso-core"],"wcp_useroptions":["wcp-openweather"],"peepso_report":["peepso-core"],"peepso_reactions":["peepso-core"],"dps_page_sort_order":["digital-publications-by-supsystic"],"wtc_log":["traffic-counter-widget"],"peepso_notifications":["peepso-core"],"doifd_lab_downloads":["double-opt-in-for-download"],"doifd_lab_forms":["double-opt-in-for-download"],"doifd_lab_subscribers":["double-opt-in-for-download"],"ed_emaillist":["email-download-link"],"ed_pluginconfig":["email-download-link"],"live_weather_station_maps":["live-weather-station"],"dps_page_as_img":["digital-publications-by-supsystic"],"whtp_user_agents":["who-hit-the-page-hit-counter"],"peepso_mail_queue":["peepso-core"],"whtp_ip2location":["who-hit-the-page-hit-counter"],"dps_usage_stat":["digital-publications-by-supsystic"],"plugin_slickquiz":["slickquiz"],"mailpress_mails":["mailpress"],"plugin_slickquiz_scores":["slickquiz"],"cartflows_ca_email_templates_meta":["woo-cart-abandonment-recovery"],"whtp_hitinfo":["who-hit-the-page-hit-counter"],"whtp_hits":["who-hit-the-page-hit-counter"],"bp_profile":["beepress"],"cartflows_ca_email_templates":["woo-cart-abandonment-recovery"],"iyzico_card":["iyzico-woocommerce"],"jigoshop_downloadable_product_permissions":["jigoshop"],"jigoshop_termmeta":["jigoshop"],"whtp_ip_hits":["who-hit-the-page-hit-counter"],"cartflows_ca_email_history":["woo-cart-abandonment-recovery"],"cartflows_ca_cart_abandonment":["woo-cart-abandonment-recovery"],"iyzico_order":["iyzico-woocommerce"],"ft_http_requests":["fetch-tweets"],"wpal_geoipcountry":["wp-affiliate-links"],"t_passing_answers":["wp-testing"],"dps_modules":["digital-publications-by-supsystic"],"ums_maps":["ultimate-maps-by-supsystic"],"peepso_brute_force_attempts_logs":["peepso-core"],"amd_zlrecipe_recipes":["zip-recipes","ziplist-recipe-plugin"],"live_weather_station_performance_cache":["live-weather-station"],"td_terms":["terms-descriptions"],"vstrsnln_detailing":["visitors-online"],"peepso_errors":["peepso-core"],"peepso_cache":["peepso-core"],"ums_markers":["ultimate-maps-by-supsystic"],"peepso_gdpr_request_data":["peepso-core"],"rjg_gallery":["wp-responsive-photo-gallery"],"emailsub_addresses":["email-subscription"],"live_weather_station_notifications":["live-weather-station"],"ums_modules":["ultimate-maps-by-supsystic"],"live_weather_station_module_detail":["live-weather-station"],"live_weather_station_medias":["live-weather-station"],"vstrsnln_general":["visitors-online"],"t_fields":["wp-testing"],"t_field_values":["wp-testing"],"sb_services":["sermon-browser"],"live_weather_station_quota_day":["live-weather-station"],"ums_marker_groups":["ultimate-maps-by-supsystic"],"jzzf_form":["jazzy-forms"],"oqey_music":["oqey-gallery"],"live_weather_station_stations":["live-weather-station"],"wp_topbar_data":["wp-topbar"],"whtp_visiting_countries":["who-hit-the-page-hit-counter"],"live_weather_station_performance_cron":["live-weather-station"],"t_formulas":["wp-testing"],"live_weather_station_quota_year":["live-weather-station"],"peepso_hashtags":["peepso-core"],"peepso_likes":["peepso-core"],"ums_marker_groups_relation":["ultimate-maps-by-supsystic"],"ai_logs":["mycurator"],"ai_contact":["responsive-contact-form"],"wpsp_student":["wpschoolpress"],"appointy_calendar":["appointy-appointment-scheduler"],"web_paceportfolio_portfolios":["photo-portfolio-gallery"],"dreamobjects_backup_log":["dreamobjects"],"wpsp_settings":["wpschoolpress"],"yendif_player_playlists":["yendif-player"],"yendif_player_media":["yendif-player"],"stray_quotes":["stray-quotes","xv-random-quotes"],"stoutgc":["stout-google-calendar"],"stm_lms_user_quizzes_times":["masterstudy-lms-learning-management-system"],"wpsp_messages":["wpschoolpress"],"yendif_player_settings":["yendif-player"],"wpsp_notification":["wpschoolpress"],"iframepopup":["iframe-popup"],"wpsp_mark_fields":["wpschoolpress"],"wpsp_class":["wpschoolpress"],"nginxchampuru":["nginx-champuru"],"stm_lms_order_items":["masterstudy-lms-learning-management-system"],"oih_lists":["opt-in-hound"],"hdwplayer_playlist":["hdw-player-video-player-video-gallery"],"premmerce_search_words":["premmerce-search"],"hdwplayer_gallery":["hdw-player-video-player-video-gallery"],"hdwplayer":["hdw-player-video-player-video-gallery"],"taxonomyfield":["ultimate-taxonomy-manager"],"wpsc_ticketmeta":["supportcandy"],"joomsport_extra_select":["joomsport-sports-league-results-management"],"wpsp_attendance":["wpschoolpress"],"hurrytimer_evergreen":["hurrytimer"],"oih_opt_ins":["opt-in-hound"],"pluginsl_traffic_manager":["traffic-manager"],"joomsport_match_events":["joomsport-sports-league-results-management"],"adsforwp_stats":["ads-for-wp"],"joomsport_maps":["joomsport-sports-league-results-management"],"topic":["mycurator"],"wpshop_selected_items":["wp-shop-original"],"wpshop_orders":["wp-shop-original"],"wpshop_ordered":["wp-shop-original"],"joomsport_groups":["joomsport-sports-league-results-management"],"hdwplayer_videos":["hdw-player-video-player-video-gallery"],"tinycarousel_image":["tiny-carousel-horizontal-slider-plus"],"termsmeta":["wp-custom-taxonomy-meta","wp-category-meta","custom-taxonomy-category-and-term-fields"],"wpsp_mark":["wpschoolpress"],"stm_lms_user_quizzes":["masterstudy-lms-learning-management-system"],"wpsp_mark_extract":["wpschoolpress"],"stm_lms_user_lessons":["masterstudy-lms-learning-management-system"],"stm_lms_user_courses":["masterstudy-lms-learning-management-system"],"stm_lms_user_conversation":["masterstudy-lms-learning-management-system"],"stm_lms_user_chat":["masterstudy-lms-learning-management-system"],"joomsport_extra_fields":["joomsport-sports-league-results-management"],"stm_lms_user_cart":["masterstudy-lms-learning-management-system"],"stm_lms_user_answers":["masterstudy-lms-learning-management-system"],"tinycarousel":["tiny-carousel-horizontal-slider"],"ywrr_email_schedule":["yith-woocommerce-review-reminder"],"wctofb":["woo-to-facebook-shop"],"wpsp_leavedays":["wpschoolpress"],"wpsp_import_history":["wpschoolpress"],"wpsp_grade":["wpschoolpress"],"wpsp_fees_payment":["wpschoolpress"],"tinycarousel_gallery":["tiny-carousel-horizontal-slider-plus"],"wpsp_fees":["wpschoolpress"],"wpsp_fee_payment_history":["wpschoolpress"],"wpsp_exam":["wpschoolpress"],"wpsp_events":["wpschoolpress"],"ig_caticons":["category-icons"],"mailerlite_checkouts":["woo-mailerlite"],"draftsforfriends":["wp-draftsforfriends"],"oauth_public_keys":["oauth2-provider","wpdrift-io-worker"],"wpsp_subject":["wpschoolpress"],"amazon_orders":["wp-lister-for-amazon"],"amazon_stock_log":["wp-lister-for-amazon"],"wpappninja_push":["wpappninja"],"wpappninja_push_perso":["wpappninja"],"amazon_shipping":["wp-lister-for-amazon"],"amazon_reports":["wp-lister-for-amazon"],"amazon_profiles":["wp-lister-for-amazon"],"wpappninja_qrcode":["wpappninja"],"wpappninja_stats":["wpappninja"],"wpappninja_stats_users":["wpappninja"],"amazon_payment":["wp-lister-for-amazon"],"joomsport_season_table":["joomsport-sports-league-results-management"],"amazon_markets":["wp-lister-for-amazon"],"hostnet_mailer":["hostnet-mailer"],"amazon_log":["wp-lister-for-amazon"],"amazon_listings":["wp-lister-for-amazon"],"postsread":["mycurator"],"postview":["wp-post-view","yg-popular","anppopular-post"],"ewd_feup_users":["front-end-only-users"],"ewd_feup_user_fields":["front-end-only-users"],"ewd_feup_user_events":["front-end-only-users"],"donate_mollie":["doneren-met-mollie"],"donate_mollie_donors":["doneren-met-mollie"],"horizontal_scrolling_hsas":["horizontal-scrolling-announcements"],"donate_mollie_subscriptions":["doneren-met-mollie"],"hndtst_saved":["handsome-testimonials"],"wpappninja_installs":["wpappninja"],"ewd_feup_payments":["front-end-only-users"],"wpsp_teacher_attendance":["wpschoolpress"],"oauth_jwt":["oauth2-provider","wpdrift-io-worker"],"wpsp_workinghours":["wpschoolpress"],"wpsp_transport":["wpschoolpress"],"wpsp_timetable":["wpschoolpress"],"oauth_clients":["oauth2-provider"],"joomsport_squad":["joomsport-sports-league-results-management"],"oauth_refresh_tokens":["oauth2-provider","wpdrift-io-worker"],"oauth_scopes":["oauth2-provider","wpdrift-io-worker"],"polls_users":["polls-widget"],"polls_templates":["polls-widget"],"polls_question":["polls-widget"],"polls":["polls-widget"],"wpsp_teacher":["wpschoolpress"],"hotelier_bookings":["wp-hotelier"],"oauth_authorization_codes":["oauth2-provider","wpdrift-io-worker"],"oauth_access_tokens":["oauth2-provider","wpdrift-io-worker"],"hotelier_rooms_bookings":["wp-hotelier"],"joomsport_seasons":["joomsport-sports-league-results-management"],"podlovesubscribebutton_button":["podlove-subscribe-button"],"hotelier_sessions":["wp-hotelier"],"wpappninja_adserver":["wpappninja"],"hotelier_reservation_items":["wp-hotelier"],"hotelier_reservation_itemmeta":["wp-hotelier"],"activity":["wp-activity"],"wpappninja_home_perso":["wpappninja"],"wpappninja_ids":["wpappninja"],"amazon_jobs":["wp-lister-for-amazon"],"ewd_feup_levels":["front-end-only-users"],"web_paceportfolio_images":["photo-portfolio-gallery"],"nova_poshta_area":["woo-shipping-for-nova-poshta"],"image_compression_settings":["wp-image-compression"],"image_compression_details":["wp-image-compression"],"hl_twitter_users":["hl-twitter"],"joomsport_playerlist":["joomsport-sports-league-results-management"],"joomsport_match_statuses":["joomsport-sports-league-results-management"],"hl_twitter_tweets":["hl-twitter"],"hl_twitter_replies":["hl-twitter"],"wpap_cache":["wp-associate-post-r2"],"nova_poshta_warehouse":["woo-shipping-for-nova-poshta"],"ewd_feup_fields":["front-end-only-users"],"nova_poshta_region":["woo-shipping-for-nova-poshta"],"nova_poshta_city":["woo-shipping-for-nova-poshta"],"easy2map_themes":["easy2map"],"albopretorio_atti":["albo-pretorio-on-line"],"easy2map_templates":["easy2map"],"easy2map_pin_templates":["easy2map"],"ajax_chat":["simple-ajax-chat"],"ywrr_email_blocklist":["yith-woocommerce-review-reminder"],"easy2map_maps":["easy2map"],"easy2map_map_points":["easy2map"],"joomsport_box_fields":["joomsport-sports-league-results-management"],"joomsport_box_match":["joomsport-sports-league-results-management"],"joomsport_config":["joomsport-sports-league-results-management"],"joomsport_events":["joomsport-sports-league-results-management"],"hf_submissions":["html-forms"],"api_setting":["wp-gcalendar"],"albopretorio_allegati":["albo-pretorio-on-line"],"albopretorio_attimeta":["albo-pretorio-on-line"],"exporttopdfrecord":["wp-advanced-pdf"],"imagelinks":["imagelinks-interactive-image-builder-lite"],"amazon_feeds":["wp-lister-for-amazon"],"androapp_stats":["androapp"],"amazon_feed_tpl_values":["wp-lister-for-amazon"],"amazon_feed_tpl_data":["wp-lister-for-amazon"],"angelleye_paypal_for_divi_companies":["angelleye-paypal-for-divi"],"amazon_feed_templates":["wp-lister-for-amazon"],"amazon_categories":["wp-lister-for-amazon"],"openid_identities":["openid"],"amazon_btg":["wp-lister-for-amazon"],"wpsc_ticket":["supportcandy"],"amazon_accounts":["wp-lister-for-amazon"],"wpls":["wp-live-statistics"],"loginlog":["login-logger"],"albopretorio_categorie":["albo-pretorio-on-line"],"swp_category":["wp-testimonial-widget"],"swp_testimonial":["wp-testimonial-widget"],"anycomment_email_queue":["anycomment"],"alert_notice_boxes":["alert-notice-boxes"],"wpls_online":["wp-live-statistics"],"albopretorio_resprocedura":["albo-pretorio-on-line"],"anycomment_likes":["anycomment"],"albopretorio_log":["albo-pretorio-on-line"],"anycomment_rating":["anycomment"],"anycomment_subscriptions":["anycomment"],"anycomment_uploaded_files":["anycomment"],"albopretorio_enti":["albo-pretorio-on-line"],"yumpu_documents":["yumpu-epaper-publishing"],"watsonconv_actions":["conversation-watson"],"oih_subscribers":["opt-in-hound"],"fluentform_form_meta":["fluentform"],"esp_line_item":["event-espresso-decaf"],"esp_log":["event-espresso-decaf"],"fmepco_temp_table":["fma-product-custom-options"],"fmepco_rowoption_table":["fma-product-custom-options"],"fmepco_poptions_table":["fma-product-custom-options"],"fluentform_transactions":["fluentform"],"fluentform_submissions":["fluentform"],"fluentform_submission_meta":["fluentform"],"fluentform_forms":["fluentform"],"fluentform_form_analytics":["fluentform"],"esp_extra_meta":["event-espresso-decaf"],"gd_manager":["wp-google-drive"],"mobiloud_pages":["mobiloud-mobile-app-plugin"],"watsonconv_watson_outputs":["conversation-watson"],"wswebinars_notifications":["wp-webinarsystem"],"wswebinars_questions":["wp-webinarsystem"],"esp_message":["event-espresso-decaf"],"esp_message_template":["event-espresso-decaf"],"esp_message_template_group":["event-espresso-decaf"],"esp_payment":["event-espresso-decaf"],"bup_options_categories":["backup-by-supsystic"],"rich_web_font_family":["tabbed","form-forms"],"esp_extra_join":["event-espresso-decaf"],"rfmp_subscriptions":["mollie-forms"],"sc_eventmeta":["sugar-calendar-lite"],"rich_web_tabs_effect_2":["tabbed"],"rich_web_tabs_effect_1":["tabbed"],"usersultra_videos":["users-ultra"],"eg_attachments_clicks":["eg-attachments"],"gcf":["simple-contact-form"],"mollie_forms_price_options":["mollie-forms"],"mollie_forms_payments":["mollie-forms"],"mollie_forms_customers":["mollie-forms"],"wpia_calendars":["wp-ical-availability"],"rich_web_icons":["tabbed","rich-event-timeline"],"mwd_themes":["wd-mailchimp"],"followme_links":["follow-me"],"mwd_display_options":["wd-mailchimp"],"mwd_forms":["wd-mailchimp"],"mwd_forms_backup":["wd-mailchimp"],"mwd_forms_blocked":["wd-mailchimp"],"mwd_forms_sessions":["wd-mailchimp"],"sc_events":["sugar-calendar-lite"],"wpc_comments_subscription":["woodiscuz-woocommerce-comments"],"mwd_forms_submits":["wd-mailchimp"],"mwd_forms_views":["wd-mailchimp"],"bup_options":["backup-by-supsystic"],"rfmp_registrations":["mollie-forms"],"rich_web_tabs_effects_data":["tabbed"],"replace_mandegarweb":["replace-default-words"],"wpportfolio_groups_websites":["wp-portfolio"],"watsonconv_output_entities":["conversation-watson"],"cntctfrmtdb_blogname":["contact-form-to-db"],"cntctfrmtdb_field_selection":["contact-form-to-db"],"cntctfrmtdb_hosted_site":["contact-form-to-db"],"cntctfrmtdb_message":["contact-form-to-db"],"cntctfrmtdb_message_status":["contact-form-to-db"],"cntctfrmtdb_refer":["contact-form-to-db"],"cntctfrmtdb_to_email":["contact-form-to-db"],"watsonconv_intents":["conversation-watson"],"securimagewp":["securimage-wp","securimage-wp-fixed"],"wpportfolio_websites":["wp-portfolio"],"watsonconv_input_intents":["conversation-watson"],"wpportfolio_websites_meta":["wp-portfolio"],"remove_menu_admin_profiles":["remove-admin-menus-by-role"],"watsonconv_input_entities":["conversation-watson"],"watsonconv_entities":["conversation-watson"],"related_post_stats":["related-post"],"esp_payment_method":["event-espresso-decaf"],"watsonconv_debug_log":["conversation-watson"],"ivrss_plugin":["image-vertical-reel-scroll-slideshow"],"senderqueue":["elastic-email-sender"],"sections":["my-posts-order"],"bup_modules_type":["backup-by-supsystic"],"responsive_slider_plus_responsive_lightbox":["wp-responsive-slider-with-lightbox"],"bup_modules":["backup-by-supsystic"],"rfmp_registration_fields":["mollie-forms"],"rfmp_payments":["mollie-forms"],"rfmp_customers":["mollie-forms"],"bup_htmltype":["backup-by-supsystic"],"watsonconv_user_inputs":["conversation-watson"],"watsonconv_task_runner_queue":["conversation-watson"],"watsonconv_sessions":["conversation-watson"],"responsive_video_grid":["video-grid"],"watsonconv_requests":["conversation-watson"],"watsonconv_output_intents":["conversation-watson"],"users_ultra_pm":["users-ultra"],"vertical_thumbnail_slider":["wp-vertical-image-slider"],"wswebinars_subscribers":["wp-webinarsystem"],"mobiloud_notifications":["mobiloud-mobile-app-plugin"],"wppizza_orders":["wppizza"],"mobiloud_notification_categories":["mobiloud-mobile-app-plugin"],"wppizza_orders_meta":["wppizza"],"mobiloud_categories":["mobiloud-mobile-app-plugin"],"wpportfolio_custom_fields":["wp-portfolio"],"wpportfolio_debuglog":["wp-portfolio"],"wpportfolio_groups":["wp-portfolio"],"mv_supplies":["mediavine-create"],"rich_web_tabs_fields":["tabbed"],"esp_price_type":["event-espresso-decaf"],"mphb_sync_stats":["motopress-hotel-booking-lite"],"chat_log":["chat"],"chat_message":["chat"],"upicrm_leads_route":["upi-crm-universal-crm-solution"],"upicrm_leads_integration":["upi-crm-universal-crm-solution"],"upicrm_leads_changes_log":["upi-crm-universal-crm-solution"],"upicrm_leads_campaign":["upi-crm-universal-crm-solution"],"esp_currency":["event-espresso-decaf"],"mphb_sync_urls":["motopress-hotel-booking-lite"],"wsi_splashimage":["wsi"],"esp_currency_payment_method":["event-espresso-decaf"],"mpp_logs":["mediapress"],"usersultra_ajaxrating_vote":["users-ultra"],"wsi_config":["wsi"],"usersultra_ajaxrating_votesummary":["users-ultra"],"esp_datetime":["event-espresso-decaf"],"esp_datetime_ticket":["event-espresso-decaf"],"ceceppa_ml_trans":["ceceppa-multilingua"],"ceceppa_ml_relations":["ceceppa-multilingua"],"esp_event_message_template":["event-espresso-decaf"],"ceceppa_ml_cats":["ceceppa-multilingua"],"ceceppa_ml":["ceceppa-multilingua"],"rm_log":["easy-redirect-manager"],"upicrm_leads_status":["upi-crm-universal-crm-solution"],"mphb_sync_logs":["motopress-hotel-booking-lite"],"fullstripe_payments":["wp-full-stripe-free"],"robo_maps":["robo-maps"],"esp_answer":["event-espresso-decaf"],"freshmail_stats":["freshmail-integration"],"freshmail_forms":["freshmail-integration"],"olimometer_olimometers":["olimometer"],"cf7db":["database-for-cf7"],"upicrm_webservice_parameters":["upi-crm-universal-crm-solution"],"upicrm_webservice":["upi-crm-universal-crm-solution"],"fullstripe_payment_forms":["wp-full-stripe-free"],"pb_requests":["praybox"],"upicrm_mails":["upi-crm-universal-crm-solution"],"esp_checkin":["event-espresso-decaf"],"esp_country":["event-espresso-decaf"],"fpropdf_tmp":["formidablepro-2-pdf"],"fpropdf_layouts":["formidablepro-2-pdf"],"fpropdf_fields":["formidablepro-2-pdf"],"pb_prayedfor":["praybox"],"pb_flags":["praybox"],"pb_banned_ips":["praybox"],"upicrm_users":["upi-crm-universal-crm-solution"],"upicrm_options":["upi-crm-universal-crm-solution"],"mphb_sync_queue":["motopress-hotel-booking-lite"],"cdi":["colissimo-delivery-integration"],"rich_web_tabs_id":["tabbed"],"mv_products_map":["mediavine-create"],"edr_tax_rates":["educator"],"upicrm_fields":["upi-crm-universal-crm-solution"],"cas_plugin":["continuous-announcement-scroller"],"captured_wc_fields":["woo-save-abandoned-carts"],"wpinv_subscriptions":["invoicing"],"mv_images":["mediavine-create"],"mv_nutrition":["mediavine-create"],"mv_products":["mediavine-create"],"camera":["camera-slideshow"],"mollie_forms_subscriptions":["mollie-forms"],"edr_payments":["educator"],"mollie_forms_registrations":["mollie-forms"],"mollie_forms_registration_price_options":["mollie-forms"],"mollie_forms_registration_fields":["mollie-forms"],"satl_galleries":["slideshow-satellite"],"mv_relations":["mediavine-create"],"mv_reviews":["mediavine-create"],"satl_slides":["slideshow-satellite"],"mv_shapes":["mediavine-create"],"rich_web_tabs_manager":["tabbed"],"edr_questions":["educator"],"edr_payment_lines":["educator"],"errors_404_logs":["404-error-monitor"],"usersultra_likes":["users-ultra"],"upicrm_leads":["upi-crm-universal-crm-solution"],"upicrm_integrations":["upi-crm-universal-crm-solution"],"upicrm_fields_mapping":["upi-crm-universal-crm-solution"],"edr_answers":["educator"],"edr_choices":["educator"],"edr_entries":["educator"],"edr_entry_meta":["educator"],"usersultra_friends":["users-ultra"],"usersultra_galleries":["users-ultra"],"edr_grades":["educator"],"usersultra_orders":["users-ultra"],"edr_members":["educator"],"usersultra_packages":["users-ultra"],"usersultra_photo_cat_rel":["users-ultra"],"usersultra_photo_categories":["users-ultra"],"usersultra_photos":["users-ultra"],"usersultra_stats":["users-ultra"],"usersultra_stats_raw":["users-ultra"],"esp_event_meta":["event-espresso-decaf"],"esp_event_question_group":["event-espresso-decaf"],"esp_event_venue":["event-espresso-decaf"],"mv_creations":["mediavine-create"],"ssa_availability":["simply-schedule-appointments"],"esp_price":["event-espresso-decaf"],"woocommerce_p24_data":["woo-przelewy24-payment-gateway"],"qb_bars":["quickiebar"],"wprmm_items":["easy-restaurant-menu-manager"],"watsonconv_contexts":["conversation-watson"],"wprmm_menus":["easy-restaurant-menu-manager"],"esp_attendee_meta":["event-espresso-decaf"],"qcld_slider_hero_slides":["slider-hero"],"qcld_slider_hero_sliders":["slider-hero"],"qb_views":["quickiebar"],"qb_conversions":["quickiebar"],"q2w3_post_order":["q2w3-post-order"],"wpdev_crm_orders":["booking-manager"],"crony_jobs":["crony"],"crony_logs":["crony"],"mc_forms":["nmedia-mailchimp-widget"],"wptsaf_security_system_log":["security-antivirus-firewall"],"wptsaf_security_network_monitor_manager_ip_change_log":["security-antivirus-firewall"],"esp_transaction":["event-espresso-decaf"],"esp_venue_meta":["event-espresso-decaf"],"pw_gcmusers":["androapp"],"az_indexes":["azindex"],"mdp_reviews":["mdp-local-business-seo"],"vision":["vision"],"comment_likes":["anycomment"],"cpf_customfeeds":["purple-xmls-google-product-feed-for-woocommerce"],"bft_users":["bft-autoresponder"],"bft_sentmails":["bft-autoresponder"],"bft_newsletters":["bft-autoresponder"],"bft_mails":["bft-autoresponder"],"bft_emaillog":["bft-autoresponder"],"esp_question":["event-espresso-decaf"],"wprmm_icons":["easy-restaurant-menu-manager"],"cpf_custom_products":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_feedproducts":["purple-xmls-google-product-feed-for-woocommerce"],"wpdev_crm_customers":["booking-manager"],"cpf_resolved_product_data":["purple-xmls-google-product-feed-for-woocommerce"],"google_maps":["google-maps-bank"],"google_maps_meta":["google-maps-bank"],"vxcf_leads_notes":["contact-form-entries"],"vxcf_leads_detail":["contact-form-entries"],"vxcf_leads":["contact-form-entries"],"404_log":["404-error-logger"],"comment_uploaded_files":["anycomment"],"ays_sccp":["secure-copy-content-protection"],"sl_pages":["mycurator"],"spellcheck_words":["wp-spell-check"],"spellcheck_grammar":["wp-spell-check"],"spellcheck_grammar_options":["wp-spell-check"],"spellcheck_html":["wp-spell-check"],"spellcheck_ignore":["wp-spell-check"],"spellcheck_options":["wp-spell-check"],"auto_updater_history":["wp-auto-updater"],"facebook_pages":["wp-facebook-portal"],"facebook_likebox_parent":["facebook-likebox"],"atbdp_review":["directorist"],"wptsaf_security_easy_password_log":["security-antivirus-firewall"],"asq_result_templates":["ari-stream-quiz"],"asq_quizzes":["ari-stream-quiz"],"asq_questions":["ari-stream-quiz"],"asq_answers":["ari-stream-quiz"],"facebook_likebox_meta":["facebook-likebox"],"srzyt_albums":["srizon-responsive-youtube-album"],"ssa_appointment_types":["simply-schedule-appointments"],"ssa_appointments":["simply-schedule-appointments"],"ssa_async_actions":["simply-schedule-appointments"],"wptsaf_security_404_detection_log":["security-antivirus-firewall"],"wptsaf_security_extension_error_monitor_log":["security-antivirus-firewall"],"wptsaf_security_network_monitor_manager_ip":["security-antivirus-firewall"],"word_replacer":["word-replacer"],"wptsaf_security_network_monitor_log":["security-antivirus-firewall"],"cta_ip_failed_atts":["captcha-them-all"],"wptsaf_security_malware_scanner_log":["security-antivirus-firewall"],"wptsaf_security_login_brute_force_log":["security-antivirus-firewall"],"pta_sus_tasks":["pta-volunteer-sign-up-sheets"],"pta_sus_signups":["pta-volunteer-sign-up-sheets"],"pta_sus_sheets":["pta-volunteer-sign-up-sheets"],"fav_icon_link":["easy-set-favicon"],"psn_rules":["post-status-notifier-lite"],"spectrom_sync":["wpsitesynccontent"],"spellcheck_empty":["wp-spell-check"],"spectrom_sync_log":["wpsitesynccontent"],"wptsaf_security_google_captcha_log":["security-antivirus-firewall"],"spectrom_sync_media":["wpsitesynccontent"],"spectrom_sync_sources":["wpsitesynccontent"],"cubiq_add_to_home":["official-add-to-homescreen"],"wptsaf_security_google_captcha_blog_settings":["security-antivirus-firewall"],"spellcheck_dictionary":["wp-spell-check"],"cup_cp_profiles":["contact-us-page-contact-people"],"wptsaf_security_file_change_log":["security-antivirus-firewall"],"slider_plus_lightbox":["wp-image-slider-with-lightbox"],"bft_attachments":["bft-autoresponder"],"qwall_monitor":["querywall"],"lctr2_migrations":["locatoraid"],"who_is_online":["who-is-online"],"sfm_redirects":["feedburner-alternative-and-rss-redirect"],"ucare_logs":["ucare-support-system"],"wblm_log":["broken-link-manager"],"bounced_email_logs":["bounce-handler-mailpoet"],"jackmail_scenarios_events":["jackmail-newsletters"],"geot_countries":["geotargeting","geo-redirects"],"lctr2_conf":["locatoraid"],"lctr2_locations":["locatoraid"],"jackmail_scenarios_urls":["jackmail-newsletters"],"bp_group_documents":["bp-group-documents"],"jackmail_templates":["jackmail-newsletters"],"jackmail_woocommerce_email_notification":["jackmail-newsletters"],"wpc_phrases":["woodiscuz-woocommerce-comments"],"lctr2_relations":["locatoraid"],"contactic_notices":["contactic"],"contactic_st":["contactic"],"contactic_submits":["contactic"],"esp_status":["event-espresso-decaf"],"shashin_album":["shashin"],"shashin_photo":["shashin"],"sfbap_subscription_lists":["wp-subscribe-form"],"sfbap_subscribers_lists":["wp-subscribe-form"],"wpc_users_voted":["woodiscuz-woocommerce-comments"],"esp_registration":["event-espresso-decaf"],"wblm":["broken-link-manager"],"name_directory":["name-directory"],"name_directory_name":["name-directory"],"iyzico_checkout_form_user":["iyzico-payment-module"],"comment_notifier":["comment-notifier","comment-notifier-no-spammers"],"iyzico_order_refunds":["iyzico-payment-module"],"esp_question_group":["event-espresso-decaf"],"wr_contactform_submission_data":["wr-contactform"],"esp_question_group_question":["event-espresso-decaf"],"esp_question_option":["event-espresso-decaf"],"comments_fbseo":["seo-facebook-comments"],"sfba_subscription_lists":["wp-subscribe-form"],"jackmail_campaigns":["jackmail-newsletters"],"wr_contactform_form_pages":["wr-contactform"],"jackmail_campaigns_urls":["jackmail-newsletters"],"jackmail_lists":["jackmail-newsletters"],"wr_contactform_fields":["wr-contactform"],"jackmail_lists_contacts_1":["jackmail-newsletters"],"sfba_subscribers_lists":["wp-subscribe-form"],"jackmail_scenarios":["jackmail-newsletters"],"esp_registration_payment":["event-espresso-decaf"],"esp_state":["event-espresso-decaf"],"lctr2_searchlog":["locatoraid"],"feed_postviews":["wordpress-feed-statistics"],"leaguemanager_teams":["leaguemanager"],"shopp_summary":["shopp"],"continuous_image_carousel":["continuous-image-carousel-with-lightbox"],"radioforge_radio":["radio-forge"],"leaguemanager_leagues":["leaguemanager"],"leaguemanager_matches":["leaguemanager"],"tpcmem_log":["tpc-memory-usage","tpc-memory-usage-updated"],"_contactformrelation":["zoho-crm-forms"],"_zohoshortcode_manager":["zoho-crm-forms"],"feed_clickthroughs":["wordpress-feed-statistics"],"nd_learning_courses":["nd-learning"],"_zohocrmform_field_manager":["zoho-crm-forms"],"feed_links":["wordpress-feed-statistics"],"_submitlogs":["zoho-crm-forms"],"simple_feed_stats":["simple-feed-stats"],"_zohocrm_assignmentrule":["zoho-crm-forms"],"mfgigcal":["mf-gig-calendar"],"feed_subscribers":["wordpress-feed-statistics"],"nd_donations_donations":["nd-donations"],"_zohocrm_formfield_manager":["zoho-crm-forms"],"shopp_shopping":["shopp"],"shopp_purchased":["shopp"],"_zohocrm_list_module":["zoho-crm-forms"],"wprmm_categories":["easy-restaurant-menu-manager"],"shopp_address":["shopp"],"cp_easy_form_settings":["cp-easy-form-builder"],"shopp_asset":["shopp"],"shopp_purchase":["shopp"],"shopp_customer":["shopp"],"esp_ticket":["event-espresso-decaf"],"cp_feeds":["purple-xmls-google-product-feed-for-woocommerce"],"esp_ticket_price":["event-espresso-decaf"],"shopp_index":["shopp"],"shopp_meta":["shopp"],"shopp_price":["shopp"],"esp_ticket_template":["event-espresso-decaf"],"shopp_promo":["shopp"],"tpcmem_checkpoints":["tpc-memory-usage","tpc-memory-usage-updated"],"eventer_users":["eventer"],"etd_manager":["email-to-download"],"onclick_show_popup":["onclick-show-popup"],"jssor_slider_sliders":["jssor-slider"],"jssor_slider_trans":["jssor-slider"],"jot_groupmeta":["joy-of-text"],"opalhotel_order_items":["opal-hotel-room-booking"],"jot_messagequeue":["joy-of-text"],"jot_messages":["joy-of-text"],"opalestate_usersearch":["opal-estate"],"opalhotel_order_itemmeta":["opal-hotel-room-booking"],"opalhotel_pricing":["opal-hotel-room-booking"],"jot_groups":["joy-of-text"],"jsdelivr_files":["jsdelivr-wordpress-cdn-plugin"],"jquery_newsticker":["jquery-news-ticker"],"es_advanced_form":["email-subscribers-advanced-form"],"opalhotel_rating_item":["opal-hotel-room-booking"],"jot_groupinvites":["joy-of-text"],"jot_groupmembers":["joy-of-text"],"wpinventory_category":["wp-inventory-manager"],"jot_groupmemxref":["joy-of-text"],"opalhotel_ratings":["opal-hotel-room-booking"],"mpprecipe_recipes":["meal-planner-pro","blockonomics-bitcoin-payments"],"events_answer":["event-espresso-free"],"gc_shop_item_stocksms":["gnucommerce"],"gc_shop_wish":["gnucommerce"],"gc_shop_sendcost":["gnucommerce"],"gc_shop_personalpay":["gnucommerce"],"gc_shop_order_delete":["gnucommerce"],"gc_shop_order_data":["gnucommerce"],"gc_shop_order":["gnucommerce"],"gc_shop_mileage":["gnucommerce"],"gc_shop_item_qa":["gnucommerce"],"wpbooklist_jre_user_options":["wpbooklist"],"gc_shop_item":["gnucommerce"],"gc_shop_coupon_log":["gnucommerce"],"gc_shop_coupon":["gnucommerce"],"gc_shop_cart":["gnucommerce"],"gc_item_use":["gnucommerce"],"gc_item_option":["gnucommerce"],"gc_inicis_log":["gnucommerce"],"gc_cert_history":["gnucommerce"],"gc_uniqid":["gnucommerce"],"wpbooklist_jre_users_table":["wpbooklist"],"monalisa":["wp-monalisa"],"giveasap_entries":["giveasap"],"gktpp_ajax_domains":["pre-party-browser-hints"],"messagebox":["simple-ajax-shoutbox"],"messagebox_embed_cache":["simple-ajax-shoutbox"],"interlinker_settings":["cross-linker"],"giveasap_meta":["giveasap"],"interlinker_special_chars":["cross-linker"],"interlinker_times":["cross-linker"],"internalinks":["internal-links-generator"],"giveasap_actions":["giveasap"],"iq_testimonials_settings":["iq-testimonials"],"gigs_venue":["gigs-calendar"],"gigs_tour":["gigs-calendar"],"gigs_performance":["gigs-calendar"],"gigs_gig":["gigs-calendar"],"mk_newsletter_data":["newsletter-popup"],"mk_newsletter_local_records":["newsletter-popup"],"ipages_flipbook":["ipages-flipbook"],"iq_testimonials":["iq-testimonials"],"wpms":["shortcode-gallery-for-matterport-showcase"],"wpbooklist_jre_storytime_stories_settings":["wpbooklist"],"interlinker_multilang":["cross-linker"],"wpbooklist_jre_color_options":["wpbooklist"],"moo_order_types":["clover-online-orders"],"moo_tag":["clover-online-orders"],"moo_tax_rate":["clover-online-orders"],"moove_activity_log":["user-activity-tracking-and-log"],"most_read_hits":["most-read-posts-in-xx-days"],"wpbooklist_jre_post_options":["wpbooklist"],"wpbooklist_jre_page_options":["wpbooklist"],"wpbooklist_jre_list_dynamic_db_names":["wpbooklist"],"g5_writemeta":["gnucommerce","gnupress"],"moo_option":["clover-online-orders"],"g5_write_comment":["gnucommerce","gnupress"],"g5_write":["gnucommerce","gnupress"],"mpd_log":["multisite-post-duplicator"],"g5_term_taxonomy":["gnucommerce","gnupress"],"g5_term_relationships":["gnucommerce","gnupress"],"g5_scrap":["gnucommerce","gnupress"],"g5_point":["gnucommerce","gnupress"],"g5_board_good":["gnucommerce","gnupress"],"moo_order":["clover-online-orders"],"moo_modifier_group":["clover-online-orders"],"wpbooklist_jre_storytime_stories":["wpbooklist"],"moo_category":["clover-online-orders"],"wpbooklist_jre_saved_page_post_log":["wpbooklist"],"wpbooklist_jre_saved_books_for_featured":["wpbooklist"],"gallery_master_settings":["gallery-master"],"gallery_master_meta":["gallery-master"],"gallery_master_licensing":["gallery-master"],"gallery_master":["gallery-master"],"wpbooklist_jre_saved_book_log":["wpbooklist"],"moo_attribute":["clover-online-orders"],"moo_images":["clover-online-orders"],"moo_modifier":["clover-online-orders"],"moo_item":["clover-online-orders"],"moo_item_group":["clover-online-orders"],"moo_item_modifier_group":["clover-online-orders"],"moo_item_option":["clover-online-orders"],"moo_item_order":["clover-online-orders"],"moo_item_tag":["clover-online-orders"],"moo_item_tax_rate":["clover-online-orders"],"gktpp_table":["pre-party-browser-hints"],"interlinker_lng_wds":["cross-linker"],"wpbooklist_jre_book_quotes":["wpbooklist"],"limb_gallery_albumscontent":["limb-gallery"],"limb_gallery_themes":["limb-gallery"],"limb_gallery_settings":["limb-gallery"],"wpf_modules_type":["woo-product-filter"],"wpf_modules":["woo-product-filter"],"limb_gallery_galleriescontent":["limb-gallery"],"limb_gallery_galleries":["limb-gallery"],"limb_gallery_comments":["limb-gallery"],"limb_gallery_albums":["limb-gallery"],"image_hover_with_carousel_style":["image-hover-effects-with-carousel"],"ltw_testimonial_groups":["ltw-testimonials"],"ltw_testimonials":["ltw-testimonials"],"wpf_filters":["woo-product-filter"],"wpex_titles":["wp-experiments-free"],"importer_files":["jc-importer"],"importer_log":["jc-importer"],"wpex_stats":["wp-experiments-free"],"hermit_cat":["hermit"],"loginsecurity_logs":["rename-wp-loginphp-to-anything-you-want"],"image_hover_with_carousel_list":["image-hover-effects-with-carousel"],"impressum_manager_content":["impressum-manager"],"hypeanimations":["tumult-hype-animations"],"liveforms_stats":["liveforms"],"ic_compressed":["wp-compress-image-optimizer"],"llm":["link-list-manager"],"llp_templates":["wp-landing-pages"],"wpfd_statistics":["wp-smart-editor"],"lme_areas":["local-market-explorer"],"ic_log":["wp-compress-image-optimizer"],"wpf_usage_stat":["woo-product-filter"],"ic_queue":["wp-compress-image-optimizer"],"ilj_linkindex":["internal-links"],"ic_stats":["wp-compress-image-optimizer"],"liveforms_addons_form_details":["liveforms"],"liveforms_addons_active":["liveforms"],"liveforms_addons":["liveforms"],"hugeit_colorbox":["colorbox"],"login_attempt_log":["wp-login-attempt-log"],"iire_social":["iire-social-icons"],"il_local":["inlocation"],"hermit":["hermit"],"wpdoctor_configuration":["wp-doctor"],"interlinker_divide_chars":["cross-linker"],"memberful_mapping":["memberful-wp"],"mdp_gwt_pages":["mdp-google-webmaster-tools"],"mdp_gwt_query":["mdp-google-webmaster-tools"],"media_folder_file_relationship":["wp-media-manager-lite"],"media_folders_lists":["wp-media-manager-lite"],"melipayamak_gfverification":["melipayamak"],"melipayamak_groups":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_members":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_messages":["melipayamak","melipayamak-woocommerce-sms"],"integrity_checker_files":["integrity-checker"],"mdp_gwt_internal_links":["mdp-google-webmaster-tools"],"intel_entity_attr":["intelligence"],"intel_submission":["intelligence"],"intel_value_str":["intelligence"],"intel_visitor":["intelligence"],"intel_visitor_identifier":["intelligence"],"interlinker":["cross-linker"],"interlinker_attributes":["cross-linker"],"interlinker_backups":["cross-linker"],"mdp_gwt_keywords":["mdp-google-webmaster-tools"],"mdp_gwt_external_links":["mdp-google-webmaster-tools"],"indeed_job_importer":["indeed-job-importer"],"mapsvg_schema":["mapsvg-lite-interactive-vector-maps"],"indica_econo":["widget-indicadores-economicos-chile"],"ha_user_event":["hotspots"],"ha_user_environment":["hotspots"],"ha_user":["hotspots"],"ha_custom_event":["hotspots"],"infopopup":["infopopup"],"information_reel":["information-reel"],"mapsvg_r2d":["mapsvg-lite-interactive-vector-maps"],"lic_reg_domain_tbl":["software-license-manager"],"liveforms_conreqs":["liveforms"],"lic_key_tbl":["software-license-manager"],"wpdevart_images":["gallery-album"],"wpdevart_gallery_theme":["gallery-album"],"wpdevart_gallery_popup_theme":["gallery-album"],"wpdevart_gallery":["gallery-album"],"mbdb_books":["mooberry-book-manager"],"gravatars":["fv-gravatar-cache"],"mcwp_coins":["cryptocurrency-widgets-pack"],"g5_board":["gnucommerce","gnupress"],"mpprecipe_ratings":["blockonomics-bitcoin-payments","meal-planner-pro"],"events_attendee":["event-espresso-free"],"ez_adsense_options":["adsense-now-lite","google-adsense-lite","ajax-adsense"],"ezfc_preview":["ez-form-calculator"],"ezfc_options":["ez-form-calculator"],"ezfc_forms_options":["ez-form-calculator"],"ezfc_forms_elements":["ez-form-calculator"],"ezfc_forms":["ez-form-calculator"],"ezfc_files":["ez-form-calculator"],"ezfc_debug":["ez-form-calculator"],"nggv_settings":["nextgen-gallery-voting"],"ezfc_templates":["ez-form-calculator"],"nggv_votes":["nextgen-gallery-voting"],"wpbannerizeimpressions":["wp-bannerize-pro"],"wpbannerizeclicks":["wp-bannerize-pro"],"notify":["jazz-popups"],"novomap_gmap":["novo-map"],"novomap_marker":["novo-map"],"novomap_marker_logo":["novo-map"],"exportsreports_reports":["exports-and-reports"],"ezfc_submissions":["ez-form-calculator"],"ezoic_endpoints":["ezoic-integration","bloomly-integration"],"exportsreports_groups":["exports-and-reports"],"newsman_blocked_domains":["wpnewsman-newsletters"],"fbthumbnails":["easy-facebook-share-thumbnails"],"newsletter_users":["wordpress-newsletter"],"newsman_an_clicks":["wpnewsman-newsletters"],"newsman_an_links":["wpnewsman-newsletters"],"fb_comments_image_data":["fb-comments-importer"],"newsman_an_sub_details":["wpnewsman-newsletters"],"newsman_an_timeline":["wpnewsman-newsletters"],"newsman_email_templates":["wpnewsman-newsletters"],"wps_awesome_logos_meta":["awesome-logos"],"newsman_emails":["wpnewsman-newsletters"],"newsman_lists":["wpnewsman-newsletters"],"newsman_locks":["wpnewsman-newsletters"],"newsman_lst_default":["wpnewsman-newsletters"],"newsman_lst_wp_users":["wpnewsman-newsletters"],"newsman_sentlog":["wpnewsman-newsletters"],"newsman_workers":["wpnewsman-newsletters"],"wps_awesome_logos":["awesome-logos"],"exportsreports_log":["exports-and-reports"],"fc_action_history":["oasis-workflow"],"events_meta":["event-espresso-free"],"events_start_end":["event-espresso-free"],"events_question":["event-espresso-free"],"events_qst_group_rel":["event-espresso-free"],"events_qst_group":["event-espresso-free"],"events_prices":["event-espresso-free"],"events_personnel_rel":["event-espresso-free"],"events_personnel":["event-espresso-free"],"events_multi_event_registration_id_group":["event-espresso-free"],"events_locale_rel":["event-espresso-free"],"events_venue_rel":["event-espresso-free"],"events_locale":["event-espresso-free"],"events_email":["event-espresso-free"],"events_discount_rel":["event-espresso-free"],"events_discount_codes":["event-espresso-free"],"events_detail":["event-espresso-free"],"events_category_rel":["event-espresso-free"],"events_category_detail":["event-espresso-free"],"events_attendee_meta":["event-espresso-free"],"events_venue":["event-espresso-free"],"wpinventory_image":["wp-inventory-manager"],"wpanything_settings":["wp-anything-slider"],"wpinventory_status":["wp-inventory-manager"],"kcc_clicks":["kama-clic-counter"],"kanban_tasks":["kanban"],"kanban_taskmeta":["kanban"],"kanban_task_hours":["kanban"],"wpanything_content":["wp-anything-slider"],"kanban_statuses":["kanban"],"kanban_projects":["kanban"],"wpjoan":["joan"],"wpinventory_media":["wp-inventory-manager"],"kanban_boards":["kanban"],"kanban_options":["kanban"],"kanban_log_status_changes":["kanban"],"wpinventory_label":["wp-inventory-manager"],"obr_humancaptcha_admin":["humancaptcha"],"obr_humancaptcha_qanda":["humancaptcha"],"wpinventory_item_backup":["wp-inventory-manager"],"wpinventory_item":["wp-inventory-manager"],"kanban_estimates":["kanban"],"fc_action":["oasis-workflow"],"fc_emails":["oasis-workflow"],"fmera_meta":["fma-additional-registration-attributes"],"l24bd_wpcounter_visitors":["wp-counter"],"mts_locker_stats":["content-locker"],"formlift_submissions":["formlift"],"formlift_sessions":["formlift"],"formlift_impressions":["formlift"],"mwp_countdown_free":["mwp-countdown"],"mwp_side_menu_free":["mwp-side-menu"],"fmera_fields":["fma-additional-registration-attributes"],"langselrel_posts":["language-selector-related"],"flgallery_settings":["global-flash-galleries"],"flgallery_images":["global-flash-galleries"],"flgallery_galleries":["global-flash-galleries"],"flgallery_albums":["global-flash-galleries"],"wppen_jobs":["wp-post-email-notification"],"wppen_subscribers":["wp-post-email-notification"],"mylocation":["my-loginlogout"],"mylogin":["my-loginlogout"],"lana_downloads_manager_logs":["lana-downloads-manager"],"mt_plugin":["message-ticker"],"mystatdata":["wp-mystat"],"mpprecipe_tags":["meal-planner-pro","blockonomics-bitcoin-payments"],"fv_digiwidgetstemplates":["digiwidgets-image-editor"],"fv_digiwidgetsloghistory":["digiwidgets-image-editor"],"fv_digiwidgetslog":["digiwidgets-image-editor"],"fv_digiwidgetsdata":["digiwidgets-image-editor"],"liveforms_payments":["liveforms"],"wpbooklist_jre_active_extensions":["wpbooklist"],"msdb_purchase":["music-store","sell-downloads"],"fsg_galleries":["flickr-set-slideshows"],"fs_visits":["feedstats-de"],"fs_data":["feedstats-de"],"lazyestfiles":["lazyest-gallery"],"langselrel_terms":["language-selector-related"],"msdb_post_data":["music-store","sell-downloads"],"mystatclick":["wp-mystat"],"mystatsize":["wp-mystat"],"fc_items":["frontend-checklist"],"nbs_subscribers_to_lists_prev":["newsletter-by-supsystic"],"nbs_octo_blocks_categories":["newsletter-by-supsystic"],"nbs_octo_blocks_mission":["newsletter-by-supsystic"],"nbs_octo_cache":["newsletter-by-supsystic"],"nbs_queue":["newsletter-by-supsystic"],"nbs_subscribers":["newsletter-by-supsystic"],"nbs_subscribers_lists":["newsletter-by-supsystic"],"feedly_insight_history":["feedly-insight"],"nbs_subscribers_to_lists":["newsletter-by-supsystic"],"nbs_usage_stat":["newsletter-by-supsystic"],"nbs_octo":["newsletter-by-supsystic"],"fed_post":["frontend-dashboard"],"fed_menu_meta":["frontend-dashboard"],"fed_menu":["frontend-dashboard"],"featured_posts":["select-featured-posts"],"nd_travel_booking":["nd-travel"],"fc_workflows":["oasis-workflow"],"fc_workflow_steps":["oasis-workflow"],"fc_lists":["frontend-checklist"],"nbs_octo_blocks":["newsletter-by-supsystic"],"nbs_newsletters_to_lists":["newsletter-by-supsystic"],"mystickyelement_contact_lists":["mystickyelements"],"namaste_student_certificates":["namaste-lms"],"mywebtonetperfstatsresults":["mywebtonet-performancestats"],"mywebtonetqtest":["mywebtonet-performancestats"],"namaste_certificates":["namaste-lms"],"namaste_history":["namaste-lms"],"namaste_homework_notes":["namaste-lms"],"namaste_homeworks":["namaste-lms"],"namaste_payments":["namaste-lms"],"namaste_solution_files":["namaste-lms"],"namaste_student_courses":["namaste-lms"],"nbs_newsletters":["newsletter-by-supsystic"],"namaste_student_homeworks":["namaste-lms"],"namaste_student_lessons":["namaste-lms"],"namaste_student_modules":["namaste-lms"],"namaste_visits":["namaste-lms"],"nbs_countries":["newsletter-by-supsystic"],"nbs_forms":["newsletter-by-supsystic"],"nbs_modules":["newsletter-by-supsystic"],"nbs_modules_type":["newsletter-by-supsystic"],"fed_user_profile":["frontend-dashboard"],"kanban_log_comments":["kanban"],"optinrev":["optin-revolution"],"simple_events":["simple-events-calendar"],"shwattributes":["showcaster"],"shwcatalogproductattributes":["showcaster"],"shwcatalogproductcategories":["showcaster"],"optionspage_fields":["custom-settings"],"shwcatalogproducts":["showcaster"],"shwcatalogproductthumbnails":["showcaster"],"shwcatalogs":["showcaster"],"shwcategories":["showcaster"],"shwproductoptions":["showcaster"],"shwthemes":["showcaster"],"simple_contact_messages":["simplecontact"],"simple_contact_subjects":["simplecontact"],"simple_locator_history":["simple-locator"],"bodi0_bot_counter":["bodi0s-bots-visits-counter"],"birthdays":["birthdays-widget"],"bingmappro_pins":["api-bing-map-2018"],"bingmappro_maps":["api-bing-map-2018"],"bingmappro_map_pins":["api-bing-map-2018"],"siq_sync":["searchiq"],"sirv_images":["sirv"],"sirv_shortcodes":["sirv"],"skrill_transaction_log":["official-skrill-woocommerce"],"slug_history":["wp-seo-redirect-301"],"belegung_objekte":["occupancyplan"],"belegung_daten":["occupancyplan"],"belegung_config":["occupancyplan"],"smack_ecom_info":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"shortcodes":["shortbus","shortcode-generator","scode-by-mojwp"],"ww_extras":["widget-wrangler"],"bccf_reservation_calendars":["booking-calendar-contact-form"],"shopmagic_log_data":["shopmagic-for-woocommerce"],"booking_package_emailsetting":["booking-package"],"booking_package_coursedata":["booking-package"],"booking_package_calendaraccount":["booking-package"],"shareasale_wc_tracker_logs":["shareasale-wc-tracker"],"shop_ct_attributes":["shopconstruct"],"shop_ct_cart":["shopconstruct"],"shop_ct_download_permissions":["shopconstruct"],"shop_ct_order_meta":["shopconstruct"],"shop_ct_order_products":["shopconstruct"],"shop_ct_product_meta":["shopconstruct"],"shop_ct_sessions":["shopconstruct"],"shop_ct_shipping_zone_countries":["shopconstruct"],"shop_ct_shipping_zones":["shopconstruct"],"bookacti_templates_activities":["booking-activities"],"book_review_custom_link_urls":["book-review"],"bookacti_templates":["booking-activities"],"bookacti_permissions":["booking-activities"],"bookacti_meta":["booking-activities"],"bookacti_groups_events":["booking-activities"],"bookacti_group_categories":["booking-activities"],"bookacti_forms":["booking-activities"],"bookacti_form_fields":["booking-activities"],"bookacti_exceptions":["booking-activities"],"bookacti_events":["booking-activities"],"bookacti_event_groups":["booking-activities"],"bookacti_bookings":["booking-activities"],"bookacti_booking_groups":["booking-activities"],"bookacti_activities":["booking-activities"],"book_review_custom_links":["book-review"],"bccf_reservation_calendars_data":["booking-calendar-contact-form"],"bccf_dex_season_prices":["booking-calendar-contact-form"],"booking_package_guests":["booking-package"],"spidercatalog_product_reviews":["catalog"],"sola_nl_subscribers":["sola-newsletters"],"sola_nl_subscribers_list":["sola-newsletters"],"sola_nl_themes":["sola-newsletters"],"awp_contact_form":["new-contact-form-widget"],"avartan_slides":["avartan-slider-lite"],"avartan_sliders":["avartan-slider-lite"],"avartan_preset":["avartan-slider-lite"],"availability":["availability"],"autosuggest":["wp-advanced-search","fancy-search"],"yapbimage":["yet-another-photoblog"],"spidercatalog_id":["catalog"],"spidercatalog_params":["catalog"],"spidercatalog_product_categories":["catalog"],"spidercatalog_product_votes":["catalog"],"sola_nl_link_tracking":["sola-newsletters"],"spidercatalog_products":["catalog"],"spiderfc_calendar":["flash-calendar"],"spiderfc_events":["flash-calendar"],"spiderfc_theme":["flash-calendar"],"webwinkelkeur_invite_error":["webwinkelkeur"],"spr_rating":["simple-rating"],"spr_votes":["simple-rating"],"webpages_data":["wp-hosting-performance-check"],"arplite_arprice_options":["arprice-responsive-pricing-table"],"arplite_arprice_analytics":["arprice-responsive-pricing-table"],"arplite_arprice":["arprice-responsive-pricing-table"],"sola_nl_list":["sola-newsletters"],"sola_nl_css_options":["sola-newsletters"],"bccf_dex_discount_codes":["booking-calendar-contact-form"],"b_testimo_slide":["easy-testimonial-rotator"],"bccf_dex_bccf_submissions":["booking-calendar-contact-form"],"smackformrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"bbp_messages_2p0_meta":["bbp-messages"],"bbp_messages_2p0":["bbp-messages"],"smackleadbulider_field_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackleadbulider_form_field_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackleadbulider_shortcode_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackthirdpartyformfieldrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"bar_info":["banner-ads-rotator"],"backup_bank_restore":["wp-backup-bank"],"backup_bank_meta":["wp-backup-bank"],"backup_bank":["wp-backup-bank"],"backup_and_move":["backup-and-move"],"xmt_acc":["xhanch-my-twitter"],"sola_nl_campaigns":["sola-newsletters"],"xmt_ath":["xhanch-my-twitter"],"xmt_twt":["xhanch-my-twitter"],"smtpmail_data":["smtp-mail"],"sola_nl_advanced_link_tracking":["sola-newsletters"],"sola_nl_campaign_lists":["sola-newsletters"],"sola_nl_campaign_subscribers":["sola-newsletters"],"aysquiz_themes":["quiz-maker"],"aysquiz_reports":["quiz-maker"],"aysquiz_rates":["quiz-maker"],"aysquiz_quizes":["quiz-maker"],"aysquiz_quizcategories":["quiz-maker"],"aysquiz_questions":["quiz-maker"],"aysquiz_categories":["quiz-maker"],"aysquiz_answers":["quiz-maker"],"booking_package_form":["booking-package"],"booking_package_regular_holidays":["booking-package"],"arete_buddypress_smileys":["activity-reactions-for-buddypress"],"rp_fam_seq":["rootspersona"],"rp_event_detail":["rootspersona"],"rp_event_note":["rootspersona"],"rp_fam":["rootspersona"],"rp_fam_child":["rootspersona"],"rp_fam_cite":["rootspersona"],"wsko_cache":["wp-seo-keyword-optimizer"],"wsko_cache_data_an":["wp-seo-keyword-optimizer"],"cf_number":["cfiltering"],"rp_fam_event":["rootspersona"],"wsko_cache_data_onpage":["wp-seo-keyword-optimizer"],"wsko_cache_data_se":["wp-seo-keyword-optimizer"],"cf_access":["cfiltering"],"rp_fam_note":["rootspersona"],"rp_header":["rootspersona"],"rp_address":["rootspersona"],"wsko_cache_data_se_d":["wp-seo-keyword-optimizer"],"wsko_cache_data_social":["wp-seo-keyword-optimizer"],"rp_indi":["rootspersona"],"rp_indi_cite":["rootspersona"],"rp_indi_event":["rootspersona"],"rp_indi_fam":["rootspersona"],"rp_indi_name":["rootspersona"],"wsko_cache_days":["wp-seo-keyword-optimizer"],"rp_indi_note":["rootspersona"],"rp_indi_option":["rootspersona"],"rp_indi_seq":["rootspersona"],"rp_name_cite":["rootspersona"],"wsko_cache_rows":["wp-seo-keyword-optimizer"],"rp_event_cite":["rootspersona"],"chained_choices":["chained-quiz"],"rp_name_note":["rootspersona"],"wsecure_params":["wsecure"],"cms2cms_connector_options":["cms2cms-connector"],"responsive_video_gallery_plus_responsive_lightbox":["wp-responsive-video-gallery-with-lightbox"],"wof_lite_optins":["wp-optin-wheel"],"wm_ya_texts":["webmaster-yandex"],"wm_ya_stat_texts":["webmaster-yandex"],"cloudwok":["cloudwok-file-upload"],"wsdesk_settings":["wsdesk"],"cloaker_clicks":["wp-cloaker"],"wsdesk_settingsmeta":["wsdesk"],"wsdesk_tickets":["wsdesk"],"wsdesk_ticketsmeta":["wsdesk"],"wsecure_config":["wsecure"],"rich_web_timeline_manager":["rich-event-timeline"],"chained_completed":["chained-quiz"],"rich_web_timeline_options":["rich-event-timeline"],"rich_web_timeline_short_options":["rich-event-timeline"],"rich_web_timeline_style_options":["rich-event-timeline"],"rich_web_timeline_style_options_2":["rich-event-timeline"],"cis_sliders":["creative-image-slider"],"cis_images":["creative-image-slider"],"cis_categories":["creative-image-slider"],"circle_image_carousel":["circle-image-slider-with-lightbox"],"cip_rules":["country-ip-specific-redirections"],"cip_logs":["country-ip-specific-redirections"],"chained_user_answers":["chained-quiz"],"chained_results":["chained-quiz"],"chained_quizzes":["chained-quiz"],"chained_questions":["chained-quiz"],"rp_name_name":["rootspersona"],"rp_name_personal":["rootspersona"],"booking_package_schedule":["booking-package"],"bpm_categories":["portfolio-manager-powered-by-behance"],"cackle_channel":["cackle"],"caa_profile_db":["custom-about-author"],"bwwc_btc_addresses":["bitcoin-payments-for-woocommerce"],"sc_log":["google-translate-widget","link-to-us","share-buttons-widget","simple-google-translate-widget"],"bw_pricing_items":["boxtal-connect"],"schreikasten":["schreikasten"],"schreikasten_blacklist":["schreikasten"],"scormcloudinvitationregs":["scormcloud"],"scormcloudinvitations":["scormcloud"],"buddykit_user_files":["buddykit"],"seo_hostindex":["seo-consultant"],"seo_hostlog":["seo-consultant"],"bpm_projects":["portfolio-manager-powered-by-behance"],"bp_messages_recipients":["bp-better-messages"],"sampro_zones":["sam-pro-free"],"bp_messages_notices":["bp-better-messages"],"bp_messages_meta":["bp-better-messages"],"bp_messages_messages":["bp-better-messages"],"sgpt_pricing_table":["pricing-table-builder"],"botnetblocker":["botnet-attack-blocker"],"sgpt_pt_feature":["pricing-table-builder"],"sgpt_pt_plan":["pricing-table-builder"],"shareasale_wc_tracker_datafeeds":["shareasale-wc-tracker"],"booking_package_webhook":["booking-package"],"booking_package_users":["booking-package"],"booking_package_userpraivatedata":["booking-package"],"booking_package_templateschedule":["booking-package"],"booking_package_taxes":["booking-package"],"booking_package_subscriptions":["booking-package"],"sampro_zones_rules":["sam-pro-free"],"sampro_stats":["sam-pro-free"],"rp_note":["rootspersona"],"rps_exam_record_meta":["easy-student-results"],"rp_repo":["rootspersona"],"wsko_options":["wp-seo-keyword-optimizer"],"rp_repo_note":["rootspersona"],"ccpo_post_order_rel":["custom-post-order-category"],"ccf_value":["categorycustomfields"],"ccf_fields":["categorycustomfields"],"rp_source":["rootspersona"],"rp_source_cite":["rootspersona"],"rp_source_note":["rootspersona"],"rp_submitter":["rootspersona"],"rp_submitter_note":["rootspersona"],"rps_batches":["easy-student-results"],"rps_departments":["easy-student-results"],"rps_exam_records":["easy-student-results"],"sampro_places_ads":["sam-pro-free"],"rps_exams":["easy-student-results"],"rps_grade":["easy-student-results"],"rps_marks":["easy-student-results"],"rs_slider":["m-vslider"],"rsvp_volunteer_time":["rsvpmaker"],"rsvpmaker":["rsvpmaker"],"rsvpmaker_event":["rsvpmaker"],"cas_image":["peters-custom-anti-spam-image"],"cas_count":["peters-custom-anti-spam-image"],"canva_images":["canva"],"sampro_ads":["sam-pro-free"],"sampro_blocks":["sam-pro-free"],"sampro_errors":["sam-pro-free"],"sampro_places":["sam-pro-free"],"arete_buddypress_smileys_manage":["activity-reactions-for-buddypress"],"arete_buddypress_smiley_settings":["activity-reactions-for-buddypress"],"codeneric_uam_events":["ultimate-ads-manager"],"ckuci_history_xml":["wp-advanced-importer"],"_email_templates":["webba-booking-lite"],"_days_on_off":["webba-booking-lite"],"_coupons":["webba-booking-lite","photo-video-store"],"_cancelled_appointments":["webba-booking-lite"],"_appointments":["webba-booking-lite"],"itor":["visitor-map"],"k_breaker_tasks_user_assignment":["taskbreaker-project-management"],"k_breaker_tasks":["taskbreaker-project-management"],"k_breaker_task_meta":["taskbreaker-project-management"],"k_breaker_comments":["taskbreaker-project-management"],"tp_image_optimizer":["tp-image-optimizer"],"ckxml_pie_log":["wp-advanced-importer"],"ckxml_line_log":["wp-advanced-importer"],"ckuci_events_xml":["wp-advanced-importer"],"_locked_time_slots":["webba-booking-lite"],"ck_field_types_xml":["wp-advanced-importer"],"plenewsletter_subscriptions":["simple-newsletter-br"],"tutor_earnings":["tutor"],"tutor_quiz_attempt_answers":["tutor"],"tutor_quiz_attempts":["tutor"],"tutor_quiz_question_answers":["tutor"],"tutor_quiz_questions":["tutor"],"tutor_withdraws":["tutor"],"tz_plusgallery_images":["tz-plus-gallery"],"tz_plusgallery_item":["tz-plus-gallery"],"tz_plusgallery_options":["tz-plus-gallery"],"tz_plusgallery_type":["tz-plus-gallery"],"ultimate_csv_importer_log_values_xml":["wp-advanced-importer"],"_gg_calendars":["webba-booking-lite"],"_service_categories":["webba-booking-lite"],"ultimate_csv_importer_mappingtemplate_xml":["wp-advanced-importer"],"torro_element_choices":["torro-forms"],"acym_field":["acymailing"],"acym_configuration":["acymailing"],"acym_condition":["acymailing"],"acym_campaign":["acymailing"],"acym_automation_has_step":["acymailing"],"acym_automation":["acymailing"],"acym_action":["acymailing"],"accordionslider_panels":["accordion-slider-lite"],"accordionslider_layers":["accordion-slider-lite"],"accordionslider_accordions":["accordion-slider-lite"],"tla_data":["text-link-ads"],"torro_containers":["torro-forms"],"torro_element_answers":["torro-forms"],"torro_element_settings":["torro-forms"],"_services":["webba-booking-lite"],"torro_elements":["torro-forms"],"torro_email_notifications":["torro-forms"],"torro_participants":["torro-forms"],"torro_result_values":["torro-forms"],"torro_results":["torro-forms"],"torro_submission_values":["torro-forms"],"torro_submissionmeta":["torro-forms"],"torro_submissions":["torro-forms"],"total_security_log":["total-security"],"zotpress":["zotpress"],"_taboola_settings":["taboola"],"zotpress_cache":["zotpress"],"zotpress_oauth":["zotpress"],"zotpress_zoteroitemimages":["zotpress"],"ultimate_csv_importer_manageshortcodes_xml":["wp-advanced-importer"],"ultimate_csv_importer_shortcodes_statusrel_xml":["wp-advanced-importer"],"acym_list":["acymailing"],"_auto_folder_creation":["dms"],"_object_properties_sb":["dms"],"_object_properties":["dms"],"_object_perms":["dms"],"_object_misc":["dms"],"_notify":["dms"],"_lifecycles":["dms"],"_lifecycle_stages":["dms"],"_help_system":["dms"],"_groups_users_link":["dms"],"_file_sys_counters":["dms"],"_exp_folders":["dms"],"_config":["dms"],"_audit_log":["dms"],"_object_versions":["dms"],"_active_folder":["dms"],"volunteer_emails":["wired-impact-volunteer-management"],"volunteer_rsvps":["wired-impact-volunteer-management"],"eneric_phmm_comments":["photography-management"],"voucherpress_downloads":["voucherpress"],"voucherpress_templates":["voucherpress"],"voucherpress_vouchers":["voucherpress"],"vspfw":["very-simple-password"],"ap_sessions":["blue-captcha"],"ap_log":["blue-captcha"],"ap_ips":["blue-captcha"],"vxcf_hubspot_log":["cf7-hubspot"],"vxcf_hubspot_accounts":["cf7-hubspot"],"vxcf_hubspot":["cf7-hubspot"],"_object_version_comments":["dms"],"_objects":["dms"],"umbrella_sp_log":["umbrella-antivirus-hack-protection"],"l_wp_matchtypes":["football-pool"],"urls":["staticpress"],"user_info":["resume-upload-form"],"usermeta_geo":["wp-mapbox-gl-js","wp-geometa"],"l_wp_teams":["football-pool"],"l_wp_stadiums":["football-pool"],"l_wp_shoutbox":["football-pool"],"l_wp_seasons":["football-pool"],"l_wp_scorehistory_s1_t2":["football-pool"],"l_wp_scorehistory_s1_t1":["football-pool"],"l_wp_rankings_matches":["football-pool"],"l_wp_rankings_bonusquestions":["football-pool"],"l_wp_rankings":["football-pool"],"l_wp_predictions":["football-pool"],"l_wp_matches":["football-pool"],"_routing_data":["dms"],"l_wp_leagues":["football-pool"],"l_wp_league_users":["football-pool"],"l_wp_groups":["football-pool"],"l_wp_bonusquestions_useranswers":["football-pool"],"l_wp_bonusquestions_type":["football-pool"],"l_wp_bonusquestions":["football-pool"],"utubevideo_album":["utubevideo-gallery"],"utubevideo_dataset":["utubevideo-gallery"],"utubevideo_playlist":["utubevideo-gallery"],"utubevideo_video":["utubevideo-gallery"],"_user_prefs":["dms"],"_user_doc_history":["dms"],"_subscriptions":["dms"],"acym_history":["acymailing"],"acym_mail":["acymailing"],"stock_tickers":["custom-stock-ticker"],"supsystic_membership_roles":["membership-by-supsystic"],"supsystic_membership_images":["membership-by-supsystic"],"supsystic_membership_images_thumbnails":["membership-by-supsystic"],"supsystic_membership_links":["membership-by-supsystic"],"supsystic_membership_messages":["membership-by-supsystic"],"supsystic_membership_messages_attachments":["membership-by-supsystic"],"amoforms_forms":["amoforms"],"amoforms_entries":["amoforms"],"amoforms_amo_user":["amoforms"],"supsystic_membership_messages_users":["membership-by-supsystic"],"supsystic_membership_notifications":["membership-by-supsystic"],"supsystic_membership_photo_gallery":["membership-by-supsystic"],"supsystic_membership_photo_gallery_images":["membership-by-supsystic"],"supsystic_membership_reports":["membership-by-supsystic"],"supsystic_membership_settings":["membership-by-supsystic"],"supsystic_membership_groups_tags":["membership-by-supsystic"],"supsystic_membership_slider":["membership-by-supsystic"],"supsystic_membership_slider_images":["membership-by-supsystic"],"supsystic_membership_tags":["membership-by-supsystic"],"supsystic_membership_users_albums":["membership-by-supsystic"],"supsystic_membership_users_badges_points":["membership-by-supsystic"],"amd_yrecipe_recipes":["yummly-rich-recipes"],"supsystic_membership_users_images":["membership-by-supsystic"],"supsystic_membership_users_roles":["membership-by-supsystic"],"supsystic_membership_users_statuses":["membership-by-supsystic"],"ah_stats":["antihacker"],"agodapartnertextlink":["agoda-affiliate-partners-text-link-generator"],"agm_maps":["wordpress-google-maps"],"afi_types":["attachment-file-icons"],"supsystic_membership_groups_users":["membership-by-supsystic"],"supsystic_membership_groups_settings":["membership-by-supsystic"],"task_breaker_task_meta":["taskbreaker-project-management"],"supsystic_membership_attachments_all":["membership-by-supsystic"],"stock_widgets":["custom-stock-widget"],"supsystic_membership_activity":["membership-by-supsystic"],"supsystic_membership_activity_attachments":["membership-by-supsystic"],"yesno_question":["yesno"],"supsystic_membership_activity_images":["membership-by-supsystic"],"yesno_set":["yesno"],"apexnb_subscriber":["apex-notification-bar-lite"],"supsystic_membership_activity_links":["membership-by-supsystic"],"supsystic_membership_activity_tags":["membership-by-supsystic"],"supsystic_membership_albums":["membership-by-supsystic"],"supsystic_membership_albums_images":["membership-by-supsystic"],"supsystic_membership_attachment_type":["membership-by-supsystic"],"supsystic_membership_attachments":["membership-by-supsystic"],"supsystic_membership_badge":["membership-by-supsystic"],"supsystic_membership_groups_invites":["membership-by-supsystic"],"supsystic_membership_conversations":["membership-by-supsystic"],"supsystic_membership_conversations_users":["membership-by-supsystic"],"supsystic_membership_conversations_users_blocks":["membership-by-supsystic"],"supsystic_membership_fields":["membership-by-supsystic"],"supsystic_membership_fields_data":["membership-by-supsystic"],"supsystic_membership_followers":["membership-by-supsystic"],"supsystic_membership_friends":["membership-by-supsystic"],"supsystic_membership_google_maps_easy":["membership-by-supsystic"],"supsystic_membership_groups":["membership-by-supsystic"],"supsystic_membership_groups_albums":["membership-by-supsystic"],"supsystic_membership_groups_blacklists":["membership-by-supsystic"],"supsystic_membership_groups_category":["membership-by-supsystic"],"supsystic_membership_groups_followers":["membership-by-supsystic"],"supsystic_membership_groups_images":["membership-by-supsystic"],"task_breaker_comments":["taskbreaker-project-management"],"task_breaker_tasks":["taskbreaker-project-management"],"acym_mail_has_list":["acymailing"],"teachpress_user":["teachpress"],"teachpress_pub":["teachpress"],"teachpress_pub_capabilites":["teachpress"],"teachpress_pub_documents":["teachpress"],"zbscrm_api_keys":["zero-bs-crm"],"teachpress_pub_imports":["teachpress"],"teachpress_pub_meta":["teachpress"],"teachpress_rel_pub_auth":["teachpress"],"teachpress_relation":["teachpress"],"teachpress_settings":["teachpress"],"teachpress_signup":["teachpress"],"teachpress_stud":["teachpress"],"teachpress_stud_meta":["teachpress"],"teachpress_tags":["teachpress"],"teachpress_course_meta":["teachpress"],"termmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"ada_compliance_basic":["wp-ada-compliance-check-basic"],"acym_user_stat":["acymailing"],"acym_user_has_list":["acymailing"],"acym_user_has_field":["acymailing"],"acym_user":["acymailing"],"acym_url_click":["acymailing"],"acym_url":["acymailing"],"acym_tag":["acymailing"],"acym_step":["acymailing"],"acym_rule":["acymailing"],"acym_queue":["acymailing"],"acym_mail_stat":["acymailing"],"teachpress_courses":["teachpress"],"teachpress_course_documents":["teachpress"],"task_breaker_tasks_user_assignment":["taskbreaker-project-management"],"zbs_object_links":["zero-bs-crm"],"zbs_admlog":["zero-bs-crm"],"advsh":["wp-advanced-search"],"tc_shortcodes":["tiempocom"],"zbs_aka":["zero-bs-crm"],"zbs_contacts":["zero-bs-crm"],"zbs_customfields":["zero-bs-crm"],"zbs_dbmigration_meta":["zero-bs-crm"],"zbs_dbmigration_posts":["zero-bs-crm"],"zbs_externalsources":["zero-bs-crm"],"zbs_logs":["zero-bs-crm"],"zbs_meta":["zero-bs-crm"],"zbs_notifications":["zero-bs-crm"],"zbs_segments":["zero-bs-crm"],"teachpress_course_capabilites":["teachpress"],"zbs_segments_conditions":["zero-bs-crm"],"zbs_segments_rules":["zero-bs-crm"],"zbs_settings":["zero-bs-crm"],"zbs_sys_cronmanagerlogs":["zero-bs-crm"],"zbs_sys_email":["zero-bs-crm"],"ads_banners":["wpads"],"zbs_sys_email_hist":["zero-bs-crm"],"zbs_tags":["zero-bs-crm"],"zbs_tags_links":["zero-bs-crm"],"zbs_temphash":["zero-bs-crm"],"zbs_tracking":["zero-bs-crm"],"teachpress_artefacts":["teachpress"],"teachpress_assessments":["teachpress"],"teachpress_authors":["teachpress"],"reportedlinks":["report-broken-links"],"jsdelivr_cdn_packages":["jsdelivr-wordpress-cdn-plugin"],"coming_soon_booster":["wp-coming-soon-booster"],"wptao_users":["wp-tao"],"postviews_plus":["wp-postviews-plus"],"wptao_events":["wp-tao"],"wptao_events_meta":["wp-tao"],"wptao_events_tags":["wp-tao"],"wptao_fingerprints":["wp-tao"],"delipress_subscriber_meta":["delipress"],"delipress_subscriber":["delipress"],"delipress_optin_stats":["delipress"],"delipress_meta":["delipress"],"delipress_list_subscriber":["delipress"],"wptao_users_meta":["wp-tao"],"post_widget_rules":["wp-posts-master"],"wptao_users_tags":["wp-tao"],"dc_releases":["wp-download-codes"],"dc_downloads":["wp-download-codes"],"dc_codes":["wp-download-codes"],"dc_code_groups":["wp-download-codes"],"wow_countdowns_free":["mwp-countdown"],"premmerce_bundles":["premmerce-woocommerce-product-bundles"],"premmerce_bundles_products":["premmerce-woocommerce-product-bundles"],"premmerce_price_types":["premmerce-woocommerce-wholesale-pricing"],"premmerce_price_types_roles":["premmerce-woocommerce-wholesale-pricing"],"postmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"post_widget_layouts":["wp-posts-master"],"premmerce_wishlist":["premmerce-woocommerce-wishlist"],"wpspro_lockouts":["wp-smart-security"],"dpc_404_redirects":["delucks-seo"],"donations":["donate-plus","donate-extra"],"documentor_sections":["documentor-lite"],"documentor_feedback":["documentor-lite"],"documentor":["documentor-lite"],"wp_copy":["copy-link"],"dmm_menu":["different-menu-in-different-pages"],"dls_sus_tasks":["sign-up-sheets"],"dls_sus_signups":["sign-up-sheets"],"dls_sus_sheets":["sign-up-sheets"],"wpspro_log":["wp-smart-security"],"post_views_count__spvc":["simple-post-views-count"],"dk_speakup_signatures":["speakup-email-petitions"],"dk_speakup_petitions":["speakup-email-petitions"],"wp_cache_gravatars":["cache-performance"],"disclosure_userlabels":["wp-access-areas"],"popup4phone_leads":["popup4phone"],"popup_manager":["popup-manager"],"popup_manager_templates":["popup-manager"],"wp_ada_compliance_basic":["wp-ada-compliance-check-basic"],"post_sorting":["wp-post-sorting"],"post_styling_library":["wp-post-styling"],"premmerce_redirects":["premmerce-redirect-manager"],"prflxtrflds_field_values":["profile-extra-fields"],"wp_fb_social_stream":["botnet-attack-blocker","jquery-drop-down-menu-plugin","flattr","facebook-social-stream"],"corner_ad_img":["corner-ad"],"cp":["cubepoints"],"wpuser_group_meta":["wp-user"],"randomize":["randomize"],"wpuser_groups":["wp-user"],"wpuser_login_log":["wp-user"],"wpuser_loginattempts":["wp-user"],"wpuser_notification":["wp-user"],"wpuser_views":["wp-user"],"raysgrid_setting":["rays-grid"],"corner_ad":["corner-ad"],"jsdelivr_cdn_files":["jsdelivr-wordpress-cdn-plugin"],"copyscape_tbl":["copyscape-premium"],"conwr_titles":["content-writer"],"conwr_stats":["content-writer"],"wpwox_custom_css":["responsive-css-editor"],"contest_gal1ery_pro_options":["contest-gallery"],"contest_gal1ery_options_visual":["contest-gallery"],"contest_gal1ery_options_input":["contest-gallery"],"contest_gal1ery_options":["contest-gallery"],"contest_gal1ery_mails_collected":["contest-gallery"],"contest_gal1ery_mail_confirmation":["contest-gallery"],"query_wrangler":["query-wrangler"],"prflxtrflds_fields_id":["profile-extra-fields"],"wptm_charttypes":["wp-smart-editor"],"prflxtrflds_fields_meta":["profile-extra-fields"],"prflxtrflds_roles_and_fields":["profile-extra-fields"],"cwp_poll_logs":["cardoza-wordpress-poll"],"cwp_poll_answers":["cardoza-wordpress-poll"],"cwp_poll":["cardoza-wordpress-poll"],"prflxtrflds_roles_id":["profile-extra-fields"],"prflxtrflds_user_field_data":["profile-extra-fields"],"prflxtrflds_user_roles":["profile-extra-fields"],"wptm_categories":["wp-smart-editor"],"wptm_charts":["wp-smart-editor"],"wptm_styles":["wp-smart-editor"],"query_override_terms":["query-wrangler"],"wptm_tables":["wp-smart-editor"],"wordable":["wordable"],"ctsop_plugin":["content-text-slider-on-post"],"push_encryption_keys":["push-notifications-for-wp"],"push_excluded_categories":["push-notifications-for-wp"],"push_logs":["push-notifications-for-wp"],"push_sent":["push-notifications-for-wp"],"push_tokens":["push-notifications-for-wp"],"push_viewed":["push-notifications-for-wp"],"pv_am_activities":["plainview-activity-monitor"],"ql":["quick-localization"],"dpc_statistics":["delucks-seo"],"pmlc_stats":["wp-wizard-cloak","wp-dynamic-links"],"contest_gal1ery_mail":["contest-gallery"],"eg_galleries":["everest-gallery-lite"],"wp_video_gallery_grids":["wp-video-gallery-free"],"wp_video_gallery":["wp-video-gallery-free"],"effecto":["instant-feedback"],"pafw_statistics":["pgall-for-woocommerce"],"pafw_transaction":["pgall-for-woocommerce"],"page_generator_keywords":["page-generator"],"wp_seo_groups":["404-redirection-manager"],"edge_suite_composition_definition":["edge-suite"],"wp_video_gallery_params":["wp-video-gallery-free"],"paypal_wp_button_manager_companies":["paypal-wp-button-manager"],"wpshop__attribute":["wpshop"],"wp_sap_surveys":["wp-survey-and-poll"],"wp_sap_questions":["wp-survey-and-poll"],"wp_sap_answers":["wp-survey-and-poll"],"ecp_options":["easy-code-placement"],"ecp_data":["easy-code-placement"],"ecommercewd_tools":["ecommerce-wd"],"ecommercewd_themes":["ecommerce-wd"],"wp_video_gallery_grids_videos":["wp-video-gallery-free"],"wp_video_gallery_tags":["wp-video-gallery-free"],"ecommercewd_shippingzones":["ecommerce-wd"],"osefirewall_emailnotificationmgmtv7":["ose-firewall"],"optionspage_section":["custom-settings"],"os_diagnosis_generator_data":["os-diagnosis-generator"],"os_diagnosis_generator_detail_data":["os-diagnosis-generator"],"os_diagnosis_generator_form_options":["os-diagnosis-generator"],"os_diagnosis_generator_question_data":["os-diagnosis-generator"],"osefirewall_adminemails":["ose-firewall"],"osefirewall_aiscan":["ose-firewall"],"osefirewall_cronsettings":["ose-firewall"],"osefirewall_dbconfiggit":["ose-firewall"],"osefirewall_domains":["ose-firewall"],"osefirewall_fileuploadext":["ose-firewall"],"wpa_auctions":["wp-auctions"],"osefirewall_fileuploadlogv7":["ose-firewall"],"osefirewall_fwscannerv7config":["ose-firewall"],"osefirewall_gitlog":["ose-firewall"],"osefirewall_ipmanagement":["ose-firewall"],"osefirewall_scanhist":["ose-firewall"],"osefirewall_versioninfo":["ose-firewall"],"osefirewall_versions":["ose-firewall"],"osefirewall_vlscanner":["ose-firewall"],"osefirewall_vshash":["ose-firewall"],"osefirewall_whitelistmgmt":["ose-firewall"],"wpa_bids":["wp-auctions"],"ecommercewd_tax_rates":["ecommerce-wd"],"ecommercewd_shippingclasses":["ecommerce-wd"],"pmlc_automatches":["wp-dynamic-links","wp-wizard-cloak"],"easy_amazon_product_information_data":["easy-amazon-product-information"],"plugin_notes_plus":["plugin-notes-plus"],"plugin_papercite":["papercite"],"plugin_papercite_url":["papercite"],"pluginsl_spam_captcha":["spam-captcha"],"pm":["private-messages-for-wordpress","cryptopoints-manager"],"dwul_disable_user_email":["wp-users-disable"],"plgwap2_config":["wp-website-antivirus-protection"],"pmlc_destinations":["wp-dynamic-links","wp-wizard-cloak"],"dsfaq_quest":["wp-ds-faq","wp-ds-faq-plus"],"pmlc_geoipcountry":["wp-dynamic-links","wp-wizard-cloak","prosociate-amazon"],"dsfaq_name":["wp-ds-faq","wp-ds-faq-plus"],"pmlc_keywords":["wp-wizard-cloak"],"pmlc_links":["wp-dynamic-links","wp-wizard-cloak"],"pmlc_rules":["wp-dynamic-links","wp-wizard-cloak"],"plgwpgcp_config":["wp-graphic-captcha-protection"],"wp_mpdf_posts":["wp-mpdf"],"ecommercewd_ratings":["ecommerce-wd"],"wpshop__attribute_value__histo":["wpshop"],"ecommercewd_payments":["ecommerce-wd"],"ecommercewd_parametertypes":["ecommerce-wd"],"ecommercewd_orderstatuses":["ecommerce-wd"],"ecommercewd_orders":["ecommerce-wd"],"ecommercewd_orderproducts":["ecommerce-wd"],"ecommercewd_options":["ecommerce-wd"],"ec_stars_votes":["ec-stars-rating"],"wpshop__attribute_set":["wpshop"],"wpshop__attribute_set_section":["wpshop"],"wpshop__attribute_set_section_details":["wpshop"],"wpshop__attribute_value_datetime":["wpshop"],"wp_optimisation_sizes_info":["cache-performance"],"wpshop__attribute_value_decimal":["wpshop"],"wpshop__attribute_value_integer":["wpshop"],"wpshop__attribute_value_options":["wpshop"],"persistent_logins":["wp-persistent-login"],"ph_email_log":["propertyhive"],"easytimetable_planning":["easytimetable-responsive-schedule-management-system"],"wpshop__attribute_value_text":["wpshop"],"wpshop__attribute_value_varchar":["wpshop"],"wpshop__attributes_unit":["wpshop"],"wpshop__attributes_unit_groups":["wpshop"],"pl_logins":["wp-persistent-login"],"contest_gal1ery_mail_admin":["contest-gallery"],"ecommercewd_currencies":["ecommerce-wd"],"rednao_wc_invoice":["woo-pdf-invoice-builder"],"contest_gal1ery_ip":["contest-gallery"],"coming_soon_booster_meta":["wp-coming-soon-booster"],"rconvert-subscriptions":["rock-convert"],"contact_form_7":["contact-form-8"],"coming_soon_booster_ip_locations":["wp-coming-soon-booster"],"rednao_wc_invoices_custom_field":["woo-pdf-invoice-builder"],"contest_gal1ery_categories":["contest-gallery"],"wpwox_responsive_css":["responsive-css-editor"],"rednao_wc_invoices_created":["woo-pdf-invoice-builder"],"contentreports":["report-content"],"wpyelp_post_templates":["wp-yelp-review-slider"],"wpyelp_reviews":["wp-yelp-review-slider"],"shwcatalogproductoptions":["showcaster"],"contest_gal1ery_comments":["contest-gallery"],"contest_gal1ery":["contest-gallery"],"contest_gal1ery_f_output":["contest-gallery"],"contest_gal1ery_f_input":["contest-gallery"],"contest_gal1ery_entries":["contest-gallery"],"contest_gal1ery_create_user_form":["contest-gallery"],"contest_gal1ery_create_user_entries":["contest-gallery"],"commentmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"simpleecommcart_tax_rates":["simple-e-commerce-shopping-cart"],"slider":["wp-slider"],"simpleecommcart_shipping_weight_rate":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_table_rate":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_variation":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rules":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rates":["simple-e-commerce-shopping-cart"],"slider_element":["wp-slider"],"simpleecommcart_shipping_methods":["simple-e-commerce-shopping-cart"],"wpda_menu_items":["wp-data-access"],"wsitems":["weekly-schedule"],"wpda_publisher":["wp-data-access"],"wpda_table_design":["wp-data-access"],"prayer_users":["wp-prayer"],"paytm_donation":["paytm-donation","wp-paytm-pay"],"prayer_engine":["wp-prayer"],"prayer_comment":["wp-prayer"],"rfr2b_options":["readers-from-rss-2-blog"],"daisycon_tools":["daisycon"],"rfr2b_target":["readers-from-rss-2-blog"],"wow_hep":["mwp-herd-effect"],"olb_timetable":["online-lesson-booking-system"],"mcgfuidgen_data":["gf-mc-unique-id-generator-field"],"simpleecommcart_sessions":["simple-e-commerce-shopping-cart"],"simpleecommcart_downloads":["simple-e-commerce-shopping-cart"],"simpleecommcart_promotions":["simple-e-commerce-shopping-cart"],"mnm_spider_tracker":["spider-tracker"],"wpai_settings":["wp-advertize-it"],"select_post":["button-maker"],"ketchup_rr_bookings":["ketchup-restaurant-reservations"],"ketchup_rr_tables":["ketchup-restaurant-reservations"],"rj_quickcharts":["rj-quickcharts"],"sgrb_category":["review-builder"],"sgrb_comment":["review-builder"],"sgrb_comment_rating":["review-builder"],"sgrb_page_review":["review-builder"],"sgrb_rate_log":["review-builder"],"sgrb_review":["review-builder"],"sgrb_template":["review-builder"],"sgrb_template_design":["review-builder"],"mnm_spider_tracker_log":["spider-tracker"],"cstmdmnpg_pages":["custom-admin-page"],"meow2_log":["apocalypse-meow"],"custom_btns":["button-maker"],"erima_donate":["erima-zarinpal-donate"],"urpro":["uptime-robot-monitor"],"ura_fields":["user-registration-aide"],"simmer_recipe_itemmeta":["simmer"],"simmer_recipe_items":["simmer"],"simple_subscription_popup":["simple-signup-form"],"simpleecommcart_cart_settings":["simple-e-commerce-shopping-cart"],"wpda_logging":["wp-data-access"],"simpleecommcart_inventory":["simple-e-commerce-shopping-cart"],"simpleecommcart_order_items":["simple-e-commerce-shopping-cart"],"simpleecommcart_product_categories":["simple-e-commerce-shopping-cart"],"simpleecommcart_products":["simple-e-commerce-shopping-cart"],"wpda_media":["wp-data-access"],"olb_logs":["online-lesson-booking-system"],"wsdays":["weekly-schedule"],"a3_rslider_images":["a3-responsive-slider"],"aeidn_goods_archive":["affiliateimporteral"],"stax_grp_header":["stax"],"wpdp_page":["wp-data-access"],"stax_grp_header_items":["stax"],"stax_headers":["stax"],"stax_templates":["stax"],"stax_zones":["stax"],"wpdp_project":["wp-data-access"],"wpdp_table":["wp-data-access"],"e_fw_slider":["full-width-responsive-slider-wp"],"tcp_addresses":["thecartpress"],"aeidn_account":["affiliateimporteral"],"aeidn_blacklist":["affiliateimporteral"],"aeidn_goods":["affiliateimporteral"],"aeidn_log":["affiliateimporteral"],"stax_containers":["stax"],"aeidn_price_formula":["affiliateimporteral"],"aeidn_stats":["affiliateimporteral"],"mwp_herd_free":["mwp-herd-effect"],"ewd_uasp_exceptions":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields_meta":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields":["ultimate-appointment-scheduling"],"ewd_uasp_appointments":["ultimate-appointment-scheduling"],"login_access":["login-security"],"login_access_blacklist":["login-security"],"looksee3_scans":["look-see-security-scanner"],"looksee3_scan_warnings":["look-see-security-scanner"],"looksee3_scan_files":["look-see-security-scanner"],"looksee3_core":["look-see-security-scanner"],"looksee2_files":["look-see-security-scanner"],"stax_elements":["stax"],"stax_container_viewport":["stax"],"thequoterotator":["quote-rotator"],"easy_query":["easy-query"],"ya_turbo_adnetwork":["ya-turbo"],"ya_turbo_feed":["ya-turbo"],"olb_history":["online-lesson-booking-system"],"wscategories":["weekly-schedule"],"pf_relationships":["pressforward"],"image_refresh":["wp-image-refresh"],"wp_qiniu_files":["wp-qiniu"],"atkp_additionaloffers":["affiliate-toolkit-starter"],"ycf_fields":["contact-form-master"],"ycf_form":["contact-form-master"],"posts_relations":["relation-post-types"],"dfrcs_compsets":["datafeedr-comparison-sets"],"tcp_taxes":["thecartpress"],"stax_container_items":["stax"],"tcp_tax_rates":["thecartpress"],"tcp_rel_entities":["thecartpress"],"tcp_ordersmeta":["thecartpress"],"tcp_orders_detailsmeta":["thecartpress"],"tcp_orders_details":["thecartpress"],"tcp_orders_costsmeta":["thecartpress"],"tcp_orders_costs":["thecartpress"],"tcp_orders":["thecartpress"],"tcp_currencies":["thecartpress"],"tcp_countries":["thecartpress"],"star_testimonial_settings":["stars-testimonials-with-slider-and-masonry-grid"],"stax_active_headers":["stax"],"stax_columns":["stax"],"stax_components":["stax"],"emailbroadcasting":["e-mail-broadcasting"],"looksee2_core":["look-see-security-scanner"],"wooexim_export_archive":["wooexim"],"cart_meta":["wp-olivecart"],"ftcalendar_events":["ft-calendar"],"vrcalandar":["vr-calendar-sync"],"wpai_blocks":["wp-advertize-it"],"vrcalandar_bookings":["vr-calendar-sync"],"t_postage":["wp-olivecart"],"t_commission":["wp-olivecart"],"t_cartedit":["wp-olivecart"],"wpai_placements":["wp-advertize-it"],"rmmuc_subscribers":["maintenance-mode-and-under-construction-page"],"votes_post_entry_contestant":["wp-voting-contest"],"chronoengine_extensions":["chronoforms"],"js_job_activitylog":["js-jobs"],"spidercontacts_params":["spider-contacts"],"wpcp_links":["wp-content-pilot"],"ws_ls_data":["weight-loss-tracker"],"wpcp_logs":["wp-content-pilot"],"ws_ls_awards":["weight-loss-tracker"],"ws_ls_awards_given":["weight-loss-tracker"],"ws_ls_data_targets":["weight-loss-tracker"],"fr_post":["fat-rat-collect"],"ws_ls_data_user_preferences":["weight-loss-tracker"],"ws_ls_data_user_stats":["weight-loss-tracker"],"ws_ls_email_templates":["weight-loss-tracker"],"spidercontacts_messages":["spider-contacts"],"chronoengine_chronoforms":["chronoforms"],"spidercontacts_contacts_categories":["spider-contacts"],"liveoptim_capping":["liveoptim"],"prevent_direct_access_free":["prevent-direct-access"],"phone_orders_log":["phone-orders-for-woocommerce"],"nh_locations":["yournewsapp"],"liveoptim_pattern_cible":["liveoptim"],"liveoptim_pattern":["liveoptim"],"liveoptim_parametres":["liveoptim"],"liveoptim_page_restriction":["liveoptim"],"liveoptim_mot_cle":["liveoptim"],"liveoptim_balise_ignore":["liveoptim"],"spidercontacts_contacts":["spider-contacts"],"currencyr":["currencyr"],"attmgr_schedule":["attendance-manager"],"fadeintext_plugin":["wp-fade-in-text-news"],"js_job_system_errors":["js-jobs"],"js_job_users":["js-jobs"],"js_job_experiences":["js-jobs"],"js_job_emailtemplates_config":["js-jobs"],"js_job_emailtemplates":["js-jobs"],"js_job_departments":["js-jobs"],"slider_pro_slides":["slider-pro-lite"],"slider_pro_layers":["slider-pro-lite"],"slider_pro_sliders":["slider-pro-lite"],"prevent_direct_access":["prevent-direct-access"],"js_job_countries":["js-jobs"],"js_job_currencies":["js-jobs"],"plgsggeo_config":["wp-geo-website-protection"],"fr_options":["fat-rat-collect"],"plgsggeo_ip":["wp-geo-website-protection"],"plgsggeo_stats":["wp-geo-website-protection"],"plgwpap_config":["wp-admin-protection"],"plugin_bota":["seo-crawlytics"],"galleryvotes":["gallery-voting","voting-for-a-photo"],"js_job_config":["js-jobs"],"js_job_coverletters":["js-jobs"],"ssr_studentinfo":["simple-student-result"],"ssg_superb_gallery":["superb-slideshow-gallery"],"iconpresslite_collections":["iconpress-lite"],"simplehitcounter_hits":["simplehitcounter","visit-counter"],"iconpresslite_icons":["iconpress-lite"],"ws_ls_meta_entry":["weight-loss-tracker"],"ws_ls_meta_fields":["weight-loss-tracker"],"ccf":["woo-custom-checkout-field"],"js_job_companycities":["js-jobs"],"quiz_quiz":["quizzin","jibu-pro"],"ibeducator_members":["ibeducator"],"ws_ls_error_log":["weight-loss-tracker"],"user_profile_reactions":["user-profile"],"ibeducator_answers":["ibeducator"],"ibeducator_choices":["ibeducator"],"user_profile_follow":["user-profile"],"ibeducator_entries":["ibeducator"],"ibeducator_grades":["ibeducator"],"js_job_ages":["js-jobs"],"ws_ls_groups":["weight-loss-tracker"],"js_job_careerlevels":["js-jobs"],"simpledocumentation":["client-documentation"],"ibeducator_payment_lines":["ibeducator"],"js_job_categories":["js-jobs"],"ibeducator_payments":["ibeducator"],"js_job_cities":["js-jobs"],"ibeducator_questions":["ibeducator"],"ws_ls_groups_user":["weight-loss-tracker"],"wblib_keystore":["weeblramp"],"ibeducator_tax_rates":["ibeducator"],"js_job_companies":["js-jobs"],"sph_counter":["wordpress-sphinx-plugin"],"sph_stats":["wordpress-sphinx-plugin"],"quiz_question":["quizzin","jibu-pro"],"wcu_usage_stat":["woo-currency"],"elementor_splittest_post":["split-test-for-elementor"],"elementor_splittest_interactions":["split-test-for-elementor"],"votes_post_contestant_track":["wp-voting-contest"],"js_job_jobapply":["js-jobs"],"js_job_heighesteducation":["js-jobs"],"social_links":["social-links","about-me"],"js_job_fieldsordering":["js-jobs"],"seo_automated_link_building":["seo-automated-link-building"],"js_job_jobs":["js-jobs"],"seo_automated_link_building_statistic":["seo-automated-link-building"],"zmseo_support":["zmseo"],"dbox_slider":["dbox-slider-lite"],"wcu_modules_type":["woo-currency"],"wcu_modules":["woo-currency"],"dbox_slider_meta":["dbox-slider-lite"],"dbox_slider_postmeta":["dbox-slider-lite"],"elementor_splittest":["split-test-for-elementor"],"plugmatter_ab_stats":["plugmatter-optin-feature-box-lite"],"js_job_jobcities":["js-jobs"],"wow_fp":["wpcalc"],"wow_skype_free":["mwp-skype"],"votes_tbl":["wp-voting-contest"],"votes_custom_registeration_contestant":["wp-voting-contest"],"votes_custom_field_contestant":["wp-voting-contest"],"js_job_resumefiles":["js-jobs"],"js_job_resumeemployers":["js-jobs"],"swc_crawlers_log":["stop-web-crawlers"],"swc_crawlers":["stop-web-crawlers"],"votes_user_entry_contestant":["wp-voting-contest"],"swc_crawler_type":["stop-web-crawlers"],"js_job_resumeinstitutes":["js-jobs"],"js_job_jobstatus":["js-jobs"],"js_job_resumeaddresses":["js-jobs"],"js_job_resume":["js-jobs"],"amazonfeed_cache":["amazonfeed"],"amazonfeed_log":["amazonfeed"],"script_optimizer":["wp-script-optimizer"],"amazonfeed_products":["amazonfeed"],"quiz_answer":["quizzin","jibu-pro"],"js_job_jobtypes":["js-jobs"],"elementor_splittest_variations":["split-test-for-elementor"],"tnt_videos_cat":["video-list-manager"],"tnt_videos_type":["video-list-manager"],"wpoi_users":["wp-opt-in"],"nl_email":["sendit"],"ip_based_login":["ip-based-login"],"tnt_videos":["video-list-manager"],"dmec":["dm-confirm-email"],"js_job_salaryrangetypes":["js-jobs"],"comments_antispam_log":["antispam"],"mwp_skype_free":["mwp-skype"],"js_job_shifts":["js-jobs"],"zara4_file_compression_metadata_r1":["zara-4"],"clsfy_uploads":["closify-maestro-image-uploader-gallery-builder"],"js_job_slug":["js-jobs"],"js_job_states":["js-jobs"],"plugmatter_templates":["plugmatter-optin-feature-box-lite"],"cunjoshare":["share-social"],"plugmatter_ab_test":["plugmatter-optin-feature-box-lite"],"avatar_privacy":["avatar-privacy"],"nl_liste":["sendit"],"spatialmatch_maps":["spatialmatch-free-lifestyle-search"],"meetup_groups":["wp-meetup"],"realbig_plugin_settings":["realbig-media"],"realbig_settings":["realbig-media"],"tmve_allowed_elements":["tinymce-valid-elements"],"js_job_resumereferences":["js-jobs"],"meetup_events":["wp-meetup"],"timetable":["daily-prayer-time-for-mosques"],"js_job_resumelanguages":["js-jobs"],"js_job_salaryrange":["js-jobs"],"zara4_exclude_from_bulk_compression_r1":["zara-4"],"hook_list":["debug-objects"],"woo_compare_cat_fields":["woocommerce-compare-products"],"est_cta_settings":["easy-side-tab-cta"],"wpbegpay_orders":["bank-mellat"],"aas_logged":["advanced-advertising-system"],"jtl_connector_link_manufacturer":["woo-jtl-connector"],"jtl_connector_link_language":["woo-jtl-connector"],"wp_linkbuilder_backlink":["wp-linkbuilder"],"quoterotator_plus":["flexible-quote-rotator-plus"],"jtl_connector_link_measurement_unit":["woo-jtl-connector"],"post_notif_subscriber_stage":["post-notif"],"flipping_cards_images":["flipping-cards"],"cpalead_gateways":["cpaleadcom-wordpress-plugin"],"est_settings":["easy-side-tab-cta"],"audima_plugin_audio":["audima"],"flipping_cards":["flipping-cards"],"terms_hit":["2d-tag-cloud-widget-by-sujin"],"imgslider_plugin":["image-slider-with-description"],"cpasettings":["cpaleadcom-wordpress-plugin"],"jtl_connector_link_product":["woo-jtl-connector"],"spbcta":["coupon-reveal-button"],"jtl_connector_link_payment":["woo-jtl-connector"],"nav2me_maps":["nav2me"],"jtl_connector_link_order":["woo-jtl-connector"],"jtl_connector_link_image":["woo-jtl-connector"],"weblib_outitems":["weblibrarian"],"jtl_connector_link_customer_group":["woo-jtl-connector"],"vxcf_zoho_accounts":["cf7-zoho"],"wct_list":["custom-tables"],"wct_form":["custom-tables"],"wct_fields":["custom-tables"],"wct_cron":["custom-tables"],"wct1":["custom-tables"],"wp_criticalcss_web_check_queue":["wp-criticalcss"],"rich_web_forms_info":["form-forms"],"wp_criticalcss_template_log":["wp-criticalcss"],"wp_criticalcss_processed_items":["wp-criticalcss"],"vxcf_zoho_log":["cf7-zoho"],"wct_relations":["custom-tables"],"jtl_connector_link_category":["woo-jtl-connector"],"rich_web_forms_id":["form-forms"],"rich_web_forms_fields":["form-forms"],"rich_web_forms_cust_id":["form-forms"],"wp_criticalcss_api_queue":["wp-criticalcss"],"wp_criticalcss":["wp-criticalcss"],"jtl_connector_link_category_level":["woo-jtl-connector"],"cgss_insight":["complete-google-seo-scan"],"cest_uiform_visitor_error":["zigaform-calculator-cost-estimation-form-builder-lite"],"vxcf_zoho":["cf7-zoho"],"wct_setup":["custom-tables"],"rich_web_forms_themes3":["form-forms"],"jtl_connector_category_level":["woo-jtl-connector"],"vxcf_sales":["cf7-salesforce"],"vxcf_sales_accounts":["cf7-salesforce"],"sw_statistics":["author-and-post-statistic-widgets"],"sw_ips":["author-and-post-statistic-widgets"],"vxcf_sales_log":["cf7-salesforce"],"rich_web_forms_saved":["form-forms"],"rich_web_forms_themes1":["form-forms"],"rich_web_forms_themes2":["form-forms"],"ai_photos":["ai-responsive-gallery-album"],"downloadstats":["wp-downloadcounter"],"ai_album":["ai-responsive-gallery-album"],"tabulate_changes":["tabulate"],"tabulate_changesets":["tabulate"],"rich_web_forms_options":["form-forms"],"tabulate_report_sources":["tabulate"],"rich_web_forms_manager":["form-forms"],"downloadtracking":["wp-downloadcounter"],"tabulate_reports":["tabulate"],"rich_web_forms_mails":["form-forms"],"cest_uiform_visitor":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_settings":["zigaform-calculator-cost-estimation-form-builder-lite"],"srzmrt_instances":["reactive-mortgage-calculator"],"weblib_patrons":["weblibrarian"],"post_notif_sub_cat":["post-notif"],"haw_mautic_integration_form":["wp-mautic-form-integrator"],"haw_mautic_forms":["wp-mautic-form-integrator"],"haw_mautic_form_fields":["wp-mautic-form-integrator"],"weblib_collection":["weblibrarian"],"weblib_holditems":["weblibrarian"],"harrys_gravatar_cache":["harrys-gravatar-cache"],"weblib_keywords":["weblibrarian"],"woo_compare_fields":["woocommerce-compare-products"],"weblib_statistics":["weblibrarian"],"jtl_connector_link_crossselling":["woo-jtl-connector"],"livelychatsupport_hours":["lively-chat-support"],"livelychatsupport_convos":["lively-chat-support"],"jtl_connector_link_currency":["woo-jtl-connector"],"jtl_connector_link_customer":["woo-jtl-connector"],"weblib_types":["weblibrarian"],"wpreport_archive":["wp-reportpost"],"post_notif_sub_cat_stage":["post-notif"],"post_notif_subscriber":["post-notif"],"wpreport_comments":["wp-reportpost"],"post_notif_post":["post-notif"],"livelychatsupport_messages":["lively-chat-support"],"wshop_email":["wechat-shop-download"],"cest_uiform_form_records":["zigaform-calculator-cost-estimation-form-builder-lite"],"wshop_order":["wechat-shop-download"],"wshop_order_item":["wechat-shop-download"],"wshop_order_note":["wechat-shop-download"],"helpful_feedback":["helpful"],"helpful":["helpful"],"cest_uiform_pay_records":["zigaform-calculator-cost-estimation-form-builder-lite"],"stock_quote_data":["stock-quote"],"cest_uiform_pay_logs":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_pay_gateways":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_form_log":["zigaform-calculator-cost-estimation-form-builder-lite"],"wpreport":["wp-reportpost"],"cest_uiform_form":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_fields_type":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_fields":["zigaform-calculator-cost-estimation-form-builder-lite"],"livelychatsupport_triggers":["lively-chat-support"],"livelychatsupport_surveys":["lively-chat-support"],"wppano_hotspots":["wp-pano"],"cest_addon_details_log":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_addon_details":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_addon":["zigaform-calculator-cost-estimation-form-builder-lite"],"woo_compare_categories":["woocommerce-compare-products"],"cm_campaign_images":["cm-ad-changer"],"salon_item":["salon-booking"],"ultimate_subscribe":["ultimate-subscribe"],"salon_category":["salon-booking"],"salon_customer":["salon-booking"],"gml_settings":["google-map-locations"],"gml_locations":["google-map-locations"],"salon_customer_record":["salon-booking"],"salon_log":["salon-booking"],"vikbooking_einvoicing_config":["vikbooking"],"salon_photo":["salon-booking"],"salon_position":["salon-booking"],"salon_promotion":["salon-booking"],"salon_reservation":["salon-booking"],"salon_sales":["salon-booking"],"salon_staff":["salon-booking"],"salon_working":["salon-booking"],"ukuu_favorites":["ukuupeople-the-simple-crm"],"vikbooking_einvoicing_data":["vikbooking"],"fotomoto_categorymeta":["fotomoto"],"salon_branch":["salon-booking"],"wow_bmp":["bubble-menu"],"vikbooking_countries":["vikbooking"],"vikbooking_ordersrooms":["vikbooking"],"vikbooking_ordersbusy":["vikbooking"],"gmwfb_mapdetails":["google-map-with-fancybox-popup"],"vikbooking_orders":["vikbooking"],"vikbooking_orderhistory":["vikbooking"],"tweetshare_post_view_click":["tweetshare-click-to-tweet"],"wshop_shopping_cart":["wechat-shop-download"],"vikbooking_optionals":["vikbooking"],"vikbooking_operators":["vikbooking"],"vikbooking_iva":["vikbooking"],"skystats_cache":["skystats"],"vikbooking_invoices":["vikbooking"],"vikbooking_gpayments":["vikbooking"],"vikbooking_fests_dates":["vikbooking"],"ultimate_subscribe_lists":["ultimate-subscribe"],"vikbooking_dispcost":["vikbooking"],"_bookings":["row-seats"],"mj_contact_fields":["mj-contact-us"],"rencontre_users_profil":["rencontre"],"wordpoints_hook_hits":["wordpoints"],"wordpoints_hook_hitmeta":["wordpoints"],"vagaro":["vagaro-booking-widget"],"jtl_connector_link_specific":["woo-jtl-connector"],"rencontre_users":["rencontre"],"mj_contact_forms":["mj-contact-us"],"vikbooking_cronjobs":["vikbooking"],"mj_contact_saved_forms":["mj-contact-us"],"_connector_link_image":["woo-jtl-connector"],"_connector_link_customer":["woo-jtl-connector"],"vikbooking_adultsdiff":["vikbooking"],"vikbooking_busy":["vikbooking"],"vikbooking_categories":["vikbooking"],"vikbooking_characteristics":["vikbooking"],"vikbooking_coupons":["vikbooking"],"giftvouchers_activity":["gift-voucher"],"vikbooking_customers_orders":["vikbooking"],"urlkeywordsmapping":["inlinks"],"cw_css":["super-simple-custom-css"],"vikbooking_customers":["vikbooking"],"wordpoints_points_logs":["wordpoints"],"wordpoints_points_log_meta":["wordpoints"],"wordpoints_hook_periods":["wordpoints"],"wshop_product":["wechat-shop-download"],"giftvouchers_list":["gift-voucher"],"vikbooking_custfields":["vikbooking"],"jtl_connector_link_shipping_class":["woo-jtl-connector"],"wshop_order_session":["wechat-shop-download"],"jtl_connector_link_shipping_method":["woo-jtl-connector"],"wshop_order_sn":["wechat-shop-download"],"giftvouchers_template":["gift-voucher"],"giftvouchers_setting":["gift-voucher"],"_booking_seats_relation":["row-seats"],"vikbooking_config":["vikbooking"],"_customer_session":["row-seats"],"wpis_plugin":["wp-image-slideshow"],"onedrive_storage":["pwebonedrive"],"vw_vcsessions":["videowhisper-video-conference-integration"],"vikbooking_translations":["vikbooking"],"booter_404s":["booter-bots-crawlers-manager"],"vikbooking_wpshortcodes":["vikbooking"],"onclick_popup_plugin":["onclick-popup"],"rencontre_profil":["rencontre"],"rencontre_dbip":["rencontre"],"daily_quotes":["cleverwise-daily-quotes"],"rencontre_liste":["rencontre"],"_payment_transactions":["row-seats"],"bc_products":["bigcommerce"],"rencontre_msg":["rencontre"],"vw_vcrooms":["videowhisper-video-conference-integration"],"cm_campaigns":["cm-ad-changer"],"rencontre_prison":["rencontre"],"wtbp_usage_stat":["woo-product-tables"],"wtbp_tables":["woo-product-tables"],"wtbp_modules_type":["woo-product-tables"],"wtbp_modules":["woo-product-tables"],"wtbp_columns":["woo-product-tables"],"btev_events":["bluetrait-event-viewer"],"bc_import_queue":["bigcommerce"],"onedrive_access":["pwebonedrive"],"bc_reviews":["bigcommerce"],"vikbooking_rooms":["vikbooking"],"vikbooking_packages":["vikbooking"],"_seat_colors":["row-seats"],"jtl_connector_link_specific_value":["woo-jtl-connector"],"vikbooking_packages_rooms":["vikbooking"],"wshop_shopping_carts":["wechat-shop-download"],"bc_variants":["bigcommerce"],"vikbooking_receipts":["vikbooking"],"_seats":["row-seats"],"vikbooking_restrictions":["vikbooking"],"vikbooking_prices":["vikbooking"],"_shows":["row-seats"],"vikbooking_seasons":["vikbooking"],"vikbooking_texts":["vikbooking"],"vikbooking_tmplock":["vikbooking"],"jtl_connector_product_checksum":["woo-jtl-connector"],"vikbooking_tracking_infos":["vikbooking"],"vikbooking_trackings":["vikbooking"],"e2pdf_pages":["e2pdf"],"wphr_hr_employees":["wp-hr-manager"],"wpairbnb_post_templates":["wp-airbnb-review-slider"],"emtr_track_email_open_log":["email-tracker"],"e2pdf_entries":["e2pdf"],"vostore_locator":["vo-locator-the-wp-store-locator"],"vosl_setting":["vo-locator-the-wp-store-locator"],"vosl_custom_fields":["vo-locator-the-wp-store-locator"],"vosl_tags_locations":["vo-locator-the-wp-store-locator"],"vosl_tags":["vo-locator-the-wp-store-locator"],"logincount":["user-login-count"],"e2pdf_templates":["e2pdf"],"vosl_store_custom_fields":["vo-locator-the-wp-store-locator"],"regenerate_dir_images":["regenerate-thumbnails-in-cloud"],"ainterlock_wp_note_press":["note-press"],"wphr_hr_announcement":["wp-hr-manager"],"wpairbnb_reviews":["wp-airbnb-review-slider"],"wallets_adds":["wallets"],"wphr_hr_leave_entitlements":["wp-hr-manager"],"wphr_hr_holiday":["wp-hr-manager"],"wphr_hr_leave_requests":["wp-hr-manager"],"wphr_hr_leaves":["wp-hr-manager"],"oder_paypal":["paypal-express-checkout"],"wphr_hr_employee_performance":["wp-hr-manager"],"wphr_hr_employee_notes":["wp-hr-manager"],"emtr_email":["email-tracker"],"emtr_track_email_link_click_log":["email-tracker"],"wcs_selection_data":["homepage-product-organizer-for-woocommerce"],"wallets_txs":["wallets"],"emtr_track_email_link_master":["email-tracker"],"wphr_audit_log":["wp-hr-manager"],"wphr_company_locations":["wp-hr-manager"],"wphr_hr_dependents":["wp-hr-manager"],"wphr_hr_depts":["wp-hr-manager"],"wphr_hr_designations":["wp-hr-manager"],"wphr_hr_education":["wp-hr-manager"],"wphr_hr_employee_history":["wp-hr-manager"],"pluginsl_sociallinkz":["social-linkz"],"e2pdf_datasets":["e2pdf"],"e2pdf_elements":["e2pdf"],"wphr_hr_leave_policies":["wp-hr-manager"],"comsmackuci_history":["import-woocommerce"],"wphr_hr_work_exp":["wp-hr-manager"],"tsi_stops":["fulltext-search"],"inf_donors":["infunding"],"r_smackuci_history":["import-users"],"abd_adblocker_stats":["ad-blocking-detector"],"r_smackuci_events":["import-users"],"invisible_optin_settings":["invisible-optin"],"tsi_docs":["fulltext-search"],"tsi_index":["fulltext-search"],"es_download_counter":["electric-studio-download-counter"],"accordeonmenuck_styles":["accordeon-menu-ck"],"tsi_vectors":["fulltext-search"],"inf_logs":["infunding"],"zd_ml_trans":["zdmultilang"],"zd_ml_termtrans":["zdmultilang"],"zd_ml_linktrans":["zdmultilang"],"impact_widgets":["impact-template-editor"],"impact_templates":["impact-template-editor"],"tsi_words":["fulltext-search"],"tracking_clicks":["wp-click-track"],"tracking_links":["wp-click-track"],"impact_hooks":["impact-template-editor"],"r_wp_ultimate_csv_importer_log_values":["import-users"],"r_wp_ultimate_csv_importer_manageshortcodes":["import-users"],"zd_ml_comments":["zdmultilang"],"comcsv_line_log":["import-woocommerce"],"comwp_ultimate_csv_importer_manageshortcodes":["import-woocommerce"],"comwp_ultimate_csv_importer_mappingtemplate":["import-woocommerce"],"comwp_ultimate_csv_importer_shortcodes_statusrel":["import-woocommerce"],"lg_mails":["button-generation"],"lg_tools":["button-generation"],"wpsc_haet_purchase_details":["wp-ecommerce-shop-styling"],"comsmackuci_events":["import-woocommerce"],"comsmack_field_types":["import-woocommerce"],"comcsv_pie_log":["import-woocommerce"],"woo_file_dropzone":["woo-file-dropzone"],"inf_orders":["infunding"],"a4barcode_custom_formats":["a4-barcode-generator"],"a4barcode_custom_templates":["a4-barcode-generator"],"a4barcode_paper_formats":["a4-barcode-generator"],"ecs_subscribers":["everest-coming-soon-lite"],"wm_trees":["tree-website-map"],"wm_maps":["tree-website-map"],"l_people":["vo-locator-the-wp-store-locator"],"inf_volunteer":["infunding"],"r_wp_ultimate_csv_importer_shortcodes_statusrel":["import-users"],"zd_ml_langs":["zdmultilang"],"tradetracker_cat":["tradetracker-store"],"wphr_people_type_relations":["wp-hr-manager"],"unisender_contact_list":["unisender-integration"],"lcs_chat_engines":["live-chat-by-supsystic"],"fma_currency":["fma-woo-multi-currency"],"twofas_migrations":["2fas"],"lookbook_sliders_free":["altima-lookbook-free-for-woocommerce"],"twofas_sessions":["2fas"],"twofas_trusted_devices":["2fas"],"wp_ticker_content":["wp-ticker"],"unisender_field":["unisender-integration"],"lcs_chat_engines_show_pages":["live-chat-by-supsystic"],"comwp_ultimate_csv_importer_log_values":["import-woocommerce"],"find_me_on":["find-me-on"],"res_forms":["responder"],"list_item_instance":["pre-publish-post-checklist"],"list_item":["pre-publish-post-checklist"],"wphr_peoples":["wp-hr-manager"],"wphr_peoplemeta":["wp-hr-manager"],"wphr_people_types":["wp-hr-manager"],"wp_ticker":["wp-ticker"],"lcs_chat_messages":["live-chat-by-supsystic"],"tradetracker_extra":["tradetracker-store"],"ad_buttons":["ad-buttons"],"tradetracker_item":["tradetracker-store"],"tradetracker_layout":["tradetracker-store"],"tradetracker_multi":["tradetracker-store"],"tradetracker_store":["tradetracker-store"],"tradetracker_xml":["tradetracker-store"],"lcs_usage_stat":["live-chat-by-supsystic"],"lcs_statistics":["live-chat-by-supsystic"],"lcs_modules_type":["live-chat-by-supsystic"],"lcs_modules":["live-chat-by-supsystic"],"ad_buttons_stats":["ad-buttons"],"lcs_chat_sessions":["live-chat-by-supsystic"],"ad_buttons_stats_hst":["ad-buttons"],"adamlabsgallery_grids":["photo-gallery-portfolio"],"adamlabsgallery_item_elements":["photo-gallery-portfolio"],"lcs_countries":["live-chat-by-supsystic"],"adamlabsgallery_item_skins":["photo-gallery-portfolio"],"adamlabsgallery_navigation_skins":["photo-gallery-portfolio"],"lcs_chat_users":["live-chat-by-supsystic"],"lcs_chat_triggers_conditions":["live-chat-by-supsystic"],"lcs_chat_triggers":["live-chat-by-supsystic"],"lcs_chat_templates":["live-chat-by-supsystic"],"twofas_session_variables":["2fas"],"amwscp_amazon_accounts":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"lookbook_slides_free":["altima-lookbook-free-for-woocommerce"],"wpmlm_fund_transfer_details":["wp-mlm"],"wsi_invites":["wp-social-invitations"],"wsi_accepted_invites":["wp-social-invitations"],"purehtml_functions":["pure-html"],"church_admin_safeguarding":["church-admin"],"church_admin_rota_settings":["church-admin"],"church_admin_people_meta":["church-admin"],"wpmlm_country":["wp-mlm"],"booked_appointments":["fastbook-responsive-appointment-booking-and-scheduling-system"],"shipworks_bridge":["shipworks-e-commerce-bridge"],"wpmlm_ewallet_history":["wp-mlm"],"wpmlm_general_information":["wp-mlm"],"at_table_creator":["table-creator"],"wpmlm_leg_amount":["wp-mlm"],"wpmlm_level_commission":["wp-mlm"],"wpmlm_paypal":["wp-mlm"],"shopbop_cache":["shopbop-widget"],"shopbop_category_assignments":["shopbop-widget"],"wpmlm_reg_type":["wp-mlm"],"church_admin_people":["church-admin"],"church_admin_new_rota":["church-admin"],"church_admin_ministries":["church-admin"],"church_admin_member_types":["church-admin"],"wsi_logs":["wp-social-invitations"],"at_meta":["table-creator"],"ezinearticles_posts_to_articles":["ezinearticles-plugin"],"webpace_maps_maps":["web-pace-google-map"],"sd_subscribers":["sarbacane-desktop","mailify"],"sd_updates":["sarbacane-desktop","mailify"],"wsi_stats":["wp-social-invitations","wp-social-broadcast"],"crrntl_currency":["car-rental"],"crrntl_extras_order":["car-rental"],"crrntl_locations":["car-rental"],"crrntl_orders":["car-rental"],"numix_post_slider_lite":["numix-post-slider"],"webpace_maps_circles":["web-pace-google-map"],"webpace_maps_directions":["web-pace-google-map"],"webpace_maps_markers":["web-pace-google-map"],"wsi_queue":["wp-social-invitations","wp-social-broadcast"],"webpace_maps_polygons":["web-pace-google-map"],"webpace_maps_polylines":["web-pace-google-map"],"webpace_maps_stores":["web-pace-google-map"],"church_admin_session_meta":["church-admin"],"church_admin_session":["church-admin"],"church_admin_services":["church-admin"],"church_admin_sermon_series":["church-admin"],"church_admin_sermon_files":["church-admin"],"crrntl_statuses":["car-rental"],"sh_slides":["sh-slideshow"],"sh_slideshow":["sh-slideshow"],"church_admin_kidswork":["church-admin"],"ezinearticles_post_settings":["ezinearticles-plugin"],"church_admin_sites":["church-admin"],"wow_button_generator":["button-generation"],"church_admin_events":["church-admin"],"church_admin_email_build":["church-admin"],"church_admin_email":["church-admin"],"church_admin_cell_structure":["church-admin"],"church_admin_classes":["church-admin"],"multifeedreader_feedcollection":["multi-feed-reader"],"mb_relationships":["mb-relationships"],"wpmlm_transaction_id":["wp-mlm"],"church_admin_comments":["church-admin"],"wpmlm_user_balance_amount":["wp-mlm"],"xlutmmeta":["utm-leads-tracker-lite"],"menu_manager_plus":["advance-menu-manager"],"xlutm":["utm-leads-tracker-lite"],"note_press":["note-press"],"wpmlm_users":["wp-mlm"],"dailytipdata":["st-daily-tip"],"banner":["wp-banner","banner-slider","wpadcenter-lite"],"bap_carts":["book-a-place"],"bap_events":["book-a-place"],"bap_orders":["book-a-place"],"bap_places":["book-a-place"],"bap_schemes":["book-a-place"],"nme_gmaps_data":["google-maps-route-plugin"],"church_admin_calendar_date":["church-admin"],"bepro_listing_orders":["bepro-listings"],"ezinearticles_diagnostic_log":["ezinearticles-plugin"],"church_admin_attendance":["church-admin"],"wpda_contdown_extend_theme":["countdown-wpdevart-extended"],"church_admin_individual_attendance":["church-admin"],"spbtbl":["superb-tables"],"gtwbundle_webinars":["gotowp"],"gtwbundle_meetings":["gotowp"],"church_admin_household":["church-admin"],"wpda_contdown_extend_timer":["countdown-wpdevart-extended"],"multifeedreader_feed":["multi-feed-reader"],"math_quiz_problems":["math-quiz"],"church_admin_app":["church-admin"],"church_admin_app_visits":["church-admin"],"church_admin_bible_books":["church-admin"],"bepro_listing_typesmeta":["bepro-listings"],"church_admin_bookings":["church-admin"],"defensio":["defensio-anti-spam"],"church_admin_hope_team":["church-admin"],"church_admin_brplan":["church-admin"],"church_admin_calendar_category":["church-admin"],"wpmlm_registration_packages":["wp-mlm"],"church_admin_funnels":["church-admin"],"wpmlm_tran_password":["wp-mlm"],"church_admin_follow_up":["church-admin"],"church_admin_facilities":["church-admin"],"bepro_listings":["bepro-listings"],"wpmlm_configuration":["wp-mlm"],"church_admin_custom_fields":["church-admin"],"church_admin_smallgroup":["church-admin"],"quotes_llama":["quotes-llama"],"ch_participants":["contesthopper"],"gabcaptchasecret":["gab-captcha-2"],"randomyoutube":["random-youtube-video"],"appointment_settings":["fastbook-responsive-appointment-booking-and-scheduling-system"],"church_admin_tickets":["church-admin"],"cp_donations":["custom-post-donations"],"mail_booster":["wp-mail-booster"],"mail_booster_email_logs":["wp-mail-booster"],"mail_booster_logs":["wp-mail-booster"],"ch_participants_meta":["contesthopper"],"mollom":["mollom"],"rtcl_sessions":["classified-listing"],"wl_relation_instances":["wordlift"],"rdp_wiki_embed":["rdp-wiki-embed"],"mail_booster_meta":["wp-mail-booster"],"ft_lua_userlogins":["log-user-access"],"amwscp_amazon_templates":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_orders":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_feeds":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"cjl_bdemail_unsubscribe":["birthday-emails"],"amwscp_template_values":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_amazon_feeds":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"rank_math_schema_cache":["schema-markup-rich-snippets"],"cmm_subscriber":["custom-maintenance-mode"],"w2dc_content_fields_groups":["web-directory-free"],"cbpress_parse_user":["cbpress"],"ravpage_urls":["ravpage"],"wpbooking_availability_tour":["wp-booking-management-system"],"wpbooking_availability":["wp-booking-management-system"],"pricing_detail":["easy-pricing-table-manager"],"wpbooking_favorite":["wp-booking-management-system"],"sktnurclog":["skt-nurcaptcha"],"rank_math_schema":["schema-markup-rich-snippets"],"woodle_termmeta":["moowoodle"],"bmibmr":["bmi-bmr-calculator"],"w2dc_directories":["web-directory-free"],"cbpress_tree":["cbpress"],"gmtr_data":["google-maps-travel-route"],"w2dc_levels":["web-directory-free"],"g_aths_plugin":["announcement-ticker-highlighter-scroller"],"bmc_plugin":["buymeacoffee"],"cbpress_prod":["cbpress"],"cp_project_users":["collabpress"],"rpc_comuni":["regione-provincia-comune"],"e_franchise":["bbs-e-franchise"],"rpc_province":["regione-provincia-comune"],"rpc_regioni":["regione-provincia-comune"],"cmeb_userlist":["cm-email-blacklist"],"wpbi_vars":["wp-business-intelligence-lite"],"cmeb_free_domains":["cm-email-blacklist"],"cf_participants_meta":["contestfriend"],"w2dc_content_fields":["web-directory-free"],"mpwd_sessions":["magic-password"],"premmerce_attributes":["premmerce-woocommerce-variation-swatches"],"wpdbboost_log":["wp-db-booster"],"all_pushnotification_token":["all-push-notification"],"wpbooking_service":["wp-booking-management-system"],"wpbooking_review_helpful":["wp-booking-management-system"],"cf_participants":["contestfriend"],"emb_embeds":["embedder"],"gp_translations":["glotpress"],"reflex_gallery":["reflex-gallery"],"omega_index_status":["omega-instant-search"],"wpbooking_payment":["wp-booking-management-system"],"wpbooking_order_hotel_room":["wp-booking-management-system"],"vtwpr_purchase_log":["wholesale-pricing-for-woocommerce"],"vtwpr_purchase_log_product":["wholesale-pricing-for-woocommerce"],"comment_mail_queue":["comment-mail"],"vtwpr_purchase_log_product_rule":["wholesale-pricing-for-woocommerce"],"_faucet_settings":["bitcoin-faucet"],"mpwd_session_variables":["magic-password"],"gp_translation_sets":["glotpress"],"google_marker_settings":["google-map-professional"],"tss_team_showcase_label":["team-showcase-supreme"],"google_markers":["google-map-professional"],"wpbooking_order":["wp-booking-management-system"],"mpwd_migrations":["magic-password"],"gp_glossaries":["glotpress"],"paymill_cache_offers":["paymill"],"gp_glossary_entries":["glotpress"],"tss_team_showcase_style":["team-showcase-supreme"],"tss_team_showcase_link":["team-showcase-supreme"],"gp_meta":["glotpress"],"gp_projects":["glotpress"],"tss_team_showcase_image_list":["team-showcase-supreme"],"ts_tracks":["trackserver"],"paymill_clients":["paymill"],"ts_locations":["trackserver"],"paymill_subscriptions":["paymill"],"paymill_transactions":["paymill"],"omega_sync_status":["omega-instant-search"],"gp_originals":["glotpress"],"gp_permissions":["glotpress"],"g_ywfz":["youtube-with-fancy-zoom"],"userstats_count":["user-stats"],"pricing_table":["easy-pricing-table-manager"],"bwge_option":["gallery-ecommerce"],"bwge_image_comment":["gallery-ecommerce"],"gcl_transactions":["gift-certificates-lite"],"gcl_certificates":["gift-certificates-lite"],"vls_gf_images":["gallery-factory-lite"],"vls_gf_folders":["gallery-factory-lite"],"vls_gf_aux_images":["gallery-factory-lite"],"bwge_image_rate":["gallery-ecommerce"],"bwge_image_tag":["gallery-ecommerce"],"bwge_order_images":["gallery-ecommerce"],"vls_gf_nodes":["gallery-factory-lite"],"_faucet_refs":["bitcoin-faucet"],"w2dc_locations_relationships":["web-directory-free"],"w2dc_locations_levels":["web-directory-free"],"share_logins_log":["share-logins"],"w2dc_levels_relationships":["web-directory-free"],"bwge_orders":["gallery-ecommerce"],"bwge_parameters":["gallery-ecommerce"],"bwge_payment_systems":["gallery-ecommerce"],"bwge_image":["gallery-ecommerce"],"bwge_gallery":["gallery-ecommerce"],"bwge_pricelist_items":["gallery-ecommerce"],"opafti_history":["transaction-integration-for-affiliatewp-and-optimizepress"],"msdb_shopping_cart":["sell-downloads"],"em_attendees":["event-monster"],"reflex_gallery_images":["reflex-gallery"],"opafti_stats":["transaction-integration-for-affiliatewp-and-optimizepress"],"opafti_saved_purchases":["transaction-integration-for-affiliatewp-and-optimizepress"],"questions_answers":["questions"],"bwge_ecommerceoptions":["gallery-ecommerce"],"bwge_album":["gallery-ecommerce"],"sddb_reviews":["sell-downloads"],"bwge_album_gallery":["gallery-ecommerce"],"wthp_helpful_log":["was-this-helpful"],"sentry_groups":["wp-sentry"],"qa_notification":["question-answer"],"qa_follow":["question-answer"],"emailoctopus_custom_fields":["emailoctopus"],"emailoctopus_forms":["emailoctopus"],"emailoctopus_forms_meta":["emailoctopus"],"e_franchise_config":["bbs-e-franchise"],"worthy_markers":["wp-worthy"],"l_crm_map_fields":["wp-widget-sugarcrm-lead-module"],"quick_count_users":["quick-count"],"cppolls_messages":["cp-polls"],"cppolls_forms":["cp-polls"],"pronamic_domain_posts":["pronamic-domain-mapping"],"wps_bans":["wp-sentinel"],"quick_flag_countries":["quick-flag"],"quick_flag_ip_ranges":["quick-flag"],"customizeadmin":["customize-wpadmin"],"wpbiker_tool":["popups-creator","forms-creator","subscription-creator"],"ps_advertisers":["wp-profitshare"],"cbpress_cat":["cbpress"],"shortcodes_groups":["scode-by-mojwp"],"cbpress_import":["cbpress"],"cbpress_list":["cbpress"],"cbpress_list_item":["cbpress"],"cbpress_parse_prod":["cbpress"],"cbpress_parse_tree":["cbpress"],"firme_circolari":["gestione-circolari","gestione-circolari-groups"],"questions_settings":["questions"],"ps_campaigns":["wp-profitshare"],"psp_web_directories":["premium-seo-pack-light-version"],"bwge_shortcode":["gallery-ecommerce"],"psp_serp_reporter2rank":["premium-seo-pack-light-version"],"psp_serp_reporter":["premium-seo-pack-light-version"],"psp_post_planner_cron":["premium-seo-pack-light-version"],"psp_monitor_404":["premium-seo-pack-light-version"],"bwge_pricelist_parameters":["gallery-ecommerce"],"psp_link_redirect":["premium-seo-pack-light-version"],"psp_link_builder":["premium-seo-pack-light-version"],"bwge_pricelists":["gallery-ecommerce"],"ps_tag_images":["wp-profitshare"],"ps_conversions":["wp-profitshare"],"bwge_theme":["gallery-ecommerce"],"questions_participiants":["questions"],"questions_questions":["questions"],"fc_captcha_store":["flexible-captcha"],"questions_respond_answers":["questions"],"questions_responds":["questions"],"ps_shorted_links":["wp-profitshare"],"ps_keywords":["wp-profitshare"],"currencies":["wp-currencies"],"wusp_user_pricing_mapping":["customer-specific-pricing-lite"],"cmeb_email_list":["cm-email-blacklist"],"_faucet_pages":["bitcoin-faucet"],"arm_membership_setup":["armember-membership"],"_faucet_ips":["bitcoin-faucet"],"musli":["musli"],"wpbi_phinx_log":["wp-business-intelligence-lite"],"st_social_widgets":["socialize-this"],"wpbi_pie_charts":["wp-business-intelligence-lite"],"arm_termmeta":["armember-membership"],"arm_subscription_plans":["armember-membership"],"arm_payment_log":["armember-membership"],"arm_members":["armember-membership"],"idea_factory":["idea-factory"],"arm_login_history":["armember-membership"],"arm_lockdown":["armember-membership"],"arm_forms":["armember-membership"],"arm_form_field":["armember-membership"],"arm_fail_attempts":["armember-membership"],"arm_entries":["armember-membership"],"arm_email_templates":["armember-membership"],"arm_bank_transfer_log":["armember-membership"],"arm_activity":["armember-membership"],"nsaa_xed_comments":["no-spam-at-all"],"wp_photo_50":["wp-photo-text-slider-50"],"etcpf_etsy_configuration":["exportfeed-for-woocommerce-product-to-etsy"],"wpforms_db":["database-for-wpforms"],"pi_hit_counter":["wiloke-most-popular-widget"],"wpbi_datatables":["wp-business-intelligence-lite"],"wpm_6310_icon":["team-showcase-supreme"],"wpm_6310_icons":["team-showcase-supreme"],"etcpf_category_mappings":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_custom_feed_products":["exportfeed-for-woocommerce-product-to-etsy"],"wpm_6310_member":["team-showcase-supreme"],"wpm_6310_style":["team-showcase-supreme"],"author_chat":["author-chat"],"etcpf_shipping_template":["exportfeed-for-woocommerce-product-to-etsy"],"adce_config":["exchange-rates-adce"],"etcpf_feedproducts":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_feeds":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_listing_variations":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_listings":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_orders":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_resolved_product_data":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_settings":["exportfeed-for-woocommerce-product-to-etsy"],"wpbi_databases":["wp-business-intelligence-lite"],"ai_quiz_tblquizzes":["quiz-tool-lite"],"wpbi_queries3":["wp-business-intelligence-lite"],"lws_wr_historic":["woorewards"],"wpbi_queries":["wp-business-intelligence-lite"],"competition_entries":["competition-form"],"ai_quiz_tblgradeboundaries":["quiz-tool-lite"],"ai_quiz_tblquestionpots":["quiz-tool-lite"],"ai_quiz_tblquestions":["quiz-tool-lite"],"ai_quiz_tblquizattempts":["quiz-tool-lite"],"ai_quiz_tblresponseoptions":["quiz-tool-lite"],"competition_entries_meta":["competition-form"],"ai_quiz_tblsettings":["quiz-tool-lite"],"ai_quiz_tblsubmittedanswers":["quiz-tool-lite"],"ai_quiz_tbluserquizresponses":["quiz-tool-lite"],"al_urls":["anylink"],"hs_brand_logo":["hs-brand-logo-slider"],"al_urls_index":["anylink"],"alcud":["aeroleads-contact-us-details"],"alcud_options":["aeroleads-contact-us-details"],"all_pushnotification_logs":["all-push-notification"],"wpbi_tables":["wp-business-intelligence-lite"],"sticky_social_bar":["sticky-social-bar"],"e_gallery":["video-slider-with-thumbnails"],"plugin_websters_kalendar":["kalendar-cz"],"wp_flickity":["wp-flickity"],"popunderpopup":["popunder-popup"],"domain_check_ssl":["domain-check"],"stw_error_log":["shrinktheweb-website-preview-plugin"],"contact_manager_messages":["contact-manager"],"contact_manager_forms_categories":["contact-manager"],"iaposter_queue":["iaposter"],"iaposter_logs":["iaposter"],"wpbi_tb_cols":["wp-business-intelligence-lite"],"contact_manager_forms":["contact-manager"],"domain_check_coupons":["domain-check"],"domain_check_domains":["domain-check"],"comment_mail_subs":["comment-mail"],"comment_mail_queue_event_log":["comment-mail"],"wpbi_database_connections":["wp-business-intelligence-lite"],"grid_container2slot":["grid"],"hat_subscribers_lite_history":["wechat-subscribers-lite"],"snowball_articles":["snowball"],"grid_box":["grid"],"pd_files":["paid-downloads","zarinpal-paid-downloads"],"grid_box_style":["grid"],"grid_box_type":["grid"],"pd_orders":["zarinpal-paid-downloads"],"imdb_connector":["imdb-connector"],"grid_container":["grid"],"grid_grid2container":["grid"],"grid_grid":["grid"],"arm_member_templates":["armember-membership"],"grid_container_type":["grid"],"grid_container_style":["grid"],"thanks_counters":["thanks-you-counter-button"],"thanks_readers":["thanks-you-counter-button"],"wpbi_charts":["wp-business-intelligence-lite"],"datafeed":["awin-data-feed"],"pd_transactions":["zarinpal-paid-downloads","paid-downloads"],"mavis_settings":["mavis-https-to-http-redirect"],"pd_downloadlinks":["zarinpal-paid-downloads","paid-downloads"],"instock_email_alert":["instock-email-alert-for-woocommerce"],"wps_logs":["wp-sentinel"],"_faucet_ip_locks":["bitcoin-faucet"],"_faucet_addresses":["bitcoin-faucet"],"datafeed_analytics":["awin-data-feed"],"_faucet_address_locks":["bitcoin-faucet"],"wps_logins":["wp-sentinel"],"mbp_progress":["mybookprogress"],"grid_slot_style":["grid"],"comment_mail_sub_event_log":["comment-mail"],"snowball_blocks":["snowball"],"wpbi_bar_charts":["wp-business-intelligence-lite"],"grid_nodes":["grid"],"grid_schema":["grid"],"wpbi_ch_cols":["wp-business-intelligence-lite"],"grid_slot2box":["grid"],"grid_slot":["grid"],"noticias_de_portada":["hot-news-manager"],"ob_answer2result":["onionbuzz-viral-quiz"],"newfield":["video-sidebar-widget"],"sa_plugin":["sermonaudio-widgets"],"rich_web_cs_forms_themes3":["coming-soons"],"sm_social_list":["share-me"],"ob_adv_settings":["onionbuzz-viral-quiz"],"s3slider":["s3slider-plugin"],"rw_gplaces_review":["review-wave-google-places-reviews"],"ob_advertisings":["onionbuzz-viral-quiz"],"lodgix_deposits":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_fees":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"mwp_modal_free":["mwp-modal-windows"],"lhr_log":["log-http-requests"],"lodgix_pages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_merged_rates":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_link_rotators":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"kads_info":["kento-ads-rotator"],"lodgix_categories":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_languages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_properties":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_category_posts":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_pages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"jumplead_mapping":["jumplead"],"rw_gplaces_place":["review-wave-google-places-reviews"],"rsfirewall_ignored":["rsfirewall"],"ob_answers":["onionbuzz-viral-quiz"],"lodgix_taxes":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"sndr_mail_send":["sender"],"lodgix_policies":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_properties":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_property_categories":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_property_tags":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_reviews":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_searchable_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_tags":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_translations":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"mpesa_trx":["woo-m-pesa-payment-gateway"],"mediatagger":["wp-mediatagger"],"reatlat_cub_sources":["campaign-url-builder"],"lrisg_plugin":["left-right-image-slideshow-gallery"],"nm_wooconvo":["admin-and-client-message-after-order-for-woocommerce"],"woocommerce_buckaroo_transactions":["wc-buckaroo-bpe-gateway"],"revision_control":["companion-revision-manager"],"sw_couriers":["shipway-shipment-tracking-and-notify"],"sndr_users":["sender"],"qwiz_textentry_suggestions":["qwiz-online-quizzes-and-flashcards"],"ob_feed2quiz":["onionbuzz-viral-quiz"],"ob_result_unlocks":["onionbuzz-viral-quiz"],"netreviews_products_reviews":["netreviews"],"lodgix_pictures":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"rsfirewall_signatures":["rsfirewall"],"rsfirewall_offenders":["rsfirewall"],"rsfirewall_hashes":["rsfirewall"],"tayori":["tayori"],"ob_feeds":["onionbuzz-viral-quiz"],"ob_questions":["onionbuzz-viral-quiz"],"ob_quizzes":["onionbuzz-viral-quiz"],"ob_results":["onionbuzz-viral-quiz"],"reatlat_cub_mediums":["campaign-url-builder"],"reallysimpleevents":["really-simple-events"],"paypal_products":["paypal-responder"],"netreviews_products_average":["netreviews"],"netreviews_configuration":["netreviews"],"paypal_transactions":["paypal-responder"],"reatlat_cub_links":["campaign-url-builder"],"ob_score":["onionbuzz-viral-quiz"],"ob_settings":["onionbuzz-viral-quiz"],"ob_vote2question":["onionbuzz-viral-quiz"],"qwiz_dataset_json":["qwiz-online-quizzes-and-flashcards"],"wpda_vertical_menu_theme":["wpdevart-vertical-menu"],"scck_content_type_fields":["simple-content-construction-kit"],"sc_catalog":["sc-catalog"],"mlm_payout_master":["binary-mlm","binarymlm"],"pros_prossubscription":["prosociate-amazon"],"pickplugins_wl_data":["wishlist"],"viewmedica":["viewmedica"],"tfk_item_comment_like":["taskfreak"],"mlm_bonus":["binary-mlm","binarymlm"],"mlm_commission":["binary-mlm","binarymlm"],"mlm_country":["binary-mlm","binarymlm"],"mlm_currency":["binary-mlm","binarymlm"],"mlm_leftleg":["binary-mlm","binarymlm"],"mlm_payout":["binary-mlm","binarymlm"],"mlm_rightleg":["binary-mlm","binarymlm"],"pros_campaigns":["prosociate-amazon"],"mlm_users":["binary-mlm","binarymlm"],"tfk_item_file":["taskfreak"],"tfk_item_like":["taskfreak"],"marker_animation___log":["marker-animation"],"mudslide":["mudslideshow"],"marker_animation_setting":["marker-animation"],"tfk_item":["taskfreak"],"wow_social_users":["wow-facebook-login","wow-google-login"],"tfk_item_status":["taskfreak"],"wb":["wp-widget-bundle"],"tfk_log":["taskfreak"],"videourl":["video-sidebar-widget"],"tfk_item_comment":["taskfreak"],"tfk_project_status":["taskfreak"],"resads_ad_adspot":["resads"],"wp_writup":["wp-writup"],"rich_web_cs_forms_cust_id":["coming-soons"],"mapfig_premium_map":["mapfig-premium-leaflet-map-maker"],"resads_ad_statistik":["resads"],"projectmanager_categories":["projectmanager"],"wpcvp_pollsq":["colored-vote-polls"],"mapfig_premium_layers":["mapfig-premium-leaflet-map-maker"],"wpcvp_pollsp":["colored-vote-polls"],"wpcvp_pollsip":["colored-vote-polls"],"resads_ad":["resads"],"wpajans_stickybuttons":["wp-sticky-side-buttons"],"wpcvp_pollsa":["colored-vote-polls"],"shortcode_imdb_cache":["shortcode-imdb"],"wpcrm_system_recurring_entries":["wp-crm-system"],"projectmanager_countries":["projectmanager"],"mapfig_premium_groups_has_layers":["mapfig-premium-leaflet-map-maker"],"projectmanager_dataset":["projectmanager"],"projectmanager_datasetmeta":["projectmanager"],"mapfig_premium_groups":["mapfig-premium-leaflet-map-maker"],"watulp_relations":["quizzes-for-learnpress"],"projectmanager_projects":["projectmanager"],"tfk_project":["taskfreak"],"like_dislike_btn_details":["like-dislike-plus-counter"],"maxab_experiments":["maxab"],"wooms_logger":["wooms"],"sec_opt_attack_history":["wp-security-optimizer"],"rich_web_cs_forms_themes1":["coming-soons"],"rich_web_cs_forms_themes2":["coming-soons"],"sm_config":["share-me"],"refersion_cart_tracking":["refersion-for-woocommerce"],"scrybs_languages_translations":["scrybs-translation"],"scrybs_languages":["scrybs-translation"],"scrd_debug_log":["rss-digest"],"woorelatedproducts":["woo-simply-add-related-products-to-blog-posts"],"menusplus":["menus-plus"],"sec_opt_counter":["wp-security-optimizer"],"rich_web_cs_font_family":["coming-soons"],"scck_menu":["simple-content-construction-kit"],"scck_content_type_fields_group_rel":["simple-content-construction-kit"],"scck_content_type_fields_group":["simple-content-construction-kit"],"scck_content_type_fields_detail_tx":["simple-content-construction-kit"],"scck_content_type_fields_detail":["simple-content-construction-kit"],"rich_web_cs_form_fields":["coming-soons"],"scck_content_type":["simple-content-construction-kit"],"scc_forms":["stylish-cost-calculator"],"voteiu_data":["vote-it-up"],"scc_form_parameters":["stylish-cost-calculator"],"sec_opt_attacker":["wp-security-optimizer"],"secsign":["secsign"],"webpay":["webpay-woocommerce-plugin"],"resads_adspot":["resads"],"tfk_project_user":["taskfreak"],"rich_web_cs_forms_info":["coming-soons"],"rich_web_cs_forms_mails":["coming-soons"],"mm_menus":["menu-manager"],"mmdyk_quote":["mm-did-you-know"],"resads_resolution":["resads"],"rich_web_cs_forms_options":["coming-soons"],"kklikeuser":["kk-i-like-it"],"menusplus_menus":["menus-plus"],"kklike":["kk-i-like-it"],"plugin_manager_group_plugin":["plugin-grouper"],"plugin_manager_plugins":["plugin-grouper"],"sexy_login":["sexy-login"],"plugin_manager_groups":["plugin-grouper"],"kento_email_subscriber":["email-subscriber"],"slbl_blocks":["htaccess-login-block"],"py_jobs":["wordpress-google-seo-positioner"],"seur_svpr":["seur"],"seur_custom_rates":["seur"],"py_jobs_data":["wordpress-google-seo-positioner"],"slbl_log":["htaccess-login-block"],"slideshow_plugin":["slideshow-manager"],"prettyurls":["pretty-url"],"rich_web_cs_forms_saved":["coming-soons"],"woocommerce_order_alert":["woc-order-alert"],"clndr_instances":["event-clndr"],"_uwpm_email_send_events":["ultimate-wp-mail"],"gb_gallery_group_post":["gb-gallery-slideshow"],"gb_gallery_group":["gb-gallery-slideshow"],"btn_details":["like-dislike-plus-counter"],"dex_appointments":["cp-appointment-calendar"],"emailinglist":["email-suscripcion","dys-email-subscription"],"_uwpm_email_only_users":["ultimate-wp-mail"],"embed_rsvpify_plugin":["rsvpify-rsvp-form"],"fx_email_log":["fx-email-log"],"reviews_configuration":["netreviews"],"reviews_products_average":["netreviews"],"fun_facts":["fun-facts"],"hitcounter":["hitcounter"],"dailytoptenall":["daily-top-10-posts"],"dailytopten":["daily-top-10-posts"],"_uwpm_email_open_events":["ultimate-wp-mail"],"_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"canvas_notifications":["mobile-app"],"jigoshop_product_attachment":["jigoshop-ecommerce"],"geonames":["wp-geonames"],"ap_transaction":["affiliate-power"],"ap_meta":["profilepress"],"ap_clickout":["affiliate-power"],"jigoshop_term_meta":["jigoshop-ecommerce"],"jigoshop_tax_location":["jigoshop-ecommerce"],"jigoshop_tax":["jigoshop-ecommerce"],"jigoshop_product_variation_attribute":["jigoshop-ecommerce"],"jigoshop_product_attribute_meta":["jigoshop-ecommerce"],"jigoshop_product_attribute":["jigoshop-ecommerce"],"jigoshop_order_tax":["jigoshop-ecommerce"],"jigoshop_attribute":["jigoshop-ecommerce"],"wpsg_adress":["wpshopgermany-free"],"jigoshop_order_item_meta":["jigoshop-ecommerce"],"jigoshop_order_item":["jigoshop-ecommerce"],"cwin_feed":["epicwin-subscribers"],"jigoshop_order_discount_meta":["jigoshop-ecommerce"],"jigoshop_order_discount":["jigoshop-ecommerce"],"jigoshop_cronjobs":["jigoshop-ecommerce"],"jigoshop_attribute_option":["jigoshop-ecommerce"],"bp_compliments":["buddypress-compliments"],"reviews_products_reviews":["netreviews"],"c_links":["simple-link-cloaker"],"ics_modules_type":["comparison-slider"],"crfw_cart":["cart-recovery"],"_core37_formstyle":["form-styles-for-contact-form-7"],"clndr_events":["event-clndr"],"invites":["wp-invites"],"fca_cc_activity_tbl":["giveaways-contests"],"unter_top":["rich-counter"],"unter_time":["rich-counter"],"unter_last":["rich-counter"],"unter_hold":["rich-counter"],"ics_modules":["comparison-slider"],"ics_sliders":["comparison-slider"],"crfw_cart_meta":["cart-recovery"],"ics_usage_stat":["comparison-slider"],"cosmosfarm_comments_token":["cosmosfarm-comments"],"an":["quran-text-multilanguage"],"wpv_voting":["wp-voting"],"wpv_voting_meta":["wp-voting"],"far":["find-and-replace-content"],"fancyimg_plugin":["fancy-image-show"],"contact_subscribers":["contact-form-with-shortcode"],"contact_stored_data":["contact-form-with-shortcode"],"wplistcal":["wplistcal"],"crfw_cart_event":["cart-recovery"],"wptwitipid":["twitterlink-comments","wp-twitip-id"],"cycletext_settings":["wp-cycle-text-announcement"],"clean_up_booster":["clean-up-booster"],"cycletext_content":["wp-cycle-text-announcement"],"cardgate_payments":["cardgate"],"advanced_cf7_data":["advanced-cf7-database"],"ens_subscribers":["easy-newsletter-signups"],"category_info":["category-post-info-control"],"cbaccounting_account_manager":["cbxwpsimpleaccounting"],"cbaccounting_category":["cbxwpsimpleaccounting"],"cbaccounting_expcat_rel":["cbxwpsimpleaccounting"],"cbaccounting_expinc":["cbxwpsimpleaccounting"],"cbxuseronline":["cbxuseronline"],"evc_log":["elegant-visitor-counter"],"ewd_uwpm_email_send_events":["ultimate-wp-mail"],"clean_up_booster_ip_locations":["clean-up-booster"],"clean_up_booster_meta":["clean-up-booster"],"cleverreach_config":["cleverreach-wp"],"cleverreach_entity":["cleverreach-wp"],"cleverreach_process":["cleverreach-wp"],"cleverreach_queue":["cleverreach-wp"],"csr_votes":["cosmick-star-rating"],"ewd_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"ewd_uwpm_email_only_users":["ultimate-wp-mail"],"ewd_uwpm_email_open_events":["ultimate-wp-mail"],"geonamespostal":["wp-geonames"],"board_rsvps":["nonprofit-board-management"],"arsocial_lite_locker":["social-share-and-social-locker-arsocial"],"wpsg_orderconditions":["wpshopgermany-free"],"guiform":["guiform"],"xmasb_quotes":["xmasb-quotes"],"wpsg_kunden":["wpshopgermany-free"],"wpsg_order":["wpshopgermany-free"],"google_shortlink":["google-shortlink"],"arsocial_lite_networks":["social-share-and-social-locker-arsocial"],"arsocial_lite_like":["social-share-and-social-locker-arsocial"],"wpsg_orderlog":["wpshopgermany-free"],"arsocial_lite_fan":["social-share-and-social-locker-arsocial"],"ean_newsletter":["easy-automatic-newsletter"],"avalex":["avalex"],"wpsg_versandarten":["wpshopgermany-free"],"wpsg_versandzonen":["wpshopgermany-free"],"appts_tables_data":["ap-pricing-tables-lite"],"wpsg_laender":["wpshopgermany-free"],"wpsg_meta":["wpshopgermany-free"],"guiform_options":["guiform"],"wpsg_order_products":["wpshopgermany-free"],"appointment_calendars":["cp-appointment-calendar"],"appointment_calendars_data":["cp-appointment-calendar"],"wxsync_config":["wxsync"],"wpsg_products":["wpshopgermany-free"],"sshow_zones":["stageshow"],"wccs_condition_meta":["easy-woocommerce-discounts"],"html5video_playlist":["html5-video-player-with-playlist"],"wpre_emails":["wp-reroute-email"],"wccs_conditions":["easy-woocommerce-discounts"],"sshow_verifys":["stageshow"],"ssquiz_quizzes":["ssquiz"],"zpm_tasks":["zephyr-project-manager"],"zpm_projects":["zephyr-project-manager"],"ssquiz_questions":["ssquiz"],"_wpptpopups":["wp-tactical-popup"],"ssquiz_history":["ssquiz"],"ssign_envelope":["electronic-signatures"],"_wpptdisplay_rules":["wp-tactical-popup"],"zpm_messages":["zephyr-project-manager"],"ssign_pdfs":["electronic-signatures"],"ssing_log":["electronic-signatures"],"zpm_categories":["zephyr-project-manager"],"zpm_activity":["zephyr-project-manager"],"ssing_lead_report":["electronic-signatures"],"a3_portfolio_attributes":["a3-portfolio"],"zp_locations":["print-google-cloud-print-gcp-woocommerce"],"html5video_items":["html5-video-player-with-playlist"],"named_users":["wpnamedusers"],"ht_ip_list":["honeypot-toolkit"],"wl_im_students":["institute-management"],"addpipe_records":["pipe-video-recorder"],"telaalbums_users":["telaalbums"],"rpress_customermeta":["restropress"],"ad_click":["cbprotect"],"sovstack_stats":["security-safe"],"acip_text_desglo":["avirato-calendar"],"threatpress_login_log":["threatpress-security"],"acip_text_calendarz":["avirato-calendar"],"acip_text_calendar":["avirato-calendar"],"acip_text_button":["avirato-calendar"],"acfsrf":["acf-starrating"],"cf7_export_csv_db":["cf7-export-csv"],"cf_geo_seo_redirection":["cf-geoplugin"],"wl_im_installments":["institute-management"],"cgd_term_order":["shopp-arrange"],"ht_activity":["honeypot-toolkit"],"mysearchterms":["mysearchtermspresenter"],"changes_tracker":["wp-changes-tracker"],"cheetaho_image_metadata":["cheetaho-image-optimizer"],"mzzstat_v2":["mzz-stat"],"wpchtmlp_pages":["wp-custom-html-pages"],"awsomnews":["awsom-news-announcement"],"awesomecustom":["ajax-awesome-css"],"spec_comment_log":["spectacula-threaded-comments"],"assets_log":["assets-manager"],"wpfblbox":["crudlab-facebook-like-box"],"named_users_groups":["wpnamedusers"],"named_users_groups_relations":["wpnamedusers"],"a3_portfolio_categorymeta":["a3-portfolio"],"ashuwp_invitation_code":["ashuwp-invitaion-code"],"_slider":["smoothness-slider-shortcode","essential"],"wm_filehashes":["wemahu"],"clickmeter_options":["clickmeter-link-shortener-and-analytics"],"extrawatch_uri_post":["extrawatch-pro"],"sshow_dispresets":["stageshow"],"favorite_post":["favorite-post"],"cmnb_history":["cm-notification-bar"],"wpm_forms":["wp-mailer"],"sshow_discodes":["stageshow"],"request_a_call_back":["wp-call-me-back"],"codeswholesale_access_tokens":["codeswholesale-for-woocommerce"],"codeswholesale_import_properties":["codeswholesale-for-woocommerce"],"mendeleycache":["mendeleyplugin"],"codeswholesale_refresh_tokens":["codeswholesale-for-woocommerce"],"rencato_connector_log":["ecalypse-rental-starter"],"extrawatch_visit2goal":["extrawatch-pro"],"extrawatch_user_log":["extrawatch-pro"],"extrawatch_uri_history":["extrawatch-pro"],"review_user_emails":["wp-social-seo"],"extrawatch_uri2title":["extrawatch-pro"],"extrawatch_uri2keyphrase_pos":["extrawatch-pro"],"extrawatch_uri2keyphrase":["extrawatch-pro"],"extrawatch_uri":["extrawatch-pro"],"extrawatch_sql_scripts":["extrawatch-pro"],"extrawatch_keyphrase":["extrawatch-pro"],"wpbb_topics_unread":["wp-bulletin-board"],"extrawatch_ip2c_cache":["extrawatch-pro"],"wpbb_topics":["wp-bulletin-board"],"wpbb_posts":["wp-bulletin-board"],"wpbb_messages":["wp-bulletin-board"],"extrawatch_internal":["extrawatch-pro"],"wrc_relations":["wp-rest-cache"],"wrc_caches":["wp-rest-cache"],"sshow_disprices":["stageshow"],"wbtm_bus_booking_list":["bus-ticket-booking-with-seat-reservation"],"clickmeter_tracking_links":["clickmeter-link-shortener-and-analytics"],"wm_rulesets":["wemahu"],"clickmeter_tracking_pixels":["clickmeter-link-shortener-and-analytics"],"sshow_ticketsmeta":["stageshow"],"trackingcode":["leadfox"],"rich_snippets_review":["wp-social-seo"],"wm_dirstack":["wemahu"],"sshow_tickets":["stageshow"],"rpress_order_notification":["restropress"],"wm_filestack":["wemahu"],"ljcustommenulinks":["lj-custom-menu-links"],"sshow_spooler":["stageshow"],"wm_kvs":["wemahu"],"wm_reportitems":["wemahu"],"fbrev_page_review":["wp-social-seo"],"review_user_profile":["wp-social-seo"],"fbrev_page":["wp-social-seo"],"woel_woocommerce_order_emails_log":["order-emails-log-for-woocommerce"],"_click_statistics":["wp-click-info"],"resh_tokens":["codeswholesale-for-woocommerce"],"sshow_shows":["stageshow"],"sshow_settings":["stageshow"],"sshow_seating":["stageshow"],"wpm_subscribers":["wp-mailer"],"sshow_sales":["stageshow"],"sshow_prices":["stageshow"],"sshow_presets":["stageshow"],"sshow_plans":["stageshow"],"sshow_perfs":["stageshow"],"wpm_jobs":["wp-mailer"],"rpress_customers":["restropress"],"fontsampler_sets":["fontsampler"],"wl_im_enquiries":["institute-management"],"hami_slider":["wp2appir"],"mailster_digest_queue":["wp-mailster"],"mailster_attachments":["wp-mailster"],"antiddos":["wpantiddos"],"ecalypse_rental_pricing":["ecalypse-rental-starter"],"bounce_emails":["bounce"],"gd_mylist":["gd-mylist"],"hami_appost":["wp2appir"],"hami_appstatic":["wp2appir"],"hami_mainpage":["wp2appir"],"hami_set":["wp2appir"],"amdbible_plans_info":["amd-bible-reading"],"mailster_digests":["wp-mailster"],"amdbible_plans":["amd-bible-reading"],"amdbible_kjv":["amd-bible-reading"],"amdbible_key_genre_eng":["amd-bible-reading"],"amdbible_key_eng":["amd-bible-reading"],"amdbible_key_abbr_eng":["amd-bible-reading"],"amdbible_devos":["amd-bible-reading"],"gcountdown":["deal-or-announcement-with-countdown-timer"],"gc_comment_pairing":["graphcomment-comment-system"],"wpnewcarousel":["wpnewcarousels"],"wpnewcarouseldata":["wpnewcarousels"],"bsk_gfbl_items":["bsk-gravityforms-blacklist"],"bsk_gfbl_list":["bsk-gravityforms-blacklist"],"simple_security_access_log":["simple-security"],"mailster_group_users":["wp-mailster"],"seatt_attendees":["simple-event-attendance"],"ml_adverts_impressions":["ml-adverts"],"mmursp_settings":["mapping-multiple-urls-redirect-same-page"],"shorties_log":["wp-shorties"],"api_info":["print-science-designer"],"sub_requests":["feedback"],"sub_offers":["feedback"],"sub_feeds":["feedback"],"man_dofollow":["manuall-dofollow"],"man_dofollow2":["manuall-dofollow"],"sub_feed_tags":["feedback"],"sub_feed_items":["feedback"],"mailster_users":["wp-mailster"],"mailster_threads":["wp-mailster"],"mapboxadv_maps":["mapbox-for-wp-advanced"],"mailster_subscriptions":["wp-mailster"],"mailster_groups":["wp-mailster"],"mailster_servers":["wp-mailster"],"ml_adverts_clicks":["ml-adverts"],"mailster_send_reports":["wp-mailster"],"mailster_queued_mails":["wp-mailster"],"mailster_oa_mails":["wp-mailster"],"mailster_oa_attachments":["wp-mailster"],"mailster_notifies":["wp-mailster"],"mailster_mails":["wp-mailster"],"mailster_log":["wp-mailster"],"mailster_lists":["wp-mailster"],"mailster_list_stats":["wp-mailster"],"blog_clock":["blog-clock"],"mailster_list_members":["wp-mailster"],"mailster_list_groups":["wp-mailster"],"seatt_events":["simple-event-attendance"],"mailing_group_user_taxonomy":["wp-mailing-group"],"sovstack_logs":["security-safe"],"cart_data":["print-science-designer"],"smartcrm_subscriptionrules":["wp-smart-crm-invoices-free"],"saved_projects":["print-science-designer"],"call_back_best_time":["wp-call-me-back"],"smartcrm_values":["wp-smart-crm-invoices-free"],"banhammer":["banhammer"],"mstoreapp_blocks":["woo-mstoreapp-mobile-app"],"gridaccordion_accordions":["grid-accordion-lite"],"mstoreapp_wishlist":["woo-mstoreapp-mobile-app"],"msweb_reviews":["ms-reviews"],"xo_security_loginlog":["xo-security"],"snippy_bits":["snippy"],"multiparcels_terminals":["multiparcels-shipping-for-woocommerce"],"adit_hitcount":["mechanic-post-hits-counter"],"gridaccordion_layers":["grid-accordion-lite"],"wl_im_batches":["institute-management"],"wl_im_courses":["institute-management"],"rss_settings":["wp-rss-importer"],"fontsampler_settings":["fontsampler"],"ltp_datas":["like-this-post"],"snippy_shortcode_bits":["snippy"],"fontsampler_sets_x_fonts":["fontsampler"],"shorties":["wp-shorties"],"fontsampler_fonts":["fontsampler"],"snippy_shortcodes":["snippy"],"social_share":["social-share-by-jm-crea"],"addpipe_shortcodes":["pipe-video-recorder"],"socialbug_affiliates":["affiliate-mlm-party-plan"],"sociallink":["st-social-links"],"gridaccordion_panels":["grid-accordion-lite"],"mailing_group_taxonomy":["wp-mailing-group"],"wcup_team":["world-cup-predictor"],"mailing_group_sent_emails":["wp-mailing-group"],"mailing_group_requestmanager":["wp-mailing-group"],"mailing_group_parsed_emails":["wp-mailing-group"],"mailing_group_messages":["wp-mailing-group"],"mailing_group_attachments":["wp-mailing-group"],"mailing_group":["wp-mailing-group"],"mailer_templates":["custom-user-emails"],"extrawatch_info":["extrawatch-pro"],"syg":["sliding-youtube-gallery"],"syg_styles":["sliding-youtube-gallery"],"wcup_venue":["world-cup-predictor"],"wcup_stage":["world-cup-predictor"],"sb_integrations":["affiliate-mlm-party-plan"],"wcup_prediction":["world-cup-predictor"],"smartcrm_agenda":["wp-smart-crm-invoices-free"],"smartcrm_clienti":["wp-smart-crm-invoices-free"],"ahmeti_wp_timeline":["ahmeti-wp-timeline"],"smartcrm_contatti":["wp-smart-crm-invoices-free"],"smartcrm_documenti":["wp-smart-crm-invoices-free"],"wcup_match":["world-cup-predictor"],"smartcrm_documenti_dettaglio":["wp-smart-crm-invoices-free"],"smartcrm_email_templates":["wp-smart-crm-invoices-free"],"smartcrm_emails":["wp-smart-crm-invoices-free"],"smartcrm_fields":["wp-smart-crm-invoices-free"],"wpbb_categories":["wp-bulletin-board"],"ecalypse_rental_pricing_ranges":["ecalypse-rental-starter"],"extrawatch_history":["extrawatch-pro"],"wpabstracts_events":["wp-abstracts-manuscripts-manager"],"optinengine_provider_lists":["optinengine-email-optins-lead-generation"],"emcc_order_details":["cost-calculator"],"emcc_default_mail_user":["cost-calculator"],"metas":["all-in-menu"],"email_subscription":["simple-email-subscriber"],"video_files":["videos"],"jas_plugin":["jquery-accordion-slideshow"],"d_linus_contact_form":["contact-us-by-lord-linus"],"wp2ap_aff_links":["wp2affiliate"],"wp2ap_cloaked_links":["wp2affiliate"],"dfoxwgrab":["dfoxw-wechatgrab"],"wp2app_checkout":["wp2appir"],"wp2app_commission":["wp2appir"],"wpabstracts_users":["wp-abstracts-manuscripts-manager"],"posts_okunma":["sayfa-sayac"],"optinengine_leads":["optinengine-email-optins-lead-generation"],"wpss_log":["supersonic"],"wpss_links":["supersonic"],"wpss_clear":["supersonic"],"popularpostsdatacache":["mh-board"],"wpabstracts_attachments":["wp-abstracts-manuscripts-manager"],"wpabstracts_abstracts":["wp-abstracts-manuscripts-manager"],"d_stats":["feedback"],"jgcss_stylesheets":["joddit-global-css"],"ost_emailtemp":["key4ce-osticket-bridge","osticket-wp-bridge"],"dl_acj_cssjs":["add-cssjs-by-duo-leaf"],"donate":["wp-donate"],"donate_setting":["wp-donate"],"download_settings":["hide-real-download-path"],"optinengine_promos":["optinengine-email-optins-lead-generation"],"l2hbibtex":["latex2html"],"pmt_config":["pagamastarde"],"proofreading_rules_settings":["proofreading"],"pvc_paratheme":["page-view-counter"],"crw_projects":["crosswordsearch"],"css_js_manager":["css-js-manager"],"lbs_usage_stat":["lightbox-by-supsystic"],"lbs_modules_type":["lightbox-by-supsystic"],"lbs_modules":["lightbox-by-supsystic"],"lbs_lightbox":["lightbox-by-supsystic"],"ctext_categories":["category-text"],"ctext_elements":["category-text"],"ctext_lists":["category-text"],"oddfaq":["faq-accordion"],"psr_user":["post-star-rating"],"psr_post":["post-star-rating"],"word_filter_plus":["word-filter-plus"],"proofreading_rules":["proofreading"],"wow_fbtnp":["floating-button"],"user_login_history":["wp-login-security-and-history"],"e_fake_url":["wp-page-extension"],"emotahar_cost_calc":["cost-calculator"],"cw_epu_subscribers":["email-pick-up"],"enmask_hits":["boom-captcha","boomcaptcha"],"enmask_keywords":["boom-captcha","boomcaptcha"],"epo_order":["easy-post-order"],"omnisend_logs":["omnisend-connect"],"proofreading_languages":["proofreading"],"custom_map_polyline":["custom-map"],"custom_map_polygon":["custom-map"],"custom_map":["custom-map"],"olyos_concours_user":["wp-concours"],"olyos_concours_participation":["wp-concours"],"olyos_concours":["wp-concours"],"pmt_concurrency":["pagamastarde"],"crw_editors":["crosswordsearch"],"vxcf_ccontact":["cf7-constant-contact"],"wp_openstreetmap":["wp-open-street-map"],"wp_openstreetmap_markers":["wp-open-street-map"],"easy_poll_votes":["wp-easy-poll-afo"],"pingpressfm":["pingpressfm"],"wpic_posts":["wp-posts-to-instagram-by-kolesyane"],"phone2app_user":["phone2app"],"phone2app_form":["phone2app"],"ecalypse_rental_booking":["ecalypse-rental-starter"],"ecalypse_rental_booking_drivers":["ecalypse-rental-starter"],"ecalypse_rental_booking_items":["ecalypse-rental-starter"],"ecalypse_rental_booking_prices":["ecalypse-rental-starter"],"vxcf_ccontact_log":["cf7-constant-contact"],"vxcf_ccontact_accounts":["cf7-constant-contact"],"ecalypse_rental_branches":["ecalypse-rental-starter"],"easy_poll_a":["wp-easy-poll-afo"],"ecalypse_rental_branches_hours":["ecalypse-rental-starter"],"ecalypse_rental_extras":["ecalypse-rental-starter"],"ecp1_cache":["every-calendar-1"],"ecalypse_rental_extras_pricing":["ecalypse-rental-starter"],"ecalypse_rental_fleet":["ecalypse-rental-starter"],"ecalypse_rental_fleet_extras":["ecalypse-rental-starter"],"ecalypse_rental_fleet_parameters":["ecalypse-rental-starter"],"ecalypse_rental_webhook_queue":["ecalypse-rental-starter"],"ecalypse_rental_vehicle_categories":["ecalypse-rental-starter"],"ecalypse_rental_fleet_parameters_values":["ecalypse-rental-starter"],"pdfex_template":["post-pdf-export"],"ecalypse_rental_fleet_pricing":["ecalypse-rental-starter"],"ess_tokens":["codeswholesale-for-woocommerce"],"ecalypse_rental_translations":["ecalypse-rental-starter"],"easy_poll_q":["wp-easy-poll-afo"],"endar":["calendar-plus"],"visitas":["visits"],"p5":["p5"],"dpproeventcalendar_booking":["lite-event-calendar"],"tahar_cost_calc":["cost-calculator"],"dpproeventcalendar_calendars":["lite-event-calendar"],"dpproeventcalendar_special_dates":["lite-event-calendar"],"dpproeventcalendar_special_dates_calendar":["lite-event-calendar"],"dpproeventcalendar_subscribers_calendar":["lite-event-calendar"],"drop_down_options":["wp-call-me-back"],"dsplite_device":["digitalsignagepress-lite"],"dsplite_format":["digitalsignagepress-lite"],"dsplite_program":["digitalsignagepress-lite"],"dsplite_program_program":["digitalsignagepress-lite"],"dsplite_program_program_scheduling":["digitalsignagepress-lite"],"dsplite_program_screen":["digitalsignagepress-lite"],"endar_categories":["calendar-plus"],"effectmakeruserconfigurations":["effect-maker"],"endar_config":["calendar-plus"],"plgwpagp_config":["wp-admin-graphic-password"],"pageview_history":["page-view-count-by-webline"],"e37_form_kv":["core37-form-builder"],"e37_form_sessions":["core37-form-builder"],"effectmakerparameters":["effect-maker"],"dx2hits_posthits":["dx2-post-hit-counter"],"dsplite_program_screen_scheduling":["digitalsignagepress-lite"],"dsplite_template":["digitalsignagepress-lite"],"dsplite_screen_scheduling":["digitalsignagepress-lite"],"dsplite_screen_element_screen":["digitalsignagepress-lite"],"dsplite_screen_element":["digitalsignagepress-lite"],"dsplite_screen":["digitalsignagepress-lite"],"dsplite_scheduling":["digitalsignagepress-lite"],"pvc_paratheme_info":["page-view-counter"],"optinengine_providers":["optinengine-email-optins-lead-generation"],"extrawatch_flow":["extrawatch-pro"],"um_gallery_meta":["gallery-for-ultimate-member"],"wpum_banned_ips":["drp-wordpress-user-management"],"extrawatch_goals":["extrawatch-pro"],"extrawatch_blocked":["extrawatch-pro"],"extrawatch_cache":["extrawatch-pro"],"um_gallery":["gallery-for-ultimate-member"],"um_notification":["user-messages"],"um_message":["user-messages"],"wooup_view_stats":["woo-unlimited-upsell-lite"],"extrawatch_dm_referrer":["extrawatch-pro"],"contar":["my-contador-wp"],"extrawatch_dm_paths":["extrawatch-pro"],"um_gallery_favorites":["gallery-for-ultimate-member"],"queue_jobs":["image-processing-queue"],"um_gallery_comments":["gallery-for-ultimate-member"],"extrawatch_dm_extension":["extrawatch-pro"],"cp_newsletter_table":["cp-simple-newsletter"],"extrawatch_dm_counter":["extrawatch-pro"],"extrawatch_config":["extrawatch-pro"],"extrawatch_cc2c":["extrawatch-pro"],"um_gallery_album":["gallery-for-ultimate-member"],"cpsp_slides":["category-posts-slider-pro"],"contador":["visits"],"ultimate_member_gallery_user_contents":["ultimate-member-gallery"],"wpum_online_users":["drp-wordpress-user-management"],"queue_failures":["image-processing-queue"],"wpappp_subs":["ultimate-popup-creator"],"wpum_logins":["drp-wordpress-user-management"],"random_content_record":["wp-social-seo"],"wooup_stats":["woo-unlimited-upsell-lite"],"wooraffle_tickets_customer_to_tickets":["raffle-ticket-generator"],"crw_crosswords":["crosswordsearch"],"inrupp_appender_db":["inrdeals-url-appender"],"wpwbot_index":["chatbot"],"extrawatch_heatmap":["extrawatch-pro"],"qrgen4all_uploads":["qr-code-generator-4-all"],"notices":["notices"],"extrawatch":["extrawatch-pro"],"wooup_offers":["woo-unlimited-upsell-lite"],"gh_contactmeta":["groundhogg"],"faq_questions":["tf-faq"],"gh_contacts":["groundhogg"],"gh_emailmeta":["groundhogg"],"showtwitterfol":["show-twitter-followers"],"dswr_words":["da-stop-word-removal"],"dswr_lists":["da-stop-word-removal"],"clickervolt_stats_whole_path":["clickervolt"],"gh_emails":["groundhogg"],"sil_rss":["external-rss-reader"],"dyamar_polls_answers":["dyamar-polls"],"bm_banners":["banner-manager"],"bm_groups":["banner-manager"],"gh_tags":["groundhogg"],"gh_tag_relationships":["groundhogg"],"gh_superlinks":["groundhogg"],"bm_stats":["banner-manager"],"sil_rss_categories":["external-rss-reader"],"sil_rss_by_category":["external-rss-reader"],"gh_steps":["groundhogg"],"faq_categories":["tf-faq"],"gh_stepmeta":["groundhogg"],"cnp_forminfo":["click-pledge-connect"],"dyamar_polls":["dyamar-polls"],"pluginsl_related_articles":["related-articles"],"gh_sms":["groundhogg"],"gh_funnels":["groundhogg"],"dxservers":["multiplayer-plugin"],"dxgames":["multiplayer-plugin"],"gh_events":["groundhogg"],"gh_api_tokens":["groundhogg"],"gh_broadcasts":["groundhogg"],"cm_submissions":["custom-user-contact-form-builder"],"mo_sp_data":["miniorange-wp-as-saml-idp"],"dpd_terminals":["woo-shipping-dpd-baltic"],"now_reading_tags":["now-reading-reloaded","now-reading-redux"],"wps_st_options":["wps-visitor-counter"],"dpd_manifests":["woo-shipping-dpd-baltic"],"dpd_barcodes":["woo-shipping-dpd-baltic"],"wps_statistic":["wps-visitor-counter"],"bot_leads_meta":["giga-messenger-bots"],"mo_sp_attributes":["miniorange-wp-as-saml-idp"],"bot_messages":["giga-messenger-bots"],"dplr_field":["doppler-form"],"bot_nodes":["giga-messenger-bots"],"woocommerce_cpsi":["corvuspay-woocommerce-integration"],"bp_bet_events":["betpress"],"bp_bet_events_cats":["betpress"],"bp_bet_options":["betpress"],"bp_cp_galleries":["buddypress-easy-albums-photos-video-and-music-next-gen","buddypress-easy-albums-photos-video-and-music"],"cm_front_users":["custom-user-contact-form-builder"],"bp_events":["betpress"],"djo_cache":["dejureorg-vernetzungsfunktion"],"now_reading_meta":["now-reading-reloaded","now-reading-redux"],"dplr_field_settings":["doppler-form"],"cm_submission_fields":["custom-user-contact-form-builder"],"now_reading_books2tags":["now-reading-reloaded","now-reading-redux"],"gh_activity":["groundhogg"],"wh_testimonials":["wh-testimonials"],"cm_stats":["custom-user-contact-form-builder"],"cm_sessions":["custom-user-contact-form-builder"],"cm_sent_mails":["custom-user-contact-form-builder"],"cm_paypal_logs":["custom-user-contact-form-builder"],"rbrurls_redirect":["role-based-redirect"],"now_reading":["now-reading-reloaded","now-reading-redux"],"cm_paypal_fields":["custom-user-contact-form-builder"],"pageblocks_pages_config":["page-blocks"],"dplr_form":["doppler-form"],"bot_instances":["giga-messenger-bots"],"gen_news_slider_widgets":["wp-news-slider-widgets"],"mo_gauth_user_details":["miniorange-google-authenticator"],"bot_leads":["giga-messenger-bots"],"dropshipapikey":["inventory-source-dropship-automation"],"cm_notes":["custom-user-contact-form-builder"],"woocommerce_custom_order_data":["woocommerce-custom-order-data"],"dplr_form_settings":["doppler-form"],"pls":["parallel-loading-system"],"easy_pie_ibc_events":["site-watch"],"cnp_formsdtl":["click-pledge-connect"],"compare_tables_values":["wp-compare-tables"],"asfb_cache":["advanced-search-form-builder"],"ws_alipay_orders":["alipay"],"ws_alipay_ordersmeta":["alipay"],"redirectify_config":["redirectify"],"remarkety_carts":["remarkety-for-woocommerce"],"compare_tables":["wp-compare-tables"],"compare_tables_columns":["wp-compare-tables"],"no_disposable_email":["no-disposable-email"],"ngg_upload_queue":["nextgen-public-image-uploader"],"compare_tables_rows":["wp-compare-tables"],"pegasaas_api_request":["pegasaas-accelerator-wp"],"as_tejus_crsl_sec":["multicarousel"],"pegasaas_page_cache":["pegasaas-accelerator-wp"],"pegasaas_page_config":["pegasaas-accelerator-wp"],"pegasaas_performance_scan":["pegasaas-accelerator-wp"],"pegasaas_static_asset":["pegasaas-accelerator-wp"],"remarkety_carts_guests":["remarkety-for-woocommerce"],"phpleague_club":["phpleague"],"gimaps_lite":["google-interactive-maps-lite"],"autolink":["wp-autolink"],"phpleague_country":["phpleague"],"wpcm_menu_props":["wp-easy-bubble-menu"],"as_tejus_crsl_thrd":["multicarousel"],"wrt_tabs_settings":["responsive-horizontal-vertical-and-accordion-tabs"],"phpleague_fixture":["phpleague"],"sr_customer_groups":["solidres"],"sr_reservation_room_details":["solidres"],"sr_reservation_notes":["solidres"],"sr_reservation_extra_xref":["solidres"],"sr_reservation_assets":["solidres"],"sr_reservation_asset_fields":["solidres"],"sr_media_roomtype_xref":["solidres"],"global_variable":["wp-global-variable"],"sr_media_reservation_assets_xref":["solidres"],"sr_geo_states":["solidres"],"sr_extras":["solidres"],"sr_currencies":["solidres"],"wrt_tabs":["responsive-horizontal-vertical-and-accordion-tabs"],"sr_coupons":["solidres"],"sr_countries":["solidres"],"sr_config_data":["solidres"],"sr_categories":["solidres"],"sptk_page_cache":["squeeze-page-toolkit"],"arval_redirects":["wp-simple-redirect"],"webtechglobal_log":["youtube-sidebar","wtg-tasks-manager"],"community_lite_permissions":["avchat-3"],"arval_targets":["wp-simple-redirect"],"as_tejus_crsl":["multicarousel"],"wpcm_menu_links":["wp-easy-bubble-menu"],"phpleague_league":["phpleague"],"better_login_security_history":["better-login-security-and-history"],"planification":["wp-planification"],"wpsi_files":["wp-smart-import"],"remove_handled":["wp-remove-css-js"],"wpsi_imports":["wp-smart-import"],"nfpd_entries":["no-frills-prize-draw"],"wpsi_posts":["wp-smart-import"],"nfpd":["no-frills-prize-draw"],"places":["simplified-google-maps-light"],"ws_alipay_products":["alipay"],"notes":["site-notes"],"ws_alipay_productsmeta":["alipay"],"ws_alipay_templates":["alipay"],"phpleague_team":["phpleague"],"wpb_content":["wp-blocks"],"easy_pie_ibc_public_ids":["site-watch"],"plg_administrator":["plugincheck"],"plg_options_meta":["plugincheck"],"easy_pie_ibc_entities":["site-watch"],"easy_pie_ibc_contacts":["site-watch"],"ws_alipay_templatesmeta":["alipay"],"cnp_settingsdtl":["click-pledge-connect"],"beifen":["bei-fen"],"easysiteimporter":["easy-site-importer"],"phpleague_table_prediction":["phpleague"],"phpleague_match":["phpleague"],"socialbooster_postnowtable":["social-booster"],"phpleague_player":["phpleague"],"phpleague_player_data":["phpleague"],"paymentgatewaytranx":["remita-payment-gateway"],"sortsearchresult":["sort-searchresult-by-title"],"sodahead_templates":["sodahead-polls"],"phpleague_player_team":["phpleague"],"paygreen_transactions":["paygreen-woocommerce"],"socialbooster_twtable":["social-booster"],"socialbooster_stmtable":["social-booster"],"socialbooster_statustable":["social-booster"],"socialbooster_instable":["social-booster"],"sms_ovh_categories":["sms-ovh"],"socialbooster_gptable":["social-booster"],"socialbooster_fbtable":["social-booster"],"paygreen_recurring_transactions":["paygreen-woocommerce"],"social_links_sidebar":["social-links-sidebar"],"paygreen_fingerprint":["paygreen-woocommerce"],"paygreen_categories_has_payments":["paygreen-woocommerce"],"phpleague_table_cache":["phpleague"],"phpleague_table_chart":["phpleague"],"sms_ovh_numeros":["sms-ovh"],"sms_ovh_messages":["sms-ovh"],"sms_ovh_historique":["sms-ovh"],"popular_posts_statistics":["most-popular-posts-widget-lite"],"wpa_result":["wp-athletics"],"cm_forms":["custom-user-contact-form-builder"],"wl_list_page":["page-whitelists"],"rich_web_gallery_effects_data_2":["gallery-image-gallery-photo"],"proto_masonry_grids":["featured-image-pro"],"cube_3d_sliders":["cube-3d-slider"],"ctmdcd_settings":["doctor-appointment-booking"],"cc_odoo_integrator_forms":["wp-odoo-form-integrator"],"ctmdcd_prescription":["doctor-appointment-booking"],"ctmdcd_patient":["doctor-appointment-booking"],"ctmdcd_country":["doctor-appointment-booking"],"ctmdcd_chamber":["doctor-appointment-booking"],"wl_list":["page-whitelists"],"rncbc_reservation":["tennis-court-bookings"],"cc_odoo_integrator_field_mapping":["wp-odoo-form-integrator"],"rncbc_court":["tennis-court-bookings"],"rncbc_calendar":["tennis-court-bookings"],"ctmdcd_appointment":["doctor-appointment-booking"],"cgm_cal_entries":["cgm-event-calendar"],"rich_web_gallery_font_family":["gallery-image-gallery-photo"],"myshouts":["myshouts-shoutbox"],"cgm_cal_entry_excludes":["cgm-event-calendar"],"cgm_cal_entry_includes":["cgm-event-calendar"],"cgm_cal_entry_tags":["cgm-event-calendar"],"arlo_venues":["arlo-training-and-event-management-system"],"rich_web_gallery_effects_data_1":["gallery-image-gallery-photo"],"rich_web_gallery_effects_data":["gallery-image-gallery-photo"],"rich_web_gallery_id":["gallery-image-gallery-photo"],"clickervolt_stats_whole_path_var5":["clickervolt"],"envato_items_sales":["nd-stats-for-envato-sales-by-item"],"worx_trending":["wpworx-faq"],"worx_files":["wpworx-faq"],"worx_faq":["wpworx-faq"],"category_subdomains":["wordpress-subdomains","wp-subdomains-revisited"],"categorymeta":["bilingual-linker"],"fny_sharebuttons":["fny-social-media-share-buttons"],"clickervolt_stats_whole_path_var6":["clickervolt"],"mwp_forms_free":["mwp-forms"],"clickervolt_stats_whole_path_var4":["clickervolt"],"cbxwpbookmarkcat":["cbxwpbookmark"],"wordpresssentinel_section":["wordpress-sentinel"],"wordpresssentinel_file":["wordpress-sentinel"],"custom_website_data":["simple-custom-website-data"],"clickervolt_stats_whole_path_var3":["clickervolt"],"feature_request":["feature-request"],"clickervolt_stats_whole_path_var2":["clickervolt"],"custom_cms_block":["wp-custom-cms-block"],"clickervolt_stats_whole_path_var10":["clickervolt"],"qards_layout_component":["qards-free"],"nd_rst_booking":["nd-restaurant-reservations"],"cbxwpbookmark":["cbxwpbookmark"],"cgm_cal_tags":["cgm-event-calendar"],"chatwee_log":["chatwee"],"qards_resource":["qards-free"],"clickervolt_stats_base":["clickervolt"],"nb_nottypes":["infobar"],"clickervolt_funnel_links":["clickervolt"],"clickervolt_geos":["clickervolt"],"wpr_ranking":["wp-ranking-pro"],"clickervolt_links":["clickervolt"],"fgcf_form_table":["contact-popup"],"clickervolt_parallel_ids":["clickervolt"],"clickervolt_referrers":["clickervolt"],"clickervolt_source_templates":["clickervolt"],"pwreclamaciones":["libro-de-reclamaciones"],"wls_areas":["wp-curriculo-vitae"],"clickervolt_external_ids":["clickervolt"],"wls_curriculo":["wp-curriculo-vitae"],"wls_curriculo_options":["wp-curriculo-vitae"],"object_sync_sf_object_map":["object-sync-for-salesforce"],"object_sync_sf_field_map":["object-sync-for-salesforce"],"wpr_views":["wp-ranking-pro"],"cs_posts":["clicksold-wordpress-plugin"],"pushlive":["pushlive"],"rich_web_questions":["gallery-image-gallery-photo"],"wpr_views_per_day":["wp-ranking-pro"],"clickervolt_stats_whole_path_geos":["clickervolt"],"nb_data":["infobar"],"wpr_http_user_agents":["wp-ranking-pro"],"chatwee_moderators":["chatwee"],"rich_web_gallery_image_instal":["gallery-image-gallery-photo"],"rk_contact":["rk-responsive-contact-form"],"chatwee_pages_to_display":["chatwee"],"checkout_customer_cards":["checkout-non-pci-woocommerce-gateway"],"feedbacks":["design-feedback","rate-this-page-plugin"],"odudecard_view":["odude-ecard"],"cilw_icos":["crypto-ico-list-widget"],"cjaddons_data":["cssjockey-add-ons"],"cjaddons_options":["cssjockey-add-ons"],"classroom_shared_users":["html5-virtual-classroom"],"classroom_shorturl":["html5-virtual-classroom"],"rich_web_gallery_image_manager":["gallery-image-gallery-photo"],"clickervolt_devices":["clickervolt"],"clickervolt_stats_whole_path_var1":["clickervolt"],"clickervolt_stats_whole_path_referrers":["clickervolt"],"ocrb_backup":["wprecovery"],"qards_layout":["qards-free"],"qards_component":["qards-free"],"excitel_":["excitel-click-to-call"],"ct_clients":["clients"],"clickervolt_actions":["clickervolt"],"clickervolt_actions_summary":["clickervolt"],"clickervolt_aids":["clickervolt"],"clickervolt_clicks":["clickervolt"],"clickervolt_stats_whole_path_var7":["clickervolt"],"oada_scans":["online-accessibility"],"bp_leaderboards":["betpress"],"searchengine_log":["search-engine"],"bucketlist_task":["bucket-list"],"searchengine_templates":["search-engine"],"searchengine_sites":["search-engine"],"searchengine_search":["search-engine"],"osd_subscribe":["osd-subscribe"],"posted_display":["wp-posted-display"],"elfsight_facebook_feed_widgets":["elfsight-facebook-feed"],"quotes":["yummi-quotes"],"poststats_visits":["wp-post-real-time-statistics"],"searchengine_queue":["search-engine"],"osd_subscribe_categories":["osd-subscribe"],"searchengine_links":["search-engine"],"searchengine_keywords":["search-engine"],"searchengine_index":["search-engine"],"searchengine_groups":["search-engine"],"searchengine_cronjobs":["search-engine"],"buymeapie_recipe_recipe":["recipe-schema-markup"],"buymeapie_recipe_theme":["recipe-schema-markup"],"scrollrevealjs":["scrollrevealjs-effects"],"screenreader_config":["screen-reader-with-fontsize"],"scistbl":["simple-code-insert-shortcode"],"bucketlist_bucket":["bucket-list"],"radslide_slide":["radslide"],"wmcc_relationships":["wp-multisite-content-copier"],"wpa_event":["wp-athletics"],"wpa_event_cat":["wp-athletics"],"wpa_log":["wp-athletics"],"cm_fields":["custom-user-contact-form-builder"],"bp_paypal":["betpress"],"clickervolt_stats_whole_path_devices":["clickervolt"],"bp_profilevisits":["buddypress-profile-views"],"bp_slips":["betpress"],"woocommerce_yapay_intermediador_request":["woo-yapay"],"bp_sports":["betpress"],"osf_nodes":["omni-secure-files"],"radslide_slideshow":["radslide"],"woocommerce_yapay_intermediador_response":["woo-yapay"],"game_servers":["game-server-status"],"bs_formdata":["form-creation-for-bootstrap"],"bs_options":["form-creation-for-bootstrap"],"bs_postdata":["form-creation-for-bootstrap"],"popup_banners_form_log":["wp-popup-lite"],"popup_banners_subscription_log":["wp-popup-lite"],"popupfadpopup":["cool-fade-popup"],"woocommerce_yapay_intermediador_transactions":["woo-yapay"],"scfui_fields":["betta-boxes-cms"],"scfui_boxes":["betta-boxes-cms"],"cw_games":["wp-clanwars"],"salesup_campos":["formularios-de-contacto-salesup"],"free_quotation_tags":["free-quotation"],"free_quotation_kris_iv":["free-quotation"],"mscr_intrusions":["mute-screamer"],"clickervolt_stats_whole_path_var9":["clickervolt"],"preferences":["simplified-google-maps-light"],"salesup_token_integracion":["formularios-de-contacto-salesup"],"salesup_formularios":["formularios-de-contacto-salesup"],"premmerce_pinterest":["premmerce-woocommerce-pinterest"],"openhour":["wp-open-hours"],"cw_teams":["wp-clanwars"],"rx_sb_shdposts":["social-booster"],"mrt_sms_list":["wordpress-text-message"],"cw_rounds":["wp-clanwars"],"rw_gallery_effect2":["gallery-image-gallery-photo"],"price_ui_slider":["ui-slider-filter-by-price"],"rw_gallery_effect1":["gallery-image-gallery-photo"],"rua_blog_subscriber":["rua-blog-subscriber-lite"],"primer_data":["primer-by-chloedigital"],"carsellers_requests":["cars-seller-auto-classifieds-script"],"clickervolt_stats_whole_path_var8":["clickervolt"],"muv_sh_intversion":["muv-hide-preview","muv-youtube-datenschutz","muv-kundenkonto"],"cw_matches":["wp-clanwars"],"cw_maps":["wp-clanwars"],"mrt_sms_queue":["wordpress-text-message"],"mrt_sms_carrier":["wordpress-text-message"],"netgocarousel":["netgo-horizontal-carousel"],"community_lite_general_settings":["avchat-3"],"mpc_categories":["misiek-page-category"],"orbis_projects":["orbis"],"orbis_log":["orbis"],"mpc_pages_categories":["misiek-page-category"],"orbis_companies":["orbis"],"sr_reservation_room_xref":["solidres"],"delete_posts":["restore-permanently-delete-post-or-page-data"],"delete_postmeta":["restore-permanently-delete-post-or-page-data"],"delete_id_list":["restore-permanently-delete-post-or-page-data"],"bw_videos":["blue-wrench-videos-widget"],"fv_entry_meta":["form-vibes"],"clickervolt_suspicious_clicks":["clickervolt"],"fv_enteries":["form-vibes"],"clickervolt_urls_paths":["clickervolt"],"wsmea_conditional_payment_methods":["conditional-payment-methods-for-woocommerce"],"qards_subscriber":["qards-free"],"bws_rating":["rating-bws"],"sb_profiles":["social-booster"],"wow_side_menu_pro":["side-menu-lite"],"sb_networks":["social-booster"],"wow_sbmp":["slide-menu"],"qards_ss":["qards-free"],"daily_stats":["slide-banners","expandable-banners","push-down-banners"],"sr_reservation_room_extra_xref":["solidres"],"hrm_personal_skill":["hrm"],"sr_reservations":["solidres"],"_voteitems":["photo-video-store"],"tp_termine":["terminplaner"],"ljlongtailseo":["lj-longtail-seo"],"ttp_custom_design_template_table":["total-team-lite"],"wc_bkash":["woocommerce-bkash"],"ie_css":["ie-css-definer"],"_voteitems_users":["photo-video-store"],"_voteitems2":["photo-video-store"],"_video_types":["photo-video-store"],"tp_teilnehmer":["terminplaner"],"uc_group_users":["ultra-community"],"uc_user_activity":["ultra-community"],"uc_user_relations":["ultra-community"],"_video_rendering":["photo-video-store"],"uci_cba_rates":["wp-universal-exchange-informer"],"uci_cbr_rates":["wp-universal-exchange-informer"],"uci_cbu_rates":["wp-universal-exchange-informer"],"tp_term_status":["terminplaner"],"trix_table":["statrix"],"uci_nbg_rates":["wp-universal-exchange-informer"],"_wwa_plugin_alerts":["wwa-advanced-wp-security"],"wcdpi_product_basic":["woo-dp-internetmarke"],"sr_room_type_coupon_xref":["solidres"],"wpf_subscriptions":["wp-payment-form"],"wcdpi_product_additional":["woo-dp-internetmarke"],"wcdpi_page_format":["woo-dp-internetmarke"],"wcdpi_country":["woo-dp-internetmarke"],"_wwa_plugin_live_traffic":["wwa-advanced-wp-security"],"_3wp_logintracker_logins":["threewp-login-tracker"],"tp_daten":["terminplaner"],"_3wp_logintracker_login_stats":["threewp-login-tracker"],"locations":["geo-multi-location-map","google-map-latitude-and-longitude","instant-locations"],"pa_results":["wp-athletics"],"tpress":["twitpress"],"re_locator_transactions":["wp-multi-store-locator"],"re_locator_state":["wp-multi-store-locator"],"re_locator_country":["wp-multi-store-locator"],"uci_nbb_rates":["wp-universal-exchange-informer"],"uci_nbk_rates":["wp-universal-exchange-informer"],"wpf_submissions":["wp-payment-form"],"_subscription_list":["photo-video-store"],"ult_marketo_forms":["ultimate-marketo-forms"],"ult_marketo_forms_styles":["ultimate-marketo-forms"],"_templates_admin_home":["photo-video-store"],"_tax_regions":["photo-video-store"],"_tax":["photo-video-store"],"_support_tickets":["photo-video-store"],"_support":["photo-video-store"],"_subscription":["photo-video-store"],"_testimonials":["photo-video-store"],"_sizes":["photo-video-store"],"_shipping_regions":["photo-video-store"],"inic_testimonial":["indianic-testimonial"],"inic_testimonial_template":["indianic-testimonial"],"inic_testimonial_widget":["indianic-testimonial"],"_shipping_ranges":["photo-video-store"],"inlinks_data":["inlinks-ad-plugin"],"_terms":["photo-video-store","awesome-studio"],"_translations":["photo-video-store"],"uci_nbm_rates":["wp-universal-exchange-informer"],"_video_ratio":["photo-video-store"],"uci_nbu_rates":["wp-universal-exchange-informer"],"uci_widgets":["wp-universal-exchange-informer"],"linkremoved":["post-internal-link-removal"],"linkoptimizer_linksets":["link-optimizer-lite"],"linkoptimizer_links":["link-optimizer-lite"],"linkmeta":["external-events-calendar","simply-social-links"],"ue1_cache":["upcoming-events"],"_video_frames":["photo-video-store"],"_user_category":["photo-video-store"],"limit_attempts_booster_meta":["limit-attempts-booster"],"limit_attempts_booster_ip_locations":["limit-attempts-booster"],"limit_attempts_booster":["limit-attempts-booster"],"_video_format":["photo-video-store"],"_video_fields":["photo-video-store"],"_vector_types":["photo-video-store"],"_users_fields":["photo-video-store"],"wcdpi_product_sales":["woo-dp-internetmarke"],"wcdpi_shipment":["woo-dp-internetmarke"],"admanager":["ad-manager"],"talentlms_products_categories":["talentlms"],"zaki_like_dislike_comments":["zaki-like-dislike-comments"],"zan":["wp-zan"],"afb_feedbacks":["anyway-feedback"],"lydl_poststimestamp":["fl3r-feelbox","moodthingy-mood-rating-widget"],"lydl_posts":["fl3r-feelbox","moodthingy-mood-rating-widget"],"hrm_attendance":["hrm"],"talentlms_courses":["talentlms"],"hrm_client_partial_payment":["hrm"],"addpub":["wp-addpub"],"hrm_designation":["hrm"],"lsp_redirects":["best-local-seo-tools"],"lsp_localprojects":["best-local-seo-tools"],"lsp_linkpoints":["best-local-seo-tools"],"talentlms_products":["talentlms"],"talentlms_categories":["talentlms"],"alc_link":["alc"],"amber_check":["amberlink"],"amber_cache":["amberlink"],"wpdmp_ref_point":["wp-design-maps-places"],"amber_activity":["amberlink"],"wpe_twitter":["wp-essentials"],"alc_redirectlog":["alc"],"alc_address":["alc"],"za_values":["product-add-ons-woocommerce"],"za_add_ons":["product-add-ons-woocommerce"],"ahm_qt_tabs":["quick-tabs"],"ahm_qt_tab_groups":["quick-tabs"],"za_categories_to_groups":["product-add-ons-woocommerce"],"za_groups":["product-add-ons-woocommerce"],"za_products_to_groups":["product-add-ons-woocommerce"],"za_types":["product-add-ons-woocommerce"],"hrm_education":["hrm"],"hrm_financial_year":["hrm"],"hrm_work_experience":["hrm"],"hrm_relation":["hrm"],"wpf_order_items":["wp-payment-form"],"hrm_notice":["hrm"],"hrm_office_time":["hrm"],"hrm_pay_grade":["hrm"],"hrm_personal_education":["hrm"],"hrm_personal_language":["hrm"],"hrm_salary":["hrm"],"hrm_location":["hrm"],"hrm_salary_group":["hrm"],"wpf_order_transactions":["wp-payment-form"],"wpf_submission_activities":["wp-payment-form"],"hrm_skill":["hrm"],"hrm_time_shift":["hrm"],"hrm_user_role":["hrm"],"logincustomizer":["simple-login-page-customizer"],"hrm_migrations":["hrm"],"wpf_meta":["wp-payment-form"],"hrm_formula":["hrm"],"time_config":["dynamic-time"],"hrm_holiday":["hrm"],"hrm_job_category":["hrm"],"hrm_job_title":["hrm"],"hrm_language":["hrm"],"actionnetwork_queue":["wp-action-network"],"actionnetwork":["wp-action-network"],"accredible_mapping":["accredible-certificates"],"time_entry":["dynamic-time"],"wcdpi_shipment_attachment":["woo-dp-internetmarke"],"time_period":["dynamic-time"],"time_user":["dynamic-time"],"wcdpi_t_app_service_provider":["woo-dp-internetmarke"],"wcdpi_t_app_service_feature":["woo-dp-internetmarke"],"wcdpi_t_app_service":["woo-dp-internetmarke"],"wcdpi_shipment_item":["woo-dp-internetmarke"],"hrm_leave":["hrm"],"hrm_leave_type":["hrm"],"_shipping":["photo-video-store"],"_search_history":["photo-video-store"],"hayyabuild_map":["hayyabuild"],"jfc":["jquery-featured-content-gallery"],"wpgreet_cards":["wp-greet"],"wpgreet_stats":["wp-greet"],"r_stats":["intrigger"],"r_contacts":["intrigger"],"ernal_link_info":["seo-internal-link-building"],"jcorgcr_categories":["jaspreetchahals-coupons-lite"],"jcorgcr_coupons":["jaspreetchahals-coupons-lite"],"virtualclassroom_acl":["html5-virtual-classroom"],"izoomimage":["wp-imagezoom"],"virtualclassroom_email_template_settings":["html5-virtual-classroom"],"virtualclassroom_purchase":["html5-virtual-classroom"],"virtualclassroom_settings":["html5-virtual-classroom"],"virtualclassroom_shared_users":["html5-virtual-classroom"],"virtualclassroom_shorturl":["html5-virtual-classroom"],"virtualclassroom_teacher":["html5-virtual-classroom"],"kento_wp_stats_online":["kento-wp-stats"],"izoomparam":["wp-imagezoom"],"kushmicronews":["kush-micro-news"],"visitorflow_aggregation":["wp-visitorflow"],"_carts":["photo-video-store"],"_collections":["photo-video-store"],"_category_stock":["photo-video-store"],"_category_items":["photo-video-store"],"_category":["photo-video-store"],"_carts_content":["photo-video-store"],"user_stats":["user-login-stat"],"user_visits_log":["user-visit-log"],"_audio_types":["photo-video-store"],"usertracker":["usertracker"],"_audio_source":["photo-video-store"],"_audio_format":["photo-video-store"],"_audio_fields":["photo-video-store"],"_affiliates_stats":["photo-video-store"],"_affiliates_signups":["photo-video-store"],"_administrators_stats":["photo-video-store"],"wpgft_data":["wp-gift-cert"],"kento_wp_stats":["kento-wp-stats"],"visitorflow_flow":["wp-visitorflow"],"_colors":["photo-video-store"],"jsprtachv_extra_select":["joomsport-achievements"],"vxg_salesforce_log":["gf-salesforce-crmperks"],"vxg_salesforce_accounts":["gf-salesforce-crmperks"],"vxg_salesforce":["gf-salesforce-crmperks"],"jsprtachv_stages_val":["joomsport-achievements"],"jsprtachv_stages":["joomsport-achievements"],"jsprtachv_stage_result":["joomsport-achievements"],"jsprtachv_results_fields":["joomsport-achievements"],"jsprtachv_extra_fields":["joomsport-achievements"],"jv_notification_log":["wp-jv-custom-email-settings"],"jsprtachv_country":["joomsport-achievements"],"vxc_zoho_log":["woo-zoho"],"vxc_zoho_accounts":["woo-zoho"],"vw_vpsessions":["videowhisper-video-presentation"],"vw_vprooms":["videowhisper-video-presentation"],"vw_2wrooms":["webcam-2way-videochat"],"vw_2wsessions":["webcam-2way-videochat"],"qotd":["cd-qotd"],"vr_fr_temas":["vr-frases"],"visitorflow_meta":["wp-visitorflow"],"amhall_subject":["eexamhall"],"visitorflow_pages":["wp-visitorflow"],"visitorflow_visits":["wp-visitorflow"],"visitors_stat":["wp-visitors-widget"],"wapg_coins":["woo-altcoin-payment-gateway"],"wapg_coin_transactions":["woo-altcoin-payment-gateway"],"wapg_coin_offers":["woo-altcoin-payment-gateway"],"wapg_coin_addresses":["woo-altcoin-payment-gateway"],"amhall_result":["eexamhall"],"vr_fr_frases":["vr-frases"],"amhall_quiz":["eexamhall"],"amhall_question":["eexamhall"],"v_0_newsletter_adr":["eelv-newsletter"],"jp_advancedrss_cache":["advanced-rss"],"jp_advancedrss_templates":["advanced-rss"],"jp_journals":["journalpress"],"walm_links":["affiliate-links-manager"],"vr_fr_clases":["vr-frases"],"_collections_items":["photo-video-store"],"_commission":["photo-video-store"],"_rights_managed_structure":["photo-video-store"],"_payout":["photo-video-store"],"ip2c_addresses":["ip-to-country"],"ip2c_countries":["ip-to-country"],"ip2c_ipv6":["ip-to-country"],"_printful_prints":["photo-video-store"],"_printful_orders":["photo-video-store"],"_photos_formats":["photo-video-store"],"_photos_exif":["photo-video-store"],"_payments":["photo-video-store"],"invitebox":["refer-a-friend-widget-for-wp"],"upb_field":["ultimate-profile-builder"],"upb_fields":["ultimate-profile-builder"],"upb_group":["ultimate-profile-builder"],"upb_option":["ultimate-profile-builder"],"upb_values":["ultimate-profile-builder"],"_packages_list":["photo-video-store"],"_packages_files":["photo-video-store"],"ios_icons":["ios-icons-for-wordpress"],"invitations":["wordpress-mu-secure-invites"],"_packages":["photo-video-store"],"_products_options_items":["photo-video-store"],"_rights_managed_options":["photo-video-store"],"_rights_managed_groups":["photo-video-store"],"_rights_managed":["photo-video-store"],"_pwinty_prints":["photo-video-store"],"_pwinty_orders":["photo-video-store"],"_pwinty":["photo-video-store"],"_products_options":["photo-video-store"],"_prints":["photo-video-store"],"internetmarke_country_codes":["woo-dp-internetmarke"],"internetmarke_orders":["woo-dp-internetmarke"],"internetmarke_page_formats":["woo-dp-internetmarke"],"internetmarke_product_list":["woo-dp-internetmarke"],"_prints_previews":["photo-video-store"],"_prints_items":["photo-video-store"],"_prints_categories":["photo-video-store"],"_packages_categories":["photo-video-store"],"_orders_content":["photo-video-store"],"_components":["photo-video-store"],"_documents_types":["photo-video-store"],"_filestorage_logs":["photo-video-store"],"_filestorage_files":["photo-video-store"],"_filestorage":["photo-video-store"],"_ffmpeg_cron":["photo-video-store"],"_examinations":["photo-video-store"],"_elasticsearch":["photo-video-store"],"_downloads":["photo-video-store"],"_documents":["photo-video-store"],"_galleries":["photo-video-store"],"_currency":["photo-video-store"],"_credits_list":["photo-video-store"],"_credits":["photo-video-store"],"_content_type":["photo-video-store"],"_content_filter":["photo-video-store"],"_friends":["photo-video-store"],"_galleries_photos":["photo-video-store"],"_orders":["photo-video-store"],"_lightboxes_files":["photo-video-store"],"_notifications":["photo-video-store"],"_newsletter_emails":["photo-video-store"],"_newsletter":["photo-video-store"],"_models_files":["photo-video-store"],"_models":["photo-video-store"],"_messages":["photo-video-store"],"_media":["photo-video-store"],"_lightboxes_admin":["photo-video-store"],"_gateway_clickbank":["photo-video-store"],"_lightboxes":["photo-video-store"],"_licenses":["photo-video-store"],"_languages":["photo-video-store"],"_items":["photo-video-store"],"_invoices":["photo-video-store"],"_gateway_segpay":["photo-video-store"],"_gateway_jvzoo":["photo-video-store"],"_gateway_epoch":["photo-video-store"],"amber_queue":["amberlink"],"_coupons_types":["photo-video-store"],"hayyabuild":["hayyabuild"],"maxv_social_accounts_log":["slm-facebook-autoposter","twitter-slm"],"arete_wp_smileys_manage":["post-and-page-reactions"],"arlo_eventtemplates_tags":["arlo-training-and-event-management-system"],"arete_wp_smileys":["post-and-page-reactions"],"arlo_import":["arlo-training-and-event-management-system"],"arete_wp_smiley_settings":["post-and-page-reactions"],"arlo_import_lock":["arlo-training-and-event-management-system"],"arlo_import_parts":["arlo-training-and-event-management-system"],"wpdmp_map":["wp-design-maps-places"],"arlo_presenters":["arlo-training-and-event-management-system"],"stafflist":["stafflist"],"sticky_social_icon":["sticky-social-icon"],"gts_translated_options":["gts-translation"],"stock_engines":["stock-engine"],"arlo_eventtemplates_presenters":["arlo-training-and-event-management-system"],"appten_imagerotator":["appten-image-rotator"],"webdesignby_musicbox_tracks":["musicbox"],"gs_like_post":["wp-like-post"],"map_addresses":["map-contact"],"webdesignby_musicbox_musicbox_tracks_assoc":["musicbox"],"wpdmp_map_marker":["wp-design-maps-places"],"wpdmp_marker":["wp-design-maps-places"],"h5pxapikatchu":["h5pxapikatchu"],"arlo_log":["arlo-training-and-event-management-system"],"arlo_messages":["arlo-training-and-event-management-system"],"stafflist_meta":["stafflist"],"h5pxapikatchu_object":["h5pxapikatchu"],"arlo_onlineactivities_tags":["arlo-training-and-event-management-system"],"arlo_tags":["arlo-training-and-event-management-system"],"arlo_timezones":["arlo-training-and-event-management-system"],"h5pxapikatchu_verb":["h5pxapikatchu"],"arlo_events_presenters":["arlo-training-and-event-management-system"],"arlo_categories":["arlo-training-and-event-management-system"],"arlo_async_tasks":["arlo-training-and-event-management-system"],"arlo_async_task_data":["arlo-training-and-event-management-system"],"ssb_data":["ultimate-bar"],"arlo_contentfields":["arlo-training-and-event-management-system"],"statrix":["statrix"],"mcpd_currency":["multi-currency-paypal-donations"],"ss_posts":["social-streams"],"arlo_events":["arlo-training-and-event-management-system"],"maincount":["countposts-v-10-wordpress-plugin"],"wpdmp_marker_descr":["wp-design-maps-places"],"ss_postmeta":["social-streams"],"anwpfl_players":["football-leagues-by-anwppro"],"arlo_events_tags":["arlo-training-and-event-management-system"],"gps_locations":["gps-tracker","gps-plotter"],"greatrealestate_listings":["great-real-estate"],"arlo_eventtemplates":["arlo-training-and-event-management-system"],"anwpfl_matches":["football-leagues-by-anwppro"],"gps_logger":["gps-tracker","gps-plotter"],"maps":["simplified-google-maps-light"],"anti_haxtool":["anti-hacking-tools"],"anderson_makiyama_programacao_djs_programas":["programacao-djs"],"anderson_makiyama_programacao_djs_programacao":["programacao-djs"],"gts_translated_terms":["gts-translation"],"anderson_makiyama_programacao_djs_djs":["programacao-djs"],"arlo_eventtemplates_categories":["arlo-training-and-event-management-system"],"map_settings":["map-contact"],"gts_translated_posts":["gts-translation"],"h5pxapikatchu_result":["h5pxapikatchu"],"h5pxapikatchu_actor":["h5pxapikatchu"],"webolatory_changelog":["wp-changelog"],"sr_room_types":["solidres"],"arlo_offers":["arlo-training-and-event-management-system"],"sr_taxes":["solidres"],"sr_tariffs":["solidres"],"sr_tariff_details":["solidres"],"arlo_onlineactivities":["arlo-training-and-event-management-system"],"amen_requests":["amen"],"google_calendar":["google-calendar-plugin","calendar-plugin"],"sr_sessions":["solidres"],"sr_rooms":["solidres"],"webdesignby_musicbox":["musicbox"],"hatchbuck_shortcode":["hatchbuck"],"sr_room_type_fields":["solidres"],"amen_prayers":["amen"],"sr_room_type_extra_xref":["solidres"],"social_all_in_one_bot_queue":["social-all-in-one-bot"],"wow_countdown_free":["wpcalc-cookie-timer"],"pt_api_key":["printrove-integration-for-woocommerce"],"imize_status_log":["optimize"],"awsompxgcommenttracking":["awsom-pixgallery"],"sniplets":["sniplets"],"zmhub_forms":["zoho-marketinghub"],"oks_weixin_robot_extends":["wp-weixin-robot"],"usf_records":["users-searched-for"],"usf_settings":["users-searched-for"],"pra_testimonial_settings":["awesome-testimonials"],"protectbenignsource_allowip":["protect-benignsource"],"dashboard_chat":["wp-dashboard-chat"],"oks_weixin_robot_reply":["wp-weixin-robot"],"oks_weixin_robot_menu":["wp-weixin-robot"],"protectbenignsource_automatic_ban":["protect-benignsource"],"protectbenignsource_denydomain":["protect-benignsource"],"protectbenignsource_denyip":["protect-benignsource"],"g_secret_key":["ping-list-pro"],"dcf_entries":["dialog-contact-form"],"social_all_in_one_bot_log":["social-all-in-one-bot"],"yabp":["yabp"],"social_rocket_count_data":["social-rocket"],"usts_currency_list":["wp-appointment-booking-manager","restaurant-table-booking-manager"],"usu_url":["url-shortener-ultimate"],"han_maps":["neshan-maps"],"usage_ref":["media-usage"],"wovax_idx_feed_fields":["wovax-idx"],"wptelegrampro_users":["wp-telegram-pro"],"xpost_posts":["xpost"],"wordpress_user":["e-mailing-service"],"sp_rm_applications":["sp-rental-manager"],"wow_armory_table_classes":["guild-armory-roster","world-of-warcraft-armory-table"],"sp_rc_rankdata":["rank-checker-by-surfing-panda"],"wauc_winners":["woo-auction"],"user_extended":["fantasy-sports"],"wow_armory_table_chars":["guild-armory-roster","world-of-warcraft-armory-table"],"static":["wp-parsi-statistics"],"wow_armory_table_groups":["guild-armory-roster","world-of-warcraft-armory-table"],"wptis_slide":["wp-jquery-text-and-image-slider"],"user_payment":["fantasy-sports"],"user_quotes":["quote-cart"],"wovax_idx_shortcode_rules":["wovax-idx"],"wovax_idx_shortcode_filters":["wovax-idx"],"awsompxgimagecaptions":["awsom-pixgallery"],"wovax_idx_shortcode":["wovax-idx"],"wovax_idx_feeds":["wovax-idx"],"wptkt_log":["wp-to-klick-tipp-tag-basiertes-e-mail-marketing"],"user_teams":["fantasy-sports"],"wovax_idx_feed_rules":["wovax-idx"],"sp_rm_rentals_features":["sp-rental-manager"],"awsompxggalleries":["awsom-pixgallery"],"prenotazioni_spazi":["prenotazioni"],"sp_survey_user_info":["wp-survey-plus"],"wow_armory_table_progress_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"sp_survey_results":["wp-survey-plus"],"sp_survey_question":["wp-survey-plus"],"sp_survey":["wp-survey-plus"],"usermap":["usermap"],"projekktor_playlist":["projekktor-html5-video-extensions-and-shortcodes"],"wptis_gallery":["wp-jquery-text-and-image-slider"],"custom_menu_hide":["pro-wp-admin-area"],"userlogs":["user-tracker"],"sp_rm_rentals":["sp-rental-manager"],"wauc_auction_log":["woo-auction"],"ays_gallery":["gallery-photo-gallery"],"sp_rm_developments":["sp-rental-manager"],"wow_armory_table_groups_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"premmerce_currencies":["premmerce-woocommerce-multi-currency"],"sms_networks":["mediaburst-email-to-sms"],"xpost_blogs":["xpost"],"cp_ppp_posts":["payment-form-for-paypal-pro"],"sm_liste":["e-mailing-service"],"sm_liste_test":["e-mailing-service"],"sm_log":["123devis-affiliation","e-mailing-service"],"appointgen_timeslot":["wp-appointment-booking-manager"],"bea_media_analytics":["bea-media-analytics"],"sm_sp_forms":["123devis-affiliation"],"covercarousel_slider":["3d-cover-carousel"],"sm_spamscore":["e-mailing-service"],"cp_ppp_discount_codes":["payment-form-for-paypal-pro"],"cp_ppp_settings":["payment-form-for-paypal-pro"],"cpd_elements":["wp-contactpage-designer"],"sm_sr_forms":["123devis-affiliation"],"cpd_templates":["wp-contactpage-designer"],"cpis_file":["cp-image-store"],"cpis_image":["cp-image-store"],"cpis_image_file":["cp-image-store"],"cpis_purchase":["cp-image-store"],"sm_staff_category":["clock-in-portal"],"sm_staffs":["clock-in-portal"],"sm_stats_messageid":["e-mailing-service"],"sm_stats_smtp":["e-mailing-service"],"sm_historique_envoi":["e-mailing-service"],"sm_temps":["e-mailing-service"],"sln_countries":["secure-login-by-supsystic"],"realty_property_period":["realty"],"realty_property_info":["realty"],"realty_currency":["realty"],"re_place":["replace"],"rdp_ll_session":["rdp-linkedin-login"],"wpzillow_post_templates":["wp-zillow-review-slider"],"sldr_slider":["slider-bws"],"bgtile":["wp-background-tile"],"sln_blacklist":["secure-login-by-supsystic"],"sln_blacklist_browsers":["secure-login-by-supsystic"],"sln_blacklist_countries":["secure-login-by-supsystic"],"sln_detailed_login_stat":["secure-login-by-supsystic"],"counter_total":["visitors-counter"],"sln_email_auth_codes":["secure-login-by-supsystic"],"sln_modules":["secure-login-by-supsystic"],"sln_modules_type":["secure-login-by-supsystic"],"sln_statistics":["secure-login-by-supsystic"],"studypress_activity":["studypress"],"count_share_by_jm_crea":["count-share-by-jm-crea"],"ratings_result":["ratings"],"sm_attendance":["clock-in-portal"],"sm_blacklist":["e-mailing-service"],"sm_bounces_hard":["e-mailing-service"],"sm_bounces_log":["e-mailing-service"],"sm_suite":["e-mailing-service"],"appointgen_ustsappointments":["wp-appointment-booking-manager"],"pt_orders":["printrove-integration-for-woocommerce"],"oks_weixin_robot":["wp-weixin-robot"],"babe_order_itemmeta":["ba-book-everything"],"cs_excluded_list":["curated-search"],"babe_discount":["ba-book-everything"],"babe_booking_rules":["ba-book-everything"],"babe_av_cal":["ba-book-everything"],"push_subscribers":["chrome-push-notifications"],"push_notifications":["chrome-push-notifications"],"cso_my_income":["apm-child"],"cso_options":["apm-child"],"cso_post_snippets":["apm-child"],"sms_countries":["mediaburst-email-to-sms"],"ari_read-more-login_registration":["read-more-login"],"babe_payment_tokenmeta":["ba-book-everything"],"ptw_usage_stat":["woo-product-pricing-tables"],"ptw_tables":["woo-product-pricing-tables"],"ptw_products":["woo-product-pricing-tables"],"ptw_product_property_codes":["woo-product-pricing-tables"],"ptw_product_properties":["woo-product-pricing-tables"],"ari_read-more-login_statistics":["read-more-login"],"ptw_modules_type":["woo-product-pricing-tables"],"ptw_modules":["woo-product-pricing-tables"],"ctl_arcade_lite_games":["ctl-arcade-lite"],"sms_subscribers":["mediaburst-email-to-sms"],"ctl_arcade_lite_settings":["ctl-arcade-lite"],"babe_order_items":["ba-book-everything"],"babe_payment_tokens":["ba-book-everything"],"woosfrest_categories":["woo-salesforce-connector"],"bb_apis":["author-showcase"],"woosfrest_orders":["woo-salesforce-connector"],"woosfrest_products":["woo-salesforce-connector"],"woosfrest_users":["woo-salesforce-connector"],"undelete_posts":["wp-undelete-restore-deleted-posts"],"qg_orders":["quotegenerator"],"qg_itemx":["quotegenerator"],"qg_invoices":["quotegenerator"],"qg_calendar":["quotegenerator"],"wbbm_bus_booking_list":["bus-booking-manager"],"appointgen_ustsappointments_paymentmethods":["wp-appointment-booking-manager"],"stripe_transaction_details":["stripe-manager"],"babe_rates":["ba-book-everything"],"streampad_tracks":["streampad"],"appointgen_venues":["wp-appointment-booking-manager"],"appstorestat":["appstore"],"cron_logs":["cron-logger"],"pwt_button_stats":["pay-with-a-tweet"],"pwt_button":["pay-with-a-tweet"],"sticker_notes":["wp-sticker-notes"],"pwd_security":["reset-password-automatically-security"],"babe_rates_meta":["ba-book-everything"],"dcf_entry_meta":["dialog-contact-form"],"videostir_videos":["videostir-spokesperson"],"wow_signup_free":["viral-signup"],"nkr_check_settings":["backlink-rechecker"],"plgsgwbm_config":["website-blacklist-monitor"],"artb_setting":["add-richtext-toolbar-button"],"aru_readmorelogin_statistics":["read-more-login"],"aru_readmorelogin_registration":["read-more-login"],"sprites":["sprites-in-css-for-google-pagespeed"],"_companies":["cardealerpress"],"srty_visits_log":["shorty-lite"],"mute":["buddypress-mute"],"vtcrt_purchase_log":["cart-deals-for-woocommerce"],"vtcrt_purchase_log_product":["cart-deals-for-woocommerce"],"vtcrt_purchase_log_product_rule":["cart-deals-for-woocommerce"],"nkr_check_links":["backlink-rechecker"],"w9ss_order":["sleekstore"],"pl_urls":["pageloader"],"zsys_php":["nubuilder-forte"],"zsys_report":["nubuilder-forte"],"pl_emails":["pageloader"],"easy_testimonial_manager":["easy-testimonial-manager"],"easy_testimonial_setting":["easy-testimonial-manager"],"zsys_report_data":["nubuilder-forte"],"easy_wp_optimizer_backup":["easy-wp-optimizer"],"wp_post_po":["order-post"],"wp_post_pordered":["order-post"],"zsys_run_list":["nubuilder-forte"],"w9ss_item":["sleekstore"],"_data":["cardealerpress"],"easyfaq":["easy-faq"],"match":["wp-championship"],"plusoblocks_relationships":["share-pluso"],"plusoblocks":["share-pluso"],"vom":["verse-o-matic"],"tippgroup":["wp-championship"],"pluginsl_formatting_correcter":["formatting-correcter"],"pluginsl_automatic_ban_ip":["automatic-ban-ip"],"tipp":["wp-championship"],"team":["wp-championship"],"zsys_form":["nubuilder-forte"],"zsys_format":["nubuilder-forte"],"earthquakewidget":["earthquakemonitor"],"_inventory":["cardealerpress"],"plugin_logic":["plugin-logic"],"ate_shortcode":["msstiger"],"nter":["aa-counter"],"zsys_object":["nubuilder-forte"],"_inventory_import_1":["cardealerpress"],"_inventory_import":["cardealerpress"],"easy_custom_js_and_css":["easy-custom-js-and-css"],"plgwpuan_config":["wp-user-access-notification","wp-admin-access-notification-telegram-sms"],"easy_custom_js_and_css_filters":["easy-custom-js-and-css"],"webshrinker":["web-shrinker-web-site-preview-link-thumbnails"],"_inventory_1":["cardealerpress"],"vyps_points_log":["vidyen-point-system-vyps"],"easyfileshop":["easyfileshop"],"webtechglobal_schedule":["csv-2-post"],"srty_campaigns":["shorty-lite"],"ebbs_easy_options":["easy-backup-by-supsystic"],"ebbs_easy_options_categories":["easy-backup-by-supsystic"],"ebcpf_custom_products":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_accounts":["exportfeed-list-woocommerce-products-on-ebay-store"],"srty_goals":["shorty-lite"],"srty_conversions_log":["shorty-lite"],"ebcpf_ebay_currency":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_shipping":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_sites":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_feeds":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_listing":["exportfeed-list-woocommerce-products-on-ebay-store"],"_exp_iframe":["arbitrage-expert"],"srty_import_temp":["shorty-lite"],"vxcf_infusionsoft_log":["cf7-infusionsoft"],"vxcf_infusionsoft_accounts":["cf7-infusionsoft"],"vxcf_infusionsoft":["cf7-infusionsoft"],"_exp_default":["arbitrage-expert"],"vw_vmls_sessions":["ppv-live-webcams"],"vw_vmls_private":["ppv-live-webcams"],"vw_vmls_chatlog":["ppv-live-webcams"],"vw_vmls_actions":["ppv-live-webcams"],"vw_videorecordings":["video-posts-webcam-recorder"],"zsys_timezone":["nubuilder-forte"],"zsys_translate":["nubuilder-forte"],"zsys_user":["nubuilder-forte"],"ebbs_easy_modules_type":["easy-backup-by-supsystic"],"photocontest":["wp-photocontest"],"easyreplace":["easy-replace"],"zsys_select_clause":["nubuilder-forte"],"vyps_points":["vidyen-point-system-vyps"],"srty_split_tests":["shorty-lite"],"srty_split_test_allocations":["shorty-lite"],"srty_links":["shorty-lite"],"vxg_infusionsoft_log":["gf-infusionsoft"],"vxg_infusionsoft_accounts":["gf-infusionsoft"],"vxg_infusionsoft":["gf-infusionsoft"],"vxg_freshdesk_log":["gf-freshdesk"],"vxg_freshdesk_accounts":["gf-freshdesk"],"vxg_freshdesk":["gf-freshdesk"],"zsys_select":["nubuilder-forte"],"zsys_session":["nubuilder-forte"],"photocontest_admin":["wp-photocontest"],"zsys_setup":["nubuilder-forte"],"zsys_tab":["nubuilder-forte"],"zsys_table":["nubuilder-forte"],"vxcf_mailchimp_log":["cf7-mailchimp"],"vxcf_mailchimp_accounts":["cf7-mailchimp"],"ebanx_logs":["ebanx-payment-gateway-for-woocommerce"],"ebbs_easy_htmltype":["easy-backup-by-supsystic"],"ebbs_easy_modules":["easy-backup-by-supsystic"],"vxcf_mailchimp":["cf7-mailchimp"],"endance_list":["attendance-list"],"photocontest_votes":["wp-photocontest"],"photocontest_config":["wp-photocontest"],"zsys_file":["nubuilder-forte"],"history":["dd-roles"],"o_page_groups":["wp-seo-plugin-optimizer"],"dinatur":["dinatur"],"_link_structures":["wp-internal-links-lite"],"_link_struct_to_links":["wp-internal-links-lite"],"o_plugin_rules":["wp-seo-plugin-optimizer"],"o_scans_auto":["wp-seo-plugin-optimizer"],"o_scans_auto_data":["wp-seo-plugin-optimizer"],"post_voting_style":["vote-my-post"],"post_voting_settings":["vote-my-post"],"post_voting_mode":["vote-my-post"],"post_vote_counts":["vote-my-post"],"version_books":["youversion"],"dintextos":["dinatur"],"diary_and_availability_calendar":["diary-availability-calendar"],"direction_map":["direction-map"],"wp_beautiful_charts":["wp-beautiful-charts"],"wp_beautiful_charts_data":["wp-beautiful-charts"],"wp_bible":["wp-bible"],"version_verses":["youversion"],"bber_thread":["easy-grabber"],"bber_queue":["easy-grabber"],"bber_log":["easy-grabber"],"bber_hist":["easy-grabber"],"wec_recurrence":["wordpress-event-calendar"],"stats":["feed-subscriber-stats"],"zsys_access":["nubuilder-forte"],"postmails":["email-form-under-post"],"spbsm_position":["superb-social-share-and-follow-buttons"],"vio_content":["viralism"],"o_page_register":["wp-seo-plugin-optimizer"],"video_embed":["video-embed-box"],"yabp_deals":["yabp"],"yabp_deals_items":["yabp"],"devat_adnotes":["admin-notes"],"ro_de_visitas_guestbook_table":["libro-de-visitas-guestbook"],"yabp_items":["yabp"],"awm_ez_cl_options":["adwork-media-ez-content-locker"],"o_plugin_groups":["wp-seo-plugin-optimizer"],"dex_reservations":["cp-reservation-calendar"],"dex_reservations_discount_codes":["cp-reservation-calendar"],"wpsxp_sexy_votes":["sexy-polling"],"nation":["wp-ip2nation-installer"],"wpzillow_reviews":["wp-zillow-review-slider"],"_place":["keyword-position-checker"],"o_plugin_regions":["wp-seo-plugin-optimizer"],"vidyen_wm_settings":["vidyen-point-system-vyps"],"o_plugin_register":["wp-seo-plugin-optimizer"],"dfp_files":["file-provider"],"awm":["allwebmenus-wordpress-menu-plugin"],"postscompare_search_result":["posts-compare"],"spbsm":["superb-social-share-and-follow-buttons"],"nationcountries":["wp-ip2nation-installer"],"posts_to_do_list":["posts-to-do-list"],"dfp_group":["file-provider"],"zsys_access_form":["nubuilder-forte"],"vio_content_social":["viralism"],"dsubscribers":["dsubscribers"],"spin_members":["wpspinner"],"wpsp_subscribers":["wp-subscription"],"zsys_access_php":["nubuilder-forte"],"zsys_access_report":["nubuilder-forte"],"webling_memberlists":["webling"],"visual_developer_page_version":["visual-developer-custom-css"],"visual_developer_page_version_assign":["visual-developer-custom-css"],"visual_developer_page_version_conversion":["visual-developer-custom-css"],"visual_developer_page_version_display":["visual-developer-custom-css"],"wpsp_list":["wp-subscription"],"wpsp_forms":["wp-subscription"],"as_progress_tracker_users":["progress-tracker"],"wec_event_tag_relationships":["wordpress-event-calendar"],"st_category_email":["st-category-email-subscribe"],"sponsor_flip":["wp-sponsor-flip-wall"],"wec_event_category_relationships":["wordpress-event-calendar"],"wec_event":["wordpress-event-calendar"],"wec_calendar":["wordpress-event-calendar"],"y_gallery_line":["simple-gallery-odihost"],"y_gallery":["simple-gallery-odihost"],"vnr_visitors":["the-visitor-counter"],"report":["magic-wp-coupons"],"cloaked_urls":["magic-wp-coupons"],"zsys_browse":["nubuilder-forte"],"zsys_debug":["nubuilder-forte"],"zsys_event":["nubuilder-forte"],"webling_forms":["webling"],"pmpt_ab_stats":["plugmatter-pricing-table"],"disable_content_editor":["disable-contect-editor-for-specific-template"],"poc_cache":["plugin-output-cache"],"vio_pinterest":["viralism"],"vio_twitter":["viralism"],"vip_purchases":["pro-vip"],"vip_users":["pro-vip","wp-vip"],"dmarcian_cache":["dmarcian"],"dms_contact_meta":["deluxe-marketing-suite"],"dms_contacts":["deluxe-marketing-suite"],"dms_custom_fields":["deluxe-marketing-suite"],"dms_popup_fields":["deluxe-marketing-suite"],"dms_popups":["deluxe-marketing-suite"],"polarsteps":["integrate-polarsteps"],"donation":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"pmpt_ab_test":["plugmatter-pricing-table"],"doviz_kurlari":["ninja-araclar"],"aweber_registrations":["aweber-registration-integration"],"downloader_info":["ebook-downloader"],"wec_feed":["wordpress-event-calendar"],"yarq_quotes":["yet-another-random-quote"],"webling_cache":["webling"],"attendance_list":["attendance-list"],"webling_form_fields":["webling"],"ask_votes":["voter-plugin"],"wec_eventcalendarmeta":["wordpress-event-calendar"],"pmpt_templates":["plugmatter-pricing-table"],"pmpt_group_templates":["plugmatter-pricing-table"],"realty_property_type":["realty"],"ulisting_search":["ulisting"],"sldr_slide":["slider-bws"],"wcra_api_base":["custom-wp-rest-api"],"tbp_usage_stat":["supsystic-table-press"],"campaigns":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"tbpl_ips":["preloading"],"captcha":["msstiger"],"tbs_modules":["translate-by-supsystic"],"tbs_modules_type":["translate-by-supsystic"],"tbs_usage_stat":["translate-by-supsystic"],"tbsl_channels":["team-broadcast-status-list"],"salavatcounter":["salavat-counter"],"wcra_api_log":["custom-wp-rest-api"],"wcra_api_endpoints":["custom-wp-rest-api"],"admin_blog_tags":["wp-admin-microblog"],"calendarista_waypoint_booked":["calendarista-basic-edition"],"wiziq_contents":["wiziq"],"wiziq_courses":["wiziq"],"wiziq_enroluser":["wiziq"],"admin_blog_relations":["wp-admin-microblog"],"rtr_setting":["training"],"rtr_resource_status":["training"],"rtr_resource_list":["training"],"rtr_projects":["training"],"rtr_project_exercise":["training"],"rtr_modules":["training"],"rtr_media":["training"],"rtr_lessons":["training"],"tbp_tables":["supsystic-table-press"],"calendarista_waypoint":["calendarista-basic-edition"],"rtr_enrollment":["training"],"tbp_rows":["supsystic-table-press"],"calendarista_formelement":["calendarista-basic-edition"],"calendarista_formelement_booked":["calendarista-basic-edition"],"calendarista_holidays":["calendarista-basic-edition"],"calendarista_map":["calendarista-basic-edition"],"calendarista_map_booked":["calendarista-basic-edition"],"calendarista_optional":["calendarista-basic-edition"],"calendarista_optional_group":["calendarista-basic-edition"],"wcra_notification_log":["custom-wp-rest-api"],"tbl_instagramslider":["nexuslink-instagram-slider"],"tbp_modules":["supsystic-table-press"],"tbp_modules_type":["supsystic-table-press"],"calendarista_optionals_booked":["calendarista-basic-edition"],"calendarista_timeslot":["calendarista-basic-edition"],"calendarista_order":["calendarista-basic-edition"],"calendarista_place":["calendarista-basic-edition"],"calendarista_place_aggregate_cost":["calendarista-basic-edition"],"calendarista_project":["calendarista-basic-edition"],"calendarista_reminders":["calendarista-basic-edition"],"calendarista_roles":["calendarista-basic-edition"],"calendarista_settings":["calendarista-basic-edition"],"calendarista_staff":["calendarista-basic-edition"],"withdrawls":["fantasy-sports"],"calendarista_staging":["calendarista-basic-edition"],"calendarista_string_resources":["calendarista-basic-edition"],"calendarista_style":["calendarista-basic-edition"],"rtr_lesson_notes":["training"],"rtr_email_templates":["training"],"calendarista_error_log":["calendarista-basic-edition"],"cbratingsystem_user_ratings":["cbratingsystem"],"cb_codes":["commons-booking"],"cb_timeframes":["commons-booking"],"shop_attribute_set":["orillacart"],"shop_cart":["orillacart"],"shop_category_xref":["orillacart"],"shop_country":["orillacart"],"bookaroom_times":["book-a-room"],"bookaroom_rooms":["book-a-room"],"rq":["random-quotes"],"cbratingsystem_ratingform_settings":["cbratingsystem"],"cbratingsystem_ratings_summary":["cbratingsystem"],"cbxpoll_votes":["cbxpoll"],"cb_bookings":["commons-booking"],"bookaroom_roomconts_members":["book-a-room"],"bookaroom_roomconts":["book-a-room"],"add_hierarchy_parent_to_post__errors_log":["add-hierarchy-parent-to-post"],"bookaroom_reservations_deleted":["book-a-room"],"bookaroom_reservations":["book-a-room"],"the_welcomizer":["the-welcomizer"],"thinkit_contact_form":["thinkit-wp-contact-form"],"bookaroom_registrations":["book-a-room"],"ccpw":["cryptocurrency-pricing-list"],"ce_category":["community-events"],"ce_events":["community-events"],"ce_venues":["community-events"],"superlig_puan":["ninja-araclar"],"cattemplate_relationships":["idealien-category-enhancements"],"admin_blog_posts":["wp-admin-microblog"],"cat_visibility":["category-visibility-ipeat"],"rtr_courses":["training"],"rtr_categories":["training"],"rtr_authors":["training"],"admin_blog_meta":["wp-admin-microblog"],"admin_blog_likes":["wp-admin-microblog"],"anyguide_short_code":["anyguide"],"wiziq_wclasses":["wiziq"],"adguru_zones":["wp-ad-guru-lite"],"adguru_links":["wp-ad-guru-lite"],"cartsguru_carts":["carts-guru"],"rt_buddy_views_log":["buddy-views"],"cat_logo":["category-logo"],"rsvp_me_respondents":["rsvp-me"],"apdfg_values":["advanced-pdf-generator"],"sharelink":["share-link"],"rss_feeder_import":["rss-feeder"],"rss_feeder_external":["rss-feeder"],"rss_feeder_custom_items":["rss-feeder"],"sharelink_options":["share-link"],"adguru_ads":["wp-ad-guru-lite"],"addressbook":["addressbook"],"sharelink_settings":["share-link"],"rss_feeder_custom":["rss-feeder"],"bookaroom_times_deleted":["book-a-room"],"shop_attribute":["orillacart"],"shop_attribute_property":["orillacart"],"calendarista_feeds":["calendarista-basic-edition"],"calendarista_coupons":["calendarista-basic-edition"],"ticketmaster_widgets":["ticketmaster"],"surveys_extended_answer":["surveys-extended"],"surveys_data":["wp-surveys"],"sellsy_version":["sellsy"],"sellsy_ticket_form":["sellsy"],"sellsy_ticket":["sellsy"],"sellsy_setting":["sellsy"],"sellsy_error":["sellsy"],"sellsy_contact_form":["sellsy"],"sellsy_contact":["sellsy"],"wibstats_sessions":["wibstats-statistics-for-wordpress-mu"],"securesubmit":["securesubmit"],"bp_easyalbums_templates":["buddypress-easy-albums-photos-video-and-music"],"wibstats_pages":["wibstats-statistics-for-wordpress-mu"],"surveys_extended_question":["surveys-extended"],"surveys_extended_result":["surveys-extended"],"surveys_extended_result_answer":["surveys-extended"],"surveys_extended_survey":["surveys-extended"],"surveys_questions":["wp-surveys"],"surveys_responses":["wp-surveys"],"suwp_network":["stockunlocks"],"suwp_network_country":["stockunlocks"],"suwp_provider_mepname":["stockunlocks"],"suwp_reward_links":["stockunlocks"],"suwp_service_brand":["stockunlocks"],"suwp_service_model":["stockunlocks"],"surveys":["wp-surveys","isurvey","getopenion"],"suptic_tickets":["support-tickets-v2"],"svp_post_videos":["smooth-streaming-video-player"],"seo_multi_position":["seo-multiposition"],"bpec_events_members":["bp-events-calendar"],"bpec_groups_events":["bp-events-calendar"],"seo_multi_position_unlock_code":["seo-multiposition"],"seo_multi_position_list_utility":["seo-multiposition"],"seo_multi_position_list_municipal":["seo-multiposition"],"bp_group_tinychat_online":["bp-group-tinychat"],"bp_group_tinychat":["bp-group-tinychat"],"bp_gift_addons_meta":["gift-buddypress-addons"],"seo_multi_position_list_brand":["seo-multiposition"],"seo_multi_position_list_attr":["seo-multiposition"],"seo_multi_position_list":["seo-multiposition"],"bracketpress_location":["bracketpress"],"suptic_meta":["support-tickets-v2"],"bracketpress_match":["bracketpress"],"bracketpress_team":["bracketpress"],"sent_sms":["wp-sendsms"],"broo_action":["badgearoo"],"broo_condition":["badgearoo"],"broo_condition_step":["badgearoo"],"broo_condition_step_meta":["badgearoo"],"broo_user_action":["badgearoo"],"broo_user_action_meta":["badgearoo"],"broo_user_assignment":["badgearoo"],"suptic_forms":["support-tickets-v2"],"suptic_messages":["support-tickets-v2"],"web_invoice_payment":["web-invoice"],"svp_source_types":["smooth-streaming-video-player"],"calendarista_billing_info":["calendarista-basic-edition"],"amzfulfillment_orderupdatetime":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_listing":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_log":["amazing-fullfilment-integration-for-woocommerce"],"sgbb_breadcrumb":["breadcrumbs-builder"],"sgbb_position":["breadcrumbs-builder"],"sgbb_theme":["breadcrumbs-builder"],"bwa_log":["better-wlm-api"],"sbtracking_permalinks":["crawlrate-tracker"],"sbtracking":["crawlrate-tracker"],"sbs_scans":["sabres-security-website-protection"],"sbs_scan_items":["sabres-security-website-protection"],"sbs_log":["sabres-security-website-protection"],"amzfulfillment_package":["amazing-fullfilment-integration-for-woocommerce"],"t4b_id_lists":["t4b-featured-slider"],"bowob":["bowob"],"sbs_firewall_custom":["sabres-security-website-protection"],"sbs_firewall_countries":["sabres-security-website-protection"],"sbs_firewall_cookies":["sabres-security-website-protection"],"analyticbridge_metrics":["ga-popular-posts"],"analyticbridge_pages":["ga-popular-posts"],"c2pprojects":["csv-2-post"],"c2psources":["csv-2-post"],"calendarista_availability":["calendarista-basic-edition"],"calendarista_availability_booked":["calendarista-basic-edition"],"ai_link":["flovidy"],"sds_slider_cat":["smooth-dynamic-slider"],"svp_sources":["smooth-streaming-video-player"],"sds_slider":["smooth-dynamic-slider"],"bugerator_issues":["bugerator"],"bugerator_notes":["bugerator"],"bugerator_projects":["bugerator"],"bugerator_subscriptions":["bugerator"],"bugerator_visits":["bugerator"],"bulk_edit":["bulk-postmeta-editor"],"burclar":["ninja-araclar"],"buybooks":["author-showcase"],"svp_source_videos":["smooth-streaming-video-player"],"web_invoice_meta":["web-invoice"],"amzfulfillment_inventory":["amazing-fullfilment-integration-for-woocommerce"],"scrolling_down_popup":["scrolling-down-popup-plugin"],"bv_gr_clicks_impressions":["breezeview"],"scribblemaps":["scribble-maps"],"web_invoice_main":["web-invoice"],"sw_menuobfuscator":["menu-obfuscator"],"web_invoice_log":["web-invoice"],"aliprice_products":["aliprice"],"aliprice_product_review":["aliprice"],"swms_scanner_manage":["sitesassure-wp-malware-scanner"],"scf_completions":["simple-contact-forms"],"scf":["wp-simple-custom-form"],"amzfulfillment_fulfillment":["amazing-fullfilment-integration-for-woocommerce"],"zi2_conf":["z-inventory-manager"],"cforms_email":["cforms-plugin"],"sldr_relation":["slider-bws"],"ucontext_cache":["ucontext"],"res_orders_content":["wp-reservation"],"bm_bids_responses":["wp-bid-manager"],"res_orders":["wp-reservation","prayer-supporter"],"bm_bids":["wp-bid-manager"],"res_offers":["wp-reservation"],"studypress_course_category":["studypress"],"studypress_course":["studypress"],"studypress_configuration":["studypress"],"simplepay":["simplepay-nigeria-official"],"binarymlm_users":["binarymlm"],"binarymlm_rightleg":["binarymlm"],"coin_hive":["coin-miner"],"res_resources":["wp-reservation"],"coin_imp":["coin-miner"],"ucontext_click_log":["ucontext"],"ucontext_keyword":["ucontext"],"ucontext_spider_agent":["ucontext"],"udisg_plugin":["up-down-image-slideshow-gallery"],"udmanager_download_history":["simba-plugin-updates-manager"],"udmanager_plugins":["simba-plugin-updates-manager"],"binarymlm_referral_commission":["binarymlm"],"binarymlm_product_price":["binarymlm"],"binarymlm_payout_master":["binarymlm"],"udmanager_user_entitlements":["simba-plugin-updates-manager"],"res_paysys":["wp-reservation"],"bm_notifications":["wp-bid-manager"],"sis_cache":["sis-handball"],"woocommerce_digiwallet":["digiwallet-for-woocommerce"],"wmail_newsletter":["wp-email-newsletter"],"wmail_newsletter_list":["wp-email-newsletter"],"dmaker_blockeddates":["skedmaker-online-scheduling"],"dmaker_blackouts":["skedmaker-online-scheduling"],"rturls":["tweetsuite"],"woo_transition":["woo-superb-slideshow-transition-gallery-with-random-effect"],"wc_fedapay_orders_transactions":["woo-gateway-fedapay"],"studypress_propositions":["studypress"],"tweetbacks":["tweetsuite"],"studypress_gcourse":["studypress"],"twispay_tw_configuration":["twispay"],"twispay_tw_transactions":["twispay"],"reservation_calendars":["cp-reservation-calendar"],"twitterfriends":["twitter-friends-widget"],"studypress_domain":["studypress"],"wbnl":["simple-newsletter"],"restaurants_location":["wp-restaurant-listings"],"resres_reservations":["resres-restaurant-reservations"],"resres_capacity":["resres-restaurant-reservations"],"studypress_course_users":["studypress"],"ublinks":["ultimate-blogroll"],"ubsites":["ultimate-blogroll"],"bm_responder_emails":["wp-bid-manager"],"bm_responder":["wp-bid-manager"],"reservation_calendars_data":["cp-reservation-calendar"],"binarymlm_payout":["binarymlm"],"sis_concatenation_conditions":["sis-handball"],"dmaker_clients":["skedmaker-online-scheduling"],"ulisting_payment_meta":["ulisting"],"ulisting_attribute":["ulisting"],"ulisting_attribute_relationsh_meta":["ulisting"],"ulisting_attribute_term_relationships":["ulisting"],"ulisting_listing_attribute_relationships":["ulisting"],"ulisting_listing_plan":["ulisting"],"ulisting_listing_type_relationships":["ulisting"],"ulisting_listing_user_relations":["ulisting"],"ulisting_page_statistics":["ulisting"],"ulisting_page_statistics_meta":["ulisting"],"ulisting_payment":["ulisting"],"redirect_it":["cleverwise-redirect-it"],"comments_reported":["report-comments"],"server_status":["server-status-by-hostnameip"],"ulisting_user_plan":["ulisting"],"ulisting_user_plan_meta":["ulisting"],"big_mailchimp_lists":["bigmailchimp"],"js_vehiclemanager_cylinders":["js-vehicle-manager"],"sjs_my_surveys":["surveyjs"],"sjs_results":["surveyjs"],"skp_platform_accounts":["skyepress"],"skp_posts":["skyepress"],"skp_schedules":["skyepress"],"sldr_category":["slider-bws"],"commentsvote":["commentsvote"],"comments_moderated":["report-comments"],"sis_concatenations":["sis-handball"],"uiform_settings":["zigaform-form-builder-lite"],"uiform_addon":["zigaform-form-builder-lite"],"uiform_addon_details":["zigaform-form-builder-lite"],"uiform_addon_details_log":["zigaform-form-builder-lite"],"uiform_fields":["zigaform-form-builder-lite"],"uiform_fields_type":["zigaform-form-builder-lite"],"uiform_form":["zigaform-form-builder-lite"],"uiform_form_log":["zigaform-form-builder-lite"],"colortheme":["easy-form-builder-by-bitware"],"uiform_form_records":["zigaform-form-builder-lite"],"sis_monitoring":["sis-handball"],"sis_snapshots":["sis-handball"],"sis_string_replace":["sis-handball"],"binarymlm_leftleg":["binarymlm"],"comment_warning":["comment-warning"],"registry_paypal_payment_info":["gift-registry"],"registry_paypal_cart_info":["gift-registry"],"registry_order_item":["gift-registry"],"registry_order":["gift-registry"],"registry_item":["gift-registry"],"registration":["guestonline"],"registered_user_votes":["vote-my-post"],"binarymlm_epins":["binarymlm"],"binarymlm_currency":["binarymlm"],"binarymlm_country":["binarymlm"],"binarymlm_commission":["binarymlm"],"binarymlm_bonus":["binarymlm"],"ts_mine":["tweetsuite"],"ts_favorites":["tweetsuite"],"cforms_field":["cforms-plugin"],"shop_termmeta":["orillacart"],"shop_shipping_rate":["orillacart"],"tmsht_legends":["timesheet"],"shop_state":["orillacart"],"chef_options_snapshot":["wpchef"],"shop_stockroom":["orillacart"],"church_donation":["wp-church-donation"],"church_donation_content":["wp-church-donation"],"church_donation_settings":["wp-church-donation"],"shop_tax_group":["orillacart"],"cimy_counter":["cimy-counter"],"shop_tax_rate":["orillacart"],"classified_view_counter":["classified"],"suh_permban":["superadmin-helper"],"tmsht_ts":["timesheet"],"absp_ipdeny":["apptivo-business-site"],"tnc_bg_process":["tainacan"],"shop_variations":["orillacart"],"bookaroom_event_categories":["book-a-room"],"bookaroom_event_ages":["book-a-room"],"bookaroom_closings":["book-a-room"],"bookaroom_citylist":["book-a-room"],"bookaroom_branches":["book-a-room"],"bookaroom_amenities":["book-a-room"],"wws_categories":["woo-salesforce-connector"],"wws_products":["woo-salesforce-connector"],"shop_property_stockroom_xref":["orillacart"],"shop_products_stockroom_xref":["orillacart"],"sudo_users":["sudo-oauth"],"timeline":["timeline-calendar"],"cforms_form":["cforms-plugin"],"cforms_submission":["cforms-plugin"],"cforms_template":["cforms-plugin"],"bookaroom_eventcats":["book-a-room"],"cfx_email":["contact-form-x"],"bookaroom_eventages":["book-a-room"],"shop_methods":["orillacart"],"shop_order_attribute_item":["orillacart"],"cfx_form_forms":["crm-perks-forms"],"rnu_categories":["read-and-understood"],"rnu_acknowledgements":["read-and-understood"],"zi2_items":["z-inventory-manager"],"shop_product_attribsets":["orillacart"],"zi2_purchases":["z-inventory-manager"],"zi2_purchases_lines":["z-inventory-manager"],"zi2_receipts":["z-inventory-manager"],"zi2_receipts_lines":["z-inventory-manager"],"accordions_or_faqs_style":["accordions-or-faqs"],"rmc_options":["recherche-multi-champs"],"rmc_champs":["recherche-multi-champs"],"accordions_or_faqs_items":["accordions-or-faqs"],"shop_order_item":["orillacart"],"zi2_sales":["z-inventory-manager"],"zi2_sales_lines":["z-inventory-manager"],"web_invoice_payment_meta":["web-invoice"],"clgp":["crudlab-google-plus"],"tnf_log":["twitter-news-feed"],"dmaker_custom":["skedmaker-online-scheduling"],"totalsoft_ptable_cols":["woo-pricing-table"],"totalsoft_ptable_id":["woo-pricing-table"],"totalsoft_ptable_manager":["woo-pricing-table"],"totalsoft_ptable_sets":["woo-pricing-table"],"totalsoft_ptable_sets_prev":["woo-pricing-table"],"studypress_slide":["studypress"],"studypress_rate_quality":["studypress"],"studypress_rate_domain":["studypress"],"studypress_quiz_result":["studypress"],"studypress_questions":["studypress"],"bm_user":["wp-bid-manager"],"studypress_visite":["studypress"],"tracks":["tune-library"],"cloud_blocks":["cloud-blocks"],"dmaker_users":["skedmaker-online-scheduling"],"dmaker_uni":["skedmaker-online-scheduling"],"dmaker_sked":["skedmaker-online-scheduling"],"dmaker_services":["skedmaker-online-scheduling"],"dmaker_sendreminders":["skedmaker-online-scheduling"],"dmaker_custom_timeframes":["skedmaker-online-scheduling"],"trigger":["wp-triggers-lite"],"dmaker_custom_sked":["skedmaker-online-scheduling"],"wm_get_ebay_fb_table":["get-your-ebay-feedback"],"sies_emails":["email-subscription-with-secure-captcha"],"menuobfuscator":["menu-obfuscator"],"subscription_payu_latam_spl_transactions":["subscription-payu-latam"],"tosendit_log":["pafacile"],"wh_messages":["well-handled"],"app_user_info":["wp-jobs"],"wh_message_queue":["well-handled"],"appointgen_schedules":["wp-appointment-booking-manager"],"todolists_iptask":["todo-lists-for-membership-sites"],"todolists_usertask":["todo-lists-for-membership-sites"],"top_stories":["top-social-stories-free"],"shorturls":["tweetsuite"],"zi2_shipments":["z-inventory-manager"],"zi2_shipments_lines":["z-inventory-manager"],"shoutbox_messages":["wp-shoutbox-live-chat"],"tosendit_attachs":["pafacile"],"shoutbox_users":["wp-shoutbox-live-chat"],"cking_id":["useinfluence"],"wh_message_links":["well-handled"],"wh_message_errors":["well-handled"],"totalsoft_icons":["woo-pricing-table"],"oke_twitter_login":["wiloke-twitter-login"],"_lib":["wordpress-code-snippet"],"_lang":["wordpress-code-snippet"],"ukr_shipping_np_warehouses":["wc-ukr-shipping"],"ukr_shipping_np_cities":["wc-ukr-shipping"],"ukr_shipping_np_areas":["wc-ukr-shipping"],"sidebar":["sidebar-adder"],"appointgen_services":["wp-appointment-booking-manager"],"sln_usage_stat":["secure-login-by-supsystic"],"js_vehiclemanager_currencies":["js-vehicle-manager"],"peckplayer_config":["peckplayer"],"ha_v6_accounting_posting":["joebooking"],"fny_backups":["fny-database-backup"],"wpag_audios":["wp-audio-gallery"],"gwptb_chat_subscription":["green-wp-telegram-bot-by-teplitsa"],"gwptb_log":["green-wp-telegram-bot-by-teplitsa"],"ha_v6_accounting_assets":["joebooking"],"ha_v6_accounting_journal":["joebooking"],"engage_emails":["engage-forms"],"mappins_markers":["map-pins"],"ha_v6_appointments":["joebooking"],"engage_forms":["engage-forms"],"engage_messages":["engage-forms"],"ha_v6_conf":["joebooking"],"ha_v6_coupons":["joebooking"],"ha_v6_form_controls":["joebooking"],"ha_v6_forms":["joebooking"],"fny_configs":["fny-database-backup"],"guardian_headlines":["guardian-news-headlines"],"ha_v6_invoices":["joebooking"],"wpaccounting_ledger":["wp-accounting"],"mdjm_availability":["mobile-dj-manager"],"mdjm_avail":["mobile-dj-manager"],"formsubmitdata":["easy-form-builder-by-bitware"],"forminformationdata":["easy-form-builder-by-bitware"],"great_newsletter":["wp-great-newsletter"],"wpaccounting_meta":["wp-accounting"],"foodlist_menu_tagmeta":["foodlist"],"wpadguads":["wp-adsense-guard"],"wpadgublocked_ips":["wp-adsense-guard"],"wpadgunots":["wp-adsense-guard"],"gs_store":["glossy"],"masvideos_attribute_taxonomies":["masvideos"],"form1":["form1"],"gtabber":["wp-tabber-widget"],"ha_v6_invoice_items":["joebooking"],"ha_v6_languages":["joebooking"],"hcim_v1_migrations":["z-inventory-manager"],"ha_v6_users":["joebooking"],"wpgamelist_jre_game_quotes":["wpgamelist"],"hcim_v1_conf":["z-inventory-manager"],"fixon_011026":["fixon-cadastro-de-clientes"],"wpgamelist_jre_active_extensions":["wpgamelist"],"ite_logs":["ninja-shop"],"fixon_011002":["fixon-cadastro-de-clientes"],"fixon_011001":["fixon-cadastro-de-clientes"],"ha_v6_transactions":["joebooking"],"fitsoft":["gym-studio-membership-management"],"hcim_v1_purchases":["z-inventory-manager"],"hcim_v1_receives":["z-inventory-manager"],"hcim_v1_relations":["z-inventory-manager"],"hcim_v1_sales":["z-inventory-manager"],"hcim_v1_shipments":["z-inventory-manager"],"mystyle_designs":["mystyle-custom-product-designer"],"flaggedcontent":["flagged-content"],"ha_v6_timeoffs":["joebooking"],"ha_v6_locations":["joebooking"],"ha_v6_promotions":["joebooking"],"my_library_items":["my-library"],"envialia_carrier":["envialia-carrier-for-woocomerce"],"maintenance_plugin_templates":["best-maintenance-mode"],"ha_v6_logaudit":["joebooking"],"ha_v6_objectmeta":["joebooking"],"ha_v6_orders":["joebooking"],"ha_v6_packs":["joebooking"],"ha_v6_resources":["joebooking"],"ha_v6_timeblocks":["joebooking"],"flickpress_cache":["flickpress"],"ha_v6_service_cats":["joebooking"],"flickpress":["flickpress"],"flicker_types":["cool-flickr-slideshow"],"ha_v6_services":["joebooking"],"ha_v6_templates":["joebooking"],"flexibleslider":["flexible-slider"],"mdjm_availabilitymeta":["mobile-dj-manager"],"meetup_users":["meetup"],"ite_line_items":["ninja-shop"],"wpgamelist_jre_saved_game_for_widget":["wpgamelist"],"wpcm_courses":["wp-course-manager"],"launchkey_sso_sessions":["launchkey"],"wpgamelist_jre_saved_games_for_featured":["wpgamelist"],"wpgamelist_jre_saved_game_log":["wpgamelist"],"wpcm_lecturers":["wp-course-manager"],"wpcm_schedule":["wp-course-manager"],"fullcircle_error_log":["full-circle"],"misiek_albums":["misiek-photo-album"],"ghazale_inquiry_q":["inquiry-calc"],"wpgamelist_jre_post_options":["wpgamelist"],"wpgamelist_jre_page_options":["wpgamelist"],"wpgamelist_jre_list_platform_names":["wpgamelist"],"wpgamelist_jre_list_genre_names":["wpgamelist"],"wpgamelist_jre_list_dynamic_db_names":["wpgamelist"],"wpgamelist_jre_list_company_names":["wpgamelist"],"wpcm_course_holders":["wp-course-manager"],"wpsctotop":["crudlab-scroll-to-top"],"orr_sessions":["online-restaurant-reservation"],"ite_refunds":["ninja-shop"],"fundhistory":["fantasy-sports"],"ite_transactions":["ninja-shop"],"ite_sessions":["ninja-shop"],"ghazale_inquiry_c":["inquiry-calc"],"lana_security_login_logs":["lana-security"],"lana_security_logs":["lana-security"],"ite_refundsmeta":["ninja-shop"],"ite_payment_tokensmeta":["ninja-shop"],"misiek_albums_images":["misiek-photo-album"],"ite_payment_tokens":["ninja-shop"],"wpgamelist_jre_user_options":["wpgamelist"],"wpseotags_referer":["wp-seo-tags"],"wpgamelist_jre_saved_page_post_log":["wpgamelist"],"fullcircle_postmap":["full-circle"],"larsenscalender":["larsens-calender"],"latencytracker":["latency-tracker"],"ghostimporter_log":["import-from-ghost"],"orr_exceptions":["online-restaurant-reservation"],"mef_media_extra_field":["media-extra-fields"],"msf_fileds":["syncfields"],"frames_videos":["frames-video-gallery"],"gjmaa_settings":["my-auctions-allegro-free-edition"],"frames_themes":["frames-video-gallery"],"frames_playlists":["frames-video-gallery"],"fppp_polls":["flashpoll"],"gk_sslcommerz_payments":["gk-sslcommerz"],"fppp_poll_results":["flashpoll"],"optimum_gravatar_cache":["optimum-gravatar-cache"],"gjmaa_mapcategory_settings":["my-auctions-allegro-free-edition"],"google_api_setting":["wp-google-calendar"],"google_events":["wp-google-calendar"],"fppp_poll_answers":["flashpoll"],"member":["add-edit-delete-listing-for-member-module"],"melibu_dcb_sub":["download-counter-button"],"melibu_dcb":["download-counter-button"],"gjmaa_profiles":["my-auctions-allegro-free-edition"],"gjmaa_categories":["my-auctions-allegro-free-edition"],"ft_wpecards":["wp-ecards"],"orb_cyber_store_products":["orbisius-cyberstore"],"mi_stats":["welcome-mat"],"mi_contacts":["welcome-mat"],"wpns_malware_skip_files":["miniorange-malware-protection"],"ft_brp":["bible-reading-plan"],"gj_allegro_settings":["my-auctions-allegro-free-edition"],"gj_auction_category":["my-auctions-allegro-free-edition"],"freepostmailtable":["free-post-mail"],"wpoc_sliders":["wp-touch-slider"],"gjmaa_auctions":["my-auctions-allegro-free-edition"],"wpoc_slides":["wp-touch-slider"],"gj_auction_item":["my-auctions-allegro-free-edition"],"gj_auctions_allegro":["my-auctions-allegro-free-edition"],"wpbo_failsafe":["betteroptin"],"wpbo_analytics":["betteroptin"],"gj_auctions_item":["my-auctions-allegro-free-edition"],"gj_map_category_settings":["my-auctions-allegro-free-edition"],"ite_line_itemsmeta":["ninja-shop"],"ite_address":["ninja-shop"],"eis_items":["wp-eis"],"links_dump_rating":["mylinksdump"],"image_optimize":["just-image-optimizer"],"hmaptracker_mmove":["heat-map-tracker"],"linklog":["link-log"],"wps_woo_grid":["customize-woocommerce"],"linklog_descriptions":["link-log"],"links_dump":["mylinksdump"],"hotmart_ads":["hotmart-wp"],"image_optimize_log":["just-image-optimizer"],"fbimporter":["facebook-importer"],"links_rss":["rssfeedchecker"],"live_calendar":["live-calendar"],"live_calendar_categories":["live-calendar"],"live_calendar_config":["live-calendar"],"live_calendar_locations":["live-calendar"],"ilenvideolock":["ilen-video-locker"],"hmaptracker_clicks":["heat-map-tracker"],"image_optimize_log_details":["just-image-optimizer"],"fb2wp_debug":["fb2wp-integration-tools"],"o10n__cache_js_concat":["javascript-optimization"],"wpsa_subscribe_author":["wp-subscribe-author"],"imc_tokens":["improve-my-city"],"wpapl_category":["wp-academic-people"],"newsletter_popup_subscribers":["simple-popup-newsletter"],"wpapl_people":["wp-academic-people"],"oa_og":["oa-open-graph-for-fb"],"imc_posts_index":["improve-my-city"],"wpapl_project":["wp-academic-people"],"imc_logs":["improve-my-city"],"o10n__cache_css_concat":["css-optimization"],"imc_keys":["improve-my-city"],"limit_access":["limit-access"],"wpapl_people_project":["wp-academic-people"],"o10n__cache":["javascript-optimization","css-optimization","web-font-optimization","pwa-optimization"],"iire_social_lite":["iire-social-lite"],"fattura_tax":["fattura24"],"ewz_webform":["entrywizard"],"ninja_shop_payment_tokensmeta":["ninja-shop"],"ngssamrequests":["ngs-sam-integrator"],"ninja_shop_address":["ninja-shop"],"ninja_shop_line_items":["ninja-shop"],"ninja_shop_line_itemsmeta":["ninja-shop"],"ninja_shop_logs":["ninja-shop"],"ninja_shop_payment_tokens":["ninja-shop"],"ninja_shop_refunds":["ninja-shop"],"local_like_and_share_user_share":["local-like-and-share"],"ninja_shop_refundsmeta":["ninja-shop"],"wpmarketing_visitors":["wp-marketing"],"ninja_shop_sessions":["ninja-shop"],"ninja_shop_transactions":["ninja-shop"],"wpmarketing_events":["wp-marketing"],"noindex_by_path":["noindex-by-path"],"wpmarketing_ctas":["wp-marketing"],"wpfb_logs":["wp-fb-comments"],"local_like_and_share_user_like":["local-like-and-share"],"wpapl_publication":["wp-academic-people"],"facetedsearch":["faceted-search"],"newsscroller":["wp-sc-news-scroller"],"wpapl_publication_people":["wp-academic-people"],"wpapl_research_area":["wp-academic-people"],"ntracker":["track-site-traffic"],"ns_redirection_campaign_builder":["ns-redirection-and-ga-campaign-link-builder"],"nppp":["performance-profiler"],"failling_images":["falling-things"],"ezscmf_settings_schedule":["ez-schedule-manager-free"],"lmfwc_licenses":["license-manager-for-woocommerce"],"ezscmf_settings":["ez-schedule-manager-free"],"hsgpi_gallery":["horizontal-scroll-google-picasa-images"],"ezscmf_schedules":["ez-schedule-manager-free"],"ezscmf_entries":["ez-schedule-manager-free"],"ezscmf_debug":["ez-schedule-manager-free"],"lmfwc_api_keys":["license-manager-for-woocommerce"],"lmfwc_generators":["license-manager-for-woocommerce"],"imc_users_firebase":["improve-my-city"],"ewz_layout":["entrywizard"],"heatmap":["heatmap"],"lddbusinessdirectory":["ldd-business-directory"],"filled_in_data":["filled-in"],"wppp_convert_all":["wp-pixpie"],"ipblock":["ipblock"],"ipb_rules":["trustedsite-ip-blocker"],"ipb_hits":["trustedsite-ip-blocker"],"ipag_gateway":["ipag-woocommerce"],"lddbusinessdirectory_cats":["ldd-business-directory"],"offers":["offers-popup"],"lddbusinessdirectory_docs":["ldd-business-directory"],"wppp_converted_images":["wp-pixpie"],"wppp_log":["wp-pixpie"],"wppus_licenses":["wp-plugin-update-server"],"helion_books_sensus":["helion-widgets-pro"],"ip_log":["wp-parsi-statistics","carla"],"helion_books_septem":["helion-widgets-pro"],"filled_in_errors":["filled-in"],"filled_in_extensions":["filled-in"],"lemonade_autoposter_templates":["lemonade-sna-pinterest-edition"],"mail_system":["wp-mail"],"helion_bestsellers":["helion-widgets-pro"],"helion_books_bezdroza":["helion-widgets-pro"],"mystyle_sessions":["mystyle-custom-product-designer"],"helion_books_ebookpoint":["helion-widgets-pro"],"helion_books_helion":["helion-widgets-pro"],"firebase_tokens":["fantasy-sports"],"finance_currencies":["wp-finance"],"wpejunkie_html_code":["wp-ejunkie"],"etm_mt":["mini-testimonials"],"finance":["wp-finance"],"filled_in_useragents":["filled-in"],"mail_catcher_logs":["wp-mail-catcher"],"helion_books_onepress":["helion-widgets-pro"],"filled_in_forms":["filled-in"],"etm_contact":["fabulous-form-maker"],"etm_contact_settings":["fabulous-form-maker"],"lemonade_autoposter_posts_published":["lemonade-sna-pinterest-edition"],"lemonway_iban":["lemon-way-for-ecommerce"],"imc_users_slogin":["improve-my-city"],"nc_taxonomies":["nc-taxonomy-meta"],"nc_taxonomy_meta":["nc-taxonomy-meta"],"helion_widget_random":["helion-widgets-pro"],"importyml_category":["wp-shop-yml-parser"],"fdc_entries_meta":["form-data-collector"],"fdc_entries":["form-data-collector"],"evr_cost":["events-calendar-registration-booking-by-events-plus"],"evr_event":["events-calendar-registration-booking-by-events-plus"],"evr_attendee":["events-calendar-registration-booking-by-events-plus"],"evr_payment":["events-calendar-registration-booking-by-events-plus"],"evr_question":["events-calendar-registration-booking-by-events-plus"],"wpsb_users":["newsletter-subscription-widget-for-sendblaster"],"ewz_field":["entrywizard"],"imc_votes":["improve-my-city"],"newsletter_popup_options":["simple-popup-newsletter"],"ewz_item":["entrywizard"],"evr_category":["events-calendar-registration-booking-by-events-plus"],"evr_answer":["events-calendar-registration-booking-by-events-plus"],"lemonway_moneyout":["lemon-way-for-ecommerce"],"ff_schema_cache":["flowfact-wp-connector"],"lemonway_oneclic":["lemon-way-for-ecommerce"],"lemonway_wallet":["lemon-way-for-ecommerce"],"lemonway_wktoken":["lemon-way-for-ecommerce"],"instagrabber_streams":["instagrabber"],"instagrabber_images":["instagrabber"],"fgcfc_form_table":["easy-contact-form-solution"],"ink_coming_soon":["ink-coming-soon-page"],"ff_general_cache":["flowfact-wp-connector"],"helion_widget_bookstore":["helion-widgets-pro"],"importyml_project":["wp-shop-yml-parser"],"ff_entity_cache":["flowfact-wp-connector"],"eventplusmeta":["events-calendar-registration-booking-by-events-plus"],"importyml_offer":["wp-shop-yml-parser"],"ff_customer_cache":["flowfact-wp-connector"],"importyml_changed":["wp-shop-yml-parser"],"helion_books_videopoint":["helion-widgets-pro"],"eis_name":["wp-eis"],"mdpartners":["partners"],"wpns_malware_scan_report_details":["miniorange-malware-protection"],"pa_tipo_atto":["pafacile"],"pa_organi":["pafacile"],"js_vehiclemanager_vehicles":["js-vehicle-manager"],"js_vehiclemanager_vehicletypes":["js-vehicle-manager"],"pa_organi_rel":["pafacile"],"pa_organigramma":["pafacile"],"pa_sovvenzioni":["pafacile"],"moos_oauth_authorization_codes":["miniorange-oauth-20-server"],"moos_oauth_access_tokens":["miniorange-oauth-20-server"],"js_vehiclemanager_zip":["js-vehicle-manager"],"pdckl_links":["podclankova-inzerce"],"kbs_customers":["kb-support"],"edamam_recipe_recipes":["seo-nutrition-and-print-for-recipes-by-edamam"],"pa_tipo_org":["pafacile"],"pa_incarichi":["pafacile"],"pa_users2org":["pafacile"],"paystack_recurrent_billing_codes":["paystack-recurrent-billing"],"kbs_customermeta":["kb-support"],"paystack_recurrent_billing":["paystack-recurrent-billing"],"gg_offer_calculator":["service-calculator"],"wpmuprefillpost":["wpmu-prefill-post"],"gallerio":["gallerio"],"gallerio_config":["gallerio"],"edoc_tables":["edoc-easy-tables"],"gallerio_images":["gallerio"],"jschat_canal":["javascript-chat-for-wordpress"],"kament_plain":["sv-kament-comments-integration"],"k_note":["sticky-note"],"pa_ordinanze":["pafacile"],"pa_determine":["pafacile"],"jschat_messages":["javascript-chat-for-wordpress"],"js_vehiclemanager_vehicleimages":["js-vehicle-manager"],"wphostel_rooms":["hostel"],"egrower_user":["engagement-grower"],"egrower_time":["engagement-grower"],"ken_remixcomp_voting":["soundcloud-sound-competition"],"egrower_related":["engagement-grower"],"ken_remixcomp_users":["soundcloud-sound-competition"],"ken_remixcomp_fb_voters":["soundcloud-sound-competition"],"moos_oauth_refresh_tokens":["miniorange-oauth-20-server"],"ken_remixcomp_entrees":["soundcloud-sound-competition"],"egrower_keyword":["engagement-grower"],"egrower":["engagement-grower"],"pa_delibere":["pafacile"],"wpinstaroll_instapics_track_table":["wp-instaroll"],"ecpm_ddc_speed_total":["faster-with-stats"],"moos_oauth_clients":["miniorange-oauth-20-server"],"egcl_transactions":["egift-card-lite"],"ecpm_ddc_total":["faster-with-stats"],"egcl_certificates":["egift-card-lite"],"moos_oauth_authorized_apps":["miniorange-oauth-20-server"],"p_statistic":["wp-parsi-statistics"],"pa_albopretorio":["pafacile"],"pa_bandi":["pafacile"],"pac_user":["podamibe-appointment-calendar"],"js_vehiclemanager_countries":["js-vehicle-manager"],"wphostel_payments":["hostel"],"mlm_referral_commission":["binarymlm"],"jwp_a11y_checks_ngs":["jwp-a11y"],"jwp_a11y_checks":["jwp-a11y"],"jwp_a11y_bulk_ngs":["jwp-a11y"],"mjuh_logs":["mj-update-history"],"wpbph_ip_table":["purple-heart-rating-free"],"jwp_a11y_bulk":["jwp-a11y"],"wp_sudoku":["wp-sudoku-plus"],"mobile_tab":["mobile-tabs"],"mobile_tab_data":["mobile-tabs"],"mlm_product_price":["binarymlm"],"jwp_a11y_pages":["jwp-a11y"],"jswprediction_private_users":["joomsport-prediction"],"jswprediction_round":["joomsport-prediction"],"pay_with_venmo":["pay-with-venmo"],"jswprediction_round_matches":["joomsport-prediction"],"jswprediction_round_users":["joomsport-prediction"],"jswprediction_scorepredict":["joomsport-prediction"],"jswprediction_types":["joomsport-prediction"],"js_vehiclemanager_activitylog":["js-vehicle-manager"],"mlm_epins":["binarymlm"],"jwp_a11y_maintenance":["jwp-a11y"],"jwp_a11y_setup":["jwp-a11y"],"jwp_a11yc_versions":["jwp-a11y"],"js_vehiclemanager_cities":["js-vehicle-manager"],"jwp_a11yc_uas":["jwp-a11y"],"jwp_a11yc_settings":["jwp-a11y"],"js_vehiclemanager_config":["js-vehicle-manager"],"wpmuautomaticlinks":["wpmu-automatic-links"],"jwp_a11yc_results":["jwp-a11y"],"garagesale_stuff":["garagesale"],"jwp_a11yc_pages":["jwp-a11y"],"gcm_users":["wp-gcm"],"ef_index":["easy-flashcards"],"ef_cards":["easy-flashcards"],"js_vehiclemanager_conditions":["js-vehicle-manager"],"js_vehiclemanager_adexpiries":["js-vehicle-manager"],"parsi_sokhan":["parsi-sokhan"],"jswprediction_league":["joomsport-prediction"],"jswprediction_private_based":["joomsport-prediction"],"jswprediction_private_league":["joomsport-prediction"],"ef_card_design":["easy-flashcards"],"jwp_a11yc_maintenance":["jwp-a11y"],"jwp_a11yc_issuesbbs":["jwp-a11y"],"jwp_a11yc_data":["jwp-a11y"],"jwp_a11yc_checks":["jwp-a11y"],"jwp_a11yc_caches":["jwp-a11y"],"miwowidgets":["miwowidgets"],"mjuh_datas":["mj-update-history"],"jwp_a11yc_bresults":["jwp-a11y"],"jwp_a11yc_bchecks":["jwp-a11y"],"moos_oauth_public_keys":["miniorange-oauth-20-server"],"wphostel_emaillog":["hostel"],"jb7_availability_sync":["joebooking"],"komper_value":["komper"],"komper_product":["komper"],"komper_field":["komper"],"js_vehiclemanager_modelyears":["js-vehicle-manager"],"knowledgegraph":["knowledge-graph"],"js_vehiclemanager_states":["js-vehicle-manager"],"jb7_bookings":["joebooking"],"jb7_availability":["joebooking"],"js_vehiclemanager_system_errors":["js-vehicle-manager"],"jb7_calendars":["joebooking"],"jb7_conf":["joebooking"],"jb7_notification_templates":["joebooking"],"motorracingleague_result":["motor-racing-league"],"kindred_posts_visits":["kindred-posts"],"motorracingleague_race":["motor-racing-league"],"js_vehiclemanager_transmissions":["js-vehicle-manager"],"js_vehiclemanager_models":["js-vehicle-manager"],"jb7_audit":["joebooking"],"motorracingleague_participant":["motor-racing-league"],"js_vehiclemanager_fueltypes":["js-vehicle-manager"],"wpns_malware_scan_report":["miniorange-malware-protection"],"geopress":["geopress"],"ecards_stats":["ecards-lite"],"eci_results":["eclipse-crossword-integration"],"js_vehiclemanager_emailtemplates":["js-vehicle-manager"],"js_vehiclemanager_emailtemplates_config":["js-vehicle-manager"],"ecpm_ddc":["faster-with-stats"],"js_vehiclemanager_fieldsordering":["js-vehicle-manager"],"mpmf_messages":["multi-purpose-mail-form"],"kt_bseo_keywords":["keyword-tag-wrapper"],"mpmf_forms":["multi-purpose-mail-form"],"ecpm_ddc_dead_users":["faster-with-stats"],"mpmf_form_fields":["multi-purpose-mail-form"],"js_vehiclemanager_makes":["js-vehicle-manager"],"ecpm_ddc_speed":["faster-with-stats"],"js_vehiclemanager_mileages":["js-vehicle-manager"],"mpmf_field_options":["multi-purpose-mail-form"],"motorracingleague_prediction":["motor-racing-league"],"wpimager":["wpimager"],"moos_oauth_users":["miniorange-oauth-20-server"],"motorracingleague_championship":["motor-racing-league"],"oxi_div_social_icon":["team-showcase-ultimate"],"motorracingleague_entry":["motor-racing-league"],"oxi_div_category":["team-showcase-ultimate"],"wphostel_bookings":["hostel"],"moos_oauth_scopes":["miniorange-oauth-20-server"],"js_vehiclemanager_users":["js-vehicle-manager"],"ib_ctas":["inbound-brew"],"zws_antispam":["zws-wp-comments-anti-spam-hyperlink-blocker"],"ib_cta_post_linkages":["inbound-brew"],"wpyog_categories":["wpyog-documents"],"abadminprofiledetails":["appointment-buddy-online-appointment-booking-by-accrete"],"abappointmentmst":["appointment-buddy-online-appointment-booking-by-accrete"],"wcrw_warranty_requests":["wc-return-warrranty"],"ib_social_network_post_records":["inbound-brew"],"ez_subscribers":["eztexting-sms-notifications"],"ib_social_network_accounts":["inbound-brew"],"taxibooked":["fare-calculator"],"ib_cta_templates":["inbound-brew"],"gen_ustsbooking_paymentmethods":["wp-booking-manager"],"cms2cms_options":["cms2cms-joomla-k2-to-wp-website-migration","cms2cms-typo3-to-wp-converter-with-redirect","cms2cms-phpbb-to-bbpress-forum-converter","cms2cms-automated-mediawiki-to-wp-migration","cms2cms-umbraco-to-wp-migrator","cms2cms-automated-kunena-to-bbpress-switch","cms2cms-automated-tumblr-
|
|