Version Description
Download this release
Release Info
Developer | seedprod |
Plugin | Coming Soon Page & Maintenance Mode by SeedProd |
Version | 6.15.3 |
Comparing to | |
See all releases |
Code changes from version 6.13.1 to 6.15.3
- README.txt +1 -1
- app/bootstrap.php +90 -30
- app/functions-addons.php +8 -0
- app/functions-seedprod-gallery.php +2 -0
- app/functions-utils.php +92 -40
- app/load_controller.php +1 -1
- app/lpage.php +9 -2
- app/render-lp.php +7 -5
- app/routes.php +57 -14
- app/subscriber.php +2 -2
- app/theme-templates.php +2 -0
- coming-soon.php +10 -4
- languages/seedprod-lite.php +4901 -0
- public/css/admin-style.css +2 -2
- public/css/admin-style.css.map +1 -1
- public/css/admin-style.min.css +1 -1
- public/css/lightbox.min.css +1 -0
- public/css/seedprod-gallery-block.css +321 -0
- public/css/seedprod-gallery-block.min.css +64 -0
- public/css/tailwind-admin.min.css +25 -0
- public/css/tailwind-builder.min.css +51 -4
- public/css/tailwind.min.css +30 -6
- public/fontawesome/css/all.min.css +2 -2
- public/fontawesome/webfonts/fa-brands-400.eot +0 -0
- public/fontawesome/webfonts/fa-brands-400.svg +632 -422
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: maintenance mode, coming soon page, landing page, website builder, page bu
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 6.13.
|
9 |
Text Domain: coming-soon
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.13.1
|
9 |
Text Domain: coming-soon
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
app/bootstrap.php
CHANGED
@@ -19,8 +19,8 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
19 |
if ( strpos( $hook_suffix, 'seedprod_lite' ) !== false ) {
|
20 |
// remove conflicting scripts
|
21 |
wp_dequeue_script( 'googlesitekit_admin' );
|
22 |
-
wp_dequeue_script( 'tds_js_vue_files_last');
|
23 |
-
wp_dequeue_script( 'js_files_for_wp_admin');
|
24 |
|
25 |
$vue_app_folder = 'lite';
|
26 |
if ( strpos( $hook_suffix, 'seedprod_lite_builder' ) !== false || strpos( $hook_suffix, 'seedprod_lite_template' ) !== false ) {
|
@@ -52,6 +52,14 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
52 |
wp_set_script_translations( 'seedprod_vue_builder_app_2', 'coming-soon' );
|
53 |
wp_set_script_translations( 'seedprod_vue_builder_app_3', 'coming-soon' );
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
wp_enqueue_script( 'seedprod_vue_builder_app_1' );
|
56 |
wp_enqueue_script( 'seedprod_vue_builder_app_2' );
|
57 |
wp_enqueue_script( 'seedprod_vue_builder_app_3' );
|
@@ -86,6 +94,14 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
86 |
wp_set_script_translations( 'seedprod_vue_admin_app_2', 'coming-soon' );
|
87 |
wp_set_script_translations( 'seedprod_vue_admin_app_3', 'coming-soon' );
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
wp_enqueue_script( 'seedprod_vue_admin_app_1' );
|
90 |
wp_enqueue_script( 'seedprod_vue_admin_app_2' );
|
91 |
wp_enqueue_script( 'seedprod_vue_admin_app_3' );
|
@@ -96,10 +112,10 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
96 |
SEEDPROD_VERSION
|
97 |
);
|
98 |
// wp_enqueue_style(
|
99 |
-
//
|
100 |
-
//
|
101 |
-
//
|
102 |
-
//
|
103 |
// );
|
104 |
}
|
105 |
}
|
@@ -118,6 +134,13 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
118 |
SEEDPROD_VERSION
|
119 |
);
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
// Load WPForms CSS assets.
|
122 |
if ( function_exists( 'wpforms' ) ) {
|
123 |
add_filter( 'wpforms_global_assets', '__return_true' );
|
@@ -174,7 +197,10 @@ function seedprod_lite_admin_enqueue_scripts( $hook_suffix ) {
|
|
174 |
);
|
175 |
}
|
176 |
|
177 |
-
|
|
|
|
|
|
|
178 |
|
179 |
wp_enqueue_style(
|
180 |
'seedprod-fontawesome',
|
@@ -207,12 +233,12 @@ add_action( 'admin_enqueue_scripts', 'seedprod_lite_admin_enqueue_scripts', 9999
|
|
207 |
*/
|
208 |
function seedprod_lite_wp_enqueue_styles() {
|
209 |
// wp_register_style(
|
210 |
-
//
|
211 |
-
//
|
212 |
-
//
|
213 |
-
//
|
214 |
-
//
|
215 |
-
//wp_enqueue_style('seedprod-style');
|
216 |
|
217 |
$is_user_logged_in = is_user_logged_in();
|
218 |
if ( $is_user_logged_in ) {
|
@@ -231,7 +257,7 @@ function seedprod_lite_wp_enqueue_styles() {
|
|
231 |
SEEDPROD_VERSION
|
232 |
);
|
233 |
|
234 |
-
//wp_enqueue_style('seedprod-fontawesome');
|
235 |
}
|
236 |
add_action( 'init', 'seedprod_lite_wp_enqueue_styles' );
|
237 |
|
@@ -254,11 +280,11 @@ function seedprod_lite_plugin_action_links( $links, $file ) {
|
|
254 |
if ( $file == $plugin_file || 'seedprod-pro/seedprod-pro.php' == $file ) {
|
255 |
$settings_link = '<a href="admin.php?page=seedprod_lite">Settings</a>';
|
256 |
array_unshift( $links, $settings_link );
|
257 |
-
if( 'lite' === SEEDPROD_BUILD ){
|
258 |
-
|
259 |
font-weight: 600;">Upgrade to Pro</a>';
|
260 |
-
|
261 |
-
|
262 |
}
|
263 |
return $links;
|
264 |
}
|
@@ -290,25 +316,25 @@ function seedprod_lite_deregister_backend_styles() {
|
|
290 |
$wpforms_url = plugins_url( 'wpforms' );
|
291 |
|
292 |
foreach ( $wp_styles->queue as $handle ) {
|
293 |
-
//echo '<br> '.$handle;
|
294 |
if ( ! in_array( $handle, $s ) ) {
|
295 |
if ( strpos( $handle, 'seedprod' ) === false ) {
|
296 |
wp_dequeue_style( $handle );
|
297 |
wp_deregister_style( $handle );
|
298 |
-
//echo '<br>removed '.$handle;
|
299 |
}
|
300 |
}
|
301 |
}
|
302 |
|
303 |
// foreach ($wp_styles->registered as $handle => $asset) {
|
304 |
-
//
|
305 |
-
//
|
306 |
-
//
|
307 |
-
//
|
308 |
-
//
|
309 |
-
//
|
310 |
-
//
|
311 |
-
//
|
312 |
// }
|
313 |
|
314 |
// remove scripts
|
@@ -318,14 +344,14 @@ function seedprod_lite_deregister_backend_styles() {
|
|
318 |
|
319 |
global $wp_scripts;
|
320 |
foreach ( $wp_scripts->queue as $handle ) :
|
321 |
-
//echo '<br>removed '.$handle;
|
322 |
|
323 |
if ( ! empty( $d ) ) {
|
324 |
if ( ! in_array( $handle, $d ) ) {
|
325 |
if ( strpos( $handle, 'seedprod' ) === false ) {
|
326 |
wp_dequeue_script( $handle );
|
327 |
wp_deregister_script( $handle );
|
328 |
-
//echo '<br>removed '.$handle;
|
329 |
}
|
330 |
}
|
331 |
}
|
@@ -418,4 +444,38 @@ add_filter( 'update_footer', 'seedprod_lite_change_footer_version', 9999 );
|
|
418 |
|
419 |
|
420 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
// nonce covered by menu capability check.
|
19 |
if ( strpos( $hook_suffix, 'seedprod_lite' ) !== false ) {
|
20 |
// remove conflicting scripts
|
21 |
wp_dequeue_script( 'googlesitekit_admin' );
|
22 |
+
wp_dequeue_script( 'tds_js_vue_files_last' );
|
23 |
+
wp_dequeue_script( 'js_files_for_wp_admin' );
|
24 |
|
25 |
$vue_app_folder = 'lite';
|
26 |
if ( strpos( $hook_suffix, 'seedprod_lite_builder' ) !== false || strpos( $hook_suffix, 'seedprod_lite_template' ) !== false ) {
|
52 |
wp_set_script_translations( 'seedprod_vue_builder_app_2', 'coming-soon' );
|
53 |
wp_set_script_translations( 'seedprod_vue_builder_app_3', 'coming-soon' );
|
54 |
|
55 |
+
wp_localize_script(
|
56 |
+
'seedprod_vue_builder_app_1',
|
57 |
+
'seedprodProTranslations',
|
58 |
+
array(
|
59 |
+
'translations_pro' => seedprod_lite_get_jed_locale_data( 'coming-soon' ),
|
60 |
+
)
|
61 |
+
);
|
62 |
+
|
63 |
wp_enqueue_script( 'seedprod_vue_builder_app_1' );
|
64 |
wp_enqueue_script( 'seedprod_vue_builder_app_2' );
|
65 |
wp_enqueue_script( 'seedprod_vue_builder_app_3' );
|
94 |
wp_set_script_translations( 'seedprod_vue_admin_app_2', 'coming-soon' );
|
95 |
wp_set_script_translations( 'seedprod_vue_admin_app_3', 'coming-soon' );
|
96 |
|
97 |
+
wp_localize_script(
|
98 |
+
'seedprod_vue_admin_app_1',
|
99 |
+
'seedprodProTranslations',
|
100 |
+
array(
|
101 |
+
'translations_pro' => seedprod_lite_get_jed_locale_data( 'coming-soon' ),
|
102 |
+
)
|
103 |
+
);
|
104 |
+
|
105 |
wp_enqueue_script( 'seedprod_vue_admin_app_1' );
|
106 |
wp_enqueue_script( 'seedprod_vue_admin_app_2' );
|
107 |
wp_enqueue_script( 'seedprod_vue_admin_app_3' );
|
112 |
SEEDPROD_VERSION
|
113 |
);
|
114 |
// wp_enqueue_style(
|
115 |
+
// 'seedprod_vue_admin_app_css_2',
|
116 |
+
// SEEDPROD_PLUGIN_URL . 'public/'.$vue_app_folder.'/vue-backend/css/admin.css',
|
117 |
+
// false,
|
118 |
+
// SEEDPROD_VERSION
|
119 |
// );
|
120 |
}
|
121 |
}
|
134 |
SEEDPROD_VERSION
|
135 |
);
|
136 |
|
137 |
+
wp_enqueue_style(
|
138 |
+
'seedprod-builder-lightbox-index',
|
139 |
+
SEEDPROD_PLUGIN_URL . 'public/css/seedprod-gallery-block.min.css',
|
140 |
+
false,
|
141 |
+
SEEDPROD_VERSION
|
142 |
+
);
|
143 |
+
|
144 |
// Load WPForms CSS assets.
|
145 |
if ( function_exists( 'wpforms' ) ) {
|
146 |
add_filter( 'wpforms_global_assets', '__return_true' );
|
197 |
);
|
198 |
}
|
199 |
|
200 |
+
$allow_google_fonts = apply_filters( 'seedprod_allow_google_fonts', true );
|
201 |
+
if( $allow_google_fonts ) {
|
202 |
+
wp_enqueue_style('seedprod-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700&display=swap', false); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
203 |
+
}
|
204 |
|
205 |
wp_enqueue_style(
|
206 |
'seedprod-fontawesome',
|
233 |
*/
|
234 |
function seedprod_lite_wp_enqueue_styles() {
|
235 |
// wp_register_style(
|
236 |
+
// 'seedprod-style',
|
237 |
+
// SEEDPROD_PLUGIN_URL . 'public/css/seedprod-style.min.css',
|
238 |
+
// false,
|
239 |
+
// SEEDPROD_VERSION
|
240 |
+
// );
|
241 |
+
// wp_enqueue_style('seedprod-style');
|
242 |
|
243 |
$is_user_logged_in = is_user_logged_in();
|
244 |
if ( $is_user_logged_in ) {
|
257 |
SEEDPROD_VERSION
|
258 |
);
|
259 |
|
260 |
+
// wp_enqueue_style('seedprod-fontawesome');
|
261 |
}
|
262 |
add_action( 'init', 'seedprod_lite_wp_enqueue_styles' );
|
263 |
|
280 |
if ( $file == $plugin_file || 'seedprod-pro/seedprod-pro.php' == $file ) {
|
281 |
$settings_link = '<a href="admin.php?page=seedprod_lite">Settings</a>';
|
282 |
array_unshift( $links, $settings_link );
|
283 |
+
if ( 'lite' === SEEDPROD_BUILD ) {
|
284 |
+
$upgrade_link = '<a href="https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-actions-upgrade-link" target="_blank" style="color: #1da867;
|
285 |
font-weight: 600;">Upgrade to Pro</a>';
|
286 |
+
array_unshift( $links, $upgrade_link );
|
287 |
+
}
|
288 |
}
|
289 |
return $links;
|
290 |
}
|
316 |
$wpforms_url = plugins_url( 'wpforms' );
|
317 |
|
318 |
foreach ( $wp_styles->queue as $handle ) {
|
319 |
+
// echo '<br> '.$handle;
|
320 |
if ( ! in_array( $handle, $s ) ) {
|
321 |
if ( strpos( $handle, 'seedprod' ) === false ) {
|
322 |
wp_dequeue_style( $handle );
|
323 |
wp_deregister_style( $handle );
|
324 |
+
// echo '<br>removed '.$handle;
|
325 |
}
|
326 |
}
|
327 |
}
|
328 |
|
329 |
// foreach ($wp_styles->registered as $handle => $asset) {
|
330 |
+
// echo '<br> '.$handle;
|
331 |
+
// if (!in_array($handle, $s)) {
|
332 |
+
// if (strpos($handle, 'seedprod') === false && strpos($asset->src, $wpforms_url) === false) {
|
333 |
+
// wp_dequeue_style($handle);
|
334 |
+
// wp_deregister_style($handle);
|
335 |
+
// echo '<br>removed '.$handle;
|
336 |
+
// }
|
337 |
+
// }
|
338 |
// }
|
339 |
|
340 |
// remove scripts
|
344 |
|
345 |
global $wp_scripts;
|
346 |
foreach ( $wp_scripts->queue as $handle ) :
|
347 |
+
// echo '<br>removed '.$handle;
|
348 |
|
349 |
if ( ! empty( $d ) ) {
|
350 |
if ( ! in_array( $handle, $d ) ) {
|
351 |
if ( strpos( $handle, 'seedprod' ) === false ) {
|
352 |
wp_dequeue_script( $handle );
|
353 |
wp_deregister_script( $handle );
|
354 |
+
// echo '<br>removed '.$handle;
|
355 |
}
|
356 |
}
|
357 |
}
|
444 |
|
445 |
|
446 |
|
447 |
+
/**
|
448 |
+
* Returns Jed-formatted localization data. Added for backwards-compatibility.
|
449 |
+
*
|
450 |
+
* @param string $domain Translation domain.
|
451 |
+
* @return array The information of the locale.
|
452 |
+
*/
|
453 |
+
function seedprod_lite_get_jed_locale_data( $domain ) {
|
454 |
+
$translations = get_translations_for_domain( $domain );
|
455 |
+
|
456 |
+
$locale = array(
|
457 |
+
'' => array(
|
458 |
+
'domain' => $domain,
|
459 |
+
'lang' => is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(),
|
460 |
+
),
|
461 |
+
);
|
462 |
+
|
463 |
+
if ( ! empty( $translations->headers['Plural-Forms'] ) ) {
|
464 |
+
$locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
|
465 |
+
}
|
466 |
+
|
467 |
+
foreach ( $translations->entries as $msgid => $entry ) {
|
468 |
+
$locale[ $msgid ] = $entry->translations;
|
469 |
+
}
|
470 |
+
|
471 |
+
// If any of the translated strings incorrectly contains HTML line breaks, we need to return or else the admin is no longer accessible.
|
472 |
+
// https://github.com/awesomemotive/aioseo/issues/2074
|
473 |
+
$json = wp_json_encode( $locale );
|
474 |
+
if ( preg_match( '/<br[\s\/\\\\]*>/', $json ) ) {
|
475 |
+
return array();
|
476 |
+
}
|
477 |
+
|
478 |
+
return $locale;
|
479 |
+
}
|
480 |
+
|
481 |
// nonce covered by menu capability check.
|
app/functions-addons.php
CHANGED
@@ -63,6 +63,12 @@ function seedprod_lite_install_addon() {
|
|
63 |
$installer = new Plugin_Upgrader( new SeedProd_Skin() );
|
64 |
$installer->install( $download_url );
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
// Flush the cache and return the newly installed plugin basename.
|
67 |
wp_cache_flush();
|
68 |
if ( $installer->plugin_info() ) {
|
@@ -70,6 +76,8 @@ function seedprod_lite_install_addon() {
|
|
70 |
echo wp_json_encode( array( 'plugin' => $plugin_basename ) );
|
71 |
wp_die();
|
72 |
}
|
|
|
|
|
73 |
}
|
74 |
|
75 |
// Send back a response.
|
63 |
$installer = new Plugin_Upgrader( new SeedProd_Skin() );
|
64 |
$installer->install( $download_url );
|
65 |
|
66 |
+
// Set referrer if one exists
|
67 |
+
if(!empty($_POST['referrer'])){
|
68 |
+
$referrer = sanitize_text_field( wp_unslash( $_POST['referrer'] ) );
|
69 |
+
update_option('optinmonster_referred_by', $referrer );
|
70 |
+
}
|
71 |
+
|
72 |
// Flush the cache and return the newly installed plugin basename.
|
73 |
wp_cache_flush();
|
74 |
if ( $installer->plugin_info() ) {
|
76 |
echo wp_json_encode( array( 'plugin' => $plugin_basename ) );
|
77 |
wp_die();
|
78 |
}
|
79 |
+
|
80 |
+
|
81 |
}
|
82 |
|
83 |
// Send back a response.
|
app/functions-seedprod-gallery.php
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
app/functions-utils.php
CHANGED
@@ -58,14 +58,14 @@ function seedprod_lite_get_roles() {
|
|
58 |
|
59 |
|
60 |
/**
|
61 |
-
* Get Enviroment
|
62 |
-
*/
|
63 |
function seedprod_lite_is_localhost() {
|
64 |
// $localhost = array('127.0.0.1','::1');
|
65 |
|
66 |
// $is_localhost = false;
|
67 |
// if (in_array($_SERVER['REMOTE_ADDR'], $localhost) || !empty($_GET['debug'])) {
|
68 |
-
//
|
69 |
// }
|
70 |
$is_localhost = false;
|
71 |
if ( defined( 'SEEDPROD_LOCAL_JS' ) ) {
|
@@ -107,8 +107,8 @@ function seedprod_lite_youtube_id_from_url( $url ) {
|
|
107 |
}
|
108 |
|
109 |
/**
|
110 |
-
* Entry Options
|
111 |
-
*/
|
112 |
function seedprod_lite_block_options() {
|
113 |
$block_options = array(
|
114 |
array(
|
@@ -140,7 +140,7 @@ function seedprod_lite_block_options() {
|
|
140 |
</svg>
|
141 |
',
|
142 |
),
|
143 |
-
//array('name'=>__('Sub Headline','coming-soon'),'is_pro'=> false,'cat'=>'common','type'=>'sub-header', 'id'=>10, 'icon' => 'fas fa-heading'),
|
144 |
array(
|
145 |
'name' => __( 'Text', 'coming-soon' ),
|
146 |
'is_pro' => false,
|
@@ -157,6 +157,7 @@ function seedprod_lite_block_options() {
|
|
157 |
'id' => 12,
|
158 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current"><g fill="none"><path d="M0 0h24v24H0V0z"/><path d="M0 0h24v24H0V0z" opacity=".87"/></g><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></svg>',
|
159 |
),
|
|
|
160 |
array(
|
161 |
'name' => __( 'Button', 'coming-soon' ),
|
162 |
'is_pro' => false,
|
@@ -228,6 +229,15 @@ function seedprod_lite_block_options() {
|
|
228 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current "><path d="M0 0h24v24H0V0z" fill="none"/><path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z"/></svg>',
|
229 |
),
|
230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
array(
|
232 |
'name' => __( 'Countdown', 'coming-soon' ),
|
233 |
'is_pro' => true,
|
@@ -253,7 +263,7 @@ function seedprod_lite_block_options() {
|
|
253 |
'id' => 19,
|
254 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current "><path d="M0 0h24v24H0V0z" fill="none"/><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></svg>',
|
255 |
),
|
256 |
-
//array('name'=>__('Form','coming-soon'),'is_pro'=> false ,'cat'=>'adv','type'=>'form', 'id'=>25, 'icon' => 'far fa-envelope'),
|
257 |
array(
|
258 |
'name' => __( 'Animated Headline', 'coming-soon' ),
|
259 |
'is_pro' => true,
|
@@ -511,14 +521,39 @@ function seedprod_lite_block_options() {
|
|
511 |
),
|
512 |
|
513 |
array(
|
514 |
-
'name' => __( '
|
515 |
-
'is_pro' =>
|
516 |
'cat' => 'adv',
|
517 |
-
'type' => '
|
518 |
-
'id' =>
|
519 |
'icon' => '
|
520 |
-
|
|
|
|
|
521 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
array(
|
523 |
'name' => __( 'Add To Cart', 'coming-soon' ),
|
524 |
'is_pro' => true,
|
@@ -638,7 +673,17 @@ function seedprod_lite_block_options() {
|
|
638 |
<path clip-rule="evenodd" d="m1 27.5v-25c0-.39782.15804-.77936.43934-1.06066s.66284-.43934 1.06066-.43934h25c.3978 0 .7794.15804 1.0607.43934s.4393.66284.4393 1.06066v25c0 .3978-.158.7794-.4393 1.0607s-.6629.4393-1.0607.4393h-25c-.39782 0-.77936-.158-1.06066-.4393s-.43934-.6629-.43934-1.0607zm26-.5v-19h-24v19zm-24-21v-3h24v3zm12.67 5.11h7.66c.176 0 .3449.0692.4703.1927.1253.1235.1971.2913.1997.4673 0 .1777-.0706.3481-.1962.4738-.1257.1256-.2961.1962-.4738.1962h-7.66c-.1777 0-.3481-.0706-.4738-.1962-.1256-.1257-.1962-.2961-.1962-.4738.0026-.176.0744-.3438.1997-.4673.1254-.1235.2943-.1927.4703-.1927zm7.66 2.66h-7.66c-.1777 0-.3481.0706-.4738.1962-.1256.1257-.1962.2961-.1962.4738s.0706.3481.1962.4738c.1257.1256.2961.1962.4738.1962h7.66c.1777 0 .3481-.0706.4738-.1962.1256-.1257.1962-.2961.1962-.4738s-.0706-.3481-.1962-.4738c-.1257-.1256-.2961-.1962-.4738-.1962zm-10.72-3.66h-6.21999c-.05159-.0014-.10292.0078-.15086.0269s-.09148.0478-.12797.0843c-.0365.0365-.06517.08-.08428.1279-.01912.048-.02826.0993-.02689.1509v5.11c0 .1034.04109.2026.11423.2758.07314.0731.17234.1142.27577.1142h6.21999c.1034 0 .2026-.0411.2758-.1142.0731-.0732.1142-.1724.1142-.2758v-5.11c.0014-.0516-.0078-.1029-.0269-.1509-.0191-.0479-.0478-.0914-.0843-.1279-.0364-.0365-.08-.0652-.1279-.0843-.048-.0191-.0993-.0283-.1509-.0269zm-5.82999.78h5.43999v.63l-1.94 2-1.59999-1.61-1.9 2.56zm.39 4.32 1.59-2.15 1.51999 1.53 1.94-2v2.58zm16.15999 4.79h-7.66c-.1777 0-.3481.0706-.4738.1962-.1256.1257-.1962.2961-.1962.4738.0026.176.0744.3438.1997.4673.1254.1235.2943.1927.4703.1927h7.66c.176 0 .3449-.0692.4703-.1927.1253-.1235.1971-.2913.1997-.4673 0-.088-.0173-.1751-.051-.2564s-.083-.1551-.1452-.2174c-.0623-.0622-.1361-.1115-.2174-.1452s-.1684-.051-.2564-.051zm-7.66 2.67h7.66c.176 0 .3449.0692.4703.1927.1253.1235.1971.2913.1997.4673 0 .1777-.0706.3481-.1962.4738-.1257.1256-.2961.1962-.4738.1962h-7.66c-.1777 0-.3481-.0706-.4738-.1962-.1256-.1257-.1962-.2961-.1962-.4738.0026-.176.0744-.3438.1997-.4673.1254-.1235.2943-.1927.4703-.1927zm-9.27999-3.67h6.21999c.1034 0 .2026.0411.2758.1142.0731.0732.1142.1724.1142.2758v5.11c.0014.0516-.0078.1029-.0269.1509-.0191.0479-.0478.0914-.0843.1279-.0364.0365-.08.0652-.1279.0843-.048.0191-.0993.0283-.1509.0269h-6.21999c-.05159.0014-.10292-.0078-.15086-.0269s-.09148-.0478-.12797-.0843c-.0365-.0365-.06517-.08-.08428-.1279-.01912-.048-.02826-.0993-.02689-.1509v-5.11c0-.1034.04109-.2026.11423-.2758.07314-.0731.17234-.1142.27577-.1142zm5.82999.79h-5.43999v3.57l1.9-2.56 1.59999 1.61 1.94-2zm-3.45999 2.21-1.59 2.11 5.04999.01v-2.59l-1.94 2z" fill-rule="evenodd"/></svg>',
|
639 |
),
|
640 |
|
641 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
642 |
|
643 |
array(
|
644 |
'name' => __( 'Post Title', 'coming-soon' ),
|
@@ -750,13 +795,13 @@ function seedprod_lite_block_options() {
|
|
750 |
),
|
751 |
|
752 |
// array(
|
753 |
-
//
|
754 |
-
//
|
755 |
-
//
|
756 |
-
//
|
757 |
-
//
|
758 |
-
//
|
759 |
-
//
|
760 |
// ),
|
761 |
|
762 |
array(
|
@@ -784,6 +829,8 @@ function seedprod_lite_block_options() {
|
|
784 |
',
|
785 |
),
|
786 |
|
|
|
|
|
787 |
array(
|
788 |
'name' => __( 'Menu Cart', 'coming-soon' ),
|
789 |
'is_pro' => true,
|
@@ -959,7 +1006,7 @@ function seedprod_lite_block_options() {
|
|
959 |
|
960 |
global $wp_widget_factory;
|
961 |
$all_widgets = $wp_widget_factory->widgets;
|
962 |
-
//print_r($all_widgets);
|
963 |
|
964 |
$wordpress_widgets = array();
|
965 |
|
@@ -979,7 +1026,7 @@ function seedprod_lite_block_options() {
|
|
979 |
}
|
980 |
}
|
981 |
|
982 |
-
//print_r($wordpress_widgets);
|
983 |
// filter out some options
|
984 |
$theme_enabled = get_option( 'seedprod_theme_enabled' );
|
985 |
$theme_builder = seedprod_lite_cu( 'themebuilder' );
|
@@ -1002,8 +1049,8 @@ function seedprod_lite_block_options() {
|
|
1002 |
}
|
1003 |
|
1004 |
/**
|
1005 |
-
* Get times
|
1006 |
-
*/
|
1007 |
function seedprod_lite_get_default_timezone() {
|
1008 |
$general_settings = get_option( 'seedprod_settings' );
|
1009 |
$timezone = 'UTC';
|
@@ -1021,8 +1068,8 @@ function seedprod_lite_get_default_timezone() {
|
|
1021 |
|
1022 |
|
1023 |
/**
|
1024 |
-
* Get times
|
1025 |
-
*/
|
1026 |
function seedprod_lite_get_times() {
|
1027 |
$times = array();
|
1028 |
$times[] = array(
|
@@ -1226,8 +1273,8 @@ function seedprod_lite_get_times() {
|
|
1226 |
}
|
1227 |
|
1228 |
/**
|
1229 |
-
* Check per
|
1230 |
-
*/
|
1231 |
function seedprod_lite_get_api_key() {
|
1232 |
$seedprod_api_key = '';
|
1233 |
|
@@ -1243,8 +1290,8 @@ function seedprod_lite_get_api_key() {
|
|
1243 |
}
|
1244 |
|
1245 |
/**
|
1246 |
-
* Get timezones
|
1247 |
-
*/
|
1248 |
function seedprod_lite_get_timezones() {
|
1249 |
// timezones
|
1250 |
$zonen = array();
|
@@ -1292,7 +1339,7 @@ function seedprod_lite_get_timezones() {
|
|
1292 |
// Continent optgroup
|
1293 |
if ( ! isset( $zonen[ $key - 1 ] ) || $zonen[ $key - 1 ]['continent'] !== $zone['continent'] ) {
|
1294 |
$label = $zone['t_continent'];
|
1295 |
-
|
1296 |
}
|
1297 |
|
1298 |
// Add the city to the value
|
@@ -1332,8 +1379,8 @@ function seedprod_lite_get_timezones() {
|
|
1332 |
}
|
1333 |
|
1334 |
/**
|
1335 |
-
* Add to array if value does not exist
|
1336 |
-
*/
|
1337 |
function seedprod_lite_array_add( $arr, $key, $value ) {
|
1338 |
if ( ! array_key_exists( $key, $arr ) ) {
|
1339 |
$arr[ $key ] = $value;
|
@@ -1342,8 +1389,8 @@ function seedprod_lite_array_add( $arr, $key, $value ) {
|
|
1342 |
}
|
1343 |
|
1344 |
/**
|
1345 |
-
* Check per
|
1346 |
-
*/
|
1347 |
function seedprod_lite_cu( $rper = null ) {
|
1348 |
if ( ! empty( $rper ) ) {
|
1349 |
$uper = explode( ',', get_option( 'seedprod_per' ) );
|
@@ -1369,7 +1416,12 @@ function seedprod_lite_cu( $rper = null ) {
|
|
1369 |
* @return string SeedProd Upgrade Link.
|
1370 |
*/
|
1371 |
function seedprod_lite_upgrade_link( $medium = 'link' ) {
|
1372 |
-
|
|
|
|
|
|
|
|
|
|
|
1373 |
}
|
1374 |
|
1375 |
/**
|
@@ -1481,8 +1533,8 @@ function seedprod_lite_find_fonts_in_doc( $some_array ) {
|
|
1481 |
|
1482 |
// Not at end: show key only
|
1483 |
// if ( $iterator->callHasChildren() ) {
|
1484 |
-
//
|
1485 |
-
//
|
1486 |
// }
|
1487 |
|
1488 |
if ( ! $iterator->callHasChildren() ) {
|
@@ -1490,7 +1542,7 @@ function seedprod_lite_find_fonts_in_doc( $some_array ) {
|
|
1490 |
$p[] = $iterator->getSubIterator( $i )->key();
|
1491 |
}
|
1492 |
$path = implode( ',', $p );
|
1493 |
-
//echo "$indent$k : $v : path -> $path<br>";
|
1494 |
// get font
|
1495 |
if ( stripos( $k, 'font' ) !== false && stripos( $k, 'variant' ) === false && ! empty( $v ) && strpos( $v, ',' ) === false && stripos( $k, 'fontSize' ) === false ) {
|
1496 |
$load_fonts[] = array(
|
@@ -1587,7 +1639,7 @@ function seedprod_lite_wp_post_revision_fields( $fields, $post ) {
|
|
1587 |
}
|
1588 |
}
|
1589 |
|
1590 |
-
//add_filter( 'get_edit_post_link', 'seedprod_lite_filter_get_edit_post_link', 11, 3 );
|
1591 |
|
1592 |
/**
|
1593 |
* Get edit post link.
|
58 |
|
59 |
|
60 |
/**
|
61 |
+
* Get Enviroment
|
62 |
+
*/
|
63 |
function seedprod_lite_is_localhost() {
|
64 |
// $localhost = array('127.0.0.1','::1');
|
65 |
|
66 |
// $is_localhost = false;
|
67 |
// if (in_array($_SERVER['REMOTE_ADDR'], $localhost) || !empty($_GET['debug'])) {
|
68 |
+
// $is_localhost = true;
|
69 |
// }
|
70 |
$is_localhost = false;
|
71 |
if ( defined( 'SEEDPROD_LOCAL_JS' ) ) {
|
107 |
}
|
108 |
|
109 |
/**
|
110 |
+
* Entry Options
|
111 |
+
*/
|
112 |
function seedprod_lite_block_options() {
|
113 |
$block_options = array(
|
114 |
array(
|
140 |
</svg>
|
141 |
',
|
142 |
),
|
143 |
+
// array('name'=>__('Sub Headline','coming-soon'),'is_pro'=> false,'cat'=>'common','type'=>'sub-header', 'id'=>10, 'icon' => 'fas fa-heading'),
|
144 |
array(
|
145 |
'name' => __( 'Text', 'coming-soon' ),
|
146 |
'is_pro' => false,
|
157 |
'id' => 12,
|
158 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current"><g fill="none"><path d="M0 0h24v24H0V0z"/><path d="M0 0h24v24H0V0z" opacity=".87"/></g><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></svg>',
|
159 |
),
|
160 |
+
|
161 |
array(
|
162 |
'name' => __( 'Button', 'coming-soon' ),
|
163 |
'is_pro' => false,
|
229 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current "><path d="M0 0h24v24H0V0z" fill="none"/><path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z"/></svg>',
|
230 |
),
|
231 |
|
232 |
+
array(
|
233 |
+
'name' => __( 'Tabs', 'coming-soon' ),
|
234 |
+
'is_pro' => true,
|
235 |
+
'cat' => 'adv',
|
236 |
+
'type' => 'tabbedlayout',
|
237 |
+
'id' => 26,
|
238 |
+
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current "><path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 1H27.5C27.8978 1 28.2794 1.15804 28.5607 1.43934C28.842 1.72064 29 2.10218 29 2.5V27.5C29 27.8978 28.842 28.2794 28.5607 28.5607C28.2794 28.842 27.8978 29 27.5 29H2.5C2.10218 29 1.72064 28.842 1.43934 28.5607C1.15804 28.2794 1 27.8978 1 27.5V2.5C1 2.10218 1.15804 1.72064 1.43934 1.43934C1.72064 1.15804 2.10218 1 2.5 1ZM19 3H13V6H19V3ZM3 27H27V8H12C11.7348 8 11.4804 7.89464 11.2929 7.70711C11.1054 7.51957 11 7.26522 11 7V3H3V27ZM21 6H27V3H21V6ZM6.66997 17H17.33C17.4242 16.9884 17.5197 16.997 17.6103 17.0251C17.7009 17.0533 17.7845 17.1003 17.8556 17.1632C17.9267 17.226 17.9836 17.3033 18.0226 17.3898C18.0615 17.4763 18.0817 17.5701 18.0817 17.665C18.0817 17.7599 18.0615 17.8537 18.0226 17.9402C17.9836 18.0267 17.9267 18.1039 17.8556 18.1668C17.7845 18.2297 17.7009 18.2767 17.6103 18.3049C17.5197 18.333 17.4242 18.3416 17.33 18.33H6.66997C6.5758 18.3416 6.48024 18.333 6.38963 18.3049C6.29901 18.2767 6.2154 18.2297 6.14434 18.1668C6.07327 18.1039 6.01637 18.0267 5.9774 17.9402C5.93843 17.8537 5.91827 17.7599 5.91827 17.665C5.91827 17.5701 5.93843 17.4763 5.9774 17.3898C6.01637 17.3033 6.07327 17.226 6.14434 17.1632C6.2154 17.1003 6.29901 17.0533 6.38963 17.0251C6.48024 16.997 6.5758 16.9884 6.66997 17ZM6 13.67C6.00263 13.846 6.07437 14.0138 6.19974 14.1373C6.32511 14.2608 6.49402 14.33 6.67 14.33H21.33C21.4242 14.3416 21.5197 14.333 21.6103 14.3049C21.701 14.2767 21.7846 14.2297 21.8556 14.1668C21.9267 14.1039 21.9836 14.0267 22.0226 13.9402C22.0615 13.8537 22.0817 13.7599 22.0817 13.665C22.0817 13.5701 22.0615 13.4763 22.0226 13.3898C21.9836 13.3033 21.9267 13.226 21.8556 13.1632C21.7846 13.1003 21.701 13.0533 21.6103 13.0251C21.5197 12.997 21.4242 12.9884 21.33 13H6.67C6.4923 13 6.32189 13.0706 6.19624 13.1962C6.07059 13.3219 6 13.4923 6 13.67ZM6.66997 21H16.33C16.4242 20.9884 16.5197 20.997 16.6103 21.0251C16.7009 21.0533 16.7845 21.1003 16.8556 21.1632C16.9267 21.226 16.9836 21.3033 17.0226 21.3898C17.0615 21.4763 17.0817 21.5701 17.0817 21.665C17.0817 21.7599 17.0615 21.8537 17.0226 21.9402C16.9836 22.0267 16.9267 22.1039 16.8556 22.1668C16.7845 22.2297 16.7009 22.2767 16.6103 22.3049C16.5197 22.333 16.4242 22.3416 16.33 22.33H6.66997C6.5758 22.3416 6.48024 22.333 6.38963 22.3049C6.29901 22.2767 6.2154 22.2297 6.14434 22.1668C6.07327 22.1039 6.01637 22.0267 5.9774 21.9402C5.93843 21.8537 5.91827 21.7599 5.91827 21.665C5.91827 21.5701 5.93843 21.4763 5.9774 21.3898C6.01637 21.3033 6.07327 21.226 6.14434 21.1632C6.2154 21.1003 6.29901 21.0533 6.38963 21.0251C6.48024 20.997 6.5758 20.9884 6.66997 21Z"/></svg>',
|
239 |
+
),
|
240 |
+
|
241 |
array(
|
242 |
'name' => __( 'Countdown', 'coming-soon' ),
|
243 |
'is_pro' => true,
|
263 |
'id' => 19,
|
264 |
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="sp-w-6 sp-fill-current "><path d="M0 0h24v24H0V0z" fill="none"/><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></svg>',
|
265 |
),
|
266 |
+
// array('name'=>__('Form','coming-soon'),'is_pro'=> false ,'cat'=>'adv','type'=>'form', 'id'=>25, 'icon' => 'far fa-envelope'),
|
267 |
array(
|
268 |
'name' => __( 'Animated Headline', 'coming-soon' ),
|
269 |
'is_pro' => true,
|
521 |
),
|
522 |
|
523 |
array(
|
524 |
+
'name' => __( 'Advanced Gallery', 'coming-soon' ),
|
525 |
+
'is_pro' => true,
|
526 |
'cat' => 'adv',
|
527 |
+
'type' => 'seedprodgallery',
|
528 |
+
'id' => 49,
|
529 |
'icon' => '
|
530 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" class="sp-w-6 sp-fill-current"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 2.5V27.5C1 27.8978 1.15804 28.2794 1.43934 28.5607C1.72064 28.842 2.10218 29 2.5 29H27.5C27.8978 29 28.2794 28.842 28.5607 28.5607C28.842 28.2794 29 27.8978 29 27.5V2.5C29 2.10218 28.842 1.72064 28.5607 1.43934C28.2794 1.15804 27.8978 1 27.5 1H2.5C2.10218 1 1.72064 1.15804 1.43934 1.43934C1.15804 1.72064 1 2.10218 1 2.5ZM27 27H3V3H27V27ZM23.5 6.5V9.5H6.5V6.5H23.5ZM24 5H6C5.73478 5 5.48043 5.10536 5.29289 5.29289C5.10536 5.48043 5 5.73478 5 6V10C5 10.2652 5.10536 10.5196 5.29289 10.7071C5.48043 10.8946 5.73478 11 6 11H24C24.2652 11 24.5196 10.8946 24.7071 10.7071C24.8946 10.5196 25 10.2652 25 10V6C25 5.73478 24.8946 5.48043 24.7071 5.29289C24.5196 5.10536 24.2652 5 24 5ZM14.86 14.66C9.89997 14 9.65997 14 9.65997 14C9.65997 14 9.83997 15.66 10.27 19.23C10.4311 20.7189 11.1157 22.1021 12.2018 23.1332C13.2878 24.1643 14.7048 24.7763 16.2 24.86L17.25 24.91C17.25 24.91 17.35 21.09 16.37 19.29C15.39 17.49 12.81 17.18 12.81 17.18C13.568 17.7485 14.2414 18.4219 14.81 19.18C15.7 20.37 15.6 23.09 15.6 23.09C14.6622 22.8322 13.816 22.3156 13.1582 21.5994C12.5003 20.8832 12.0573 19.9962 11.88 19.04C11.56 16.72 11.5 15.86 11.5 15.86C11.5 15.86 11.2 15.8 14.65 16.26C18.1 16.72 18.96 20.8 18.49 24.72C21.53 20.34 19.82 15.32 14.86 14.66Z" />
|
531 |
+
</svg>
|
532 |
+
',
|
533 |
),
|
534 |
+
|
535 |
+
array(
|
536 |
+
'name' => __( 'Gallery', 'coming-soon' ),
|
537 |
+
'is_pro' => true,
|
538 |
+
'cat' => 'adv',
|
539 |
+
'type' => 'seedprodbasicgallery',
|
540 |
+
'id' => 50,
|
541 |
+
'icon' => '
|
542 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" class="sp-w-6 sp-fill-current"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 2.5V27.5C1 27.8978 1.15804 28.2794 1.43934 28.5607C1.72064 28.842 2.10218 29 2.5 29H27.5C27.8978 29 28.2794 28.842 28.5607 28.5607C28.842 28.2794 29 27.8978 29 27.5V2.5C29 2.10218 28.842 1.72064 28.5607 1.43934C28.2794 1.15804 27.8978 1 27.5 1H2.5C2.10218 1 1.72064 1.15804 1.43934 1.43934C1.15804 1.72064 1 2.10218 1 2.5ZM27 27H3V3H27V27ZM23.5 6.5V9.5H6.5V6.5H23.5ZM24 5H6C5.73478 5 5.48043 5.10536 5.29289 5.29289C5.10536 5.48043 5 5.73478 5 6V10C5 10.2652 5.10536 10.5196 5.29289 10.7071C5.48043 10.8946 5.73478 11 6 11H24C24.2652 11 24.5196 10.8946 24.7071 10.7071C24.8946 10.5196 25 10.2652 25 10V6C25 5.73478 24.8946 5.48043 24.7071 5.29289C24.5196 5.10536 24.2652 5 24 5ZM14.86 14.66C9.89997 14 9.65997 14 9.65997 14C9.65997 14 9.83997 15.66 10.27 19.23C10.4311 20.7189 11.1157 22.1021 12.2018 23.1332C13.2878 24.1643 14.7048 24.7763 16.2 24.86L17.25 24.91C17.25 24.91 17.35 21.09 16.37 19.29C15.39 17.49 12.81 17.18 12.81 17.18C13.568 17.7485 14.2414 18.4219 14.81 19.18C15.7 20.37 15.6 23.09 15.6 23.09C14.6622 22.8322 13.816 22.3156 13.1582 21.5994C12.5003 20.8832 12.0573 19.9962 11.88 19.04C11.56 16.72 11.5 15.86 11.5 15.86C11.5 15.86 11.2 15.8 14.65 16.26C18.1 16.72 18.96 20.8 18.49 24.72C21.53 20.34 19.82 15.32 14.86 14.66Z" />
|
543 |
+
</svg>
|
544 |
+
',
|
545 |
+
),
|
546 |
+
|
547 |
+
array(
|
548 |
+
'name' => __( 'Business Hours', 'coming-soon' ),
|
549 |
+
'is_pro' => true,
|
550 |
+
'cat' => 'adv',
|
551 |
+
'type' => 'businesshours',
|
552 |
+
'id' => 23,
|
553 |
+
'icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29.96 29.96" class="sp-w-6 sp-fill-current"><defs></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-2" d="M27,15H24.12l-.12-.2L18,4.4A3,3,0,1,0,12,4a1.34,1.34,0,0,0,0,.2.83.83,0,0,0,0,.22L6,14.78l-.12.2H3a2,2,0,0,0-2,2V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V17A2,2,0,0,0,27,15Zm-19.27-.2L12.81,6a3,3,0,0,0,4.34,0l5.1,8.74.12.2H7.59ZM27,26.83H3v-9.7H27Z"/><path class="cls-2" d="M7.55,25a2.41,2.41,0,0,0,1.9-.75,3.21,3.21,0,0,0,.66-2.16,3.22,3.22,0,0,0-.65-2.16,2.41,2.41,0,0,0-1.91-.75,2.4,2.4,0,0,0-1.9.74A3.12,3.12,0,0,0,5,22.06a3.22,3.22,0,0,0,.66,2.17A2.43,2.43,0,0,0,7.55,25Zm-1-4.34a1.16,1.16,0,0,1,1-.49c.91,0,1.36.64,1.36,1.92S8.46,24,7.55,24a1.18,1.18,0,0,1-1-.48,2.42,2.42,0,0,1-.34-1.42A2.36,2.36,0,0,1,6.53,20.64Z"/><path class="cls-2" d="M12.37,22.89h.49a2.27,2.27,0,0,0,1.55-.48A1.79,1.79,0,0,0,15,21a1.64,1.64,0,0,0-.51-1.32A2.18,2.18,0,0,0,13,19.24H11.23V24.9h1.14Zm0-2.66h.52a1,1,0,0,1,.69.2.78.78,0,0,1,.22.62.81.81,0,0,1-.26.64,1.26,1.26,0,0,1-.79.22h-.38Z"/><polygon class="cls-2" points="19.07 23.91 17.11 23.91 17.11 22.45 18.94 22.45 18.94 21.47 17.11 21.47 17.11 20.23 19.07 20.23 19.07 19.24 15.97 19.24 15.97 24.9 19.07 24.9 19.07 23.91"/><path class="cls-2" d="M21.22,22.24c0-.32,0-.86-.07-1.62h0l2.35,4.28H25V19.24H24v2.68q0,.46.06,1.56h0l-2.34-4.24H20.2V24.9h1Z"/></g></g></svg>',
|
554 |
+
),
|
555 |
+
|
556 |
+
|
557 |
array(
|
558 |
'name' => __( 'Add To Cart', 'coming-soon' ),
|
559 |
'is_pro' => true,
|
673 |
<path clip-rule="evenodd" d="m1 27.5v-25c0-.39782.15804-.77936.43934-1.06066s.66284-.43934 1.06066-.43934h25c.3978 0 .7794.15804 1.0607.43934s.4393.66284.4393 1.06066v25c0 .3978-.158.7794-.4393 1.0607s-.6629.4393-1.0607.4393h-25c-.39782 0-.77936-.158-1.06066-.4393s-.43934-.6629-.43934-1.0607zm26-.5v-19h-24v19zm-24-21v-3h24v3zm12.67 5.11h7.66c.176 0 .3449.0692.4703.1927.1253.1235.1971.2913.1997.4673 0 .1777-.0706.3481-.1962.4738-.1257.1256-.2961.1962-.4738.1962h-7.66c-.1777 0-.3481-.0706-.4738-.1962-.1256-.1257-.1962-.2961-.1962-.4738.0026-.176.0744-.3438.1997-.4673.1254-.1235.2943-.1927.4703-.1927zm7.66 2.66h-7.66c-.1777 0-.3481.0706-.4738.1962-.1256.1257-.1962.2961-.1962.4738s.0706.3481.1962.4738c.1257.1256.2961.1962.4738.1962h7.66c.1777 0 .3481-.0706.4738-.1962.1256-.1257.1962-.2961.1962-.4738s-.0706-.3481-.1962-.4738c-.1257-.1256-.2961-.1962-.4738-.1962zm-10.72-3.66h-6.21999c-.05159-.0014-.10292.0078-.15086.0269s-.09148.0478-.12797.0843c-.0365.0365-.06517.08-.08428.1279-.01912.048-.02826.0993-.02689.1509v5.11c0 .1034.04109.2026.11423.2758.07314.0731.17234.1142.27577.1142h6.21999c.1034 0 .2026-.0411.2758-.1142.0731-.0732.1142-.1724.1142-.2758v-5.11c.0014-.0516-.0078-.1029-.0269-.1509-.0191-.0479-.0478-.0914-.0843-.1279-.0364-.0365-.08-.0652-.1279-.0843-.048-.0191-.0993-.0283-.1509-.0269zm-5.82999.78h5.43999v.63l-1.94 2-1.59999-1.61-1.9 2.56zm.39 4.32 1.59-2.15 1.51999 1.53 1.94-2v2.58zm16.15999 4.79h-7.66c-.1777 0-.3481.0706-.4738.1962-.1256.1257-.1962.2961-.1962.4738.0026.176.0744.3438.1997.4673.1254.1235.2943.1927.4703.1927h7.66c.176 0 .3449-.0692.4703-.1927.1253-.1235.1971-.2913.1997-.4673 0-.088-.0173-.1751-.051-.2564s-.083-.1551-.1452-.2174c-.0623-.0622-.1361-.1115-.2174-.1452s-.1684-.051-.2564-.051zm-7.66 2.67h7.66c.176 0 .3449.0692.4703.1927.1253.1235.1971.2913.1997.4673 0 .1777-.0706.3481-.1962.4738-.1257.1256-.2961.1962-.4738.1962h-7.66c-.1777 0-.3481-.0706-.4738-.1962-.1256-.1257-.1962-.2961-.1962-.4738.0026-.176.0744-.3438.1997-.4673.1254-.1235.2943-.1927.4703-.1927zm-9.27999-3.67h6.21999c.1034 0 .2026.0411.2758.1142.0731.0732.1142.1724.1142.2758v5.11c.0014.0516-.0078.1029-.0269.1509-.0191.0479-.0478.0914-.0843.1279-.0364.0365-.08.0652-.1279.0843-.048.0191-.0993.0283-.1509.0269h-6.21999c-.05159.0014-.10292-.0078-.15086-.0269s-.09148-.0478-.12797-.0843c-.0365-.0365-.06517-.08-.08428-.1279-.01912-.048-.02826-.0993-.02689-.1509v-5.11c0-.1034.04109-.2026.11423-.2758.07314-.0731.17234-.1142.27577-.1142zm5.82999.79h-5.43999v3.57l1.9-2.56 1.59999 1.61 1.94-2zm-3.45999 2.21-1.59 2.11 5.04999.01v-2.59l-1.94 2z" fill-rule="evenodd"/></svg>',
|
674 |
),
|
675 |
|
676 |
+
array(
|
677 |
+
'name' => __( 'Custom HTML', 'coming-soon' ),
|
678 |
+
'is_pro' => false,
|
679 |
+
'cat' => 'adv',
|
680 |
+
'type' => 'custom-html',
|
681 |
+
'id' => 20,
|
682 |
+
'icon' => '
|
683 |
+
<svg xmlns="http://www.w3.org/2000/svg" class="sp-w-6 sp-fill-current " viewBox="0 0 24 24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></svg>',
|
684 |
+
),
|
685 |
+
|
686 |
+
// $wordpress_widgets
|
687 |
|
688 |
array(
|
689 |
'name' => __( 'Post Title', 'coming-soon' ),
|
795 |
),
|
796 |
|
797 |
// array(
|
798 |
+
// 'name' => __('Template Tags', 'coming-soon'),
|
799 |
+
// 'is_pro' => true,
|
800 |
+
// 'cat' => 'templatetag',
|
801 |
+
// 'type' => 'templatetag',
|
802 |
+
// 'id' => 43,
|
803 |
+
// 'icon' => '
|
804 |
+
// <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="sp-w-6 sp-fill-current"><path d="M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z"/></svg>',
|
805 |
// ),
|
806 |
|
807 |
array(
|
829 |
',
|
830 |
),
|
831 |
|
832 |
+
|
833 |
+
|
834 |
array(
|
835 |
'name' => __( 'Menu Cart', 'coming-soon' ),
|
836 |
'is_pro' => true,
|
1006 |
|
1007 |
global $wp_widget_factory;
|
1008 |
$all_widgets = $wp_widget_factory->widgets;
|
1009 |
+
// print_r($all_widgets);
|
1010 |
|
1011 |
$wordpress_widgets = array();
|
1012 |
|
1026 |
}
|
1027 |
}
|
1028 |
|
1029 |
+
// print_r($wordpress_widgets);
|
1030 |
// filter out some options
|
1031 |
$theme_enabled = get_option( 'seedprod_theme_enabled' );
|
1032 |
$theme_builder = seedprod_lite_cu( 'themebuilder' );
|
1049 |
}
|
1050 |
|
1051 |
/**
|
1052 |
+
* Get times
|
1053 |
+
*/
|
1054 |
function seedprod_lite_get_default_timezone() {
|
1055 |
$general_settings = get_option( 'seedprod_settings' );
|
1056 |
$timezone = 'UTC';
|
1068 |
|
1069 |
|
1070 |
/**
|
1071 |
+
* Get times
|
1072 |
+
*/
|
1073 |
function seedprod_lite_get_times() {
|
1074 |
$times = array();
|
1075 |
$times[] = array(
|
1273 |
}
|
1274 |
|
1275 |
/**
|
1276 |
+
* Check per
|
1277 |
+
*/
|
1278 |
function seedprod_lite_get_api_key() {
|
1279 |
$seedprod_api_key = '';
|
1280 |
|
1290 |
}
|
1291 |
|
1292 |
/**
|
1293 |
+
* Get timezones
|
1294 |
+
*/
|
1295 |
function seedprod_lite_get_timezones() {
|
1296 |
// timezones
|
1297 |
$zonen = array();
|
1339 |
// Continent optgroup
|
1340 |
if ( ! isset( $zonen[ $key - 1 ] ) || $zonen[ $key - 1 ]['continent'] !== $zone['continent'] ) {
|
1341 |
$label = $zone['t_continent'];
|
1342 |
+
// $structure[] = $label ;
|
1343 |
}
|
1344 |
|
1345 |
// Add the city to the value
|
1379 |
}
|
1380 |
|
1381 |
/**
|
1382 |
+
* Add to array if value does not exist
|
1383 |
+
*/
|
1384 |
function seedprod_lite_array_add( $arr, $key, $value ) {
|
1385 |
if ( ! array_key_exists( $key, $arr ) ) {
|
1386 |
$arr[ $key ] = $value;
|
1389 |
}
|
1390 |
|
1391 |
/**
|
1392 |
+
* Check per
|
1393 |
+
*/
|
1394 |
function seedprod_lite_cu( $rper = null ) {
|
1395 |
if ( ! empty( $rper ) ) {
|
1396 |
$uper = explode( ',', get_option( 'seedprod_per' ) );
|
1416 |
* @return string SeedProd Upgrade Link.
|
1417 |
*/
|
1418 |
function seedprod_lite_upgrade_link( $medium = 'link' ) {
|
1419 |
+
$referrer= '';
|
1420 |
+
$referred_by = get_option( 'seedprod_referred_by' );
|
1421 |
+
if(!empty($referred_by)){
|
1422 |
+
$referrer = '-'.$referred_by;
|
1423 |
+
}
|
1424 |
+
return apply_filters( 'seedprod_lite_upgrade_link', 'https://seedprod.com/lite-upgrade/?utm_source=WordPress'.$referrer.'&utm_campaign=liteplugin&utm_medium=' . sanitize_key( apply_filters( 'seedprod_lite_upgrade_link_medium', $medium ) ) );
|
1425 |
}
|
1426 |
|
1427 |
/**
|
1533 |
|
1534 |
// Not at end: show key only
|
1535 |
// if ( $iterator->callHasChildren() ) {
|
1536 |
+
// echo "$indent$k :<br>";
|
1537 |
+
// At end: show key, value and path
|
1538 |
// }
|
1539 |
|
1540 |
if ( ! $iterator->callHasChildren() ) {
|
1542 |
$p[] = $iterator->getSubIterator( $i )->key();
|
1543 |
}
|
1544 |
$path = implode( ',', $p );
|
1545 |
+
// echo "$indent$k : $v : path -> $path<br>";
|
1546 |
// get font
|
1547 |
if ( stripos( $k, 'font' ) !== false && stripos( $k, 'variant' ) === false && ! empty( $v ) && strpos( $v, ',' ) === false && stripos( $k, 'fontSize' ) === false ) {
|
1548 |
$load_fonts[] = array(
|
1639 |
}
|
1640 |
}
|
1641 |
|
1642 |
+
// add_filter( 'get_edit_post_link', 'seedprod_lite_filter_get_edit_post_link', 11, 3 );
|
1643 |
|
1644 |
/**
|
1645 |
* Get edit post link.
|
app/load_controller.php
CHANGED
@@ -28,7 +28,7 @@ if ( is_admin() ) {
|
|
28 |
require_once SEEDPROD_PLUGIN_PATH . 'app/lpage.php';
|
29 |
require_once SEEDPROD_PLUGIN_PATH . 'app/edit_with_seedprod.php';
|
30 |
require_once SEEDPROD_PLUGIN_PATH . 'app/functions-addons.php';
|
31 |
-
if (
|
32 |
require_once SEEDPROD_PLUGIN_PATH . 'app/class-seedprod-review.php';
|
33 |
}
|
34 |
}
|
28 |
require_once SEEDPROD_PLUGIN_PATH . 'app/lpage.php';
|
29 |
require_once SEEDPROD_PLUGIN_PATH . 'app/edit_with_seedprod.php';
|
30 |
require_once SEEDPROD_PLUGIN_PATH . 'app/functions-addons.php';
|
31 |
+
if ( 'lite' == SEEDPROD_BUILD ) {
|
32 |
require_once SEEDPROD_PLUGIN_PATH . 'app/class-seedprod-review.php';
|
33 |
}
|
34 |
}
|
app/lpage.php
CHANGED
@@ -621,6 +621,10 @@ function seedprod_lite_save_lpage() {
|
|
621 |
$html = preg_replace( "'<!---->'", '', $html );
|
622 |
$html = preg_replace( "'<!--'", '', $html );
|
623 |
$html = preg_replace( "'-->'", '', $html );
|
|
|
|
|
|
|
|
|
624 |
$html = preg_replace( "'contenteditable=\"true\"'", '', $html );
|
625 |
$html = preg_replace( "'spellcheck=\"false\"'", '', $html );
|
626 |
$html = str_replace( 'function(e,n,r,i){return fn(t,e,n,r,i,!0)}', '', $html );
|
@@ -668,6 +672,7 @@ function seedprod_lite_save_lpage() {
|
|
668 |
$check_post_type = json_decode( stripslashes( $settings ) );
|
669 |
if ( 'post' == $check_post_type->page_type ) {
|
670 |
update_post_meta( $lpage_id, '_seedprod_edited_with_seedprod', '1' );
|
|
|
671 |
} else {
|
672 |
update_post_meta( $lpage_id, '_seedprod_page', '1' );
|
673 |
}
|
@@ -691,8 +696,10 @@ function seedprod_lite_save_lpage() {
|
|
691 |
|
692 |
if ( class_exists( 'SeedProd_Tracking' ) ) {
|
693 |
$tracking = new SeedProd_Tracking();
|
694 |
-
|
695 |
-
|
|
|
|
|
696 |
}
|
697 |
}
|
698 |
|
621 |
$html = preg_replace( "'<!---->'", '', $html );
|
622 |
$html = preg_replace( "'<!--'", '', $html );
|
623 |
$html = preg_replace( "'-->'", '', $html );
|
624 |
+
// html custom comment
|
625 |
+
$html = preg_replace( "'--!'", '-->', $html );
|
626 |
+
$html = preg_replace( "'!--'", '<!--', $html );
|
627 |
+
// end html custom comment
|
628 |
$html = preg_replace( "'contenteditable=\"true\"'", '', $html );
|
629 |
$html = preg_replace( "'spellcheck=\"false\"'", '', $html );
|
630 |
$html = str_replace( 'function(e,n,r,i){return fn(t,e,n,r,i,!0)}', '', $html );
|
672 |
$check_post_type = json_decode( stripslashes( $settings ) );
|
673 |
if ( 'post' == $check_post_type->page_type ) {
|
674 |
update_post_meta( $lpage_id, '_seedprod_edited_with_seedprod', '1' );
|
675 |
+
delete_post_meta( $lpage_id, '_seedprod_page' );
|
676 |
} else {
|
677 |
update_post_meta( $lpage_id, '_seedprod_page', '1' );
|
678 |
}
|
696 |
|
697 |
if ( class_exists( 'SeedProd_Tracking' ) ) {
|
698 |
$tracking = new SeedProd_Tracking();
|
699 |
+
if(!empty($check_post_type->document->sections)){
|
700 |
+
$block_usage_data = $tracking->get_block_data($check_post_type->document->sections);
|
701 |
+
update_post_meta($lpage_id, '_seedprod_block_usage', $block_usage_data);
|
702 |
+
}
|
703 |
}
|
704 |
}
|
705 |
|
app/render-lp.php
CHANGED
@@ -27,11 +27,13 @@ function seedprod_lite_deregister_styles() {
|
|
27 |
//var_dump($wp_styles->registered);
|
28 |
foreach ( $wp_styles->queue as $handle ) {
|
29 |
//echo '<br> '.$handle;
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
35 |
}
|
36 |
};
|
37 |
|
27 |
//var_dump($wp_styles->registered);
|
28 |
foreach ( $wp_styles->queue as $handle ) {
|
29 |
//echo '<br> '.$handle;
|
30 |
+
if (!empty($wp_styles->registered[ $handle ]->src)) {
|
31 |
+
if (strpos($wp_styles->registered[ $handle ]->src, 'wp-content/themes') !== false) {
|
32 |
+
//var_dump($wp_styles->registered[$handle]->src);
|
33 |
+
wp_dequeue_style($handle);
|
34 |
+
wp_deregister_style($handle);
|
35 |
+
}
|
36 |
+
}
|
37 |
}
|
38 |
};
|
39 |
|
app/routes.php
CHANGED
@@ -62,16 +62,16 @@ function seedprod_lite_create_menus() {
|
|
62 |
'seedprod_lite_setup_page'
|
63 |
);
|
64 |
|
65 |
-
if ( 'lite' === SEEDPROD_BUILD ) {
|
66 |
-
add_submenu_page(
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
);
|
74 |
-
}
|
75 |
|
76 |
add_submenu_page(
|
77 |
'seedprod_lite',
|
@@ -82,6 +82,17 @@ function seedprod_lite_create_menus() {
|
|
82 |
'seedprod_lite_subscribers_page'
|
83 |
);
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
add_submenu_page(
|
86 |
'seedprod_lite',
|
87 |
__( 'Settings', 'coming-soon' ),
|
@@ -140,10 +151,9 @@ function seedprod_lite_create_menus() {
|
|
140 |
);
|
141 |
// add class
|
142 |
add_action( 'admin_footer', 'seedprod_lite_upgrade_link_class' );
|
143 |
-
function seedprod_lite_upgrade_link_class(){
|
144 |
echo "<script>jQuery(function($) { $('#sp-lite-admin-menu__upgrade').parent().parent().addClass('sp-lite-admin-menu__upgrade_wrapper')});</script>";
|
145 |
}
|
146 |
-
|
147 |
}
|
148 |
|
149 |
add_submenu_page(
|
@@ -250,6 +260,16 @@ function seedprod_lite_update_selected_page_in_submenu() {
|
|
250 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
251 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>_theme_templates']" ).parent().addClass('current');
|
252 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
// Templates
|
254 |
if(location.hash.indexOf('#/template') >= 0){
|
255 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
@@ -344,7 +364,7 @@ function seedprod_lite_redirect_to_site() {
|
|
344 |
exit();
|
345 |
}
|
346 |
|
347 |
-
//
|
348 |
if ( isset( $_GET['page'] ) && 'seedprod_lite_about_us' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
349 |
wp_safe_redirect( 'admin.php?page=seedprod_lite#/aboutus' );
|
350 |
exit();
|
@@ -368,6 +388,12 @@ function seedprod_lite_redirect_to_site() {
|
|
368 |
|
369 |
}
|
370 |
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
// feature request page
|
372 |
if ( isset( $_GET['page'] ) && 'seedprod_lite_featurerequest' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
373 |
wp_redirect( 'https://www.seedprod.com/suggest-a-feature/?utm_source=wordpress&utm_medium=plugin-sidebar&utm_campaign=suggest-a-feature' ); // phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect
|
@@ -395,7 +421,7 @@ function seedprod_lite_render_shortcode() {
|
|
395 |
do_action( 'wp_print_footer_scripts' );
|
396 |
do_action( 'wp_footer' );
|
397 |
$content = do_shortcode( $shortcode );
|
398 |
-
|
399 |
echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
400 |
}
|
401 |
|
@@ -473,6 +499,7 @@ if ( defined( 'DOING_AJAX' ) ) {
|
|
473 |
|
474 |
|
475 |
|
|
|
476 |
}
|
477 |
|
478 |
|
@@ -480,3 +507,19 @@ if ( defined( 'DOING_AJAX' ) ) {
|
|
480 |
|
481 |
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
'seedprod_lite_setup_page'
|
63 |
);
|
64 |
|
65 |
+
//if ( 'lite' === SEEDPROD_BUILD ) {
|
66 |
+
// add_submenu_page(
|
67 |
+
// 'seedprod_lite',
|
68 |
+
// __( 'Templates', 'coming-soon' ),
|
69 |
+
// __( 'Templates', 'coming-soon' ),
|
70 |
+
// apply_filters( 'seedprod_templates_menu_capability', 'edit_others_posts' ),
|
71 |
+
// 'seedprod_lite_templates',
|
72 |
+
// 'seedprod_lite_templates_page'
|
73 |
+
// );
|
74 |
+
//}
|
75 |
|
76 |
add_submenu_page(
|
77 |
'seedprod_lite',
|
82 |
'seedprod_lite_subscribers_page'
|
83 |
);
|
84 |
|
85 |
+
//if ('lite' === SEEDPROD_BUILD) {
|
86 |
+
add_submenu_page(
|
87 |
+
'seedprod_lite',
|
88 |
+
__('Pop-ups', 'coming-soon'),
|
89 |
+
__('Pop-ups', 'coming-soon'),
|
90 |
+
apply_filters('seedprod_popup_menu_capability', 'edit_others_posts'),
|
91 |
+
'seedprod_lite_popup',
|
92 |
+
'seedprod_lite_popup_page'
|
93 |
+
);
|
94 |
+
//}
|
95 |
+
|
96 |
add_submenu_page(
|
97 |
'seedprod_lite',
|
98 |
__( 'Settings', 'coming-soon' ),
|
151 |
);
|
152 |
// add class
|
153 |
add_action( 'admin_footer', 'seedprod_lite_upgrade_link_class' );
|
154 |
+
function seedprod_lite_upgrade_link_class() {
|
155 |
echo "<script>jQuery(function($) { $('#sp-lite-admin-menu__upgrade').parent().parent().addClass('sp-lite-admin-menu__upgrade_wrapper')});</script>";
|
156 |
}
|
|
|
157 |
}
|
158 |
|
159 |
add_submenu_page(
|
260 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
261 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>_theme_templates']" ).parent().addClass('current');
|
262 |
}
|
263 |
+
// Theme Chooser
|
264 |
+
if(location.hash.indexOf('#/theme-chooser') >= 0){
|
265 |
+
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
266 |
+
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>_theme_templates']" ).parent().addClass('current');
|
267 |
+
}
|
268 |
+
// Popups
|
269 |
+
if(location.hash.indexOf('#/popups') >= 0){
|
270 |
+
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
271 |
+
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>_popup']" ).parent().addClass('current');
|
272 |
+
}
|
273 |
// Templates
|
274 |
if(location.hash.indexOf('#/template') >= 0){
|
275 |
jQuery( "a[href^='admin.php?page=seedprod_<?php echo esc_attr( SEEDPROD_BUILD ); ?>']" ).parent().removeClass('current');
|
364 |
exit();
|
365 |
}
|
366 |
|
367 |
+
// about us page
|
368 |
if ( isset( $_GET['page'] ) && 'seedprod_lite_about_us' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
369 |
wp_safe_redirect( 'admin.php?page=seedprod_lite#/aboutus' );
|
370 |
exit();
|
388 |
|
389 |
}
|
390 |
|
391 |
+
// popups
|
392 |
+
if ( isset( $_GET['page'] ) && 'seedprod_lite_popup' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
393 |
+
wp_safe_redirect( 'admin.php?page=seedprod_lite&sp_om=1#/popups' );
|
394 |
+
exit();
|
395 |
+
}
|
396 |
+
|
397 |
// feature request page
|
398 |
if ( isset( $_GET['page'] ) && 'seedprod_lite_featurerequest' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
399 |
wp_redirect( 'https://www.seedprod.com/suggest-a-feature/?utm_source=wordpress&utm_medium=plugin-sidebar&utm_campaign=suggest-a-feature' ); // phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect
|
421 |
do_action( 'wp_print_footer_scripts' );
|
422 |
do_action( 'wp_footer' );
|
423 |
$content = do_shortcode( $shortcode );
|
424 |
+
// $content = do_shortcode( $content );
|
425 |
echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
426 |
}
|
427 |
|
499 |
|
500 |
|
501 |
|
502 |
+
|
503 |
}
|
504 |
|
505 |
|
507 |
|
508 |
|
509 |
|
510 |
+
|
511 |
+
add_filter( 'admin_body_class', 'seedprod_lite_admin_body_class' );
|
512 |
+
|
513 |
+
/**
|
514 |
+
* Adds one or more classes to the body tag in the dashboard.
|
515 |
+
*
|
516 |
+
* @link https://wordpress.stackexchange.com/a/154951/17187
|
517 |
+
* @param String $classes Current body classes.
|
518 |
+
* @return String Altered body classes.
|
519 |
+
*/
|
520 |
+
function seedprod_lite_admin_body_class( $classes ) {
|
521 |
+
if( !empty( $_GET['sp_om'] ) && $_GET['sp_om'] == 1){
|
522 |
+
return "$classes sp_om";
|
523 |
+
}
|
524 |
+
return $classes;
|
525 |
+
}
|
app/subscriber.php
CHANGED
@@ -37,8 +37,8 @@ function seedprod_lite_subscribers_datatable() {
|
|
37 |
$data = array();
|
38 |
foreach ( $results as $v ) {
|
39 |
|
40 |
-
|
41 |
-
$created_at = gmdate( get_option( 'date_format' ) . ' ' . get_option( 'time_format' )
|
42 |
|
43 |
// Load Data
|
44 |
$data[] = array(
|
37 |
$data = array();
|
38 |
foreach ( $results as $v ) {
|
39 |
|
40 |
+
// Format created timestamp to site timezone & format.
|
41 |
+
$created_at = get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $v->created_timestamp ), get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) );
|
42 |
|
43 |
// Load Data
|
44 |
$data[] = array(
|
app/theme-templates.php
CHANGED
@@ -461,6 +461,8 @@ function seedprod_lite_update_theme_template_conditions() {
|
|
461 |
$data['template_priority'] = $template_priority;
|
462 |
$data['template_conditions'] = $template_conditions;
|
463 |
if ( ! empty( $template_id ) ) {
|
|
|
|
|
464 |
wp_update_post(
|
465 |
array(
|
466 |
'ID' => $data['template_id'],
|
461 |
$data['template_priority'] = $template_priority;
|
462 |
$data['template_conditions'] = $template_conditions;
|
463 |
if ( ! empty( $template_id ) ) {
|
464 |
+
// remove action so they don't conflict with the save. Yoast SEO was trying to analytize this content.
|
465 |
+
remove_all_actions( 'wp_insert_post' );
|
466 |
wp_update_post(
|
467 |
array(
|
468 |
'ID' => $data['template_id'],
|
coming-soon.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
Plugin Name: Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd
|
4 |
Plugin URI: https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-uri-link
|
5 |
Description: The Easiest WordPress Drag & Drop Page Builder that allows you to build your webiste, create Landing Pages, Coming Soon Pages, Maintenance Mode Pages and more.
|
6 |
-
Version: 6.
|
7 |
Author: SeedProd
|
8 |
Author URI: https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=author-uri-link
|
9 |
-
|
10 |
Domain Path: /languages
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -14,9 +14,10 @@ License: GPLv2 or later
|
|
14 |
/**
|
15 |
* Default Constants
|
16 |
*/
|
|
|
17 |
define( 'SEEDPROD_BUILD', 'lite' );
|
18 |
define( 'SEEDPROD_SLUG', 'coming-soon/coming-soon.php' );
|
19 |
-
define( 'SEEDPROD_VERSION', '6.
|
20 |
define( 'SEEDPROD_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
21 |
// Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
|
22 |
define( 'SEEDPROD_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
@@ -74,7 +75,12 @@ function seedprod_lite_activation() {
|
|
74 |
|
75 |
// set cron to fetch feed
|
76 |
if ( ! wp_next_scheduled( 'seedprod_notifications' ) ) {
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
|
80 |
// flush rewrite rules
|
3 |
Plugin Name: Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd
|
4 |
Plugin URI: https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=plugin-uri-link
|
5 |
Description: The Easiest WordPress Drag & Drop Page Builder that allows you to build your webiste, create Landing Pages, Coming Soon Pages, Maintenance Mode Pages and more.
|
6 |
+
Version: 6.15.3
|
7 |
Author: SeedProd
|
8 |
Author URI: https://www.seedprod.com/lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=author-uri-link
|
9 |
+
Text Domain: coming-soon
|
10 |
Domain Path: /languages
|
11 |
License: GPLv2 or later
|
12 |
*/
|
14 |
/**
|
15 |
* Default Constants
|
16 |
*/
|
17 |
+
|
18 |
define( 'SEEDPROD_BUILD', 'lite' );
|
19 |
define( 'SEEDPROD_SLUG', 'coming-soon/coming-soon.php' );
|
20 |
+
define( 'SEEDPROD_VERSION', '6.15.3' );
|
21 |
define( 'SEEDPROD_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
22 |
// Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seedprod/
|
23 |
define( 'SEEDPROD_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
75 |
|
76 |
// set cron to fetch feed
|
77 |
if ( ! wp_next_scheduled( 'seedprod_notifications' ) ) {
|
78 |
+
if ( SEEDPROD_BUILD === 'pro' ) {
|
79 |
+
wp_schedule_event( time() + 7200, 'daily', 'seedprod_notifications' );
|
80 |
+
}else{
|
81 |
+
wp_schedule_event( time(), 'daily', 'seedprod_notifications' );
|
82 |
+
}
|
83 |
+
|
84 |
}
|
85 |
|
86 |
// flush rewrite rules
|
languages/seedprod-lite.php
ADDED
@@ -0,0 +1,4901 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
+
$generated_i18n_strings = array(
|
4 |
+
// Reference: src/App.vue:238
|
5 |
+
// Reference: src/views/Setup.vue:1647
|
6 |
+
__( 'Changes not saved, are you sure you want to leave?', 'coming-soon' ),
|
7 |
+
|
8 |
+
// Reference: src/admin/Aboutus.vue:36
|
9 |
+
// Reference: src/admin/App.vue:300
|
10 |
+
__( 'About Us', 'coming-soon' ),
|
11 |
+
|
12 |
+
// Reference: src/admin/Aboutus.vue:37
|
13 |
+
__( 'Getting Started', 'coming-soon' ),
|
14 |
+
|
15 |
+
// Reference: src/admin/Aboutus.vue:38
|
16 |
+
__( 'Lite vs Pro', 'coming-soon' ),
|
17 |
+
|
18 |
+
// Reference: src/admin/AboutusAbout.vue:103
|
19 |
+
__( 'Yup, we know a thing or two about building awesome products that customers love.', 'coming-soon' ),
|
20 |
+
|
21 |
+
// Reference: src/admin/AboutusAbout.vue:107
|
22 |
+
__( 'the most popular lead-generation software', 'coming-soon' ),
|
23 |
+
|
24 |
+
// Reference: src/admin/AboutusAbout.vue:111
|
25 |
+
__( 'the best WordPress analytics plugin', 'coming-soon' ),
|
26 |
+
|
27 |
+
// Reference: src/admin/AboutusAbout.vue:115
|
28 |
+
__( 'the best WordPress forms plugin', 'coming-soon' ),
|
29 |
+
|
30 |
+
// Reference: src/admin/AboutusAbout.vue:119
|
31 |
+
__( 'the best WordPress giveaway plugin', 'coming-soon' ),
|
32 |
+
|
33 |
+
// Reference: src/admin/AboutusAbout.vue:123
|
34 |
+
__( 'and finally the best WordPress FOMO plugin', 'coming-soon' ),
|
35 |
+
|
36 |
+
// Reference: src/admin/AboutusAbout.vue:127
|
37 |
+
__( 'SeedProd Team photo', 'coming-soon' ),
|
38 |
+
|
39 |
+
// Reference: src/admin/AboutusAbout.vue:128
|
40 |
+
__( 'The SeedProd Team', 'coming-soon' ),
|
41 |
+
|
42 |
+
// Reference: src/admin/AboutusAbout.vue:87
|
43 |
+
__( 'Hello and welcome to SeedProd, the most beginner friendly drag & drop WordPress landing page plugin. At SeedProd, we build software that helps you create beautiful responsive landing pages for your website in minutes.', 'coming-soon' ),
|
44 |
+
|
45 |
+
// Reference: src/admin/AboutusAbout.vue:91
|
46 |
+
__( 'Over the years, we found that most WordPress landing page plugins were bloated, buggy, slow, and very hard to use. So we started with a simple goal: build a WordPress landing page plugin that’s both easy and powerful.', 'coming-soon' ),
|
47 |
+
|
48 |
+
// Reference: src/admin/AboutusAbout.vue:95
|
49 |
+
__( 'Our goal is to take the pain out of creating landing pages and make it easy.', 'coming-soon' ),
|
50 |
+
|
51 |
+
// Reference: src/admin/AboutusAbout.vue:99
|
52 |
+
__( 'SeedProd is brought to you by the same team that’s behind the largest WordPress resource site,', 'coming-soon' ),
|
53 |
+
|
54 |
+
// Reference: src/admin/App.vue:298
|
55 |
+
__( 'Pages', 'coming-soon' ),
|
56 |
+
|
57 |
+
// Reference: src/admin/App.vue:299
|
58 |
+
__( 'Growth Tools', 'coming-soon' ),
|
59 |
+
|
60 |
+
// Reference: src/admin/App.vue:301
|
61 |
+
// Reference: src/admin/Dashboard-Lite.vue:644
|
62 |
+
__( 'Subscribers', 'coming-soon' ),
|
63 |
+
|
64 |
+
// Reference: src/admin/App.vue:302
|
65 |
+
// Reference: src/components/CountdownOptions.vue:848
|
66 |
+
// Reference: src/components/CustomHTMLOptions.vue:199
|
67 |
+
// Reference: src/components/FormOptions.vue:178
|
68 |
+
// Reference: src/components/NavOptions.vue:570
|
69 |
+
// Reference: src/components/PostsOptions.vue:1454
|
70 |
+
// Reference: src/components/ProductRelatedOptions.vue:604
|
71 |
+
// Reference: src/components/ShortcodeOptions.vue:143
|
72 |
+
// Reference: src/components/TemplatetagOptions.vue:123
|
73 |
+
// Reference: src/components/UpsellsOptions.vue:604
|
74 |
+
// Reference: src/components/WCAddToCartOptions.vue:733
|
75 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1075
|
76 |
+
__( 'Settings', 'coming-soon' ),
|
77 |
+
|
78 |
+
// Reference: src/admin/App.vue:303
|
79 |
+
__( 'SeedProd Logo', 'coming-soon' ),
|
80 |
+
|
81 |
+
// Reference: src/admin/App.vue:304
|
82 |
+
__( 'Previous message ', 'coming-soon' ),
|
83 |
+
|
84 |
+
// Reference: src/admin/App.vue:305
|
85 |
+
__( 'Next message', 'coming-soon' ),
|
86 |
+
|
87 |
+
// Reference: src/admin/App.vue:306
|
88 |
+
__( 'Theme Builder', 'coming-soon' ),
|
89 |
+
|
90 |
+
// Reference: src/admin/App.vue:307
|
91 |
+
__( 'Import / Export', 'coming-soon' ),
|
92 |
+
|
93 |
+
// Reference: src/admin/App.vue:308
|
94 |
+
__( 'Setup', 'coming-soon' ),
|
95 |
+
|
96 |
+
// Reference: src/admin/App.vue:309
|
97 |
+
__( 'Theme Template Kit Chooser', 'coming-soon' ),
|
98 |
+
|
99 |
+
// Reference: src/admin/Dashboard-Lite.vue:1009
|
100 |
+
// Reference: src/admin/Subscribers-Lite.vue:403
|
101 |
+
__( 'Are you sure?', 'coming-soon' ),
|
102 |
+
|
103 |
+
// Reference: src/admin/Dashboard-Lite.vue:1015
|
104 |
+
__( 'Yes, empty trash!', 'coming-soon' ),
|
105 |
+
|
106 |
+
// Reference: src/admin/Dashboard-Lite.vue:1039
|
107 |
+
__( 'Pages Deleted!', 'coming-soon' ),
|
108 |
+
|
109 |
+
// Reference: src/admin/Dashboard-Lite.vue:1069
|
110 |
+
__( 'Page Duplicated', 'coming-soon' ),
|
111 |
+
|
112 |
+
// Reference: src/admin/Dashboard-Lite.vue:615
|
113 |
+
__( 'Coming Soon Mode', 'coming-soon' ),
|
114 |
+
|
115 |
+
// Reference: src/admin/Dashboard-Lite.vue:616
|
116 |
+
__( 'Search Landing Pages', 'coming-soon' ),
|
117 |
+
|
118 |
+
// Reference: src/admin/Dashboard-Lite.vue:617
|
119 |
+
__( 'The Coming Soon Page will be available to search engines if your site is not private.', 'coming-soon' ),
|
120 |
+
|
121 |
+
// Reference: src/admin/Dashboard-Lite.vue:621
|
122 |
+
__( 'Set up a Coming Soon Page', 'coming-soon' ),
|
123 |
+
|
124 |
+
// Reference: src/admin/Dashboard-Lite.vue:622
|
125 |
+
// Reference: src/admin/Setup-Lite.vue:874
|
126 |
+
__( 'Edit Page', 'coming-soon' ),
|
127 |
+
|
128 |
+
// Reference: src/admin/Dashboard-Lite.vue:623
|
129 |
+
// Reference: src/views/Setup.vue:1032
|
130 |
+
__( 'Preview', 'coming-soon' ),
|
131 |
+
|
132 |
+
// Reference: src/admin/Dashboard-Lite.vue:624
|
133 |
+
// Reference: src/components/ProductDataTabsOptions.vue:325
|
134 |
+
__( 'Active', 'coming-soon' ),
|
135 |
+
|
136 |
+
// Reference: src/admin/Dashboard-Lite.vue:625
|
137 |
+
__( 'Inactive', 'coming-soon' ),
|
138 |
+
|
139 |
+
// Reference: src/admin/Dashboard-Lite.vue:626
|
140 |
+
__( 'Maintenance Mode', 'coming-soon' ),
|
141 |
+
|
142 |
+
// Reference: src/admin/Dashboard-Lite.vue:627
|
143 |
+
__( 'The Maintenance Mode Page will notify search engines that the site is unavailable.', 'coming-soon' ),
|
144 |
+
|
145 |
+
// Reference: src/admin/Dashboard-Lite.vue:631
|
146 |
+
__( 'Set up a Maintenance Mode Page', 'coming-soon' ),
|
147 |
+
|
148 |
+
// Reference: src/admin/Dashboard-Lite.vue:635
|
149 |
+
// Reference: src/admin/Subscribers-Lite.vue:256
|
150 |
+
__( '404 Page', 'coming-soon' ),
|
151 |
+
|
152 |
+
// Reference: src/admin/Dashboard-Lite.vue:636
|
153 |
+
__( 'Replace your default theme 404 page with a custom high converting 404 page.', 'coming-soon' ),
|
154 |
+
|
155 |
+
// Reference: src/admin/Dashboard-Lite.vue:640
|
156 |
+
__( 'Set up a 404 Page', 'coming-soon' ),
|
157 |
+
|
158 |
+
// Reference: src/admin/Dashboard-Lite.vue:641
|
159 |
+
// Reference: src/admin/Subscribers-Lite.vue:257
|
160 |
+
__( 'Landing Pages', 'coming-soon' ),
|
161 |
+
|
162 |
+
// Reference: src/admin/Dashboard-Lite.vue:642
|
163 |
+
__( 'Add New Landing Page', 'coming-soon' ),
|
164 |
+
|
165 |
+
// Reference: src/admin/Dashboard-Lite.vue:643
|
166 |
+
// Reference: src/components/TypographyControl.vue:275
|
167 |
+
__( 'Edit', 'coming-soon' ),
|
168 |
+
|
169 |
+
// Reference: src/admin/Dashboard-Lite.vue:645
|
170 |
+
// Reference: src/components/PostinfoOptions.vue:602
|
171 |
+
// Reference: src/components/ProductMetaOptions.vue:337
|
172 |
+
__( 'Duplicate', 'coming-soon' ),
|
173 |
+
|
174 |
+
// Reference: src/admin/Dashboard-Lite.vue:648
|
175 |
+
__( 'Last Modified', 'coming-soon' ),
|
176 |
+
|
177 |
+
// Reference: src/admin/Dashboard-Lite.vue:649
|
178 |
+
__( 'You do not have any landing pages yet.', 'coming-soon' ),
|
179 |
+
|
180 |
+
// Reference: src/admin/Dashboard-Lite.vue:653
|
181 |
+
__( 'Create New Landing Page', 'coming-soon' ),
|
182 |
+
|
183 |
+
// Reference: src/admin/Dashboard-Lite.vue:656
|
184 |
+
__( 'SeedProd Coming Soon Page', 'coming-soon' ),
|
185 |
+
|
186 |
+
// Reference: src/admin/Dashboard-Lite.vue:657
|
187 |
+
__( 'SeedProd Maintenance Page', 'coming-soon' ),
|
188 |
+
|
189 |
+
// Reference: src/admin/Dashboard-Lite.vue:658
|
190 |
+
__( 'SeedProd 404 Page', 'coming-soon' ),
|
191 |
+
|
192 |
+
// Reference: src/admin/Dashboard-Lite.vue:659
|
193 |
+
__( 'Create Optin, Sales, Webinar, Thank You or any type of Landing Page you need.', 'coming-soon' ),
|
194 |
+
|
195 |
+
// Reference: src/admin/Dashboard-Lite.vue:663
|
196 |
+
// Reference: src/admin/Subscribers-Lite.vue:266
|
197 |
+
__( 'Login Page', 'coming-soon' ),
|
198 |
+
|
199 |
+
// Reference: src/admin/Dashboard-Lite.vue:664
|
200 |
+
__( 'Create a Custom Login Page for your website. Optionally replace the default login page.', 'coming-soon' ),
|
201 |
+
|
202 |
+
// Reference: src/admin/Dashboard-Lite.vue:665
|
203 |
+
__( 'Set up a Login Page', 'coming-soon' ),
|
204 |
+
|
205 |
+
// Reference: src/admin/Dashboard-Lite.vue:666
|
206 |
+
__( 'SeedProd Login Page', 'coming-soon' ),
|
207 |
+
|
208 |
+
// Reference: src/admin/Dashboard-Lite.vue:685
|
209 |
+
// Reference: src/admin/ThemeChooser.vue:801
|
210 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1214
|
211 |
+
__( 'All', 'coming-soon' ),
|
212 |
+
|
213 |
+
// Reference: src/admin/Dashboard-Lite.vue:689
|
214 |
+
__( 'Published', 'coming-soon' ),
|
215 |
+
|
216 |
+
// Reference: src/admin/Dashboard-Lite.vue:693
|
217 |
+
__( 'Drafts', 'coming-soon' ),
|
218 |
+
|
219 |
+
// Reference: src/admin/Dashboard-Lite.vue:702
|
220 |
+
__( 'Trash', 'coming-soon' ),
|
221 |
+
|
222 |
+
// Reference: src/admin/Dashboard-Lite.vue:709
|
223 |
+
__( 'Move To Trash', 'coming-soon' ),
|
224 |
+
|
225 |
+
// Reference: src/admin/Dashboard-Lite.vue:713
|
226 |
+
__( 'Restore', 'coming-soon' ),
|
227 |
+
|
228 |
+
// Reference: src/admin/Dashboard-Lite.vue:717
|
229 |
+
__( 'Delete Permanently', 'coming-soon' ),
|
230 |
+
|
231 |
+
// Reference: src/admin/Dashboard-Lite.vue:722
|
232 |
+
// Reference: src/admin/Subscribers-Lite.vue:308
|
233 |
+
// Reference: src/components/AnchorOptions.vue:77
|
234 |
+
// Reference: src/components/PostauthorboxOptions.vue:336
|
235 |
+
// Reference: src/components/TestimonialOptions.vue:547
|
236 |
+
__( 'Name', 'coming-soon' ),
|
237 |
+
|
238 |
+
// Reference: src/admin/Dashboard-Lite.vue:727
|
239 |
+
__( 'URL', 'coming-soon' ),
|
240 |
+
|
241 |
+
// Reference: src/admin/Dashboard-Lite.vue:732
|
242 |
+
// Reference: src/components/PostinfoOptions.vue:572
|
243 |
+
// Reference: src/components/PostsOptions.vue:1475
|
244 |
+
// Reference: src/components/ProductRelatedOptions.vue:652
|
245 |
+
// Reference: src/components/UpsellsOptions.vue:652
|
246 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1190
|
247 |
+
__( 'Date', 'coming-soon' ),
|
248 |
+
|
249 |
+
// Reference: src/admin/Dashboard-Lite.vue:744
|
250 |
+
// Reference: src/admin/Subscribers-Lite.vue:331
|
251 |
+
// Reference: src/components/ListTable.vue:468
|
252 |
+
__( 'Loading', 'coming-soon' ),
|
253 |
+
|
254 |
+
// Reference: src/admin/Dashboard-Lite.vue:957
|
255 |
+
__( 'Pages Moved to Trash.', 'coming-soon' ),
|
256 |
+
|
257 |
+
// Reference: src/admin/Dashboard-Lite.vue:990
|
258 |
+
__( 'Pages Restored.', 'coming-soon' ),
|
259 |
+
|
260 |
+
// Reference: src/admin/GrowthTools.vue:539
|
261 |
+
// Reference: src/components/ContactForm.vue:169
|
262 |
+
// Reference: src/components/Giveaway.vue:170
|
263 |
+
// Reference: src/views/SettingsAnalytics.vue:131
|
264 |
+
// Reference: src/views/SettingsSEO.vue:242
|
265 |
+
__( 'Install', 'coming-soon' ),
|
266 |
+
|
267 |
+
// Reference: src/admin/GrowthTools.vue:542
|
268 |
+
__( 'Deactivate', 'coming-soon' ),
|
269 |
+
|
270 |
+
// Reference: src/admin/GrowthTools.vue:545
|
271 |
+
// Reference: src/components/ContactForm.vue:170
|
272 |
+
// Reference: src/components/Giveaway.vue:171
|
273 |
+
// Reference: src/views/SettingsAnalytics.vue:132
|
274 |
+
// Reference: src/views/SettingsSEO.vue:243
|
275 |
+
__( 'Activate', 'coming-soon' ),
|
276 |
+
|
277 |
+
// Reference: src/admin/GrowthTools.vue:81
|
278 |
+
// Reference: src/admin/Popups.vue:126
|
279 |
+
__( 'Status', 'coming-soon' ),
|
280 |
+
|
281 |
+
// Reference: src/admin/GrowthTools.vue:82
|
282 |
+
__( 'PRO Version installed', 'coming-soon' ),
|
283 |
+
|
284 |
+
// Reference: src/admin/Popups.vue:383
|
285 |
+
__( 'Get OptinMonster Now', 'coming-soon' ),
|
286 |
+
|
287 |
+
// Reference: src/admin/Popups.vue:386
|
288 |
+
__( 'OptinMonster is Active - Go to Settings', 'coming-soon' ),
|
289 |
+
|
290 |
+
// Reference: src/admin/Popups.vue:390
|
291 |
+
__( 'Activate OptinMonster', 'coming-soon' ),
|
292 |
+
|
293 |
+
// Reference: src/admin/Popups.vue:392
|
294 |
+
__( 'Activating OptinMonster', 'coming-soon' ),
|
295 |
+
|
296 |
+
// Reference: src/admin/Settings.vue:19
|
297 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1153
|
298 |
+
// Reference: src/views/SettingsGeneral.vue:231
|
299 |
+
// Reference: src/views/SetupSettings.vue:253
|
300 |
+
__( 'General', 'coming-soon' ),
|
301 |
+
|
302 |
+
// Reference: src/admin/Settings.vue:20
|
303 |
+
__( 'Emails', 'coming-soon' ),
|
304 |
+
|
305 |
+
// Reference: src/admin/Settings.vue:21
|
306 |
+
__( 'Integrations', 'coming-soon' ),
|
307 |
+
|
308 |
+
// Reference: src/admin/SettingsGeneral.vue:239
|
309 |
+
__( 'License', 'coming-soon' ),
|
310 |
+
|
311 |
+
// Reference: src/admin/SettingsGeneral.vue:240
|
312 |
+
__( 'Your license key provides access to updates and addons.', 'coming-soon' ),
|
313 |
+
|
314 |
+
// Reference: src/admin/SettingsGeneral.vue:241
|
315 |
+
__( 'You\'re using <strong>SeedProd Lite</strong> - No License needed. Enjoy!', 'coming-soon' ),
|
316 |
+
|
317 |
+
// Reference: src/admin/SettingsGeneral.vue:242
|
318 |
+
__( 'To unlock more features consider <a href=\'%s\' target=\'_blank\'>upgrading to PRO</a> . As a valued SeedProd Lite user you\'ll receive <strong>a discount off the regular price</strong>, automatically applied at checkout! ', 'coming-soon' ),
|
319 |
+
|
320 |
+
// Reference: src/admin/SettingsGeneral.vue:243
|
321 |
+
__( 'If you already have a license key for <a href=\'%s\' target=\'_blank\'>SeedProd Lite</a>, please enter it to Upgrade to the Pro Features. An External Service will be used to verify and connect you to SeedProd.', 'coming-soon' ),
|
322 |
+
|
323 |
+
// Reference: src/admin/SettingsGeneral.vue:244
|
324 |
+
__( 'License Key', 'coming-soon' ),
|
325 |
+
|
326 |
+
// Reference: src/admin/SettingsGeneral.vue:245
|
327 |
+
__( 'Enter Your License Key Here', 'coming-soon' ),
|
328 |
+
|
329 |
+
// Reference: src/admin/SettingsGeneral.vue:246
|
330 |
+
__( 'Recheck Key', 'coming-soon' ),
|
331 |
+
|
332 |
+
// Reference: src/admin/SettingsGeneral.vue:247
|
333 |
+
__( 'Verify Key', 'coming-soon' ),
|
334 |
+
|
335 |
+
// Reference: src/admin/SettingsGeneral.vue:248
|
336 |
+
__( 'Deactivate Key', 'coming-soon' ),
|
337 |
+
|
338 |
+
// Reference: src/admin/SettingsGeneral.vue:249
|
339 |
+
__( 'Connect to SeedProd to install the Pro Version', 'coming-soon' ),
|
340 |
+
|
341 |
+
// Reference: src/admin/SettingsGeneral.vue:250
|
342 |
+
__( 'You currently have the <strong>%s</strong> license.', 'coming-soon' ),
|
343 |
+
|
344 |
+
// Reference: src/admin/SettingsGeneral.vue:252
|
345 |
+
__( 'Debug Information', 'coming-soon' ),
|
346 |
+
|
347 |
+
// Reference: src/admin/SettingsGeneral.vue:253
|
348 |
+
__( 'Facebook APP ID', 'coming-soon' ),
|
349 |
+
|
350 |
+
// Reference: src/admin/SettingsGeneral.vue:254
|
351 |
+
// Reference: src/views/SetupDesign-Lite.vue:731
|
352 |
+
__( 'Global Settings', 'coming-soon' ),
|
353 |
+
|
354 |
+
// Reference: src/admin/SettingsGeneral.vue:256
|
355 |
+
__( 'Save Settings', 'coming-soon' ),
|
356 |
+
|
357 |
+
// Reference: src/admin/SettingsGeneral.vue:257
|
358 |
+
__( 'Disable Edit SeedProd Button', 'coming-soon' ),
|
359 |
+
|
360 |
+
// Reference: src/admin/SettingsGeneral.vue:258
|
361 |
+
__( 'Enable Usage Tracking', 'coming-soon' ),
|
362 |
+
|
363 |
+
// Reference: src/admin/SettingsGeneral.vue:259
|
364 |
+
// Reference: src/components/BusinessHoursOptions.vue:742
|
365 |
+
// Reference: src/components/TestimonialOptions.vue:552
|
366 |
+
// Reference: src/views/SettingsAccess-Lite.vue:322
|
367 |
+
__( 'Yes', 'coming-soon' ),
|
368 |
+
|
369 |
+
// Reference: src/admin/SettingsGeneral.vue:260
|
370 |
+
// Reference: src/components/BusinessHoursOptions.vue:743
|
371 |
+
// Reference: src/components/TestimonialOptions.vue:553
|
372 |
+
// Reference: src/views/SettingsAccess-Lite.vue:323
|
373 |
+
__( 'No', 'coming-soon' ),
|
374 |
+
|
375 |
+
// Reference: src/admin/SettingsGeneral.vue:383
|
376 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1908
|
377 |
+
__( 'Could not be saved. Please contact Support if you continue to experience this issue.', 'coming-soon' ),
|
378 |
+
|
379 |
+
// Reference: src/admin/SettingsGeneral.vue:448
|
380 |
+
// Reference: src/views/Setup.vue:1541
|
381 |
+
__( 'Saved!', 'coming-soon' ),
|
382 |
+
|
383 |
+
// Reference: src/admin/SettingsGeneral.vue:469
|
384 |
+
__( 'Looks like you don\'t have permission to save.', 'coming-soon' ),
|
385 |
+
|
386 |
+
// Reference: src/admin/Setup-Lite.vue:853
|
387 |
+
__( '<h1 class=\'sp-text-2xl sp-text-neutral sp-m-0 sp-mb-4 sp-font-bold\'>Template Setup Complete</h1>', 'coming-soon' ),
|
388 |
+
|
389 |
+
// Reference: src/admin/Setup-Lite.vue:854
|
390 |
+
__( 'You can close this window and get started editing you page<br> or setup a new page.', 'coming-soon' ),
|
391 |
+
|
392 |
+
// Reference: src/admin/Setup-Lite.vue:855
|
393 |
+
// Reference: src/components/ColorPicker.vue:266
|
394 |
+
// Reference: src/components/CustomHTMLOptions.vue:203
|
395 |
+
// Reference: src/components/TypographyControl.vue:276
|
396 |
+
// Reference: src/views/GlobalCSS.vue:1907
|
397 |
+
// Reference: src/views/Setup.vue:1020
|
398 |
+
// Reference: src/views/SetupDesign-Lite.vue:741
|
399 |
+
__( 'Close', 'coming-soon' ),
|
400 |
+
|
401 |
+
// Reference: src/admin/Setup-Lite.vue:856
|
402 |
+
__( 'Click the button below to install and activate the following free plugins:', 'coming-soon' ),
|
403 |
+
|
404 |
+
// Reference: src/admin/Setup-Lite.vue:857
|
405 |
+
__( 'Install and Activate Plugins', 'coming-soon' ),
|
406 |
+
|
407 |
+
// Reference: src/admin/Setup-Lite.vue:858
|
408 |
+
__( 'I\'ll do it later', 'coming-soon' ),
|
409 |
+
|
410 |
+
// Reference: src/admin/Setup-Lite.vue:864
|
411 |
+
__( '<h1 class="sp-text-2xl sp-text-neutral sp-m-0 sp-mb-4 sp-font-bold">Finishing Up!</h1><p class="sp-text-sm sp-text-neutral sp-font-normal">Please do not refresh or exit this page<br>until this process is complete.<p>', 'coming-soon' ),
|
412 |
+
|
413 |
+
// Reference: src/admin/Setup-Lite.vue:869
|
414 |
+
__( 'Setup a Coming Soon Page', 'coming-soon' ),
|
415 |
+
|
416 |
+
// Reference: src/admin/Setup-Lite.vue:870
|
417 |
+
__( 'A Coming Soon Page will hide your site from public but you\'ll still be able to see it and work on it if logged in.', 'coming-soon' ),
|
418 |
+
|
419 |
+
// Reference: src/admin/Setup-Lite.vue:876
|
420 |
+
__( 'Setup a Maintenance Page', 'coming-soon' ),
|
421 |
+
|
422 |
+
// Reference: src/admin/Setup-Lite.vue:877
|
423 |
+
__( 'A Maintenance Page will notify search engines that the site is unavailable.', 'coming-soon' ),
|
424 |
+
|
425 |
+
// Reference: src/admin/Setup-Lite.vue:881
|
426 |
+
__( 'Setup a Landing Page', 'coming-soon' ),
|
427 |
+
|
428 |
+
// Reference: src/admin/Setup-Lite.vue:882
|
429 |
+
__( 'Landing Pages are meant to be standalone pages seperate from the design of your site and theme.', 'coming-soon' ),
|
430 |
+
|
431 |
+
// Reference: src/admin/Setup-Lite.vue:886
|
432 |
+
__( 'Edit Landing Pages', 'coming-soon' ),
|
433 |
+
|
434 |
+
// Reference: src/admin/Setup-Lite.vue:887
|
435 |
+
__( 'Build a Website', 'coming-soon' ),
|
436 |
+
|
437 |
+
// Reference: src/admin/Setup-Lite.vue:888
|
438 |
+
__( 'Build your enite Website. Create Headers, Footers, Pages, Posts, Archives, Sidebars, and more.', 'coming-soon' ),
|
439 |
+
|
440 |
+
// Reference: src/admin/Setup-Lite.vue:892
|
441 |
+
__( 'Select a Theme for my Website', 'coming-soon' ),
|
442 |
+
|
443 |
+
// Reference: src/admin/Setup-Lite.vue:896
|
444 |
+
__( 'Edit Theme', 'coming-soon' ),
|
445 |
+
|
446 |
+
// Reference: src/admin/Setup-Lite.vue:897
|
447 |
+
__( 'Build a WooCommerce Store', 'coming-soon' ),
|
448 |
+
|
449 |
+
// Reference: src/admin/Setup-Lite.vue:898
|
450 |
+
__( 'Create an entire WooCommerce store. Customize product pages, checkout, cart, product grids, and more.', 'coming-soon' ),
|
451 |
+
|
452 |
+
// Reference: src/admin/Setup-Lite.vue:902
|
453 |
+
__( 'Select a Theme for my Store', 'coming-soon' ),
|
454 |
+
|
455 |
+
// Reference: src/admin/Setup-Lite.vue:903
|
456 |
+
__( 'Setup a Login Page', 'coming-soon' ),
|
457 |
+
|
458 |
+
// Reference: src/admin/Setup-Lite.vue:904
|
459 |
+
__( 'Create a custom Login page for your website.', 'coming-soon' ),
|
460 |
+
|
461 |
+
// Reference: src/admin/Setup-Lite.vue:908
|
462 |
+
__( 'Setup a 404 Page', 'coming-soon' ),
|
463 |
+
|
464 |
+
// Reference: src/admin/Setup-Lite.vue:909
|
465 |
+
__( 'Create a custom 404 page for your website.', 'coming-soon' ),
|
466 |
+
|
467 |
+
// Reference: src/admin/Setup-Lite.vue:913
|
468 |
+
__( 'Dismiss This Setup Page', 'coming-soon' ),
|
469 |
+
|
470 |
+
// Reference: src/admin/Setup-Lite.vue:914
|
471 |
+
__( 'Finish Setup', 'coming-soon' ),
|
472 |
+
|
473 |
+
// Reference: src/admin/Setup-Lite.vue:948
|
474 |
+
__( 'There was an issue completing the setup. Please refresh the page and try again.', 'coming-soon' ),
|
475 |
+
|
476 |
+
// Reference: src/admin/Subscribers-Lite.vue:250
|
477 |
+
__( 'Subscribers Overview', 'coming-soon' ),
|
478 |
+
|
479 |
+
// Reference: src/admin/Subscribers-Lite.vue:251
|
480 |
+
__( 'Export to CSV', 'coming-soon' ),
|
481 |
+
|
482 |
+
// Reference: src/admin/Subscribers-Lite.vue:253
|
483 |
+
__( 'All Pages', 'coming-soon' ),
|
484 |
+
|
485 |
+
// Reference: src/admin/Subscribers-Lite.vue:254
|
486 |
+
__( 'Coming Soon Page', 'coming-soon' ),
|
487 |
+
|
488 |
+
// Reference: src/admin/Subscribers-Lite.vue:255
|
489 |
+
__( 'Maintenance Mode Page', 'coming-soon' ),
|
490 |
+
|
491 |
+
// Reference: src/admin/Subscribers-Lite.vue:258
|
492 |
+
__( 'Days', 'coming-soon' ),
|
493 |
+
|
494 |
+
// Reference: src/admin/Subscribers-Lite.vue:260
|
495 |
+
__( 'You do not have any subscribers yet.', 'coming-soon' ),
|
496 |
+
|
497 |
+
// Reference: src/admin/Subscribers-Lite.vue:264
|
498 |
+
__( 'Go to Pages', 'coming-soon' ),
|
499 |
+
|
500 |
+
// Reference: src/admin/Subscribers-Lite.vue:265
|
501 |
+
__( 'Search Emails', 'coming-soon' ),
|
502 |
+
|
503 |
+
// Reference: src/admin/Subscribers-Lite.vue:304
|
504 |
+
// Reference: src/components/SocialProfilesOptions.vue:683
|
505 |
+
__( 'Email', 'coming-soon' ),
|
506 |
+
|
507 |
+
// Reference: src/admin/Subscribers-Lite.vue:318
|
508 |
+
__( 'Created', 'coming-soon' ),
|
509 |
+
|
510 |
+
// Reference: src/admin/Subscribers-Lite.vue:325
|
511 |
+
// Reference: src/components/PostinfoOptions.vue:603
|
512 |
+
// Reference: src/components/ProductMetaOptions.vue:338
|
513 |
+
__( 'Delete', 'coming-soon' ),
|
514 |
+
|
515 |
+
// Reference: src/admin/Subscribers-Lite.vue:441
|
516 |
+
__( 'Subscribers Deleted', 'coming-soon' ),
|
517 |
+
|
518 |
+
// Reference: src/admin/Subscribers-Lite.vue:491
|
519 |
+
__( 'Exported Started', 'coming-soon' ),
|
520 |
+
|
521 |
+
// Reference: src/admin/ThemeChooser.vue:798
|
522 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1208
|
523 |
+
__( 'All Templates', 'coming-soon' ),
|
524 |
+
|
525 |
+
// Reference: src/admin/ThemeChooser.vue:799
|
526 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1209
|
527 |
+
__( 'Favorite Templates', 'coming-soon' ),
|
528 |
+
|
529 |
+
// Reference: src/admin/ThemeChooser.vue:800
|
530 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1213
|
531 |
+
__( 'Filter:', 'coming-soon' ),
|
532 |
+
|
533 |
+
// Reference: src/admin/ThemeChooser.vue:802
|
534 |
+
// Reference: src/views/SectionTemplateOptions-Lite.vue:431
|
535 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1215
|
536 |
+
__( 'No Templates Found', 'coming-soon' ),
|
537 |
+
|
538 |
+
// Reference: src/admin/ThemeChooser.vue:803
|
539 |
+
// Reference: src/components/ImageControl.vue:254
|
540 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1229
|
541 |
+
__( 'First Page', 'coming-soon' ),
|
542 |
+
|
543 |
+
// Reference: src/admin/ThemeChooser.vue:804
|
544 |
+
// Reference: src/components/ImageControl.vue:255
|
545 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1230
|
546 |
+
__( 'Prev', 'coming-soon' ),
|
547 |
+
|
548 |
+
// Reference: src/admin/ThemeChooser.vue:805
|
549 |
+
// Reference: src/components/ImageControl.vue:256
|
550 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1231
|
551 |
+
__( 'Next', 'coming-soon' ),
|
552 |
+
|
553 |
+
// Reference: src/admin/ThemeChooser.vue:806
|
554 |
+
// Reference: src/components/ImageControl.vue:257
|
555 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1232
|
556 |
+
__( 'Last Page', 'coming-soon' ),
|
557 |
+
|
558 |
+
// Reference: src/admin/ThemeChooser.vue:807
|
559 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1233
|
560 |
+
__( 'Search templates...', 'coming-soon' ),
|
561 |
+
|
562 |
+
// Reference: src/admin/ThemeChooser.vue:808
|
563 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1173
|
564 |
+
__( 'WooCommerce', 'coming-soon' ),
|
565 |
+
|
566 |
+
// Reference: src/admin/ThemeChooser.vue:809
|
567 |
+
__( 'Sort:', 'coming-soon' ),
|
568 |
+
|
569 |
+
// Reference: src/admin/Welcome-Lite.vue:120
|
570 |
+
__( 'Thank you for choosing SeedProd - The Best Website Builder, Landing Page Builder, Coming Soon, Maintenance Mode & more...', 'coming-soon' ),
|
571 |
+
|
572 |
+
// Reference: src/admin/Welcome-Lite.vue:124
|
573 |
+
__( 'Get Started →', 'coming-soon' ),
|
574 |
+
|
575 |
+
// Reference: src/admin/Welcome-Lite.vue:125
|
576 |
+
__( '← Exit Setup', 'coming-soon' ),
|
577 |
+
|
578 |
+
// Reference: src/admin/Welcome-Lite.vue:126
|
579 |
+
__( 'Note: You will be transfered to an external service to complete the setup wizard.', 'coming-soon' ),
|
580 |
+
|
581 |
+
// Reference: src/admin/Welcome-Lite.vue:139
|
582 |
+
__( 'Use our setup wizard to get started in less than 2 minutes and unlock free templates!', 'coming-soon' ),
|
583 |
+
|
584 |
+
// Reference: src/admin/Welcome-Lite.vue:144
|
585 |
+
__( 'Use our setup wizard to get started in less than 2 minutes!', 'coming-soon' ),
|
586 |
+
|
587 |
+
// Reference: src/admin/Welcome-Lite.vue:156
|
588 |
+
__( 'Are you sure you want to exit the setup wizard?
|
589 |
+
|
590 |
+
You will miss out on our free templates. 😬', 'coming-soon' ),
|
591 |
+
|
592 |
+
// Reference: src/admin/Welcome-Lite.vue:161
|
593 |
+
__( 'Are you sure you want to exit the setup wizard? 😬', 'coming-soon' ),
|
594 |
+
|
595 |
+
// Reference: src/components/AccordionOptions.vue:599
|
596 |
+
// Reference: src/components/AddToCartOptions.vue:1066
|
597 |
+
// Reference: src/components/AdditionalInformationOptions.vue:127
|
598 |
+
// Reference: src/components/BulletListOptions.vue:494
|
599 |
+
// Reference: src/components/BusinessHoursOptions.vue:712
|
600 |
+
// Reference: src/components/ButtonOptions.vue:1202
|
601 |
+
// Reference: src/components/ColOptions.vue:662
|
602 |
+
// Reference: src/components/ContactFormOptions.vue:290
|
603 |
+
// Reference: src/components/CountdownOptions.vue:845
|
604 |
+
// Reference: src/components/CustomHTMLOptions.vue:197
|
605 |
+
// Reference: src/components/DividerOptions.vue:358
|
606 |
+
// Reference: src/components/FeatureOptions.vue:458
|
607 |
+
// Reference: src/components/FormOptions.vue:176
|
608 |
+
// Reference: src/components/GiveawayOptions.vue:162
|
609 |
+
// Reference: src/components/GoogleMapsOptions.vue:227
|
610 |
+
// Reference: src/components/HeaderOptions.vue:445
|
611 |
+
// Reference: src/components/IconFeatureOptions.vue:448
|
612 |
+
// Reference: src/components/IconOptions.vue:207
|
613 |
+
// Reference: src/components/ImageOptions.vue:703
|
614 |
+
// Reference: src/components/LoginOptions.vue:875
|
615 |
+
// Reference: src/components/MenuCartOptions.vue:182
|
616 |
+
// Reference: src/components/NavOptions.vue:568
|
617 |
+
// Reference: src/components/OptinFormOptions.vue:841
|
618 |
+
// Reference: src/components/PostauthorboxOptions.vue:334
|
619 |
+
// Reference: src/components/PostcommentsOptions.vue:199
|
620 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:638
|
621 |
+
// Reference: src/components/PostinfoOptions.vue:582
|
622 |
+
// Reference: src/components/PostnavigationOptions.vue:93
|
623 |
+
// Reference: src/components/PricingTableOptions.vue:1230
|
624 |
+
// Reference: src/components/ProductDataTabsOptions.vue:335
|
625 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:638
|
626 |
+
// Reference: src/components/ProductMetaOptions.vue:328
|
627 |
+
// Reference: src/components/ProductPriceOptions.vue:180
|
628 |
+
// Reference: src/components/ProductRelatedOptions.vue:612
|
629 |
+
// Reference: src/components/ProgressBarOptions.vue:319
|
630 |
+
// Reference: src/components/RowOptions.vue:661
|
631 |
+
// Reference: src/components/SectionOptions.vue:385
|
632 |
+
// Reference: src/components/ShortcodeOptions.vue:141
|
633 |
+
// Reference: src/components/SocialSharingOptions.vue:383
|
634 |
+
// Reference: src/components/StarRatingOptions.vue:295
|
635 |
+
// Reference: src/components/TemplatetagOptions.vue:121
|
636 |
+
// Reference: src/components/TestimonialOptions.vue:542
|
637 |
+
// Reference: src/components/TextOptions.vue:375
|
638 |
+
// Reference: src/components/UpsellsOptions.vue:612
|
639 |
+
// Reference: src/components/VideoOptions.vue:229
|
640 |
+
// Reference: src/components/WCAddToCartOptions.vue:685
|
641 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1123
|
642 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:186
|
643 |
+
__( 'Content', 'coming-soon' ),
|
644 |
+
|
645 |
+
// Reference: src/components/AccordionOptions.vue:600
|
646 |
+
// Reference: src/components/AddToCartOptions.vue:1067
|
647 |
+
// Reference: src/components/AdditionalInformationOptions.vue:128
|
648 |
+
// Reference: src/components/BulletListOptions.vue:495
|
649 |
+
// Reference: src/components/BusinessHoursOptions.vue:717
|
650 |
+
// Reference: src/components/ButtonOptions.vue:1203
|
651 |
+
// Reference: src/components/ColOptions.vue:679
|
652 |
+
// Reference: src/components/ContactFormOptions.vue:291
|
653 |
+
// Reference: src/components/CountdownOptions.vue:847
|
654 |
+
// Reference: src/components/CustomHTMLOptions.vue:198
|
655 |
+
// Reference: src/components/DividerOptions.vue:359
|
656 |
+
// Reference: src/components/FeatureOptions.vue:459
|
657 |
+
// Reference: src/components/FormOptions.vue:177
|
658 |
+
// Reference: src/components/GiveawayOptions.vue:163
|
659 |
+
// Reference: src/components/GoogleMapsOptions.vue:228
|
660 |
+
// Reference: src/components/HeaderOptions.vue:446
|
661 |
+
// Reference: src/components/IconFeatureOptions.vue:449
|
662 |
+
// Reference: src/components/IconOptions.vue:208
|
663 |
+
// Reference: src/components/ImageOptions.vue:705
|
664 |
+
// Reference: src/components/LoginOptions.vue:876
|
665 |
+
// Reference: src/components/MenuCartOptions.vue:183
|
666 |
+
// Reference: src/components/NavOptions.vue:569
|
667 |
+
// Reference: src/components/OptinFormOptions.vue:843
|
668 |
+
// Reference: src/components/PostauthorboxOptions.vue:335
|
669 |
+
// Reference: src/components/PostcommentsOptions.vue:200
|
670 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:640
|
671 |
+
// Reference: src/components/PostinfoOptions.vue:583
|
672 |
+
// Reference: src/components/PostnavigationOptions.vue:94
|
673 |
+
// Reference: src/components/PostsOptions.vue:1455
|
674 |
+
// Reference: src/components/PricingTableOptions.vue:1231
|
675 |
+
// Reference: src/components/ProductDataTabsOptions.vue:336
|
676 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:640
|
677 |
+
// Reference: src/components/ProductMetaOptions.vue:329
|
678 |
+
// Reference: src/components/ProductPriceOptions.vue:181
|
679 |
+
// Reference: src/components/ProductRelatedOptions.vue:605
|
680 |
+
// Reference: src/components/ProgressBarOptions.vue:321
|
681 |
+
// Reference: src/components/RowOptions.vue:678
|
682 |
+
// Reference: src/components/SectionOptions.vue:386
|
683 |
+
// Reference: src/components/ShortcodeOptions.vue:142
|
684 |
+
// Reference: src/components/SocialSharingOptions.vue:384
|
685 |
+
// Reference: src/components/StarRatingOptions.vue:296
|
686 |
+
// Reference: src/components/TemplatetagOptions.vue:122
|
687 |
+
// Reference: src/components/TestimonialOptions.vue:543
|
688 |
+
// Reference: src/components/TextOptions.vue:376
|
689 |
+
// Reference: src/components/UpsellsOptions.vue:605
|
690 |
+
// Reference: src/components/VideoOptions.vue:230
|
691 |
+
// Reference: src/components/WCAddToCartOptions.vue:686
|
692 |
+
// Reference: src/components/WCCartOptions.vue:495
|
693 |
+
// Reference: src/components/WCCheckoutOptions.vue:763
|
694 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1076
|
695 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:187
|
696 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1169
|
697 |
+
__( 'Advanced', 'coming-soon' ),
|
698 |
+
|
699 |
+
// Reference: src/components/AccordionOptions.vue:601
|
700 |
+
__( 'Accordion', 'coming-soon' ),
|
701 |
+
|
702 |
+
// Reference: src/components/AccordionOptions.vue:602
|
703 |
+
// Reference: src/components/BulletListOptions.vue:497
|
704 |
+
// Reference: src/components/BusinessHoursOptions.vue:719
|
705 |
+
// Reference: src/components/FormOptions.vue:179
|
706 |
+
// Reference: src/components/NavOptions.vue:571
|
707 |
+
// Reference: src/components/PricingTableOptions.vue:1233
|
708 |
+
__( 'Add New Item', 'coming-soon' ),
|
709 |
+
|
710 |
+
// Reference: src/components/AccordionOptions.vue:603
|
711 |
+
// Reference: src/components/BulletListOptions.vue:498
|
712 |
+
// Reference: src/components/HeaderOptions.vue:451
|
713 |
+
// Reference: src/components/NavOptions.vue:572
|
714 |
+
// Reference: src/components/OptinFormOptions.vue:891
|
715 |
+
// Reference: src/components/TextOptions.vue:380
|
716 |
+
// Reference: src/components/TypographyControl.vue:278
|
717 |
+
__( 'Font Size', 'coming-soon' ),
|
718 |
+
|
719 |
+
// Reference: src/components/AccordionOptions.vue:604
|
720 |
+
// Reference: src/components/AddToCartOptions.vue:1070
|
721 |
+
// Reference: src/components/BusinessHoursOptions.vue:722
|
722 |
+
// Reference: src/components/ColOptions.vue:691
|
723 |
+
// Reference: src/components/CountdownOptions.vue:875
|
724 |
+
// Reference: src/components/NavOptions.vue:573
|
725 |
+
// Reference: src/components/PostinfoOptions.vue:580
|
726 |
+
// Reference: src/components/PricingTableOptions.vue:1292
|
727 |
+
// Reference: src/components/ProductMetaOptions.vue:326
|
728 |
+
// Reference: src/components/ProductPriceOptions.vue:185
|
729 |
+
// Reference: src/components/RowOptions.vue:690
|
730 |
+
// Reference: src/components/SocialProfilesOptions.vue:695
|
731 |
+
// Reference: src/components/SocialSharingOptions.vue:404
|
732 |
+
// Reference: src/components/SpaceBetweenControl.vue:84
|
733 |
+
// Reference: src/components/StarRatingOptions.vue:303
|
734 |
+
__( 'Space Between', 'coming-soon' ),
|
735 |
+
|
736 |
+
// Reference: src/components/AccordionOptions.vue:605
|
737 |
+
// Reference: src/components/AddToCartOptions.vue:1071
|
738 |
+
// Reference: src/components/BulletListOptions.vue:499
|
739 |
+
// Reference: src/components/BusinessHoursOptions.vue:725
|
740 |
+
// Reference: src/components/ButtonOptions.vue:1207
|
741 |
+
// Reference: src/components/CountdownOptions.vue:885
|
742 |
+
// Reference: src/components/DividerOptions.vue:361
|
743 |
+
// Reference: src/components/GoogleMapsOptions.vue:229
|
744 |
+
// Reference: src/components/HeaderOptions.vue:448
|
745 |
+
// Reference: src/components/IconOptions.vue:209
|
746 |
+
// Reference: src/components/ImageOptions.vue:708
|
747 |
+
// Reference: src/components/MenuCartOptions.vue:185
|
748 |
+
// Reference: src/components/PostauthorboxOptions.vue:354
|
749 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:643
|
750 |
+
// Reference: src/components/PostsOptions.vue:1453
|
751 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:643
|
752 |
+
// Reference: src/components/ProductRelatedOptions.vue:603
|
753 |
+
// Reference: src/components/ProgressBarOptions.vue:339
|
754 |
+
// Reference: src/components/RowOptions.vue:664
|
755 |
+
// Reference: src/components/SocialProfilesOptions.vue:702
|
756 |
+
// Reference: src/components/SocialSharingOptions.vue:387
|
757 |
+
// Reference: src/components/StarRatingOptions.vue:298
|
758 |
+
// Reference: src/components/TextOptions.vue:378
|
759 |
+
// Reference: src/components/UpsellsOptions.vue:603
|
760 |
+
// Reference: src/components/VideoOptions.vue:232
|
761 |
+
// Reference: src/components/WCAddToCartOptions.vue:690
|
762 |
+
// Reference: src/components/WCCartOptions.vue:493
|
763 |
+
// Reference: src/components/WCCheckoutOptions.vue:761
|
764 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1074
|
765 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:189
|
766 |
+
__( 'Styles', 'coming-soon' ),
|
767 |
+
|
768 |
+
// Reference: src/components/AccordionOptions.vue:606
|
769 |
+
// Reference: src/components/BulletListOptions.vue:500
|
770 |
+
// Reference: src/components/BusinessHoursOptions.vue:726
|
771 |
+
// Reference: src/components/NavOptions.vue:575
|
772 |
+
__( 'List Layout', 'coming-soon' ),
|
773 |
+
|
774 |
+
// Reference: src/components/AccordionOptions.vue:607
|
775 |
+
// Reference: src/components/BulletListOptions.vue:501
|
776 |
+
// Reference: src/components/BusinessHoursOptions.vue:727
|
777 |
+
// Reference: src/components/ColOptions.vue:681
|
778 |
+
// Reference: src/components/NavOptions.vue:576
|
779 |
+
// Reference: src/components/RowOptions.vue:680
|
780 |
+
// Reference: src/components/ShadowControl.vue:140
|
781 |
+
__( 'Vertical', 'coming-soon' ),
|
782 |
+
|
783 |
+
// Reference: src/components/AccordionOptions.vue:608
|
784 |
+
// Reference: src/components/BulletListOptions.vue:502
|
785 |
+
// Reference: src/components/BusinessHoursOptions.vue:728
|
786 |
+
// Reference: src/components/ColOptions.vue:680
|
787 |
+
// Reference: src/components/NavOptions.vue:577
|
788 |
+
// Reference: src/components/RowOptions.vue:679
|
789 |
+
// Reference: src/components/ShadowControl.vue:139
|
790 |
+
__( 'Horizontal', 'coming-soon' ),
|
791 |
+
|
792 |
+
// Reference: src/components/AccordionOptions.vue:609
|
793 |
+
// Reference: src/components/AdditionalInformationOptions.vue:126
|
794 |
+
// Reference: src/components/BulletListOptions.vue:503
|
795 |
+
// Reference: src/components/ContactFormOptions.vue:294
|
796 |
+
// Reference: src/components/DividerOptions.vue:390
|
797 |
+
// Reference: src/components/GiveawayOptions.vue:166
|
798 |
+
// Reference: src/components/NavOptions.vue:578
|
799 |
+
// Reference: src/components/PostinfoOptions.vue:606
|
800 |
+
// Reference: src/components/ProductDataTabsOptions.vue:326
|
801 |
+
// Reference: src/components/ProductMetaOptions.vue:341
|
802 |
+
// Reference: src/components/StarRatingOptions.vue:305
|
803 |
+
// Reference: src/components/WCCartOptions.vue:537
|
804 |
+
// Reference: src/components/WCCheckoutOptions.vue:805
|
805 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1118
|
806 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:184
|
807 |
+
__( 'Text Color', 'coming-soon' ),
|
808 |
+
|
809 |
+
// Reference: src/components/AccordionOptions.vue:610
|
810 |
+
// Reference: src/components/BulletListOptions.vue:504
|
811 |
+
// Reference: src/components/BusinessHoursOptions.vue:730
|
812 |
+
// Reference: src/components/SpacingSectionControl.vue:74
|
813 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1125
|
814 |
+
__( 'Spacing', 'coming-soon' ),
|
815 |
+
|
816 |
+
// Reference: src/components/AccordionOptions.vue:611
|
817 |
+
// Reference: src/components/BulletListOptions.vue:505
|
818 |
+
// Reference: src/components/BusinessHoursOptions.vue:731
|
819 |
+
// Reference: src/components/SpacingSectionControl.vue:75
|
820 |
+
__( 'Top Margin', 'coming-soon' ),
|
821 |
+
|
822 |
+
// Reference: src/components/AccordionOptions.vue:612
|
823 |
+
// Reference: src/components/BulletListOptions.vue:506
|
824 |
+
// Reference: src/components/DividerOptions.vue:381
|
825 |
+
// Reference: src/components/FeatureOptions.vue:454
|
826 |
+
// Reference: src/components/HeaderOptions.vue:450
|
827 |
+
// Reference: src/components/IconFeatureOptions.vue:444
|
828 |
+
// Reference: src/components/NavOptions.vue:579
|
829 |
+
// Reference: src/components/PostsOptions.vue:1513
|
830 |
+
// Reference: src/components/PricingTableOptions.vue:1244
|
831 |
+
// Reference: src/components/TestimonialOptions.vue:544
|
832 |
+
// Reference: src/components/TextOptions.vue:379
|
833 |
+
// Reference: src/views/GlobalCSS.vue:1913
|
834 |
+
// Reference: src/views/SetupDesign-Lite.vue:747
|
835 |
+
__( 'Text', 'coming-soon' ),
|
836 |
+
|
837 |
+
// Reference: src/components/AccordionOptions.vue:613
|
838 |
+
// Reference: src/components/BulletListOptions.vue:507
|
839 |
+
// Reference: src/components/DividerOptions.vue:380
|
840 |
+
// Reference: src/components/FeatureOptions.vue:449
|
841 |
+
// Reference: src/components/IconFeatureOptions.vue:439
|
842 |
+
// Reference: src/components/IconOptions.vue:210
|
843 |
+
// Reference: src/components/PostinfoOptions.vue:597
|
844 |
+
// Reference: src/components/PricingTableOptions.vue:1245
|
845 |
+
// Reference: src/components/SocialProfilesOptions.vue:701
|
846 |
+
// Reference: src/components/TestimonialOptions.vue:536
|
847 |
+
__( 'Icon', 'coming-soon' ),
|
848 |
+
|
849 |
+
// Reference: src/components/AccordionOptions.vue:614
|
850 |
+
// Reference: src/components/AddToCartOptions.vue:1081
|
851 |
+
// Reference: src/components/BulletListOptions.vue:508
|
852 |
+
// Reference: src/components/BusinessHoursOptions.vue:735
|
853 |
+
// Reference: src/components/ButtonOptions.vue:1220
|
854 |
+
// Reference: src/components/CountdownOptions.vue:871
|
855 |
+
// Reference: src/components/ImageOptions.vue:716
|
856 |
+
// Reference: src/components/OptinFormOptions.vue:867
|
857 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:651
|
858 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:651
|
859 |
+
// Reference: src/components/ProgressBarOptions.vue:325
|
860 |
+
// Reference: src/components/SocialProfilesOptions.vue:670
|
861 |
+
// Reference: src/components/WCAddToCartOptions.vue:703
|
862 |
+
// Reference: src/components/WCCartOptions.vue:503
|
863 |
+
// Reference: src/components/WCCheckoutOptions.vue:771
|
864 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1084
|
865 |
+
__( 'Choose Your Style', 'coming-soon' ),
|
866 |
+
|
867 |
+
// Reference: src/components/AccordionOptions.vue:615
|
868 |
+
__( 'Closed Icon Color', 'coming-soon' ),
|
869 |
+
|
870 |
+
// Reference: src/components/AccordionOptions.vue:616
|
871 |
+
__( 'Closed Icon', 'coming-soon' ),
|
872 |
+
|
873 |
+
// Reference: src/components/AccordionOptions.vue:617
|
874 |
+
__( 'Open Icon Color', 'coming-soon' ),
|
875 |
+
|
876 |
+
// Reference: src/components/AccordionOptions.vue:618
|
877 |
+
__( 'Open Icon', 'coming-soon' ),
|
878 |
+
|
879 |
+
// Reference: src/components/AccordionOptions.vue:619
|
880 |
+
// Reference: src/components/AdditionalInformationOptions.vue:125
|
881 |
+
// Reference: src/components/FeatureOptions.vue:457
|
882 |
+
// Reference: src/components/IconFeatureOptions.vue:447
|
883 |
+
// Reference: src/components/WCCartOptions.vue:541
|
884 |
+
// Reference: src/components/WCCheckoutOptions.vue:809
|
885 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1122
|
886 |
+
// Reference: src/views/GlobalCSS.vue:1939
|
887 |
+
__( 'Header Color', 'coming-soon' ),
|
888 |
+
|
889 |
+
// Reference: src/components/AccordionOptions.vue:620
|
890 |
+
// Reference: src/components/PricingTableOptions.vue:1252
|
891 |
+
__( 'Header Open Color', 'coming-soon' ),
|
892 |
+
|
893 |
+
// Reference: src/components/AccordionOptions.vue:621
|
894 |
+
// Reference: src/components/BusinessHoursOptions.vue:749
|
895 |
+
// Reference: src/components/PricingTableOptions.vue:1253
|
896 |
+
// Reference: src/components/ProductMetaOptions.vue:344
|
897 |
+
__( 'Divider Color', 'coming-soon' ),
|
898 |
+
|
899 |
+
// Reference: src/components/AccordionOptions.vue:622
|
900 |
+
// Reference: src/components/AddToCartOptions.vue:1100
|
901 |
+
// Reference: src/components/BackgroundControl.vue:462
|
902 |
+
// Reference: src/components/BusinessHoursOptions.vue:739
|
903 |
+
// Reference: src/components/ButtonOptions.vue:1239
|
904 |
+
// Reference: src/components/ColOptions.vue:673
|
905 |
+
// Reference: src/components/FeatureOptions.vue:455
|
906 |
+
// Reference: src/components/HeaderOptions.vue:465
|
907 |
+
// Reference: src/components/IconFeatureOptions.vue:445
|
908 |
+
// Reference: src/components/OptinFormOptions.vue:878
|
909 |
+
// Reference: src/components/PostauthorboxOptions.vue:358
|
910 |
+
// Reference: src/components/PricingTableOptions.vue:1288
|
911 |
+
// Reference: src/components/ProductDataTabsOptions.vue:327
|
912 |
+
// Reference: src/components/ProgressBarOptions.vue:338
|
913 |
+
// Reference: src/components/RowOptions.vue:675
|
914 |
+
// Reference: src/components/SectionOptions.vue:383
|
915 |
+
// Reference: src/components/SocialProfilesOptions.vue:715
|
916 |
+
// Reference: src/components/TestimonialOptions.vue:539
|
917 |
+
// Reference: src/components/TextOptions.vue:390
|
918 |
+
// Reference: src/components/WCAddToCartOptions.vue:722
|
919 |
+
// Reference: src/components/WCCartOptions.vue:536
|
920 |
+
// Reference: src/components/WCCheckoutOptions.vue:804
|
921 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1117
|
922 |
+
__( 'Background Color', 'coming-soon' ),
|
923 |
+
|
924 |
+
// Reference: src/components/AccordionOptions.vue:623
|
925 |
+
// Reference: src/components/AddToCartOptions.vue:1098
|
926 |
+
// Reference: src/components/BulletListOptions.vue:510
|
927 |
+
// Reference: src/components/BusinessHoursOptions.vue:756
|
928 |
+
// Reference: src/components/ButtonOptions.vue:1237
|
929 |
+
// Reference: src/components/ColOptions.vue:665
|
930 |
+
// Reference: src/components/HeaderOptions.vue:457
|
931 |
+
// Reference: src/components/NavOptions.vue:599
|
932 |
+
// Reference: src/components/PricingTableOptions.vue:1314
|
933 |
+
// Reference: src/components/ProgressBarOptions.vue:328
|
934 |
+
// Reference: src/components/TextOptions.vue:381
|
935 |
+
// Reference: src/components/WCAddToCartOptions.vue:720
|
936 |
+
__( 'Text Shadow', 'coming-soon' ),
|
937 |
+
|
938 |
+
// Reference: src/components/AccordionOptions.vue:631
|
939 |
+
// Reference: src/components/BulletListOptions.vue:518
|
940 |
+
// Reference: src/components/BusinessHoursOptions.vue:764
|
941 |
+
// Reference: src/components/PaddingControl.vue:312
|
942 |
+
// Reference: src/components/PricingTableOptions.vue:1322
|
943 |
+
__( 'Padding', 'coming-soon' ),
|
944 |
+
|
945 |
+
// Reference: src/components/AccordionOptions.vue:632
|
946 |
+
// Reference: src/components/BorderRadiusControl.vue:129
|
947 |
+
// Reference: src/components/BorderWidthControl.vue:121
|
948 |
+
// Reference: src/components/BulletListOptions.vue:519
|
949 |
+
// Reference: src/components/BusinessHoursOptions.vue:765
|
950 |
+
// Reference: src/components/DisplaySectionControl.vue:194
|
951 |
+
// Reference: src/components/ImageOptions.vue:710
|
952 |
+
// Reference: src/components/MarginControl.vue:333
|
953 |
+
// Reference: src/components/PaddingControl.vue:313
|
954 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:645
|
955 |
+
// Reference: src/components/PostsOptions.vue:1558
|
956 |
+
// Reference: src/components/PricingTableOptions.vue:1323
|
957 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:645
|
958 |
+
// Reference: src/components/ProductRelatedOptions.vue:645
|
959 |
+
// Reference: src/components/ShapeDividerControl.vue:347
|
960 |
+
// Reference: src/components/UpsellsOptions.vue:645
|
961 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1183
|
962 |
+
__( 'Top', 'coming-soon' ),
|
963 |
+
|
964 |
+
// Reference: src/components/AccordionOptions.vue:633
|
965 |
+
// Reference: src/components/BorderRadiusControl.vue:132
|
966 |
+
// Reference: src/components/BorderWidthControl.vue:123
|
967 |
+
// Reference: src/components/BulletListOptions.vue:520
|
968 |
+
// Reference: src/components/BusinessHoursOptions.vue:766
|
969 |
+
// Reference: src/components/DisplaySectionControl.vue:196
|
970 |
+
// Reference: src/components/ImageOptions.vue:712
|
971 |
+
// Reference: src/components/MarginControl.vue:335
|
972 |
+
// Reference: src/components/PaddingControl.vue:315
|
973 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:647
|
974 |
+
// Reference: src/components/PostsOptions.vue:1559
|
975 |
+
// Reference: src/components/PricingTableOptions.vue:1324
|
976 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:647
|
977 |
+
// Reference: src/components/ProductRelatedOptions.vue:647
|
978 |
+
// Reference: src/components/ShapeDividerControl.vue:348
|
979 |
+
// Reference: src/components/UpsellsOptions.vue:647
|
980 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1185
|
981 |
+
__( 'Bottom', 'coming-soon' ),
|
982 |
+
|
983 |
+
// Reference: src/components/AccordionOptions.vue:634
|
984 |
+
// Reference: src/components/BorderRadiusControl.vue:131
|
985 |
+
// Reference: src/components/BorderWidthControl.vue:122
|
986 |
+
// Reference: src/components/BulletListOptions.vue:521
|
987 |
+
// Reference: src/components/BusinessHoursOptions.vue:767
|
988 |
+
// Reference: src/components/DisplaySectionControl.vue:195
|
989 |
+
// Reference: src/components/ImageOptions.vue:711
|
990 |
+
// Reference: src/components/MarginControl.vue:334
|
991 |
+
// Reference: src/components/PaddingControl.vue:314
|
992 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:646
|
993 |
+
// Reference: src/components/PostsOptions.vue:1560
|
994 |
+
// Reference: src/components/PricingTableOptions.vue:1325
|
995 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:646
|
996 |
+
// Reference: src/components/ProductRelatedOptions.vue:646
|
997 |
+
// Reference: src/components/UpsellsOptions.vue:646
|
998 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1184
|
999 |
+
__( 'Right', 'coming-soon' ),
|
1000 |
+
|
1001 |
+
// Reference: src/components/AccordionOptions.vue:635
|
1002 |
+
// Reference: src/components/BorderRadiusControl.vue:130
|
1003 |
+
// Reference: src/components/BorderWidthControl.vue:124
|
1004 |
+
// Reference: src/components/BulletListOptions.vue:522
|
1005 |
+
// Reference: src/components/BusinessHoursOptions.vue:768
|
1006 |
+
// Reference: src/components/DisplaySectionControl.vue:197
|
1007 |
+
// Reference: src/components/ImageOptions.vue:713
|
1008 |
+
// Reference: src/components/MarginControl.vue:336
|
1009 |
+
// Reference: src/components/PaddingControl.vue:316
|
1010 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:648
|
1011 |
+
// Reference: src/components/PostsOptions.vue:1561
|
1012 |
+
// Reference: src/components/PricingTableOptions.vue:1326
|
1013 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:648
|
1014 |
+
// Reference: src/components/ProductRelatedOptions.vue:648
|
1015 |
+
// Reference: src/components/UpsellsOptions.vue:648
|
1016 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1186
|
1017 |
+
__( 'Left', 'coming-soon' ),
|
1018 |
+
|
1019 |
+
// Reference: src/components/AccordionOptions.vue:636
|
1020 |
+
// Reference: src/components/AddToCartOptions.vue:1099
|
1021 |
+
// Reference: src/components/ButtonOptions.vue:1238
|
1022 |
+
// Reference: src/components/CountdownOptions.vue:877
|
1023 |
+
// Reference: src/components/DividerOptions.vue:370
|
1024 |
+
// Reference: src/components/GoogleMapsOptions.vue:231
|
1025 |
+
// Reference: src/components/IconOptions.vue:212
|
1026 |
+
// Reference: src/components/ImageOptions.vue:717
|
1027 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:652
|
1028 |
+
// Reference: src/components/PostsOptions.vue:1530
|
1029 |
+
// Reference: src/components/PricingTableOptions.vue:1327
|
1030 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:652
|
1031 |
+
// Reference: src/components/ProductRelatedOptions.vue:630
|
1032 |
+
// Reference: src/components/ProgressBarOptions.vue:336
|
1033 |
+
// Reference: src/components/RowOptions.vue:667
|
1034 |
+
// Reference: src/components/SectionOptions.vue:370
|
1035 |
+
// Reference: src/components/ShadowControl.vue:129
|
1036 |
+
// Reference: src/components/SocialProfilesOptions.vue:696
|
1037 |
+
// Reference: src/components/SocialSharingOptions.vue:405
|
1038 |
+
// Reference: src/components/TextOptions.vue:389
|
1039 |
+
// Reference: src/components/UpsellsOptions.vue:630
|
1040 |
+
// Reference: src/components/VideoOptions.vue:239
|
1041 |
+
// Reference: src/components/WCAddToCartOptions.vue:721
|
1042 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1168
|
1043 |
+
__( 'Shadow', 'coming-soon' ),
|
1044 |
+
|
1045 |
+
// Reference: src/components/AccordionOptions.vue:637
|
1046 |
+
// Reference: src/components/AddToCartOptions.vue:1107
|
1047 |
+
// Reference: src/components/BulletListOptions.vue:511
|
1048 |
+
// Reference: src/components/BusinessHoursOptions.vue:757
|
1049 |
+
// Reference: src/components/ButtonOptions.vue:1248
|
1050 |
+
// Reference: src/components/ColOptions.vue:666
|
1051 |
+
// Reference: src/components/CountdownOptions.vue:878
|
1052 |
+
// Reference: src/components/DividerOptions.vue:378
|
1053 |
+
// Reference: src/components/GoogleMapsOptions.vue:232
|
1054 |
+
// Reference: src/components/HeaderOptions.vue:458
|
1055 |
+
// Reference: src/components/IconOptions.vue:213
|
1056 |
+
// Reference: src/components/ImageOptions.vue:740
|
1057 |
+
// Reference: src/components/NavOptions.vue:600
|
1058 |
+
// Reference: src/components/PostauthorboxOptions.vue:351
|
1059 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:653
|
1060 |
+
// Reference: src/components/PostinfoOptions.vue:598
|
1061 |
+
// Reference: src/components/PostsOptions.vue:1535
|
1062 |
+
// Reference: src/components/PricingTableOptions.vue:1328
|
1063 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:653
|
1064 |
+
// Reference: src/components/ProductRelatedOptions.vue:635
|
1065 |
+
// Reference: src/components/ProgressBarOptions.vue:329
|
1066 |
+
// Reference: src/components/RowOptions.vue:668
|
1067 |
+
// Reference: src/components/SectionOptions.vue:371
|
1068 |
+
// Reference: src/components/ShadowControl.vue:130
|
1069 |
+
// Reference: src/components/ShapeDividerControl.vue:350
|
1070 |
+
// Reference: src/components/SocialProfilesOptions.vue:697
|
1071 |
+
// Reference: src/components/SocialSharingOptions.vue:397
|
1072 |
+
// Reference: src/components/TextOptions.vue:382
|
1073 |
+
// Reference: src/components/UpsellsOptions.vue:635
|
1074 |
+
// Reference: src/components/VideoOptions.vue:240
|
1075 |
+
// Reference: src/components/WCAddToCartOptions.vue:723
|
1076 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1173
|
1077 |
+
__( 'None', 'coming-soon' ),
|
1078 |
+
|
1079 |
+
// Reference: src/components/AccordionOptions.vue:638
|
1080 |
+
// Reference: src/components/AddToCartOptions.vue:1108
|
1081 |
+
// Reference: src/components/BulletListOptions.vue:512
|
1082 |
+
// Reference: src/components/BusinessHoursOptions.vue:758
|
1083 |
+
// Reference: src/components/ButtonOptions.vue:1249
|
1084 |
+
// Reference: src/components/ColOptions.vue:667
|
1085 |
+
// Reference: src/components/CountdownOptions.vue:879
|
1086 |
+
// Reference: src/components/DividerOptions.vue:372
|
1087 |
+
// Reference: src/components/GoogleMapsOptions.vue:233
|
1088 |
+
// Reference: src/components/HeaderOptions.vue:459
|
1089 |
+
// Reference: src/components/IconOptions.vue:214
|
1090 |
+
// Reference: src/components/ImageOptions.vue:719
|
1091 |
+
// Reference: src/components/NavOptions.vue:601
|
1092 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:654
|
1093 |
+
// Reference: src/components/PostsOptions.vue:1536
|
1094 |
+
// Reference: src/components/PricingTableOptions.vue:1329
|
1095 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:654
|
1096 |
+
// Reference: src/components/ProductRelatedOptions.vue:636
|
1097 |
+
// Reference: src/components/ProgressBarOptions.vue:330
|
1098 |
+
// Reference: src/components/RowOptions.vue:669
|
1099 |
+
// Reference: src/components/SectionOptions.vue:372
|
1100 |
+
// Reference: src/components/ShadowControl.vue:131
|
1101 |
+
// Reference: src/components/SocialProfilesOptions.vue:698
|
1102 |
+
// Reference: src/components/SocialSharingOptions.vue:398
|
1103 |
+
// Reference: src/components/TextOptions.vue:383
|
1104 |
+
// Reference: src/components/UpsellsOptions.vue:636
|
1105 |
+
// Reference: src/components/VideoOptions.vue:241
|
1106 |
+
// Reference: src/components/WCAddToCartOptions.vue:724
|
1107 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1174
|
1108 |
+
__( 'Hairline', 'coming-soon' ),
|
1109 |
+
|
1110 |
+
// Reference: src/components/AccordionOptions.vue:639
|
1111 |
+
// Reference: src/components/AddToCartOptions.vue:1109
|
1112 |
+
// Reference: src/components/BulletListOptions.vue:513
|
1113 |
+
// Reference: src/components/BusinessHoursOptions.vue:759
|
1114 |
+
// Reference: src/components/ButtonOptions.vue:1250
|
1115 |
+
// Reference: src/components/ColOptions.vue:668
|
1116 |
+
// Reference: src/components/CountdownOptions.vue:880
|
1117 |
+
// Reference: src/components/DividerOptions.vue:373
|
1118 |
+
// Reference: src/components/GoogleMapsOptions.vue:234
|
1119 |
+
// Reference: src/components/HeaderOptions.vue:460
|
1120 |
+
// Reference: src/components/IconOptions.vue:215
|
1121 |
+
// Reference: src/components/ImageOptions.vue:720
|
1122 |
+
// Reference: src/components/LoginOptions.vue:921
|
1123 |
+
// Reference: src/components/NavOptions.vue:602
|
1124 |
+
// Reference: src/components/OptinFormOptions.vue:855
|
1125 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:655
|
1126 |
+
// Reference: src/components/PostsOptions.vue:1537
|
1127 |
+
// Reference: src/components/PricingTableOptions.vue:1330
|
1128 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:655
|
1129 |
+
// Reference: src/components/ProductRelatedOptions.vue:637
|
1130 |
+
// Reference: src/components/ProgressBarOptions.vue:331
|
1131 |
+
// Reference: src/components/RowOptions.vue:670
|
1132 |
+
// Reference: src/components/SectionOptions.vue:373
|
1133 |
+
// Reference: src/components/ShadowControl.vue:132
|
1134 |
+
// Reference: src/components/SocialProfilesOptions.vue:689
|
1135 |
+
// Reference: src/components/SocialSharingOptions.vue:399
|
1136 |
+
// Reference: src/components/TextOptions.vue:384
|
1137 |
+
// Reference: src/components/UpsellsOptions.vue:637
|
1138 |
+
// Reference: src/components/VideoOptions.vue:242
|
1139 |
+
// Reference: src/components/WCAddToCartOptions.vue:725
|
1140 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1175
|
1141 |
+
__( 'Small', 'coming-soon' ),
|
1142 |
+
|
1143 |
+
// Reference: src/components/AccordionOptions.vue:640
|
1144 |
+
// Reference: src/components/AddToCartOptions.vue:1110
|
1145 |
+
// Reference: src/components/BulletListOptions.vue:514
|
1146 |
+
// Reference: src/components/BusinessHoursOptions.vue:760
|
1147 |
+
// Reference: src/components/ButtonOptions.vue:1251
|
1148 |
+
// Reference: src/components/ColOptions.vue:669
|
1149 |
+
// Reference: src/components/CountdownOptions.vue:881
|
1150 |
+
// Reference: src/components/DividerOptions.vue:374
|
1151 |
+
// Reference: src/components/GoogleMapsOptions.vue:235
|
1152 |
+
// Reference: src/components/HeaderOptions.vue:461
|
1153 |
+
// Reference: src/components/IconOptions.vue:216
|
1154 |
+
// Reference: src/components/ImageOptions.vue:721
|
1155 |
+
// Reference: src/components/LoginOptions.vue:922
|
1156 |
+
// Reference: src/components/NavOptions.vue:603
|
1157 |
+
// Reference: src/components/OptinFormOptions.vue:856
|
1158 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:656
|
1159 |
+
// Reference: src/components/PostsOptions.vue:1538
|
1160 |
+
// Reference: src/components/PricingTableOptions.vue:1331
|
1161 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:656
|
1162 |
+
// Reference: src/components/ProductRelatedOptions.vue:638
|
1163 |
+
// Reference: src/components/ProgressBarOptions.vue:332
|
1164 |
+
// Reference: src/components/RowOptions.vue:671
|
1165 |
+
// Reference: src/components/SectionOptions.vue:374
|
1166 |
+
// Reference: src/components/ShadowControl.vue:133
|
1167 |
+
// Reference: src/components/SocialProfilesOptions.vue:704
|
1168 |
+
// Reference: src/components/SocialSharingOptions.vue:400
|
1169 |
+
// Reference: src/components/TextOptions.vue:385
|
1170 |
+
// Reference: src/components/UpsellsOptions.vue:638
|
1171 |
+
// Reference: src/components/VideoOptions.vue:243
|
1172 |
+
// Reference: src/components/WCAddToCartOptions.vue:726
|
1173 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1176
|
1174 |
+
__( 'Medium', 'coming-soon' ),
|
1175 |
+
|
1176 |
+
// Reference: src/components/AccordionOptions.vue:641
|
1177 |
+
// Reference: src/components/AddToCartOptions.vue:1111
|
1178 |
+
// Reference: src/components/BulletListOptions.vue:515
|
1179 |
+
// Reference: src/components/BusinessHoursOptions.vue:761
|
1180 |
+
// Reference: src/components/ButtonOptions.vue:1252
|
1181 |
+
// Reference: src/components/ColOptions.vue:670
|
1182 |
+
// Reference: src/components/CountdownOptions.vue:882
|
1183 |
+
// Reference: src/components/DividerOptions.vue:375
|
1184 |
+
// Reference: src/components/GoogleMapsOptions.vue:236
|
1185 |
+
// Reference: src/components/HeaderOptions.vue:462
|
1186 |
+
// Reference: src/components/IconOptions.vue:217
|
1187 |
+
// Reference: src/components/ImageOptions.vue:722
|
1188 |
+
// Reference: src/components/LoginOptions.vue:923
|
1189 |
+
// Reference: src/components/NavOptions.vue:604
|
1190 |
+
// Reference: src/components/OptinFormOptions.vue:857
|
1191 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:657
|
1192 |
+
// Reference: src/components/PostsOptions.vue:1539
|
1193 |
+
// Reference: src/components/PricingTableOptions.vue:1332
|
1194 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:657
|
1195 |
+
// Reference: src/components/ProductRelatedOptions.vue:639
|
1196 |
+
// Reference: src/components/ProgressBarOptions.vue:333
|
1197 |
+
// Reference: src/components/RowOptions.vue:672
|
1198 |
+
// Reference: src/components/SectionOptions.vue:375
|
1199 |
+
// Reference: src/components/ShadowControl.vue:134
|
1200 |
+
// Reference: src/components/SocialProfilesOptions.vue:691
|
1201 |
+
// Reference: src/components/SocialSharingOptions.vue:401
|
1202 |
+
// Reference: src/components/TextOptions.vue:386
|
1203 |
+
// Reference: src/components/UpsellsOptions.vue:639
|
1204 |
+
// Reference: src/components/VideoOptions.vue:244
|
1205 |
+
// Reference: src/components/WCAddToCartOptions.vue:727
|
1206 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1177
|
1207 |
+
__( 'Large', 'coming-soon' ),
|
1208 |
+
|
1209 |
+
// Reference: src/components/AccordionOptions.vue:642
|
1210 |
+
// Reference: src/components/AddToCartOptions.vue:1112
|
1211 |
+
// Reference: src/components/BulletListOptions.vue:516
|
1212 |
+
// Reference: src/components/BusinessHoursOptions.vue:762
|
1213 |
+
// Reference: src/components/ButtonOptions.vue:1253
|
1214 |
+
// Reference: src/components/ColOptions.vue:671
|
1215 |
+
// Reference: src/components/CountdownOptions.vue:883
|
1216 |
+
// Reference: src/components/GoogleMapsOptions.vue:237
|
1217 |
+
// Reference: src/components/HeaderOptions.vue:463
|
1218 |
+
// Reference: src/components/IconOptions.vue:218
|
1219 |
+
// Reference: src/components/ImageOptions.vue:723
|
1220 |
+
// Reference: src/components/LoginOptions.vue:924
|
1221 |
+
// Reference: src/components/NavOptions.vue:605
|
1222 |
+
// Reference: src/components/OptinFormOptions.vue:858
|
1223 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:658
|
1224 |
+
// Reference: src/components/PostsOptions.vue:1540
|
1225 |
+
// Reference: src/components/PricingTableOptions.vue:1333
|
1226 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:658
|
1227 |
+
// Reference: src/components/ProductRelatedOptions.vue:640
|
1228 |
+
// Reference: src/components/ProgressBarOptions.vue:334
|
1229 |
+
// Reference: src/components/RowOptions.vue:673
|
1230 |
+
// Reference: src/components/SectionOptions.vue:376
|
1231 |
+
// Reference: src/components/ShadowControl.vue:135
|
1232 |
+
// Reference: src/components/SocialProfilesOptions.vue:699
|
1233 |
+
// Reference: src/components/SocialSharingOptions.vue:402
|
1234 |
+
// Reference: src/components/TextOptions.vue:387
|
1235 |
+
// Reference: src/components/UpsellsOptions.vue:640
|
1236 |
+
// Reference: src/components/VideoOptions.vue:245
|
1237 |
+
// Reference: src/components/WCAddToCartOptions.vue:728
|
1238 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1178
|
1239 |
+
__( 'X Large', 'coming-soon' ),
|
1240 |
+
|
1241 |
+
// Reference: src/components/AccordionOptions.vue:643
|
1242 |
+
// Reference: src/components/AddToCartOptions.vue:1113
|
1243 |
+
// Reference: src/components/BulletListOptions.vue:517
|
1244 |
+
// Reference: src/components/BusinessHoursOptions.vue:763
|
1245 |
+
// Reference: src/components/ButtonOptions.vue:1254
|
1246 |
+
// Reference: src/components/ColOptions.vue:672
|
1247 |
+
// Reference: src/components/CountdownOptions.vue:884
|
1248 |
+
// Reference: src/components/GoogleMapsOptions.vue:238
|
1249 |
+
// Reference: src/components/HeaderOptions.vue:464
|
1250 |
+
// Reference: src/components/IconOptions.vue:219
|
1251 |
+
// Reference: src/components/ImageOptions.vue:724
|
1252 |
+
// Reference: src/components/LoginOptions.vue:925
|
1253 |
+
// Reference: src/components/NavOptions.vue:606
|
1254 |
+
// Reference: src/components/OptinFormOptions.vue:859
|
1255 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:659
|
1256 |
+
// Reference: src/components/PostsOptions.vue:1541
|
1257 |
+
// Reference: src/components/PricingTableOptions.vue:1334
|
1258 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:659
|
1259 |
+
// Reference: src/components/ProductRelatedOptions.vue:641
|
1260 |
+
// Reference: src/components/ProgressBarOptions.vue:335
|
1261 |
+
// Reference: src/components/RowOptions.vue:674
|
1262 |
+
// Reference: src/components/SectionOptions.vue:377
|
1263 |
+
// Reference: src/components/ShadowControl.vue:136
|
1264 |
+
// Reference: src/components/SocialSharingOptions.vue:403
|
1265 |
+
// Reference: src/components/TextOptions.vue:388
|
1266 |
+
// Reference: src/components/UpsellsOptions.vue:641
|
1267 |
+
// Reference: src/components/VideoOptions.vue:246
|
1268 |
+
// Reference: src/components/WCAddToCartOptions.vue:729
|
1269 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1179
|
1270 |
+
__( '2X Large', 'coming-soon' ),
|
1271 |
+
|
1272 |
+
// Reference: src/components/AddToCartOptions.vue:1068
|
1273 |
+
// Reference: src/components/ButtonOptions.vue:1204
|
1274 |
+
// Reference: src/components/LoginOptions.vue:901
|
1275 |
+
// Reference: src/components/OptinFormOptions.vue:849
|
1276 |
+
// Reference: src/components/ProductRelatedOptions.vue:620
|
1277 |
+
// Reference: src/components/UpsellsOptions.vue:620
|
1278 |
+
// Reference: src/components/WCAddToCartOptions.vue:687
|
1279 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1158
|
1280 |
+
// Reference: src/views/GlobalCSS.vue:1983
|
1281 |
+
__( 'Button', 'coming-soon' ),
|
1282 |
+
|
1283 |
+
// Reference: src/components/AddToCartOptions.vue:1069
|
1284 |
+
// Reference: src/components/ButtonOptions.vue:1205
|
1285 |
+
// Reference: src/components/LoginOptions.vue:886
|
1286 |
+
// Reference: src/components/WCAddToCartOptions.vue:688
|
1287 |
+
__( 'Button Text', 'coming-soon' ),
|
1288 |
+
|
1289 |
+
// Reference: src/components/AddToCartOptions.vue:1072
|
1290 |
+
// Reference: src/components/BackgroundControl.vue:481
|
1291 |
+
// Reference: src/components/ButtonOptions.vue:1211
|
1292 |
+
// Reference: src/components/CountdownOptions.vue:856
|
1293 |
+
// Reference: src/components/FeatureOptions.vue:451
|
1294 |
+
// Reference: src/components/IconFeatureOptions.vue:441
|
1295 |
+
// Reference: src/components/IconOptions.vue:211
|
1296 |
+
// Reference: src/components/OptinFormOptions.vue:853
|
1297 |
+
// Reference: src/components/PostinfoOptions.vue:578
|
1298 |
+
// Reference: src/components/SocialProfilesOptions.vue:688
|
1299 |
+
// Reference: src/components/SocialSharingOptions.vue:396
|
1300 |
+
// Reference: src/components/StarRatingOptions.vue:302
|
1301 |
+
// Reference: src/components/TestimonialOptions.vue:538
|
1302 |
+
// Reference: src/components/WCAddToCartOptions.vue:694
|
1303 |
+
__( 'Size', 'coming-soon' ),
|
1304 |
+
|
1305 |
+
// Reference: src/components/AddToCartOptions.vue:1073
|
1306 |
+
// Reference: src/components/ButtonOptions.vue:1212
|
1307 |
+
// Reference: src/components/WCAddToCartOptions.vue:695
|
1308 |
+
__( 'Vertical Padding', 'coming-soon' ),
|
1309 |
+
|
1310 |
+
// Reference: src/components/AddToCartOptions.vue:1074
|
1311 |
+
// Reference: src/components/ButtonOptions.vue:1213
|
1312 |
+
// Reference: src/components/WCAddToCartOptions.vue:696
|
1313 |
+
__( 'Horizontal Padding', 'coming-soon' ),
|
1314 |
+
|
1315 |
+
// Reference: src/components/AddToCartOptions.vue:1075
|
1316 |
+
// Reference: src/components/BorderRadiusControl.vue:128
|
1317 |
+
// Reference: src/components/BorderSectionControl.vue:81
|
1318 |
+
// Reference: src/components/ButtonOptions.vue:1214
|
1319 |
+
// Reference: src/components/CountdownOptions.vue:876
|
1320 |
+
// Reference: src/components/ImageOptions.vue:726
|
1321 |
+
// Reference: src/components/OptinFormOptions.vue:869
|
1322 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:661
|
1323 |
+
// Reference: src/components/PostsOptions.vue:1512
|
1324 |
+
// Reference: src/components/PricingTableOptions.vue:1254
|
1325 |
+
// Reference: src/components/ProductDataTabsOptions.vue:330
|
1326 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:661
|
1327 |
+
// Reference: src/components/ProductRelatedOptions.vue:606
|
1328 |
+
// Reference: src/components/ProgressBarOptions.vue:327
|
1329 |
+
// Reference: src/components/SectionOptions.vue:378
|
1330 |
+
// Reference: src/components/SocialProfilesOptions.vue:693
|
1331 |
+
// Reference: src/components/UpsellsOptions.vue:606
|
1332 |
+
// Reference: src/components/WCAddToCartOptions.vue:697
|
1333 |
+
// Reference: src/components/WCCartOptions.vue:535
|
1334 |
+
// Reference: src/components/WCCheckoutOptions.vue:803
|
1335 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1116
|
1336 |
+
__( 'Border Radius', 'coming-soon' ),
|
1337 |
+
|
1338 |
+
// Reference: src/components/AddToCartOptions.vue:1076
|
1339 |
+
// Reference: src/components/ButtonOptions.vue:1215
|
1340 |
+
// Reference: src/components/HeaderOptions.vue:449
|
1341 |
+
// Reference: src/components/WCAddToCartOptions.vue:698
|
1342 |
+
__( 'Icons', 'coming-soon' ),
|
1343 |
+
|
1344 |
+
// Reference: src/components/AddToCartOptions.vue:1077
|
1345 |
+
// Reference: src/components/ButtonOptions.vue:1216
|
1346 |
+
// Reference: src/components/HeaderOptions.vue:466
|
1347 |
+
// Reference: src/components/OptinFormOptions.vue:876
|
1348 |
+
// Reference: src/components/WCAddToCartOptions.vue:699
|
1349 |
+
__( 'Before Text Icon', 'coming-soon' ),
|
1350 |
+
|
1351 |
+
// Reference: src/components/AddToCartOptions.vue:1078
|
1352 |
+
// Reference: src/components/ButtonOptions.vue:1217
|
1353 |
+
// Reference: src/components/HeaderOptions.vue:467
|
1354 |
+
// Reference: src/components/OptinFormOptions.vue:877
|
1355 |
+
// Reference: src/components/WCAddToCartOptions.vue:700
|
1356 |
+
__( 'After Text Icon', 'coming-soon' ),
|
1357 |
+
|
1358 |
+
// Reference: src/components/AddToCartOptions.vue:1079
|
1359 |
+
// Reference: src/components/BusinessHoursOptions.vue:713
|
1360 |
+
// Reference: src/components/ButtonOptions.vue:1218
|
1361 |
+
// Reference: src/components/CountdownOptions.vue:846
|
1362 |
+
// Reference: src/components/ImageOptions.vue:704
|
1363 |
+
// Reference: src/components/LoginOptions.vue:927
|
1364 |
+
// Reference: src/components/OptinFormOptions.vue:842
|
1365 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:639
|
1366 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:639
|
1367 |
+
// Reference: src/components/ProgressBarOptions.vue:320
|
1368 |
+
// Reference: src/components/WCAddToCartOptions.vue:701
|
1369 |
+
// Reference: src/components/WCCartOptions.vue:494
|
1370 |
+
// Reference: src/components/WCCheckoutOptions.vue:762
|
1371 |
+
__( 'Templates', 'coming-soon' ),
|
1372 |
+
|
1373 |
+
// Reference: src/components/AddToCartOptions.vue:1080
|
1374 |
+
// Reference: src/components/ButtonOptions.vue:1219
|
1375 |
+
// Reference: src/components/CountdownOptions.vue:857
|
1376 |
+
// Reference: src/components/OptinFormOptions.vue:854
|
1377 |
+
// Reference: src/components/WCAddToCartOptions.vue:702
|
1378 |
+
__( 'Tiny', 'coming-soon' ),
|
1379 |
+
|
1380 |
+
// Reference: src/components/AddToCartOptions.vue:1082
|
1381 |
+
// Reference: src/components/ButtonOptions.vue:1221
|
1382 |
+
// Reference: src/components/WCAddToCartOptions.vue:704
|
1383 |
+
__( 'Pill Button', 'coming-soon' ),
|
1384 |
+
|
1385 |
+
// Reference: src/components/AddToCartOptions.vue:1083
|
1386 |
+
// Reference: src/components/ButtonOptions.vue:1222
|
1387 |
+
// Reference: src/components/WCAddToCartOptions.vue:705
|
1388 |
+
__( 'Flat Button', 'coming-soon' ),
|
1389 |
+
|
1390 |
+
// Reference: src/components/AddToCartOptions.vue:1084
|
1391 |
+
// Reference: src/components/ButtonOptions.vue:1223
|
1392 |
+
// Reference: src/components/WCAddToCartOptions.vue:706
|
1393 |
+
__( 'Blue Button', 'coming-soon' ),
|
1394 |
+
|
1395 |
+
// Reference: src/components/AddToCartOptions.vue:1085
|
1396 |
+
// Reference: src/components/ButtonOptions.vue:1224
|
1397 |
+
// Reference: src/components/WCAddToCartOptions.vue:707
|
1398 |
+
__( 'Light Green Button', 'coming-soon' ),
|
1399 |
+
|
1400 |
+
// Reference: src/components/AddToCartOptions.vue:1086
|
1401 |
+
// Reference: src/components/ButtonOptions.vue:1225
|
1402 |
+
// Reference: src/components/WCAddToCartOptions.vue:708
|
1403 |
+
__( 'Green Button', 'coming-soon' ),
|
1404 |
+
|
1405 |
+
// Reference: src/components/AddToCartOptions.vue:1087
|
1406 |
+
// Reference: src/components/ButtonOptions.vue:1226
|
1407 |
+
// Reference: src/components/WCAddToCartOptions.vue:709
|
1408 |
+
__( 'Orange Button', 'coming-soon' ),
|
1409 |
+
|
1410 |
+
// Reference: src/components/AddToCartOptions.vue:1088
|
1411 |
+
// Reference: src/components/ButtonOptions.vue:1227
|
1412 |
+
// Reference: src/components/WCAddToCartOptions.vue:710
|
1413 |
+
__( 'Red Button', 'coming-soon' ),
|
1414 |
+
|
1415 |
+
// Reference: src/components/AddToCartOptions.vue:1089
|
1416 |
+
// Reference: src/components/ButtonOptions.vue:1228
|
1417 |
+
// Reference: src/components/WCAddToCartOptions.vue:711
|
1418 |
+
__( 'Yellow Button', 'coming-soon' ),
|
1419 |
+
|
1420 |
+
// Reference: src/components/AddToCartOptions.vue:1090
|
1421 |
+
// Reference: src/components/ButtonOptions.vue:1229
|
1422 |
+
// Reference: src/components/WCAddToCartOptions.vue:712
|
1423 |
+
__( 'White Button', 'coming-soon' ),
|
1424 |
+
|
1425 |
+
// Reference: src/components/AddToCartOptions.vue:1091
|
1426 |
+
// Reference: src/components/ButtonOptions.vue:1230
|
1427 |
+
// Reference: src/components/WCAddToCartOptions.vue:713
|
1428 |
+
__( 'Grey Button', 'coming-soon' ),
|
1429 |
+
|
1430 |
+
// Reference: src/components/AddToCartOptions.vue:1092
|
1431 |
+
// Reference: src/components/ButtonOptions.vue:1231
|
1432 |
+
// Reference: src/components/WCAddToCartOptions.vue:714
|
1433 |
+
__( 'Black Button', 'coming-soon' ),
|
1434 |
+
|
1435 |
+
// Reference: src/components/AddToCartOptions.vue:1093
|
1436 |
+
// Reference: src/components/ButtonOptions.vue:1232
|
1437 |
+
// Reference: src/components/OptinFormOptions.vue:871
|
1438 |
+
// Reference: src/components/ProductRelatedOptions.vue:621
|
1439 |
+
// Reference: src/components/UpsellsOptions.vue:621
|
1440 |
+
// Reference: src/components/WCAddToCartOptions.vue:715
|
1441 |
+
// Reference: src/components/WCCartOptions.vue:522
|
1442 |
+
// Reference: src/components/WCCheckoutOptions.vue:790
|
1443 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1159
|
1444 |
+
__( 'Button Style', 'coming-soon' ),
|
1445 |
+
|
1446 |
+
// Reference: src/components/AddToCartOptions.vue:1094
|
1447 |
+
// Reference: src/components/ButtonOptions.vue:1233
|
1448 |
+
// Reference: src/components/OptinFormOptions.vue:872
|
1449 |
+
// Reference: src/components/ProductRelatedOptions.vue:607
|
1450 |
+
// Reference: src/components/UpsellsOptions.vue:607
|
1451 |
+
// Reference: src/components/WCAddToCartOptions.vue:716
|
1452 |
+
// Reference: src/components/WCCartOptions.vue:525
|
1453 |
+
// Reference: src/components/WCCheckoutOptions.vue:793
|
1454 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1106
|
1455 |
+
__( 'Flat', 'coming-soon' ),
|
1456 |
+
|
1457 |
+
// Reference: src/components/AddToCartOptions.vue:1095
|
1458 |
+
// Reference: src/components/ButtonOptions.vue:1234
|
1459 |
+
// Reference: src/components/OptinFormOptions.vue:874
|
1460 |
+
// Reference: src/components/ProductRelatedOptions.vue:608
|
1461 |
+
// Reference: src/components/UpsellsOptions.vue:608
|
1462 |
+
// Reference: src/components/WCAddToCartOptions.vue:717
|
1463 |
+
// Reference: src/components/WCCartOptions.vue:526
|
1464 |
+
// Reference: src/components/WCCheckoutOptions.vue:794
|
1465 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1107
|
1466 |
+
__( '2D', 'coming-soon' ),
|
1467 |
+
|
1468 |
+
// Reference: src/components/AddToCartOptions.vue:1096
|
1469 |
+
// Reference: src/components/ButtonOptions.vue:1235
|
1470 |
+
// Reference: src/components/OptinFormOptions.vue:875
|
1471 |
+
// Reference: src/components/ProductRelatedOptions.vue:609
|
1472 |
+
// Reference: src/components/UpsellsOptions.vue:609
|
1473 |
+
// Reference: src/components/WCAddToCartOptions.vue:718
|
1474 |
+
// Reference: src/components/WCCartOptions.vue:527
|
1475 |
+
// Reference: src/components/WCCheckoutOptions.vue:795
|
1476 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1108
|
1477 |
+
__( 'Vintage', 'coming-soon' ),
|
1478 |
+
|
1479 |
+
// Reference: src/components/AddToCartOptions.vue:1097
|
1480 |
+
// Reference: src/components/ButtonOptions.vue:1236
|
1481 |
+
// Reference: src/components/OptinFormOptions.vue:873
|
1482 |
+
// Reference: src/components/ProductRelatedOptions.vue:610
|
1483 |
+
// Reference: src/components/UpsellsOptions.vue:610
|
1484 |
+
// Reference: src/components/WCAddToCartOptions.vue:719
|
1485 |
+
// Reference: src/components/WCCartOptions.vue:528
|
1486 |
+
// Reference: src/components/WCCheckoutOptions.vue:796
|
1487 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1109
|
1488 |
+
__( 'Ghost', 'coming-soon' ),
|
1489 |
+
|
1490 |
+
// Reference: src/components/AddToCartOptions.vue:1101
|
1491 |
+
// Reference: src/components/ButtonOptions.vue:1240
|
1492 |
+
// Reference: src/components/LoginOptions.vue:893
|
1493 |
+
// Reference: src/views/GlobalCSS.vue:1985
|
1494 |
+
__( 'Button Text Color', 'coming-soon' ),
|
1495 |
+
|
1496 |
+
// Reference: src/components/AddToCartOptions.vue:1102
|
1497 |
+
// Reference: src/components/ButtonOptions.vue:1241
|
1498 |
+
// Reference: src/views/GlobalCSS.vue:1990
|
1499 |
+
__( 'Button Background Style', 'coming-soon' ),
|
1500 |
+
|
1501 |
+
// Reference: src/components/AddToCartOptions.vue:1103
|
1502 |
+
// Reference: src/components/BackgroundControl.vue:435
|
1503 |
+
// Reference: src/components/BorderSectionControl.vue:83
|
1504 |
+
// Reference: src/components/BusinessHoursOptions.vue:746
|
1505 |
+
// Reference: src/components/ButtonOptions.vue:1242
|
1506 |
+
// Reference: src/components/ImageOptions.vue:728
|
1507 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:663
|
1508 |
+
// Reference: src/components/PostsOptions.vue:1532
|
1509 |
+
// Reference: src/components/PricingTableOptions.vue:1308
|
1510 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:663
|
1511 |
+
// Reference: src/components/ProductRelatedOptions.vue:632
|
1512 |
+
// Reference: src/components/SectionOptions.vue:380
|
1513 |
+
// Reference: src/components/UpsellsOptions.vue:632
|
1514 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1170
|
1515 |
+
// Reference: src/views/GlobalCSS.vue:1988
|
1516 |
+
__( 'Solid', 'coming-soon' ),
|
1517 |
+
|
1518 |
+
// Reference: src/components/AddToCartOptions.vue:1104
|
1519 |
+
// Reference: src/components/BackgroundControl.vue:436
|
1520 |
+
// Reference: src/components/ButtonOptions.vue:1243
|
1521 |
+
// Reference: src/views/GlobalCSS.vue:1991
|
1522 |
+
__( 'Gradient', 'coming-soon' ),
|
1523 |
+
|
1524 |
+
// Reference: src/components/AddToCartOptions.vue:1105
|
1525 |
+
// Reference: src/components/ButtonOptions.vue:1246
|
1526 |
+
// Reference: src/components/ProductDataTabsOptions.vue:324
|
1527 |
+
// Reference: src/components/TypographyControl.vue:284
|
1528 |
+
// Reference: src/views/GlobalCSS.vue:1956
|
1529 |
+
__( 'Normal', 'coming-soon' ),
|
1530 |
+
|
1531 |
+
// Reference: src/components/AddToCartOptions.vue:1106
|
1532 |
+
// Reference: src/components/ButtonOptions.vue:1247
|
1533 |
+
// Reference: src/views/GlobalCSS.vue:1957
|
1534 |
+
__( 'Hover', 'coming-soon' ),
|
1535 |
+
|
1536 |
+
// Reference: src/components/AddToCartOptions.vue:1114
|
1537 |
+
// Reference: src/components/ButtonOptions.vue:1255
|
1538 |
+
// Reference: src/components/ImageOptions.vue:734
|
1539 |
+
// Reference: src/components/PostauthorboxOptions.vue:350
|
1540 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:669
|
1541 |
+
// Reference: src/components/PostinfoOptions.vue:579
|
1542 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:669
|
1543 |
+
// Reference: src/components/ProductRelatedOptions.vue:611
|
1544 |
+
// Reference: src/components/UpsellsOptions.vue:611
|
1545 |
+
// Reference: src/components/WCAddToCartOptions.vue:730
|
1546 |
+
// Reference: src/components/WCCartOptions.vue:529
|
1547 |
+
// Reference: src/components/WCCheckoutOptions.vue:797
|
1548 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1110
|
1549 |
+
// Reference: src/views/GlobalCSS.vue:1955
|
1550 |
+
// Reference: src/views/SettingsGeneral.vue:224
|
1551 |
+
__( 'Link', 'coming-soon' ),
|
1552 |
+
|
1553 |
+
// Reference: src/components/AddToCartOptions.vue:1115
|
1554 |
+
// Reference: src/components/BackgroundControl.vue:437
|
1555 |
+
// Reference: src/components/ButtonOptions.vue:1256
|
1556 |
+
// Reference: src/views/GlobalCSS.vue:1992
|
1557 |
+
__( 'Gradient Type', 'coming-soon' ),
|
1558 |
+
|
1559 |
+
// Reference: src/components/AddToCartOptions.vue:1116
|
1560 |
+
// Reference: src/components/BackgroundControl.vue:438
|
1561 |
+
// Reference: src/components/ButtonOptions.vue:1257
|
1562 |
+
// Reference: src/views/GlobalCSS.vue:1993
|
1563 |
+
__( 'Radial', 'coming-soon' ),
|
1564 |
+
|
1565 |
+
// Reference: src/components/AddToCartOptions.vue:1117
|
1566 |
+
// Reference: src/components/BackgroundControl.vue:439
|
1567 |
+
// Reference: src/components/ButtonOptions.vue:1258
|
1568 |
+
// Reference: src/views/GlobalCSS.vue:1994
|
1569 |
+
__( 'Linear', 'coming-soon' ),
|
1570 |
+
|
1571 |
+
// Reference: src/components/AddToCartOptions.vue:1118
|
1572 |
+
// Reference: src/components/BackgroundControl.vue:440
|
1573 |
+
// Reference: src/components/ButtonOptions.vue:1259
|
1574 |
+
// Reference: src/views/GlobalCSS.vue:1995
|
1575 |
+
__( 'Angle', 'coming-soon' ),
|
1576 |
+
|
1577 |
+
// Reference: src/components/AddToCartOptions.vue:1119
|
1578 |
+
// Reference: src/components/BackgroundControl.vue:470
|
1579 |
+
// Reference: src/components/ButtonOptions.vue:1260
|
1580 |
+
// Reference: src/components/DisplaySectionControl.vue:188
|
1581 |
+
// Reference: src/components/ShadowControl.vue:143
|
1582 |
+
// Reference: src/views/GlobalCSS.vue:1996
|
1583 |
+
__( 'Position', 'coming-soon' ),
|
1584 |
+
|
1585 |
+
// Reference: src/components/AddToCartOptions.vue:1120
|
1586 |
+
// Reference: src/components/BackgroundControl.vue:442
|
1587 |
+
// Reference: src/components/ButtonOptions.vue:1261
|
1588 |
+
// Reference: src/views/GlobalCSS.vue:1997
|
1589 |
+
__( 'Top Center', 'coming-soon' ),
|
1590 |
+
|
1591 |
+
// Reference: src/components/AddToCartOptions.vue:1121
|
1592 |
+
// Reference: src/components/BackgroundControl.vue:443
|
1593 |
+
// Reference: src/components/ButtonOptions.vue:1262
|
1594 |
+
// Reference: src/components/PostsOptions.vue:1551
|
1595 |
+
// Reference: src/views/GlobalCSS.vue:1998
|
1596 |
+
__( 'Top Left', 'coming-soon' ),
|
1597 |
+
|
1598 |
+
// Reference: src/components/AddToCartOptions.vue:1122
|
1599 |
+
// Reference: src/components/BackgroundControl.vue:444
|
1600 |
+
// Reference: src/components/ButtonOptions.vue:1263
|
1601 |
+
// Reference: src/components/PostsOptions.vue:1550
|
1602 |
+
// Reference: src/views/GlobalCSS.vue:1999
|
1603 |
+
__( 'Top Right', 'coming-soon' ),
|
1604 |
+
|
1605 |
+
// Reference: src/components/AddToCartOptions.vue:1123
|
1606 |
+
// Reference: src/components/BackgroundControl.vue:445
|
1607 |
+
// Reference: src/components/ButtonOptions.vue:1264
|
1608 |
+
// Reference: src/views/GlobalCSS.vue:2000
|
1609 |
+
__( 'Center Center', 'coming-soon' ),
|
1610 |
+
|
1611 |
+
// Reference: src/components/AddToCartOptions.vue:1124
|
1612 |
+
// Reference: src/components/BackgroundControl.vue:446
|
1613 |
+
// Reference: src/components/ButtonOptions.vue:1265
|
1614 |
+
// Reference: src/views/GlobalCSS.vue:2001
|
1615 |
+
__( 'Center Left', 'coming-soon' ),
|
1616 |
+
|
1617 |
+
// Reference: src/components/AddToCartOptions.vue:1125
|
1618 |
+
// Reference: src/components/BackgroundControl.vue:447
|
1619 |
+
// Reference: src/components/ButtonOptions.vue:1266
|
1620 |
+
// Reference: src/views/GlobalCSS.vue:2002
|
1621 |
+
__( 'Center Right', 'coming-soon' ),
|
1622 |
+
|
1623 |
+
// Reference: src/components/AddToCartOptions.vue:1126
|
1624 |
+
// Reference: src/components/BackgroundControl.vue:448
|
1625 |
+
// Reference: src/components/ButtonOptions.vue:1267
|
1626 |
+
// Reference: src/views/GlobalCSS.vue:2003
|
1627 |
+
__( 'Bottom Center', 'coming-soon' ),
|
1628 |
+
|
1629 |
+
// Reference: src/components/AddToCartOptions.vue:1127
|
1630 |
+
// Reference: src/components/BackgroundControl.vue:449
|
1631 |
+
// Reference: src/components/ButtonOptions.vue:1268
|
1632 |
+
// Reference: src/components/PostsOptions.vue:1553
|
1633 |
+
// Reference: src/views/GlobalCSS.vue:2004
|
1634 |
+
__( 'Bottom Left', 'coming-soon' ),
|
1635 |
+
|
1636 |
+
// Reference: src/components/AddToCartOptions.vue:1128
|
1637 |
+
// Reference: src/components/BackgroundControl.vue:450
|
1638 |
+
// Reference: src/components/ButtonOptions.vue:1269
|
1639 |
+
// Reference: src/components/PostsOptions.vue:1552
|
1640 |
+
// Reference: src/views/GlobalCSS.vue:2005
|
1641 |
+
__( 'Bottom Right', 'coming-soon' ),
|
1642 |
+
|
1643 |
+
// Reference: src/components/AddToCartOptions.vue:1129
|
1644 |
+
// Reference: src/components/BackgroundControl.vue:451
|
1645 |
+
// Reference: src/components/ButtonOptions.vue:1270
|
1646 |
+
// Reference: src/views/GlobalCSS.vue:2006
|
1647 |
+
__( 'First Color Location', 'coming-soon' ),
|
1648 |
+
|
1649 |
+
// Reference: src/components/AddToCartOptions.vue:1130
|
1650 |
+
// Reference: src/components/BackgroundControl.vue:452
|
1651 |
+
// Reference: src/components/ButtonOptions.vue:1271
|
1652 |
+
// Reference: src/views/GlobalCSS.vue:2007
|
1653 |
+
__( 'Second Color Location', 'coming-soon' ),
|
1654 |
+
|
1655 |
+
// Reference: src/components/AddToCartOptions.vue:1131
|
1656 |
+
// Reference: src/components/BackgroundControl.vue:460
|
1657 |
+
// Reference: src/components/ButtonOptions.vue:1272
|
1658 |
+
// Reference: src/views/GlobalCSS.vue:2008
|
1659 |
+
__( 'First Color', 'coming-soon' ),
|
1660 |
+
|
1661 |
+
// Reference: src/components/AddToCartOptions.vue:1132
|
1662 |
+
// Reference: src/components/BackgroundControl.vue:461
|
1663 |
+
// Reference: src/components/ButtonOptions.vue:1273
|
1664 |
+
// Reference: src/views/GlobalCSS.vue:2009
|
1665 |
+
__( 'Second Color', 'coming-soon' ),
|
1666 |
+
|
1667 |
+
// Reference: src/components/AddToCartOptions.vue:1133
|
1668 |
+
// Reference: src/components/BackgroundControl.vue:485
|
1669 |
+
// Reference: src/components/ButtonOptions.vue:1274
|
1670 |
+
// Reference: src/components/PostinfoOptions.vue:594
|
1671 |
+
// Reference: src/components/PostsOptions.vue:1459
|
1672 |
+
// Reference: src/components/PricingTableOptions.vue:1272
|
1673 |
+
// Reference: src/components/ProductMetaOptions.vue:335
|
1674 |
+
// Reference: src/components/ShadowControl.vue:137
|
1675 |
+
// Reference: src/components/SocialProfilesOptions.vue:713
|
1676 |
+
// Reference: src/components/VideoOptions.vue:235
|
1677 |
+
__( 'Custom', 'coming-soon' ),
|
1678 |
+
|
1679 |
+
// Reference: src/components/AdditionalInformationOptions.vue:124
|
1680 |
+
// Reference: src/components/PricingTableOptions.vue:1237
|
1681 |
+
__( 'Header', 'coming-soon' ),
|
1682 |
+
|
1683 |
+
// Reference: src/components/AlignControl.vue:344
|
1684 |
+
__( 'Align', 'coming-soon' ),
|
1685 |
+
|
1686 |
+
// Reference: src/components/AnchorOptions.vue:76
|
1687 |
+
__( 'Anchor', 'coming-soon' ),
|
1688 |
+
|
1689 |
+
// Reference: src/components/AttributeSectionControl.vue:81
|
1690 |
+
__( 'Attributes', 'coming-soon' ),
|
1691 |
+
|
1692 |
+
// Reference: src/components/AttributeSectionControl.vue:82
|
1693 |
+
__( 'Custom Class', 'coming-soon' ),
|
1694 |
+
|
1695 |
+
// Reference: src/components/AttributeSectionControl.vue:83
|
1696 |
+
__( 'Css ID', 'coming-soon' ),
|
1697 |
+
|
1698 |
+
// Reference: src/components/BackgroundControl.vue:434
|
1699 |
+
__( 'Background Style', 'coming-soon' ),
|
1700 |
+
|
1701 |
+
// Reference: src/components/BackgroundControl.vue:453
|
1702 |
+
__( 'Background Position', 'coming-soon' ),
|
1703 |
+
|
1704 |
+
// Reference: src/components/BackgroundControl.vue:454
|
1705 |
+
__( 'Full Screen Cover - Fixed', 'coming-soon' ),
|
1706 |
+
|
1707 |
+
// Reference: src/components/BackgroundControl.vue:455
|
1708 |
+
__( '100% Width Top', 'coming-soon' ),
|
1709 |
+
|
1710 |
+
// Reference: src/components/BackgroundControl.vue:457
|
1711 |
+
__( 'Repeat Horizontal Top', 'coming-soon' ),
|
1712 |
+
|
1713 |
+
// Reference: src/components/BackgroundControl.vue:458
|
1714 |
+
__( 'Repeat Horizontal Bottom', 'coming-soon' ),
|
1715 |
+
|
1716 |
+
// Reference: src/components/BackgroundControl.vue:459
|
1717 |
+
__( 'Repeat Vertical Center', 'coming-soon' ),
|
1718 |
+
|
1719 |
+
// Reference: src/components/BackgroundControl.vue:463
|
1720 |
+
__( '100% Width Bottom', 'coming-soon' ),
|
1721 |
+
|
1722 |
+
// Reference: src/components/BackgroundControl.vue:465
|
1723 |
+
__( 'Custom Position', 'coming-soon' ),
|
1724 |
+
|
1725 |
+
// Reference: src/components/BackgroundControl.vue:466
|
1726 |
+
__( 'Background Image', 'coming-soon' ),
|
1727 |
+
|
1728 |
+
// Reference: src/components/BackgroundControl.vue:467
|
1729 |
+
__( 'Full Screen Contain - Fixed', 'coming-soon' ),
|
1730 |
+
|
1731 |
+
// Reference: src/components/BackgroundControl.vue:468
|
1732 |
+
__( 'Full Screen Cover', 'coming-soon' ),
|
1733 |
+
|
1734 |
+
// Reference: src/components/BackgroundControl.vue:469
|
1735 |
+
__( 'Full Screen Contain', 'coming-soon' ),
|
1736 |
+
|
1737 |
+
// Reference: src/components/BackgroundControl.vue:471
|
1738 |
+
__( 'X Position', 'coming-soon' ),
|
1739 |
+
|
1740 |
+
// Reference: src/components/BackgroundControl.vue:472
|
1741 |
+
__( 'Y Position', 'coming-soon' ),
|
1742 |
+
|
1743 |
+
// Reference: src/components/BackgroundControl.vue:473
|
1744 |
+
__( 'Attachment', 'coming-soon' ),
|
1745 |
+
|
1746 |
+
// Reference: src/components/BackgroundControl.vue:474
|
1747 |
+
// Reference: src/components/ColOptions.vue:696
|
1748 |
+
// Reference: src/components/FontControl.vue:25
|
1749 |
+
// Reference: src/components/ImageOptions.vue:742
|
1750 |
+
// Reference: src/components/PostinfoOptions.vue:593
|
1751 |
+
// Reference: src/components/PostsOptions.vue:1458
|
1752 |
+
// Reference: src/components/ProductMetaOptions.vue:334
|
1753 |
+
// Reference: src/components/RowOptions.vue:695
|
1754 |
+
// Reference: src/components/SocialProfilesOptions.vue:686
|
1755 |
+
// Reference: src/components/WCCartOptions.vue:542
|
1756 |
+
// Reference: src/components/WCCheckoutOptions.vue:811
|
1757 |
+
__( 'Default', 'coming-soon' ),
|
1758 |
+
|
1759 |
+
// Reference: src/components/BackgroundControl.vue:475
|
1760 |
+
// Reference: src/components/DisplaySectionControl.vue:202
|
1761 |
+
__( 'Scroll', 'coming-soon' ),
|
1762 |
+
|
1763 |
+
// Reference: src/components/BackgroundControl.vue:476
|
1764 |
+
// Reference: src/components/DisplaySectionControl.vue:191
|
1765 |
+
__( 'Fixed', 'coming-soon' ),
|
1766 |
+
|
1767 |
+
// Reference: src/components/BackgroundControl.vue:477
|
1768 |
+
__( 'Repeat', 'coming-soon' ),
|
1769 |
+
|
1770 |
+
// Reference: src/components/BackgroundControl.vue:478
|
1771 |
+
__( 'No-repeat', 'coming-soon' ),
|
1772 |
+
|
1773 |
+
// Reference: src/components/BackgroundControl.vue:479
|
1774 |
+
__( 'Repeat-x', 'coming-soon' ),
|
1775 |
+
|
1776 |
+
// Reference: src/components/BackgroundControl.vue:480
|
1777 |
+
__( 'Repeat-y', 'coming-soon' ),
|
1778 |
+
|
1779 |
+
// Reference: src/components/BackgroundControl.vue:482
|
1780 |
+
// Reference: src/components/DisplaySectionControl.vue:203
|
1781 |
+
__( 'Auto', 'coming-soon' ),
|
1782 |
+
|
1783 |
+
// Reference: src/components/BackgroundControl.vue:483
|
1784 |
+
// Reference: src/components/ImageOptions.vue:744
|
1785 |
+
__( 'Cover', 'coming-soon' ),
|
1786 |
+
|
1787 |
+
// Reference: src/components/BackgroundControl.vue:484
|
1788 |
+
// Reference: src/components/ImageOptions.vue:745
|
1789 |
+
__( 'Contain', 'coming-soon' ),
|
1790 |
+
|
1791 |
+
// Reference: src/components/BackgroundControl.vue:486
|
1792 |
+
// Reference: src/components/DividerOptions.vue:367
|
1793 |
+
// Reference: src/components/GoogleMapsOptions.vue:230
|
1794 |
+
// Reference: src/components/ImageOptions.vue:707
|
1795 |
+
// Reference: src/components/OptinFormOptions.vue:851
|
1796 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:642
|
1797 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:642
|
1798 |
+
// Reference: src/components/RowOptions.vue:665
|
1799 |
+
// Reference: src/components/ShapeDividerControl.vue:370
|
1800 |
+
// Reference: src/components/VideoOptions.vue:238
|
1801 |
+
__( 'Width', 'coming-soon' ),
|
1802 |
+
|
1803 |
+
// Reference: src/components/BackgroundControl.vue:487
|
1804 |
+
// Reference: src/components/ColOptions.vue:698
|
1805 |
+
// Reference: src/components/RowOptions.vue:701
|
1806 |
+
// Reference: src/components/SectionOptions.vue:391
|
1807 |
+
// Reference: src/views/GlobalCSS.vue:1897
|
1808 |
+
// Reference: src/views/SetupDesign-Lite.vue:734
|
1809 |
+
__( 'Dim Background', 'coming-soon' ),
|
1810 |
+
|
1811 |
+
// Reference: src/components/BackgroundControl.vue:488
|
1812 |
+
// Reference: src/components/ColOptions.vue:699
|
1813 |
+
// Reference: src/components/RowOptions.vue:702
|
1814 |
+
// Reference: src/components/SectionOptions.vue:392
|
1815 |
+
__( 'Overlay Color', 'coming-soon' ),
|
1816 |
+
|
1817 |
+
// Reference: src/components/BorderSectionControl.vue:80
|
1818 |
+
// Reference: src/components/PostsOptions.vue:1511
|
1819 |
+
// Reference: src/components/SectionOptions.vue:389
|
1820 |
+
__( 'Border', 'coming-soon' ),
|
1821 |
+
|
1822 |
+
// Reference: src/components/BorderSectionControl.vue:82
|
1823 |
+
// Reference: src/components/ImageOptions.vue:727
|
1824 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:662
|
1825 |
+
// Reference: src/components/PostsOptions.vue:1531
|
1826 |
+
// Reference: src/components/PricingTableOptions.vue:1307
|
1827 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:662
|
1828 |
+
// Reference: src/components/ProductRelatedOptions.vue:631
|
1829 |
+
// Reference: src/components/SectionOptions.vue:379
|
1830 |
+
// Reference: src/components/UpsellsOptions.vue:631
|
1831 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1169
|
1832 |
+
__( 'Border Style', 'coming-soon' ),
|
1833 |
+
|
1834 |
+
// Reference: src/components/BorderSectionControl.vue:84
|
1835 |
+
// Reference: src/components/BusinessHoursOptions.vue:747
|
1836 |
+
// Reference: src/components/DividerOptions.vue:364
|
1837 |
+
// Reference: src/components/ImageOptions.vue:729
|
1838 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:664
|
1839 |
+
// Reference: src/components/PostsOptions.vue:1533
|
1840 |
+
// Reference: src/components/PricingTableOptions.vue:1309
|
1841 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:664
|
1842 |
+
// Reference: src/components/ProductRelatedOptions.vue:633
|
1843 |
+
// Reference: src/components/SectionOptions.vue:381
|
1844 |
+
// Reference: src/components/UpsellsOptions.vue:633
|
1845 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1171
|
1846 |
+
// Reference: src/views/GlobalCSS.vue:1970
|
1847 |
+
__( 'Dotted', 'coming-soon' ),
|
1848 |
+
|
1849 |
+
// Reference: src/components/BorderSectionControl.vue:85
|
1850 |
+
// Reference: src/components/BusinessHoursOptions.vue:748
|
1851 |
+
// Reference: src/components/DividerOptions.vue:365
|
1852 |
+
// Reference: src/components/ImageOptions.vue:730
|
1853 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:665
|
1854 |
+
// Reference: src/components/PostsOptions.vue:1534
|
1855 |
+
// Reference: src/components/PricingTableOptions.vue:1310
|
1856 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:665
|
1857 |
+
// Reference: src/components/ProductRelatedOptions.vue:634
|
1858 |
+
// Reference: src/components/SectionOptions.vue:382
|
1859 |
+
// Reference: src/components/UpsellsOptions.vue:634
|
1860 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1172
|
1861 |
+
// Reference: src/views/GlobalCSS.vue:1971
|
1862 |
+
__( 'Dashed', 'coming-soon' ),
|
1863 |
+
|
1864 |
+
// Reference: src/components/BorderSectionControl.vue:86
|
1865 |
+
// Reference: src/components/ImageOptions.vue:733
|
1866 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:668
|
1867 |
+
// Reference: src/components/PostsOptions.vue:1527
|
1868 |
+
// Reference: src/components/PricingTableOptions.vue:1311
|
1869 |
+
// Reference: src/components/ProductDataTabsOptions.vue:328
|
1870 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:668
|
1871 |
+
// Reference: src/components/SectionOptions.vue:384
|
1872 |
+
__( 'Border Color', 'coming-soon' ),
|
1873 |
+
|
1874 |
+
// Reference: src/components/BorderWidthControl.vue:120
|
1875 |
+
// Reference: src/components/ImageOptions.vue:731
|
1876 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:666
|
1877 |
+
// Reference: src/components/PostsOptions.vue:1528
|
1878 |
+
// Reference: src/components/PricingTableOptions.vue:1312
|
1879 |
+
// Reference: src/components/ProductDataTabsOptions.vue:337
|
1880 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:666
|
1881 |
+
__( 'Border Width', 'coming-soon' ),
|
1882 |
+
|
1883 |
+
// Reference: src/components/BulletListOptions.vue:496
|
1884 |
+
__( 'List', 'coming-soon' ),
|
1885 |
+
|
1886 |
+
// Reference: src/components/BulletListOptions.vue:509
|
1887 |
+
// Reference: src/components/BusinessHoursOptions.vue:736
|
1888 |
+
// Reference: src/components/DividerOptions.vue:391
|
1889 |
+
// Reference: src/components/PostinfoOptions.vue:607
|
1890 |
+
// Reference: src/components/PricingTableOptions.vue:1291
|
1891 |
+
// Reference: src/components/SocialProfilesOptions.vue:700
|
1892 |
+
__( 'Icon Color', 'coming-soon' ),
|
1893 |
+
|
1894 |
+
// Reference: src/components/BusinessHoursOptions.vue:714
|
1895 |
+
__( 'Striped Effect Template', 'coming-soon' ),
|
1896 |
+
|
1897 |
+
// Reference: src/components/BusinessHoursOptions.vue:715
|
1898 |
+
__( 'Divider Template', 'coming-soon' ),
|
1899 |
+
|
1900 |
+
// Reference: src/components/BusinessHoursOptions.vue:716
|
1901 |
+
__( 'Background Template', 'coming-soon' ),
|
1902 |
+
|
1903 |
+
// Reference: src/components/BusinessHoursOptions.vue:718
|
1904 |
+
__( 'Business Days and Timing', 'coming-soon' ),
|
1905 |
+
|
1906 |
+
// Reference: src/components/BusinessHoursOptions.vue:720
|
1907 |
+
__( 'Date Font Size', 'coming-soon' ),
|
1908 |
+
|
1909 |
+
// Reference: src/components/BusinessHoursOptions.vue:721
|
1910 |
+
__( 'Time Font Size', 'coming-soon' ),
|
1911 |
+
|
1912 |
+
// Reference: src/components/BusinessHoursOptions.vue:723
|
1913 |
+
__( 'Date Align', 'coming-soon' ),
|
1914 |
+
|
1915 |
+
// Reference: src/components/BusinessHoursOptions.vue:724
|
1916 |
+
__( 'Time Align', 'coming-soon' ),
|
1917 |
+
|
1918 |
+
// Reference: src/components/BusinessHoursOptions.vue:732
|
1919 |
+
__( 'Enter Day', 'coming-soon' ),
|
1920 |
+
|
1921 |
+
// Reference: src/components/BusinessHoursOptions.vue:733
|
1922 |
+
__( 'Enter Time', 'coming-soon' ),
|
1923 |
+
|
1924 |
+
// Reference: src/components/BusinessHoursOptions.vue:734
|
1925 |
+
__( 'Style Day/Time', 'coming-soon' ),
|
1926 |
+
|
1927 |
+
// Reference: src/components/BusinessHoursOptions.vue:738
|
1928 |
+
// Reference: src/components/PostinfoOptions.vue:573
|
1929 |
+
__( 'Time', 'coming-soon' ),
|
1930 |
+
|
1931 |
+
// Reference: src/components/BusinessHoursOptions.vue:740
|
1932 |
+
__( 'Day Color', 'coming-soon' ),
|
1933 |
+
|
1934 |
+
// Reference: src/components/BusinessHoursOptions.vue:741
|
1935 |
+
__( 'Time Color', 'coming-soon' ),
|
1936 |
+
|
1937 |
+
// Reference: src/components/BusinessHoursOptions.vue:744
|
1938 |
+
// Reference: src/components/DividerOptions.vue:360
|
1939 |
+
// Reference: src/components/NavOptions.vue:587
|
1940 |
+
// Reference: src/components/PostinfoOptions.vue:605
|
1941 |
+
// Reference: src/components/ProductMetaOptions.vue:340
|
1942 |
+
__( 'Divider', 'coming-soon' ),
|
1943 |
+
|
1944 |
+
// Reference: src/components/BusinessHoursOptions.vue:745
|
1945 |
+
// Reference: src/components/DividerOptions.vue:362
|
1946 |
+
// Reference: src/components/SocialProfilesOptions.vue:685
|
1947 |
+
// Reference: src/components/TypographyControl.vue:281
|
1948 |
+
__( 'Style', 'coming-soon' ),
|
1949 |
+
|
1950 |
+
// Reference: src/components/BusinessHoursOptions.vue:750
|
1951 |
+
__( 'Weight', 'coming-soon' ),
|
1952 |
+
|
1953 |
+
// Reference: src/components/BusinessHoursOptions.vue:751
|
1954 |
+
__( 'Day and Time', 'coming-soon' ),
|
1955 |
+
|
1956 |
+
// Reference: src/components/BusinessHoursOptions.vue:752
|
1957 |
+
__( 'Striped Effect', 'coming-soon' ),
|
1958 |
+
|
1959 |
+
// Reference: src/components/BusinessHoursOptions.vue:753
|
1960 |
+
__( 'Striped Odd Rows Color', 'coming-soon' ),
|
1961 |
+
|
1962 |
+
// Reference: src/components/BusinessHoursOptions.vue:754
|
1963 |
+
__( 'Striped Even Rows Color', 'coming-soon' ),
|
1964 |
+
|
1965 |
+
// Reference: src/components/BusinessHoursOptions.vue:755
|
1966 |
+
// Reference: src/components/ColOptions.vue:674
|
1967 |
+
// Reference: src/components/PostauthorboxOptions.vue:357
|
1968 |
+
// Reference: src/components/PostcommentsOptions.vue:202
|
1969 |
+
// Reference: src/components/PostinfoOptions.vue:608
|
1970 |
+
// Reference: src/components/ProductMetaOptions.vue:343
|
1971 |
+
// Reference: src/components/RowOptions.vue:663
|
1972 |
+
// Reference: src/components/SectionOptions.vue:387
|
1973 |
+
// Reference: src/views/GlobalCSS.vue:1922
|
1974 |
+
// Reference: src/views/SetupDesign-Lite.vue:756
|
1975 |
+
__( 'Background', 'coming-soon' ),
|
1976 |
+
|
1977 |
+
// Reference: src/components/ButtonOptions.vue:1206
|
1978 |
+
// Reference: src/components/NavOptions.vue:582
|
1979 |
+
// Reference: src/components/PricingTableOptions.vue:1283
|
1980 |
+
// Reference: src/components/WCAddToCartOptions.vue:689
|
1981 |
+
__( 'Add "No Follow"', 'coming-soon' ),
|
1982 |
+
|
1983 |
+
// Reference: src/components/ButtonOptions.vue:1208
|
1984 |
+
// Reference: src/components/OptinFormOptions.vue:860
|
1985 |
+
// Reference: src/components/WCAddToCartOptions.vue:691
|
1986 |
+
__( 'Button Sub Text', 'coming-soon' ),
|
1987 |
+
|
1988 |
+
// Reference: src/components/ButtonOptions.vue:1210
|
1989 |
+
// Reference: src/components/ImageOptions.vue:735
|
1990 |
+
// Reference: src/components/NavOptions.vue:581
|
1991 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:670
|
1992 |
+
// Reference: src/components/PricingTableOptions.vue:1282
|
1993 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:670
|
1994 |
+
// Reference: src/components/WCAddToCartOptions.vue:693
|
1995 |
+
__( 'Open In New Window', 'coming-soon' ),
|
1996 |
+
|
1997 |
+
// Reference: src/components/ButtonOptions.vue:1244
|
1998 |
+
__( 'Button Border Width', 'coming-soon' ),
|
1999 |
+
|
2000 |
+
// Reference: src/components/ButtonOptions.vue:1245
|
2001 |
+
// Reference: src/views/GlobalCSS.vue:1987
|
2002 |
+
__( 'Button Border Color', 'coming-soon' ),
|
2003 |
+
|
2004 |
+
// Reference: src/components/ColOptions.vue:664
|
2005 |
+
__( 'Column Width', 'coming-soon' ),
|
2006 |
+
|
2007 |
+
// Reference: src/components/ColOptions.vue:675
|
2008 |
+
// Reference: src/components/PostinfoOptions.vue:600
|
2009 |
+
// Reference: src/components/PostsOptions.vue:1484
|
2010 |
+
// Reference: src/components/ProductMetaOptions.vue:327
|
2011 |
+
// Reference: src/components/WCCartOptions.vue:496
|
2012 |
+
// Reference: src/components/WCCheckoutOptions.vue:764
|
2013 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1077
|
2014 |
+
// Reference: src/views/GlobalCSS.vue:1958
|
2015 |
+
__( 'Layout', 'coming-soon' ),
|
2016 |
+
|
2017 |
+
// Reference: src/components/ColOptions.vue:676
|
2018 |
+
// Reference: src/components/ContactFormOptions.vue:292
|
2019 |
+
// Reference: src/components/GiveawayOptions.vue:164
|
2020 |
+
// Reference: src/components/NavOptions.vue:574
|
2021 |
+
// Reference: src/components/SectionOptions.vue:388
|
2022 |
+
__( 'Advanced Styles', 'coming-soon' ),
|
2023 |
+
|
2024 |
+
// Reference: src/components/ColOptions.vue:677
|
2025 |
+
// Reference: src/components/RowOptions.vue:676
|
2026 |
+
__( 'Content Alignment', 'coming-soon' ),
|
2027 |
+
|
2028 |
+
// Reference: src/components/ColOptions.vue:678
|
2029 |
+
// Reference: src/components/NavOptions.vue:589
|
2030 |
+
// Reference: src/components/RowOptions.vue:677
|
2031 |
+
__( 'Simple', 'coming-soon' ),
|
2032 |
+
|
2033 |
+
// Reference: src/components/ColOptions.vue:682
|
2034 |
+
// Reference: src/components/RowOptions.vue:681
|
2035 |
+
__( 'Display', 'coming-soon' ),
|
2036 |
+
|
2037 |
+
// Reference: src/components/ColOptions.vue:683
|
2038 |
+
// Reference: src/components/RowOptions.vue:682
|
2039 |
+
__( 'Flex Direction', 'coming-soon' ),
|
2040 |
+
|
2041 |
+
// Reference: src/components/ColOptions.vue:684
|
2042 |
+
// Reference: src/components/RowOptions.vue:683
|
2043 |
+
__( 'Justify Content', 'coming-soon' ),
|
2044 |
+
|
2045 |
+
// Reference: src/components/ColOptions.vue:685
|
2046 |
+
// Reference: src/components/RowOptions.vue:684
|
2047 |
+
__( 'Align Items', 'coming-soon' ),
|
2048 |
+
|
2049 |
+
// Reference: src/components/ColOptions.vue:686
|
2050 |
+
// Reference: src/components/RowOptions.vue:685
|
2051 |
+
// Reference: src/views/Layoutnav.vue:770
|
2052 |
+
__( 'Column', 'coming-soon' ),
|
2053 |
+
|
2054 |
+
// Reference: src/components/ColOptions.vue:687
|
2055 |
+
// Reference: src/components/RowOptions.vue:686
|
2056 |
+
// Reference: src/views/Layoutnav.vue:769
|
2057 |
+
__( 'Row', 'coming-soon' ),
|
2058 |
+
|
2059 |
+
// Reference: src/components/ColOptions.vue:688
|
2060 |
+
// Reference: src/components/RowOptions.vue:687
|
2061 |
+
__( 'Flex Start', 'coming-soon' ),
|
2062 |
+
|
2063 |
+
// Reference: src/components/ColOptions.vue:689
|
2064 |
+
// Reference: src/components/RowOptions.vue:688
|
2065 |
+
__( 'Center', 'coming-soon' ),
|
2066 |
+
|
2067 |
+
// Reference: src/components/ColOptions.vue:690
|
2068 |
+
// Reference: src/components/RowOptions.vue:689
|
2069 |
+
__( 'Flex End', 'coming-soon' ),
|
2070 |
+
|
2071 |
+
// Reference: src/components/ColOptions.vue:692
|
2072 |
+
// Reference: src/components/RowOptions.vue:691
|
2073 |
+
__( 'Space Around', 'coming-soon' ),
|
2074 |
+
|
2075 |
+
// Reference: src/components/ColOptions.vue:693
|
2076 |
+
// Reference: src/components/RowOptions.vue:692
|
2077 |
+
__( 'Space Evenly', 'coming-soon' ),
|
2078 |
+
|
2079 |
+
// Reference: src/components/ColOptions.vue:694
|
2080 |
+
// Reference: src/components/RowOptions.vue:693
|
2081 |
+
__( 'Baseline', 'coming-soon' ),
|
2082 |
+
|
2083 |
+
// Reference: src/components/ColOptions.vue:695
|
2084 |
+
// Reference: src/components/RowOptions.vue:694
|
2085 |
+
__( 'Stretch', 'coming-soon' ),
|
2086 |
+
|
2087 |
+
// Reference: src/components/ColOptions.vue:697
|
2088 |
+
// Reference: src/components/RowOptions.vue:700
|
2089 |
+
// Reference: src/components/SectionOptions.vue:390
|
2090 |
+
// Reference: src/components/ShapeDividerControl.vue:346
|
2091 |
+
__( 'Shape Divider', 'coming-soon' ),
|
2092 |
+
|
2093 |
+
// Reference: src/components/ColorPicker.vue:262
|
2094 |
+
__( 'Global Colors', 'coming-soon' ),
|
2095 |
+
|
2096 |
+
// Reference: src/components/ColorPicker.vue:263
|
2097 |
+
__( 'Common Colors', 'coming-soon' ),
|
2098 |
+
|
2099 |
+
// Reference: src/components/ColorPicker.vue:264
|
2100 |
+
__( 'Recently Used', 'coming-soon' ),
|
2101 |
+
|
2102 |
+
// Reference: src/components/ColorPicker.vue:265
|
2103 |
+
__( 'Clear', 'coming-soon' ),
|
2104 |
+
|
2105 |
+
// Reference: src/components/ColorPicker.vue:267
|
2106 |
+
__( 'Global Theme Colors', 'coming-soon' ),
|
2107 |
+
|
2108 |
+
// Reference: src/components/ContactForm.vue:168
|
2109 |
+
__( 'Install Contact Form plugin:', 'coming-soon' ),
|
2110 |
+
|
2111 |
+
// Reference: src/components/ContactForm.vue:171
|
2112 |
+
__( 'Contact Form', 'coming-soon' ),
|
2113 |
+
|
2114 |
+
// Reference: src/components/ContactForm.vue:172
|
2115 |
+
// Reference: src/components/Giveaway.vue:173
|
2116 |
+
__( '(This shortcode will be rendered on the live preview.)', 'coming-soon' ),
|
2117 |
+
|
2118 |
+
// Reference: src/components/ContactForm.vue:176
|
2119 |
+
// Reference: src/components/ContactFormOptions.vue:293
|
2120 |
+
__( 'Select a Form', 'coming-soon' ),
|
2121 |
+
|
2122 |
+
// Reference: src/components/ContactForm.vue:177
|
2123 |
+
__( 'You can use WPForms to build contact forms, surveys, payment forms, and more with just a few clicks.', 'coming-soon' ),
|
2124 |
+
|
2125 |
+
// Reference: src/components/ContactFormOptions.vue:295
|
2126 |
+
__( 'Select', 'coming-soon' ),
|
2127 |
+
|
2128 |
+
// Reference: src/components/ContactFormOptions.vue:296
|
2129 |
+
__( 'Need to make changes? Edit the selected form.', 'coming-soon' ),
|
2130 |
+
|
2131 |
+
// Reference: src/components/ContactFormOptions.vue:297
|
2132 |
+
__( '+ New Form', 'coming-soon' ),
|
2133 |
+
|
2134 |
+
// Reference: src/components/ContactFormOptions.vue:298
|
2135 |
+
// Reference: src/components/GiveawayOptions.vue:170
|
2136 |
+
// Reference: src/views/SettingsGeneral.vue:225
|
2137 |
+
__( 'Show', 'coming-soon' ),
|
2138 |
+
|
2139 |
+
// Reference: src/components/ContactFormOptions.vue:299
|
2140 |
+
// Reference: src/components/GiveawayOptions.vue:171
|
2141 |
+
__( 'Hide', 'coming-soon' ),
|
2142 |
+
|
2143 |
+
// Reference: src/components/ContactFormOptions.vue:300
|
2144 |
+
// Reference: src/components/GiveawayOptions.vue:172
|
2145 |
+
__( 'Form Name', 'coming-soon' ),
|
2146 |
+
|
2147 |
+
// Reference: src/components/ContactFormOptions.vue:301
|
2148 |
+
// Reference: src/components/GiveawayOptions.vue:173
|
2149 |
+
__( 'Form Description', 'coming-soon' ),
|
2150 |
+
|
2151 |
+
// Reference: src/components/ContactFormOptions.vue:302
|
2152 |
+
// Reference: src/components/GiveawayOptions.vue:174
|
2153 |
+
// Reference: src/components/LoginOptions.vue:904
|
2154 |
+
// Reference: src/components/OptinFormOptions.vue:847
|
2155 |
+
__( 'Form', 'coming-soon' ),
|
2156 |
+
|
2157 |
+
// Reference: src/components/ContactFormOptions.vue:303
|
2158 |
+
// Reference: src/components/GiveawayOptions.vue:175
|
2159 |
+
__( 'Display Options', 'coming-soon' ),
|
2160 |
+
|
2161 |
+
// Reference: src/components/CountdownOptions.vue:849
|
2162 |
+
__( 'Countdown Type', 'coming-soon' ),
|
2163 |
+
|
2164 |
+
// Reference: src/components/CountdownOptions.vue:850
|
2165 |
+
__( 'Visitor Timer (Evergreen)', 'coming-soon' ),
|
2166 |
+
|
2167 |
+
// Reference: src/components/CountdownOptions.vue:851
|
2168 |
+
__( 'DateTime Countdown', 'coming-soon' ),
|
2169 |
+
|
2170 |
+
// Reference: src/components/CountdownOptions.vue:852
|
2171 |
+
__( 'Set Timer For', 'coming-soon' ),
|
2172 |
+
|
2173 |
+
// Reference: src/components/CountdownOptions.vue:853
|
2174 |
+
__( 'End Date', 'coming-soon' ),
|
2175 |
+
|
2176 |
+
// Reference: src/components/CountdownOptions.vue:854
|
2177 |
+
__( 'End Time', 'coming-soon' ),
|
2178 |
+
|
2179 |
+
// Reference: src/components/CountdownOptions.vue:855
|
2180 |
+
__( 'Timezone', 'coming-soon' ),
|
2181 |
+
|
2182 |
+
// Reference: src/components/CountdownOptions.vue:861
|
2183 |
+
__( 'Action To Take On Expires', 'coming-soon' ),
|
2184 |
+
|
2185 |
+
// Reference: src/components/CountdownOptions.vue:862
|
2186 |
+
// Reference: src/components/OptinFormOptions.vue:863
|
2187 |
+
__( 'Show Message', 'coming-soon' ),
|
2188 |
+
|
2189 |
+
// Reference: src/components/CountdownOptions.vue:863
|
2190 |
+
// Reference: src/components/OptinFormOptions.vue:864
|
2191 |
+
__( 'Redirect', 'coming-soon' ),
|
2192 |
+
|
2193 |
+
// Reference: src/components/CountdownOptions.vue:864
|
2194 |
+
// Reference: src/components/OptinFormOptions.vue:865
|
2195 |
+
__( 'Message', 'coming-soon' ),
|
2196 |
+
|
2197 |
+
// Reference: src/components/CountdownOptions.vue:865
|
2198 |
+
// Reference: src/components/LoginOptions.vue:881
|
2199 |
+
// Reference: src/components/OptinFormOptions.vue:866
|
2200 |
+
__( 'Redirect URL', 'coming-soon' ),
|
2201 |
+
|
2202 |
+
// Reference: src/components/CountdownOptions.vue:866
|
2203 |
+
__( 'Customize Labels', 'coming-soon' ),
|
2204 |
+
|
2205 |
+
// Reference: src/components/CountdownOptions.vue:867
|
2206 |
+
__( 'Day Label', 'coming-soon' ),
|
2207 |
+
|
2208 |
+
// Reference: src/components/CountdownOptions.vue:868
|
2209 |
+
__( 'Hour Label', 'coming-soon' ),
|
2210 |
+
|
2211 |
+
// Reference: src/components/CountdownOptions.vue:869
|
2212 |
+
__( 'Minute Label', 'coming-soon' ),
|
2213 |
+
|
2214 |
+
// Reference: src/components/CountdownOptions.vue:870
|
2215 |
+
__( 'Second Label', 'coming-soon' ),
|
2216 |
+
|
2217 |
+
// Reference: src/components/CountdownOptions.vue:872
|
2218 |
+
__( 'Hours', 'coming-soon' ),
|
2219 |
+
|
2220 |
+
// Reference: src/components/CountdownOptions.vue:873
|
2221 |
+
__( 'Minutes', 'coming-soon' ),
|
2222 |
+
|
2223 |
+
// Reference: src/components/CountdownOptions.vue:874
|
2224 |
+
__( 'Seconds', 'coming-soon' ),
|
2225 |
+
|
2226 |
+
// Reference: src/components/CountdownOptions.vue:886
|
2227 |
+
__( 'Hightlight Color', 'coming-soon' ),
|
2228 |
+
|
2229 |
+
// Reference: src/components/CountdownOptions.vue:887
|
2230 |
+
// Reference: src/components/WCCartOptions.vue:519
|
2231 |
+
// Reference: src/components/WCCheckoutOptions.vue:787
|
2232 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1100
|
2233 |
+
// Reference: src/views/GlobalCSS.vue:1963
|
2234 |
+
__( 'Label Color', 'coming-soon' ),
|
2235 |
+
|
2236 |
+
// Reference: src/components/CountdownOptions.vue:888
|
2237 |
+
__( 'Restart', 'coming-soon' ),
|
2238 |
+
|
2239 |
+
// Reference: src/components/CustomHTML.vue:45
|
2240 |
+
__( 'Enter Your HTML', 'coming-soon' ),
|
2241 |
+
|
2242 |
+
// Reference: src/components/CustomHTMLOptions.vue:200
|
2243 |
+
// Reference: src/views/GlobalCSS.vue:1919
|
2244 |
+
// Reference: src/views/SetupDesign-Lite.vue:753
|
2245 |
+
__( 'Expand Editor', 'coming-soon' ),
|
2246 |
+
|
2247 |
+
// Reference: src/components/CustomHTMLOptions.vue:201
|
2248 |
+
__( 'Custom Code', 'coming-soon' ),
|
2249 |
+
|
2250 |
+
// Reference: src/components/CustomHTMLOptions.vue:202
|
2251 |
+
__( 'Edit Custom HMTL', 'coming-soon' ),
|
2252 |
+
|
2253 |
+
// Reference: src/components/DeviceVisibilityControl.vue:58
|
2254 |
+
__( 'Device Visibility', 'coming-soon' ),
|
2255 |
+
|
2256 |
+
// Reference: src/components/DeviceVisibilityControl.vue:59
|
2257 |
+
__( 'Hide on Desktop', 'coming-soon' ),
|
2258 |
+
|
2259 |
+
// Reference: src/components/DeviceVisibilityControl.vue:60
|
2260 |
+
__( 'Hide on Mobile', 'coming-soon' ),
|
2261 |
+
|
2262 |
+
// Reference: src/components/DisplaySectionControl.vue:187
|
2263 |
+
__( 'Z-Index', 'coming-soon' ),
|
2264 |
+
|
2265 |
+
// Reference: src/components/DisplaySectionControl.vue:189
|
2266 |
+
__( 'Static', 'coming-soon' ),
|
2267 |
+
|
2268 |
+
// Reference: src/components/DisplaySectionControl.vue:190
|
2269 |
+
__( 'Relative', 'coming-soon' ),
|
2270 |
+
|
2271 |
+
// Reference: src/components/DisplaySectionControl.vue:192
|
2272 |
+
__( 'Absolute', 'coming-soon' ),
|
2273 |
+
|
2274 |
+
// Reference: src/components/DisplaySectionControl.vue:193
|
2275 |
+
__( 'Sticky', 'coming-soon' ),
|
2276 |
+
|
2277 |
+
// Reference: src/components/DisplaySectionControl.vue:198
|
2278 |
+
__( 'Offset', 'coming-soon' ),
|
2279 |
+
|
2280 |
+
// Reference: src/components/DisplaySectionControl.vue:199
|
2281 |
+
__( 'Overflow', 'coming-soon' ),
|
2282 |
+
|
2283 |
+
// Reference: src/components/DisplaySectionControl.vue:200
|
2284 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1219
|
2285 |
+
__( 'Visible', 'coming-soon' ),
|
2286 |
+
|
2287 |
+
// Reference: src/components/DisplaySectionControl.vue:201
|
2288 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1222
|
2289 |
+
__( 'Hidden', 'coming-soon' ),
|
2290 |
+
|
2291 |
+
// Reference: src/components/DividerOptions.vue:363
|
2292 |
+
__( 'Solid Line', 'coming-soon' ),
|
2293 |
+
|
2294 |
+
// Reference: src/components/DividerOptions.vue:366
|
2295 |
+
__( 'Double', 'coming-soon' ),
|
2296 |
+
|
2297 |
+
// Reference: src/components/DividerOptions.vue:368
|
2298 |
+
// Reference: src/components/GoogleMapsOptions.vue:226
|
2299 |
+
// Reference: src/components/HeightControl.vue:84
|
2300 |
+
// Reference: src/components/ShapeDividerControl.vue:371
|
2301 |
+
// Reference: src/components/SpacerOptions.vue:68
|
2302 |
+
__( 'Height', 'coming-soon' ),
|
2303 |
+
|
2304 |
+
// Reference: src/components/DividerOptions.vue:369
|
2305 |
+
// Reference: src/components/SocialProfilesOptions.vue:692
|
2306 |
+
__( 'Icon Size', 'coming-soon' ),
|
2307 |
+
|
2308 |
+
// Reference: src/components/DividerOptions.vue:376
|
2309 |
+
// Reference: src/components/FeatureOptions.vue:456
|
2310 |
+
// Reference: src/components/HeaderOptions.vue:468
|
2311 |
+
// Reference: src/components/IconFeatureOptions.vue:446
|
2312 |
+
// Reference: src/components/IconOptions.vue:220
|
2313 |
+
// Reference: src/components/MenuCartOptions.vue:187
|
2314 |
+
// Reference: src/components/PostnavigationOptions.vue:95
|
2315 |
+
// Reference: src/components/ProductPriceOptions.vue:182
|
2316 |
+
// Reference: src/components/ProgressBarOptions.vue:337
|
2317 |
+
// Reference: src/components/ShadowControl.vue:138
|
2318 |
+
// Reference: src/components/ShapeDividerControl.vue:369
|
2319 |
+
// Reference: src/components/SocialProfilesOptions.vue:714
|
2320 |
+
// Reference: src/components/TestimonialOptions.vue:540
|
2321 |
+
// Reference: src/components/TextOptions.vue:391
|
2322 |
+
__( 'Color', 'coming-soon' ),
|
2323 |
+
|
2324 |
+
// Reference: src/components/DividerOptions.vue:377
|
2325 |
+
__( 'Add Element', 'coming-soon' ),
|
2326 |
+
|
2327 |
+
// Reference: src/components/DividerOptions.vue:382
|
2328 |
+
// Reference: src/components/PostauthorboxOptions.vue:340
|
2329 |
+
__( 'HTML Tag', 'coming-soon' ),
|
2330 |
+
|
2331 |
+
// Reference: src/components/DividerOptions.vue:383
|
2332 |
+
// Reference: src/components/PostauthorboxOptions.vue:341
|
2333 |
+
// Reference: src/components/PostsOptions.vue:1491
|
2334 |
+
__( 'H1', 'coming-soon' ),
|
2335 |
+
|
2336 |
+
// Reference: src/components/DividerOptions.vue:384
|
2337 |
+
// Reference: src/components/PostauthorboxOptions.vue:342
|
2338 |
+
// Reference: src/components/PostsOptions.vue:1492
|
2339 |
+
__( 'H2', 'coming-soon' ),
|
2340 |
+
|
2341 |
+
// Reference: src/components/DividerOptions.vue:385
|
2342 |
+
// Reference: src/components/PostauthorboxOptions.vue:343
|
2343 |
+
// Reference: src/components/PostsOptions.vue:1493
|
2344 |
+
__( 'H3', 'coming-soon' ),
|
2345 |
+
|
2346 |
+
// Reference: src/components/DividerOptions.vue:386
|
2347 |
+
// Reference: src/components/PostauthorboxOptions.vue:344
|
2348 |
+
// Reference: src/components/PostsOptions.vue:1494
|
2349 |
+
__( 'H4', 'coming-soon' ),
|
2350 |
+
|
2351 |
+
// Reference: src/components/DividerOptions.vue:387
|
2352 |
+
// Reference: src/components/HeaderOptions.vue:469
|
2353 |
+
// Reference: src/components/PostauthorboxOptions.vue:345
|
2354 |
+
// Reference: src/components/PostsOptions.vue:1495
|
2355 |
+
__( 'H5', 'coming-soon' ),
|
2356 |
+
|
2357 |
+
// Reference: src/components/DividerOptions.vue:388
|
2358 |
+
// Reference: src/components/HeaderOptions.vue:470
|
2359 |
+
// Reference: src/components/PostauthorboxOptions.vue:346
|
2360 |
+
// Reference: src/components/PostsOptions.vue:1496
|
2361 |
+
__( 'H6', 'coming-soon' ),
|
2362 |
+
|
2363 |
+
// Reference: src/components/DividerOptions.vue:389
|
2364 |
+
// Reference: src/components/PostauthorboxOptions.vue:348
|
2365 |
+
// Reference: src/components/PostsOptions.vue:1498
|
2366 |
+
__( 'span', 'coming-soon' ),
|
2367 |
+
|
2368 |
+
// Reference: src/components/DynamicTextControl.vue:132
|
2369 |
+
// Reference: src/components/HeaderOptions.vue:471
|
2370 |
+
// Reference: src/components/PostcommentsOptions.vue:203
|
2371 |
+
// Reference: src/components/TextOptions.vue:392
|
2372 |
+
__( 'Insert Dynamic Text', 'coming-soon' ),
|
2373 |
+
|
2374 |
+
// Reference: src/components/DynamicTextControl.vue:134
|
2375 |
+
__( 'Please enter date/time format', 'coming-soon' ),
|
2376 |
+
|
2377 |
+
// Reference: src/components/DynamicTextControl.vue:135
|
2378 |
+
__( 'Please select date/time format', 'coming-soon' ),
|
2379 |
+
|
2380 |
+
// Reference: src/components/DynamicTextControl.vue:136
|
2381 |
+
__( 'Insert', 'coming-soon' ),
|
2382 |
+
|
2383 |
+
// Reference: src/components/DynamicTextControl.vue:137
|
2384 |
+
// Reference: src/components/Row.vue:1059
|
2385 |
+
// Reference: src/components/Section.vue:670
|
2386 |
+
// Reference: src/views/Layoutnav.vue:772
|
2387 |
+
// Reference: src/views/Setup.vue:1018
|
2388 |
+
__( 'Cancel', 'coming-soon' ),
|
2389 |
+
|
2390 |
+
// Reference: src/components/DynamicTextControl.vue:138
|
2391 |
+
__( 'Dynamic Text Replacement', 'coming-soon' ),
|
2392 |
+
|
2393 |
+
// Reference: src/components/DynamicTextControl.vue:139
|
2394 |
+
__( 'DateTime', 'coming-soon' ),
|
2395 |
+
|
2396 |
+
// Reference: src/components/DynamicTextControl.vue:140
|
2397 |
+
__( 'Query Parameter', 'coming-soon' ),
|
2398 |
+
|
2399 |
+
// Reference: src/components/DynamicTextControl.vue:141
|
2400 |
+
__( 'Today', 'coming-soon' ),
|
2401 |
+
|
2402 |
+
// Reference: src/components/DynamicTextControl.vue:142
|
2403 |
+
__( 'Tomorrow', 'coming-soon' ),
|
2404 |
+
|
2405 |
+
// Reference: src/components/DynamicTextControl.vue:143
|
2406 |
+
__( 'Today Date', 'coming-soon' ),
|
2407 |
+
|
2408 |
+
// Reference: src/components/DynamicTextControl.vue:144
|
2409 |
+
__( 'Tomorrow Date', 'coming-soon' ),
|
2410 |
+
|
2411 |
+
// Reference: src/components/DynamicTextControl.vue:145
|
2412 |
+
__( 'Month', 'coming-soon' ),
|
2413 |
+
|
2414 |
+
// Reference: src/components/DynamicTextControl.vue:146
|
2415 |
+
__( 'Next Month', 'coming-soon' ),
|
2416 |
+
|
2417 |
+
// Reference: src/components/DynamicTextControl.vue:147
|
2418 |
+
__( 'Year', 'coming-soon' ),
|
2419 |
+
|
2420 |
+
// Reference: src/components/DynamicTextControl.vue:148
|
2421 |
+
__( 'Select Date Time Format', 'coming-soon' ),
|
2422 |
+
|
2423 |
+
// Reference: src/components/DynamicTextControl.vue:149
|
2424 |
+
__( 'Query Parameters', 'coming-soon' ),
|
2425 |
+
|
2426 |
+
// Reference: src/components/DynamicTextControl.vue:150
|
2427 |
+
__( 'Dynamic Text allows to create evergreen text. You can create date based dynamic text or pass in by query parameter. <a href="https://www.seedprod.com/docs/dynamic-text" target="_blank" class="sp-text-primary hover:sp-underline">Learn More</a>', 'coming-soon' ),
|
2428 |
+
|
2429 |
+
// Reference: src/components/DynamicTextControl.vue:151
|
2430 |
+
__( 'Parameter Name', 'coming-soon' ),
|
2431 |
+
|
2432 |
+
// Reference: src/components/DynamicTextControl.vue:152
|
2433 |
+
__( 'Default Value', 'coming-soon' ),
|
2434 |
+
|
2435 |
+
// Reference: src/components/DynamicTextControl.vue:153
|
2436 |
+
__( 'Please enter parameter name', 'coming-soon' ),
|
2437 |
+
|
2438 |
+
// Reference: src/components/DynamicTextControl.vue:154
|
2439 |
+
__( 'Don\'t see the date format you need? Click the Learn More link above to learn how to create any date.', 'coming-soon' ),
|
2440 |
+
|
2441 |
+
// Reference: src/components/FeatureOptions.vue:447
|
2442 |
+
// Reference: src/components/IconFeatureOptions.vue:437
|
2443 |
+
// Reference: src/components/PostinfoOptions.vue:584
|
2444 |
+
// Reference: src/components/ProductMetaOptions.vue:330
|
2445 |
+
// Reference: src/components/ShapeDividerControl.vue:349
|
2446 |
+
// Reference: src/components/TestimonialOptions.vue:534
|
2447 |
+
// Reference: src/components/VideoOptions.vue:233
|
2448 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1131
|
2449 |
+
__( 'Type', 'coming-soon' ),
|
2450 |
+
|
2451 |
+
// Reference: src/components/FeatureOptions.vue:448
|
2452 |
+
// Reference: src/components/IconFeatureOptions.vue:438
|
2453 |
+
// Reference: src/components/ImageOptions.vue:706
|
2454 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:641
|
2455 |
+
// Reference: src/components/PostinfoOptions.vue:601
|
2456 |
+
// Reference: src/components/PostsOptions.vue:1529
|
2457 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:641
|
2458 |
+
// Reference: src/components/ProductMetaOptions.vue:331
|
2459 |
+
// Reference: src/components/ProductRelatedOptions.vue:629
|
2460 |
+
// Reference: src/components/SocialSharingOptions.vue:395
|
2461 |
+
// Reference: src/components/TestimonialOptions.vue:545
|
2462 |
+
// Reference: src/components/UpsellsOptions.vue:629
|
2463 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1167
|
2464 |
+
__( 'Image', 'coming-soon' ),
|
2465 |
+
|
2466 |
+
// Reference: src/components/FeatureOptions.vue:450
|
2467 |
+
// Reference: src/components/IconFeatureOptions.vue:440
|
2468 |
+
// Reference: src/components/ImageOptions.vue:715
|
2469 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:650
|
2470 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:650
|
2471 |
+
__( 'Image Size', 'coming-soon' ),
|
2472 |
+
|
2473 |
+
// Reference: src/components/FeatureOptions.vue:452
|
2474 |
+
// Reference: src/components/IconFeatureOptions.vue:442
|
2475 |
+
__( 'Header Text', 'coming-soon' ),
|
2476 |
+
|
2477 |
+
// Reference: src/components/FeatureOptions.vue:453
|
2478 |
+
// Reference: src/components/HeaderOptions.vue:452
|
2479 |
+
// Reference: src/components/IconFeatureOptions.vue:443
|
2480 |
+
__( 'Level', 'coming-soon' ),
|
2481 |
+
|
2482 |
+
// Reference: src/components/FeatureOptions.vue:460
|
2483 |
+
__( 'Al Text', 'coming-soon' ),
|
2484 |
+
|
2485 |
+
// Reference: src/components/FontAwesomePicker.vue:39
|
2486 |
+
__( 'Click to select an icon', 'coming-soon' ),
|
2487 |
+
|
2488 |
+
// Reference: src/components/FontAwesomePicker.vue:40
|
2489 |
+
__( 'Search icons', 'coming-soon' ),
|
2490 |
+
|
2491 |
+
// Reference: src/components/FontVariantControl.vue:37
|
2492 |
+
__( 'Select a Font Weight', 'coming-soon' ),
|
2493 |
+
|
2494 |
+
// Reference: src/components/FontVariantControl.vue:38
|
2495 |
+
__( 'Normal 400', 'coming-soon' ),
|
2496 |
+
|
2497 |
+
// Reference: src/components/FontVariantControl.vue:39
|
2498 |
+
__( 'Bold 700', 'coming-soon' ),
|
2499 |
+
|
2500 |
+
// Reference: src/components/Giveaway.vue:169
|
2501 |
+
__( 'Install Giveaway plugin:', 'coming-soon' ),
|
2502 |
+
|
2503 |
+
// Reference: src/components/Giveaway.vue:172
|
2504 |
+
__( 'Giveaway', 'coming-soon' ),
|
2505 |
+
|
2506 |
+
// Reference: src/components/Giveaway.vue:177
|
2507 |
+
__( 'Select a Giveway', 'coming-soon' ),
|
2508 |
+
|
2509 |
+
// Reference: src/components/Giveaway.vue:178
|
2510 |
+
__( 'You can use RafflePress to build viral giveaways in minutes and explode your email list.', 'coming-soon' ),
|
2511 |
+
|
2512 |
+
// Reference: src/components/GiveawayOptions.vue:167
|
2513 |
+
__( 'Select a Giveaway', 'coming-soon' ),
|
2514 |
+
|
2515 |
+
// Reference: src/components/GiveawayOptions.vue:168
|
2516 |
+
__( 'Need to make changes? Edit the selected giveaway.', 'coming-soon' ),
|
2517 |
+
|
2518 |
+
// Reference: src/components/GiveawayOptions.vue:169
|
2519 |
+
__( '+ New Giveaway', 'coming-soon' ),
|
2520 |
+
|
2521 |
+
// Reference: src/components/GoogleMapsOptions.vue:223
|
2522 |
+
__( 'Google Maps', 'coming-soon' ),
|
2523 |
+
|
2524 |
+
// Reference: src/components/GoogleMapsOptions.vue:224
|
2525 |
+
__( 'Location', 'coming-soon' ),
|
2526 |
+
|
2527 |
+
// Reference: src/components/GoogleMapsOptions.vue:225
|
2528 |
+
__( 'Zoom', 'coming-soon' ),
|
2529 |
+
|
2530 |
+
// Reference: src/components/HeaderOptions.vue:447
|
2531 |
+
__( 'Headline', 'coming-soon' ),
|
2532 |
+
|
2533 |
+
// Reference: src/components/HeaderOptions.vue:453
|
2534 |
+
__( 'h1', 'coming-soon' ),
|
2535 |
+
|
2536 |
+
// Reference: src/components/HeaderOptions.vue:454
|
2537 |
+
__( 'h2', 'coming-soon' ),
|
2538 |
+
|
2539 |
+
// Reference: src/components/HeaderOptions.vue:455
|
2540 |
+
__( 'h3', 'coming-soon' ),
|
2541 |
+
|
2542 |
+
// Reference: src/components/HeaderOptions.vue:456
|
2543 |
+
__( 'h4', 'coming-soon' ),
|
2544 |
+
|
2545 |
+
// Reference: src/components/IconPicker.vue:242
|
2546 |
+
__( 'All Icons', 'coming-soon' ),
|
2547 |
+
|
2548 |
+
// Reference: src/components/IconPicker.vue:243
|
2549 |
+
__( 'Font Awesome', 'coming-soon' ),
|
2550 |
+
|
2551 |
+
// Reference: src/components/IconPicker.vue:244
|
2552 |
+
__( 'Search icons...', 'coming-soon' ),
|
2553 |
+
|
2554 |
+
// Reference: src/components/IconPicker.vue:245
|
2555 |
+
// Reference: src/components/PostinfoOptions.vue:599
|
2556 |
+
__( 'Choose Icon', 'coming-soon' ),
|
2557 |
+
|
2558 |
+
// Reference: src/components/IconPicker.vue:246
|
2559 |
+
__( 'Icon Library', 'coming-soon' ),
|
2560 |
+
|
2561 |
+
// Reference: src/components/ImageControl.vue:253
|
2562 |
+
__( 'Choose New Image', 'coming-soon' ),
|
2563 |
+
|
2564 |
+
// Reference: src/components/ImageControl.vue:258
|
2565 |
+
__( 'Use Your', 'coming-soon' ),
|
2566 |
+
|
2567 |
+
// Reference: src/components/ImageControl.vue:259
|
2568 |
+
__( 'Own Image', 'coming-soon' ),
|
2569 |
+
|
2570 |
+
// Reference: src/components/ImageControl.vue:260
|
2571 |
+
// Reference: src/components/Row.vue:1055
|
2572 |
+
// Reference: src/components/Section.vue:667
|
2573 |
+
// Reference: src/views/BuilderView.vue:1052
|
2574 |
+
__( 'or', 'coming-soon' ),
|
2575 |
+
|
2576 |
+
// Reference: src/components/ImageControl.vue:261
|
2577 |
+
__( 'Stock Images Library', 'coming-soon' ),
|
2578 |
+
|
2579 |
+
// Reference: src/components/ImageControl.vue:262
|
2580 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1221
|
2581 |
+
__( 'Search', 'coming-soon' ),
|
2582 |
+
|
2583 |
+
// Reference: src/components/ImageControl.vue:263
|
2584 |
+
__( 'Use a', 'coming-soon' ),
|
2585 |
+
|
2586 |
+
// Reference: src/components/ImageControl.vue:264
|
2587 |
+
__( 'Stock Image', 'coming-soon' ),
|
2588 |
+
|
2589 |
+
// Reference: src/components/ImageControl.vue:265
|
2590 |
+
__( 'Search images...', 'coming-soon' ),
|
2591 |
+
|
2592 |
+
// Reference: src/components/ImageOptions.vue:709
|
2593 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:644
|
2594 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:644
|
2595 |
+
__( 'Image Border', 'coming-soon' ),
|
2596 |
+
|
2597 |
+
// Reference: src/components/ImageOptions.vue:714
|
2598 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:649
|
2599 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:649
|
2600 |
+
__( 'Alt Text', 'coming-soon' ),
|
2601 |
+
|
2602 |
+
// Reference: src/components/ImageOptions.vue:725
|
2603 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:660
|
2604 |
+
// Reference: src/components/PostsOptions.vue:1542
|
2605 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:660
|
2606 |
+
// Reference: src/components/ProductRelatedOptions.vue:642
|
2607 |
+
// Reference: src/components/ShadowControl.vue:146
|
2608 |
+
// Reference: src/components/UpsellsOptions.vue:642
|
2609 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1180
|
2610 |
+
__( 'Bottom Drop Shadow', 'coming-soon' ),
|
2611 |
+
|
2612 |
+
// Reference: src/components/ImageOptions.vue:732
|
2613 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:667
|
2614 |
+
// Reference: src/components/PostsOptions.vue:1549
|
2615 |
+
// Reference: src/components/PricingTableOptions.vue:1313
|
2616 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:667
|
2617 |
+
// Reference: src/components/ProductRelatedOptions.vue:649
|
2618 |
+
// Reference: src/components/UpsellsOptions.vue:649
|
2619 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1187
|
2620 |
+
__( 'Image Whitespace Padding', 'coming-soon' ),
|
2621 |
+
|
2622 |
+
// Reference: src/components/ImageOptions.vue:736
|
2623 |
+
// Reference: src/components/PostfeaturedimageOptions.vue:671
|
2624 |
+
// Reference: src/components/ProductFeaturedImageOptions.vue:671
|
2625 |
+
__( 'No Follow', 'coming-soon' ),
|
2626 |
+
|
2627 |
+
// Reference: src/components/ImageOptions.vue:737
|
2628 |
+
__( 'Link Type', 'coming-soon' ),
|
2629 |
+
|
2630 |
+
// Reference: src/components/ImageOptions.vue:738
|
2631 |
+
__( 'Custom Link', 'coming-soon' ),
|
2632 |
+
|
2633 |
+
// Reference: src/components/ImageOptions.vue:739
|
2634 |
+
__( 'Media - Lightbox', 'coming-soon' ),
|
2635 |
+
|
2636 |
+
// Reference: src/components/ImageOptions.vue:741
|
2637 |
+
__( 'Object Fit', 'coming-soon' ),
|
2638 |
+
|
2639 |
+
// Reference: src/components/ImageOptions.vue:743
|
2640 |
+
__( 'Fill', 'coming-soon' ),
|
2641 |
+
|
2642 |
+
// Reference: src/components/ImageOptions.vue:746
|
2643 |
+
__( 'Border Radius Unit', 'coming-soon' ),
|
2644 |
+
|
2645 |
+
// Reference: src/components/ListTable.vue:470
|
2646 |
+
__( 'Bulk Actions', 'coming-soon' ),
|
2647 |
+
|
2648 |
+
// Reference: src/components/ListTable.vue:471
|
2649 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:185
|
2650 |
+
__( 'Apply', 'coming-soon' ),
|
2651 |
+
|
2652 |
+
// Reference: src/components/ListTable.vue:472
|
2653 |
+
__( 'items', 'coming-soon' ),
|
2654 |
+
|
2655 |
+
// Reference: src/components/ListTable.vue:473
|
2656 |
+
__( 'No items found.', 'coming-soon' ),
|
2657 |
+
|
2658 |
+
// Reference: src/components/ListTable.vue:475
|
2659 |
+
__( 'Select bulk action', 'coming-soon' ),
|
2660 |
+
|
2661 |
+
// Reference: src/components/LiteCTABuilder.vue:46
|
2662 |
+
// Reference: src/components/LiteCTASubscribers.vue:93
|
2663 |
+
// Reference: src/components/LiteCTATemplates.vue:45
|
2664 |
+
// Reference: src/components/SettingsLiteCTA.vue:153
|
2665 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:152
|
2666 |
+
// Reference: src/components/UpgradeCTABuilder.vue:45
|
2667 |
+
__( 'Dismiss this message', 'coming-soon' ),
|
2668 |
+
|
2669 |
+
// Reference: src/components/LiteCTABuilder.vue:47
|
2670 |
+
// Reference: src/components/LiteCTASubscribers.vue:94
|
2671 |
+
// Reference: src/components/LiteCTATemplates.vue:46
|
2672 |
+
// Reference: src/components/SettingsLiteCTA.vue:154
|
2673 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:153
|
2674 |
+
// Reference: src/components/UpgradeCTABuilder.vue:46
|
2675 |
+
__( 'Get SeedProd Lite and Unlock all the Powerful Features', 'coming-soon' ),
|
2676 |
+
|
2677 |
+
// Reference: src/components/LiteCTABuilder.vue:51
|
2678 |
+
// Reference: src/components/UpgradeCTABuilder.vue:50
|
2679 |
+
__( 'Thanks for being a loyal SeedProd Lite user. Upgrade to
|
2680 |
+
SeedProd Lite to unlock all the awesome features and
|
2681 |
+
experience why SeedProd is the best WordPress landing
|
2682 |
+
page plugin.', 'coming-soon' ),
|
2683 |
+
|
2684 |
+
// Reference: src/components/LiteCTABuilder.vue:58
|
2685 |
+
// Reference: src/components/LiteCTASubscribers.vue:105
|
2686 |
+
// Reference: src/components/LiteCTATemplates.vue:57
|
2687 |
+
// Reference: src/components/SettingsLiteCTA.vue:165
|
2688 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:164
|
2689 |
+
// Reference: src/components/UpgradeCTABuilder.vue:57
|
2690 |
+
__( 'Pro Features:', 'coming-soon' ),
|
2691 |
+
|
2692 |
+
// Reference: src/components/LiteCTABuilder.vue:59
|
2693 |
+
// Reference: src/components/LiteCTATemplates.vue:58
|
2694 |
+
// Reference: src/components/UpgradeCTABuilder.vue:58
|
2695 |
+
__( 'Drag & Drop Page Builder', 'coming-soon' ),
|
2696 |
+
|
2697 |
+
// Reference: src/components/LiteCTABuilder.vue:60
|
2698 |
+
// Reference: src/components/SettingsLiteCTA.vue:167
|
2699 |
+
// Reference: src/components/UpgradeCTABuilder.vue:59
|
2700 |
+
__( '80+ PRO Page Blocks', 'coming-soon' ),
|
2701 |
+
|
2702 |
+
// Reference: src/components/LiteCTABuilder.vue:61
|
2703 |
+
// Reference: src/components/UpgradeCTABuilder.vue:60
|
2704 |
+
__( 'PRO Email Marketing Integrations', 'coming-soon' ),
|
2705 |
+
|
2706 |
+
// Reference: src/components/LiteCTABuilder.vue:65
|
2707 |
+
// Reference: src/components/LiteCTASubscribers.vue:112
|
2708 |
+
// Reference: src/components/SettingsLiteCTA.vue:172
|
2709 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:171
|
2710 |
+
// Reference: src/components/UpgradeCTABuilder.vue:64
|
2711 |
+
__( 'Custom 404 Pages', 'coming-soon' ),
|
2712 |
+
|
2713 |
+
// Reference: src/components/LiteCTABuilder.vue:66
|
2714 |
+
// Reference: src/components/LiteCTASubscribers.vue:113
|
2715 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:172
|
2716 |
+
// Reference: src/components/UpgradeCTABuilder.vue:65
|
2717 |
+
__( 'Page Access Controls', 'coming-soon' ),
|
2718 |
+
|
2719 |
+
// Reference: src/components/LiteCTABuilder.vue:67
|
2720 |
+
// Reference: src/components/SettingsLiteCTA.vue:174
|
2721 |
+
// Reference: src/components/UpgradeCTABuilder.vue:66
|
2722 |
+
__( '200+ PRO Page Templates', 'coming-soon' ),
|
2723 |
+
|
2724 |
+
// Reference: src/components/LiteCTABuilder.vue:68
|
2725 |
+
// Reference: src/components/SettingsLiteCTA.vue:175
|
2726 |
+
// Reference: src/components/UpgradeCTABuilder.vue:67
|
2727 |
+
__( 'PRO Smart Sections', 'coming-soon' ),
|
2728 |
+
|
2729 |
+
// Reference: src/components/LiteCTABuilder.vue:72
|
2730 |
+
// Reference: src/components/LiteCTASubscribers.vue:119
|
2731 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:175
|
2732 |
+
// Reference: src/components/UpgradeCTABuilder.vue:71
|
2733 |
+
__( 'Email Subscriber Management', 'coming-soon' ),
|
2734 |
+
|
2735 |
+
// Reference: src/components/LiteCTABuilder.vue:73
|
2736 |
+
// Reference: src/components/LiteCTASubscribers.vue:120
|
2737 |
+
// Reference: src/components/SettingsLiteCTA.vue:180
|
2738 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:179
|
2739 |
+
// Reference: src/components/UpgradeCTABuilder.vue:72
|
2740 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1210
|
2741 |
+
__( 'Saved Templates', 'coming-soon' ),
|
2742 |
+
|
2743 |
+
// Reference: src/components/LiteCTABuilder.vue:74
|
2744 |
+
// Reference: src/components/LiteCTASubscribers.vue:121
|
2745 |
+
// Reference: src/components/LiteCTATemplates.vue:73
|
2746 |
+
// Reference: src/components/SettingsLiteCTA.vue:181
|
2747 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:180
|
2748 |
+
// Reference: src/components/UpgradeCTABuilder.vue:73
|
2749 |
+
__( 'Plus much more...', 'coming-soon' ),
|
2750 |
+
|
2751 |
+
// Reference: src/components/LiteCTABuilder.vue:76
|
2752 |
+
// Reference: src/components/LiteCTASubscribers.vue:122
|
2753 |
+
// Reference: src/components/LiteCTATemplates.vue:74
|
2754 |
+
// Reference: src/components/SettingsLiteCTA.vue:182
|
2755 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:181
|
2756 |
+
// Reference: src/components/UpgradeCTABuilder.vue:75
|
2757 |
+
__( 'Bonus:', 'coming-soon' ),
|
2758 |
+
|
2759 |
+
// Reference: src/components/LiteCTABuilder.vue:77
|
2760 |
+
// Reference: src/components/LiteCTASubscribers.vue:123
|
2761 |
+
// Reference: src/components/LiteCTATemplates.vue:75
|
2762 |
+
// Reference: src/components/SettingsLiteCTA.vue:183
|
2763 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:182
|
2764 |
+
// Reference: src/components/UpgradeCTABuilder.vue:76
|
2765 |
+
__( 'SeedProd Lite users get', 'coming-soon' ),
|
2766 |
+
|
2767 |
+
// Reference: src/components/LiteCTABuilder.vue:78
|
2768 |
+
// Reference: src/components/LiteCTASubscribers.vue:124
|
2769 |
+
// Reference: src/components/LiteCTATemplates.vue:76
|
2770 |
+
// Reference: src/components/SettingsLiteCTA.vue:184
|
2771 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:183
|
2772 |
+
// Reference: src/components/UpgradeCTABuilder.vue:77
|
2773 |
+
__( 'a discount off the regular price', 'coming-soon' ),
|
2774 |
+
|
2775 |
+
// Reference: src/components/LiteCTABuilder.vue:82
|
2776 |
+
// Reference: src/components/LiteCTASubscribers.vue:128
|
2777 |
+
// Reference: src/components/LiteCTATemplates.vue:80
|
2778 |
+
// Reference: src/components/SettingsLiteCTA.vue:188
|
2779 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:187
|
2780 |
+
// Reference: src/components/UpgradeCTABuilder.vue:81
|
2781 |
+
__( 'automatically applied at checkout.', 'coming-soon' ),
|
2782 |
+
|
2783 |
+
// Reference: src/components/LiteCTABuilder.vue:86
|
2784 |
+
// Reference: src/components/LiteCTASubscribers.vue:132
|
2785 |
+
// Reference: src/components/LiteCTATemplates.vue:84
|
2786 |
+
// Reference: src/components/SettingsLiteCTA.vue:192
|
2787 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:191
|
2788 |
+
// Reference: src/components/UpgradeCTABuilder.vue:85
|
2789 |
+
__( 'Get SeedProd Lite Today and Unlock all the Powerful Features »', 'coming-soon' ),
|
2790 |
+
|
2791 |
+
// Reference: src/components/LiteCTASubscribers.vue:106
|
2792 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:165
|
2793 |
+
__( 'Filter by Page', 'coming-soon' ),
|
2794 |
+
|
2795 |
+
// Reference: src/components/LiteCTASubscribers.vue:107
|
2796 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:166
|
2797 |
+
__( 'Export to a CSV File', 'coming-soon' ),
|
2798 |
+
|
2799 |
+
// Reference: src/components/LiteCTASubscribers.vue:108
|
2800 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:167
|
2801 |
+
__( 'Premium Email Marketing Integrations', 'coming-soon' ),
|
2802 |
+
|
2803 |
+
// Reference: src/components/LiteCTASubscribers.vue:114
|
2804 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:173
|
2805 |
+
__( 'Subscribers Over Time', 'coming-soon' ),
|
2806 |
+
|
2807 |
+
// Reference: src/components/LiteCTASubscribers.vue:115
|
2808 |
+
// Reference: src/components/ThemeBuilderUpsell.vue:174
|
2809 |
+
__( 'See Name and Emails', 'coming-soon' ),
|
2810 |
+
|
2811 |
+
// Reference: src/components/LiteCTATemplates.vue:59
|
2812 |
+
__( 'More Premium Blocks', 'coming-soon' ),
|
2813 |
+
|
2814 |
+
// Reference: src/components/LiteCTATemplates.vue:60
|
2815 |
+
__( 'Capture Emails and Leads', 'coming-soon' ),
|
2816 |
+
|
2817 |
+
// Reference: src/components/LiteCTATemplates.vue:64
|
2818 |
+
__( 'Marketing & CRM Integrations', 'coming-soon' ),
|
2819 |
+
|
2820 |
+
// Reference: src/components/LiteCTATemplates.vue:65
|
2821 |
+
__( 'Maintenance Access Controls', 'coming-soon' ),
|
2822 |
+
|
2823 |
+
// Reference: src/components/LiteCTATemplates.vue:66
|
2824 |
+
__( 'Growing Library of Templates', 'coming-soon' ),
|
2825 |
+
|
2826 |
+
// Reference: src/components/LiteCTATemplates.vue:67
|
2827 |
+
__( 'Smart Sections', 'coming-soon' ),
|
2828 |
+
|
2829 |
+
// Reference: src/components/LiteCTATemplates.vue:71
|
2830 |
+
__( 'More Design Controls', 'coming-soon' ),
|
2831 |
+
|
2832 |
+
// Reference: src/components/LiteCTATemplates.vue:72
|
2833 |
+
__( 'Coming Soon Access Controls', 'coming-soon' ),
|
2834 |
+
|
2835 |
+
// Reference: src/components/LoginOptions.vue:877
|
2836 |
+
// Reference: src/components/OptinFormOptions.vue:848
|
2837 |
+
// Reference: src/components/WCCartOptions.vue:498
|
2838 |
+
// Reference: src/components/WCCheckoutOptions.vue:766
|
2839 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1079
|
2840 |
+
__( 'Fields', 'coming-soon' ),
|
2841 |
+
|
2842 |
+
// Reference: src/components/LoginOptions.vue:882
|
2843 |
+
__( 'Label for User field', 'coming-soon' ),
|
2844 |
+
|
2845 |
+
// Reference: src/components/LoginOptions.vue:883
|
2846 |
+
__( 'Placeholder for User field', 'coming-soon' ),
|
2847 |
+
|
2848 |
+
// Reference: src/components/LoginOptions.vue:884
|
2849 |
+
__( 'Label for Password field', 'coming-soon' ),
|
2850 |
+
|
2851 |
+
// Reference: src/components/LoginOptions.vue:885
|
2852 |
+
__( 'Placeholder for Password field', 'coming-soon' ),
|
2853 |
+
|
2854 |
+
// Reference: src/components/LoginOptions.vue:887
|
2855 |
+
// Reference: src/components/ProductMetaOptions.vue:342
|
2856 |
+
__( 'Link Color', 'coming-soon' ),
|
2857 |
+
|
2858 |
+
// Reference: src/components/LoginOptions.vue:888
|
2859 |
+
__( 'Link Hover Color', 'coming-soon' ),
|
2860 |
+
|
2861 |
+
// Reference: src/components/LoginOptions.vue:889
|
2862 |
+
__( 'Label Text Color', 'coming-soon' ),
|
2863 |
+
|
2864 |
+
// Reference: src/components/LoginOptions.vue:890
|
2865 |
+
// Reference: src/components/OptinFormOptions.vue:880
|
2866 |
+
// Reference: src/components/WCCartOptions.vue:516
|
2867 |
+
// Reference: src/components/WCCheckoutOptions.vue:784
|
2868 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1097
|
2869 |
+
// Reference: src/views/GlobalCSS.vue:1965
|
2870 |
+
__( 'Field Text Color', 'coming-soon' ),
|
2871 |
+
|
2872 |
+
// Reference: src/components/LoginOptions.vue:891
|
2873 |
+
// Reference: src/components/OptinFormOptions.vue:879
|
2874 |
+
// Reference: src/components/WCCartOptions.vue:515
|
2875 |
+
// Reference: src/components/WCCheckoutOptions.vue:783
|
2876 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1096
|
2877 |
+
// Reference: src/views/GlobalCSS.vue:1966
|
2878 |
+
__( 'Field Background Color', 'coming-soon' ),
|
2879 |
+
|
2880 |
+
// Reference: src/components/LoginOptions.vue:892
|
2881 |
+
// Reference: src/components/OptinFormOptions.vue:881
|
2882 |
+
// Reference: src/components/WCCartOptions.vue:517
|
2883 |
+
// Reference: src/components/WCCheckoutOptions.vue:785
|
2884 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1098
|
2885 |
+
// Reference: src/views/GlobalCSS.vue:1967
|
2886 |
+
__( 'Field Border Color', 'coming-soon' ),
|
2887 |
+
|
2888 |
+
// Reference: src/components/LoginOptions.vue:894
|
2889 |
+
__( 'Button Background Color', 'coming-soon' ),
|
2890 |
+
|
2891 |
+
// Reference: src/components/LoginOptions.vue:895
|
2892 |
+
__( 'Field Size', 'coming-soon' ),
|
2893 |
+
|
2894 |
+
// Reference: src/components/LoginOptions.vue:896
|
2895 |
+
// Reference: src/components/WCCartOptions.vue:521
|
2896 |
+
// Reference: src/components/WCCheckoutOptions.vue:789
|
2897 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1102
|
2898 |
+
__( 'Row Spacing', 'coming-soon' ),
|
2899 |
+
|
2900 |
+
// Reference: src/components/LoginOptions.vue:897
|
2901 |
+
__( 'Label Spacing', 'coming-soon' ),
|
2902 |
+
|
2903 |
+
// Reference: src/components/LoginOptions.vue:898
|
2904 |
+
// Reference: src/components/WCCartOptions.vue:518
|
2905 |
+
// Reference: src/components/WCCheckoutOptions.vue:786
|
2906 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1099
|
2907 |
+
// Reference: src/views/GlobalCSS.vue:1972
|
2908 |
+
__( 'Field Border Width', 'coming-soon' ),
|
2909 |
+
|
2910 |
+
// Reference: src/components/LoginOptions.vue:899
|
2911 |
+
__( 'Field Border Radius', 'coming-soon' ),
|
2912 |
+
|
2913 |
+
// Reference: src/components/LoginOptions.vue:900
|
2914 |
+
// Reference: src/components/ProductRelatedOptions.vue:623
|
2915 |
+
// Reference: src/components/UpsellsOptions.vue:623
|
2916 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1161
|
2917 |
+
__( 'Button Size', 'coming-soon' ),
|
2918 |
+
|
2919 |
+
// Reference: src/components/LoginOptions.vue:902
|
2920 |
+
// Reference: src/components/OptinFormOptions.vue:846
|
2921 |
+
__( 'Success Action', 'coming-soon' ),
|
2922 |
+
|
2923 |
+
// Reference: src/components/LoginOptions.vue:903
|
2924 |
+
__( 'Additional Options', 'coming-soon' ),
|
2925 |
+
|
2926 |
+
// Reference: src/components/LoginOptions.vue:906
|
2927 |
+
__( 'Remember User Label', 'coming-soon' ),
|
2928 |
+
|
2929 |
+
// Reference: src/components/LoginOptions.vue:907
|
2930 |
+
__( 'Lost Password Link Text', 'coming-soon' ),
|
2931 |
+
|
2932 |
+
// Reference: src/components/LoginOptions.vue:908
|
2933 |
+
// Reference: src/views/GlobalCSS.vue:1935
|
2934 |
+
// Reference: src/views/SetupDesign-Lite.vue:755
|
2935 |
+
__( 'Colors', 'coming-soon' ),
|
2936 |
+
|
2937 |
+
// Reference: src/components/LoginOptions.vue:909
|
2938 |
+
// Reference: src/components/WCCartOptions.vue:520
|
2939 |
+
// Reference: src/components/WCCheckoutOptions.vue:788
|
2940 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1101
|
2941 |
+
__( 'Label Font', 'coming-soon' ),
|
2942 |
+
|
2943 |
+
// Reference: src/components/LoginOptions.vue:910
|
2944 |
+
__( 'Label Font Weight', 'coming-soon' ),
|
2945 |
+
|
2946 |
+
// Reference: src/components/LoginOptions.vue:911
|
2947 |
+
__( 'Field Font', 'coming-soon' ),
|
2948 |
+
|
2949 |
+
// Reference: src/components/LoginOptions.vue:912
|
2950 |
+
__( 'Field Font Weight', 'coming-soon' ),
|
2951 |
+
|
2952 |
+
// Reference: src/components/LoginOptions.vue:913
|
2953 |
+
// Reference: src/views/GlobalCSS.vue:1986
|
2954 |
+
__( 'Button Font', 'coming-soon' ),
|
2955 |
+
|
2956 |
+
// Reference: src/components/LoginOptions.vue:914
|
2957 |
+
__( 'Button Font Weight', 'coming-soon' ),
|
2958 |
+
|
2959 |
+
// Reference: src/components/LoginOptions.vue:915
|
2960 |
+
__( 'Logged In Text', 'coming-soon' ),
|
2961 |
+
|
2962 |
+
// Reference: src/components/LoginOptions.vue:916
|
2963 |
+
__( 'This text displays in place of a form if the user is already logged in. {user} will be replaced by the user\'s display name.', 'coming-soon' ),
|
2964 |
+
|
2965 |
+
// Reference: src/components/LoginOptions.vue:917
|
2966 |
+
__( '(e.g. \'Remember Me\')', 'coming-soon' ),
|
2967 |
+
|
2968 |
+
// Reference: src/components/LoginOptions.vue:918
|
2969 |
+
__( '(e.g. \'Lost your password?\')', 'coming-soon' ),
|
2970 |
+
|
2971 |
+
// Reference: src/components/LoginOptions.vue:919
|
2972 |
+
__( 'Button Border Radius', 'coming-soon' ),
|
2973 |
+
|
2974 |
+
// Reference: src/components/LoginOptions.vue:920
|
2975 |
+
__( 'Field Width', 'coming-soon' ),
|
2976 |
+
|
2977 |
+
// Reference: src/components/LoginOptions.vue:926
|
2978 |
+
__( 'Label Text Size', 'coming-soon' ),
|
2979 |
+
|
2980 |
+
// Reference: src/components/LoginOptions.vue:928
|
2981 |
+
// Reference: src/components/OptinFormOptions.vue:882
|
2982 |
+
// Reference: src/components/WCCartOptions.vue:504
|
2983 |
+
// Reference: src/components/WCCheckoutOptions.vue:772
|
2984 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1085
|
2985 |
+
__( 'Light Input Field', 'coming-soon' ),
|
2986 |
+
|
2987 |
+
// Reference: src/components/LoginOptions.vue:929
|
2988 |
+
// Reference: src/components/OptinFormOptions.vue:883
|
2989 |
+
// Reference: src/components/WCCartOptions.vue:505
|
2990 |
+
// Reference: src/components/WCCheckoutOptions.vue:773
|
2991 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1086
|
2992 |
+
__( 'No Border Input Field', 'coming-soon' ),
|
2993 |
+
|
2994 |
+
// Reference: src/components/LoginOptions.vue:930
|
2995 |
+
// Reference: src/components/OptinFormOptions.vue:884
|
2996 |
+
// Reference: src/components/WCCartOptions.vue:506
|
2997 |
+
// Reference: src/components/WCCheckoutOptions.vue:774
|
2998 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1087
|
2999 |
+
__( 'Wide Border Input Field', 'coming-soon' ),
|
3000 |
+
|
3001 |
+
// Reference: src/components/LoginOptions.vue:931
|
3002 |
+
// Reference: src/components/OptinFormOptions.vue:885
|
3003 |
+
// Reference: src/components/WCCartOptions.vue:507
|
3004 |
+
// Reference: src/components/WCCheckoutOptions.vue:775
|
3005 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1088
|
3006 |
+
__( 'Inner Shadow Input Field', 'coming-soon' ),
|
3007 |
+
|
3008 |
+
// Reference: src/components/LoginOptions.vue:932
|
3009 |
+
// Reference: src/components/OptinFormOptions.vue:886
|
3010 |
+
// Reference: src/components/WCCartOptions.vue:508
|
3011 |
+
// Reference: src/components/WCCheckoutOptions.vue:776
|
3012 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1089
|
3013 |
+
__( 'Grey Input Field', 'coming-soon' ),
|
3014 |
+
|
3015 |
+
// Reference: src/components/LoginOptions.vue:933
|
3016 |
+
// Reference: src/components/OptinFormOptions.vue:887
|
3017 |
+
// Reference: src/components/WCCartOptions.vue:509
|
3018 |
+
// Reference: src/components/WCCheckoutOptions.vue:777
|
3019 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1090
|
3020 |
+
__( 'Dark Input Field', 'coming-soon' ),
|
3021 |
+
|
3022 |
+
// Reference: src/components/LoginOptions.vue:934
|
3023 |
+
// Reference: src/components/OptinFormOptions.vue:888
|
3024 |
+
// Reference: src/components/WCCartOptions.vue:510
|
3025 |
+
// Reference: src/components/WCCheckoutOptions.vue:778
|
3026 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1091
|
3027 |
+
__( 'Bottom Border Field', 'coming-soon' ),
|
3028 |
+
|
3029 |
+
// Reference: src/components/LoginOptions.vue:935
|
3030 |
+
// Reference: src/components/OptinFormOptions.vue:889
|
3031 |
+
// Reference: src/components/WCCartOptions.vue:511
|
3032 |
+
// Reference: src/components/WCCheckoutOptions.vue:779
|
3033 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1092
|
3034 |
+
__( 'Transparent Input Field', 'coming-soon' ),
|
3035 |
+
|
3036 |
+
// Reference: src/components/MarginControl.vue:332
|
3037 |
+
__( 'Margin', 'coming-soon' ),
|
3038 |
+
|
3039 |
+
// Reference: src/components/MenuCartOptions.vue:184
|
3040 |
+
__( 'Hide on Empty', 'coming-soon' ),
|
3041 |
+
|
3042 |
+
// Reference: src/components/MenuCartOptions.vue:186
|
3043 |
+
__( 'Show Subtotal', 'coming-soon' ),
|
3044 |
+
|
3045 |
+
// Reference: src/components/MenuCartOptions.vue:188
|
3046 |
+
__( 'Badge Color', 'coming-soon' ),
|
3047 |
+
|
3048 |
+
// Reference: src/components/MenuCartOptions.vue:189
|
3049 |
+
__( 'Badge Text Color', 'coming-soon' ),
|
3050 |
+
|
3051 |
+
// Reference: src/components/Modal.vue:33
|
3052 |
+
__( 'default header', 'coming-soon' ),
|
3053 |
+
|
3054 |
+
// Reference: src/components/Modal.vue:34
|
3055 |
+
__( 'default body', 'coming-soon' ),
|
3056 |
+
|
3057 |
+
// Reference: src/components/NavOptions.vue:580
|
3058 |
+
__( 'URL Link', 'coming-soon' ),
|
3059 |
+
|
3060 |
+
// Reference: src/components/NavOptions.vue:583
|
3061 |
+
__( 'Mobile Menu', 'coming-soon' ),
|
3062 |
+
|
3063 |
+
// Reference: src/components/NavOptions.vue:584
|
3064 |
+
__( 'On', 'coming-soon' ),
|
3065 |
+
|
3066 |
+
// Reference: src/components/NavOptions.vue:585
|
3067 |
+
__( 'Off', 'coming-soon' ),
|
3068 |
+
|
3069 |
+
// Reference: src/components/NavOptions.vue:586
|
3070 |
+
__( 'Hover Color', 'coming-soon' ),
|
3071 |
+
|
3072 |
+
// Reference: src/components/NavOptions.vue:588
|
3073 |
+
__( 'Menu Type', 'coming-soon' ),
|
3074 |
+
|
3075 |
+
// Reference: src/components/NavOptions.vue:590
|
3076 |
+
__( 'WordPress Menu', 'coming-soon' ),
|
3077 |
+
|
3078 |
+
// Reference: src/components/NavOptions.vue:591
|
3079 |
+
__( 'Sub Menu Background Color', 'coming-soon' ),
|
3080 |
+
|
3081 |
+
// Reference: src/components/NavOptions.vue:592
|
3082 |
+
__( 'Sub Menu Border Radius', 'coming-soon' ),
|
3083 |
+
|
3084 |
+
// Reference: src/components/NavOptions.vue:593
|
3085 |
+
__( 'Sub Menu Line Height', 'coming-soon' ),
|
3086 |
+
|
3087 |
+
// Reference: src/components/NavOptions.vue:594
|
3088 |
+
__( 'Sub Menu Border Width', 'coming-soon' ),
|
3089 |
+
|
3090 |
+
// Reference: src/components/NavOptions.vue:595
|
3091 |
+
__( 'Sub Menu Border Color', 'coming-soon' ),
|
3092 |
+
|
3093 |
+
// Reference: src/components/NavOptions.vue:596
|
3094 |
+
__( 'Sub Menu Text Color', 'coming-soon' ),
|
3095 |
+
|
3096 |
+
// Reference: src/components/NavOptions.vue:597
|
3097 |
+
__( 'Sub Menu Hover Color', 'coming-soon' ),
|
3098 |
+
|
3099 |
+
// Reference: src/components/NavOptions.vue:598
|
3100 |
+
__( 'Sub Menu', 'coming-soon' ),
|
3101 |
+
|
3102 |
+
// Reference: src/components/NavOptions.vue:607
|
3103 |
+
__( 'Menus', 'coming-soon' ),
|
3104 |
+
|
3105 |
+
// Reference: src/components/NavOptions.vue:608
|
3106 |
+
// Reference: src/components/PostauthorboxOptions.vue:359
|
3107 |
+
__( 'Go to the', 'coming-soon' ),
|
3108 |
+
|
3109 |
+
// Reference: src/components/NavOptions.vue:609
|
3110 |
+
__( 'Menus Screen', 'coming-soon' ),
|
3111 |
+
|
3112 |
+
// Reference: src/components/NavOptions.vue:610
|
3113 |
+
__( 'to manage your menus', 'coming-soon' ),
|
3114 |
+
|
3115 |
+
// Reference: src/components/NavOptions.vue:611
|
3116 |
+
__( 'There are no menus in your site.', 'coming-soon' ),
|
3117 |
+
|
3118 |
+
// Reference: src/components/OptinFormOptions.vue:845
|
3119 |
+
__( 'Submit Button', 'coming-soon' ),
|
3120 |
+
|
3121 |
+
// Reference: src/components/OptinFormOptions.vue:850
|
3122 |
+
// Reference: src/components/SocialSharingOptions.vue:393
|
3123 |
+
// Reference: src/components/StarRatingOptions.vue:301
|
3124 |
+
// Reference: src/views/GlobalCSS.vue:1962
|
3125 |
+
__( 'Label', 'coming-soon' ),
|
3126 |
+
|
3127 |
+
// Reference: src/components/OptinFormOptions.vue:852
|
3128 |
+
__( 'Required', 'coming-soon' ),
|
3129 |
+
|
3130 |
+
// Reference: src/components/OptinFormOptions.vue:861
|
3131 |
+
__( 'Input Sizes', 'coming-soon' ),
|
3132 |
+
|
3133 |
+
// Reference: src/components/OptinFormOptions.vue:862
|
3134 |
+
__( 'Action To Take', 'coming-soon' ),
|
3135 |
+
|
3136 |
+
// Reference: src/components/OptinFormOptions.vue:868
|
3137 |
+
// Reference: src/components/TypographyControl.vue:277
|
3138 |
+
// Reference: src/components/WCCartOptions.vue:538
|
3139 |
+
// Reference: src/components/WCCheckoutOptions.vue:806
|
3140 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1119
|
3141 |
+
__( 'Font Family', 'coming-soon' ),
|
3142 |
+
|
3143 |
+
// Reference: src/components/OptinFormOptions.vue:870
|
3144 |
+
__( 'Remove Inline Padding', 'coming-soon' ),
|
3145 |
+
|
3146 |
+
// Reference: src/components/OptinFormOptions.vue:890
|
3147 |
+
__( 'Button text', 'coming-soon' ),
|
3148 |
+
|
3149 |
+
// Reference: src/components/PostauthorboxOptions.vue:337
|
3150 |
+
__( 'Profile Picture', 'coming-soon' ),
|
3151 |
+
|
3152 |
+
// Reference: src/components/PostauthorboxOptions.vue:338
|
3153 |
+
__( 'Display Name', 'coming-soon' ),
|
3154 |
+
|
3155 |
+
// Reference: src/components/PostauthorboxOptions.vue:339
|
3156 |
+
__( 'Biography', 'coming-soon' ),
|
3157 |
+
|
3158 |
+
// Reference: src/components/PostauthorboxOptions.vue:347
|
3159 |
+
// Reference: src/components/PostsOptions.vue:1497
|
3160 |
+
__( 'div', 'coming-soon' ),
|
3161 |
+
|
3162 |
+
// Reference: src/components/PostauthorboxOptions.vue:349
|
3163 |
+
// Reference: src/components/PostsOptions.vue:1499
|
3164 |
+
__( 'p', 'coming-soon' ),
|
3165 |
+
|
3166 |
+
// Reference: src/components/PostauthorboxOptions.vue:352
|
3167 |
+
__( 'Website', 'coming-soon' ),
|
3168 |
+
|
3169 |
+
// Reference: src/components/PostauthorboxOptions.vue:353
|
3170 |
+
__( 'Archive Posts', 'coming-soon' ),
|
3171 |
+
|
3172 |
+
// Reference: src/components/PostauthorboxOptions.vue:355
|
3173 |
+
// Reference: src/components/TestimonialOptions.vue:541
|
3174 |
+
__( 'Name Color', 'coming-soon' ),
|
3175 |
+
|
3176 |
+
// Reference: src/components/PostauthorboxOptions.vue:356
|
3177 |
+
__( 'Biography Color', 'coming-soon' ),
|
3178 |
+
|
3179 |
+
// Reference: src/components/PostauthorboxOptions.vue:360
|
3180 |
+
__( 'Profile Screen', 'coming-soon' ),
|
3181 |
+
|
3182 |
+
// Reference: src/components/PostauthorboxOptions.vue:361
|
3183 |
+
__( 'to manage your profile.', 'coming-soon' ),
|
3184 |
+
|
3185 |
+
// Reference: src/components/PostcommentsOptions.vue:201
|
3186 |
+
__( 'Content Policy', 'coming-soon' ),
|
3187 |
+
|
3188 |
+
// Reference: src/components/PostinfoOptions.vue:571
|
3189 |
+
__( 'Author', 'coming-soon' ),
|
3190 |
+
|
3191 |
+
// Reference: src/components/PostinfoOptions.vue:574
|
3192 |
+
__( 'Comments', 'coming-soon' ),
|
3193 |
+
|
3194 |
+
// Reference: src/components/PostinfoOptions.vue:577
|
3195 |
+
__( 'Avatar', 'coming-soon' ),
|
3196 |
+
|
3197 |
+
// Reference: src/components/PostinfoOptions.vue:581
|
3198 |
+
// Reference: src/components/ProductMetaOptions.vue:336
|
3199 |
+
__( 'Layout Settings', 'coming-soon' ),
|
3200 |
+
|
3201 |
+
// Reference: src/components/PostinfoOptions.vue:586
|
3202 |
+
// Reference: src/components/ProductMetaOptions.vue:332
|
3203 |
+
__( 'Add Item', 'coming-soon' ),
|
3204 |
+
|
3205 |
+
// Reference: src/components/PostinfoOptions.vue:587
|
3206 |
+
// Reference: src/components/ProductMetaOptions.vue:333
|
3207 |
+
__( 'Caption', 'coming-soon' ),
|
3208 |
+
|
3209 |
+
// Reference: src/components/PostinfoOptions.vue:588
|
3210 |
+
__( 'Date Format', 'coming-soon' ),
|
3211 |
+
|
3212 |
+
// Reference: src/components/PostinfoOptions.vue:589
|
3213 |
+
__( 'May 14, 2021 (F j, Y)', 'coming-soon' ),
|
3214 |
+
|
3215 |
+
// Reference: src/components/PostinfoOptions.vue:590
|
3216 |
+
__( '2021-05-14 (Y-m-d)', 'coming-soon' ),
|
3217 |
+
|
3218 |
+
// Reference: src/components/PostinfoOptions.vue:591
|
3219 |
+
__( '05/14/2021 (m/d/Y)', 'coming-soon' ),
|
3220 |
+
|
3221 |
+
// Reference: src/components/PostinfoOptions.vue:592
|
3222 |
+
__( '14/05/2021 (d/m/Y)', 'coming-soon' ),
|
3223 |
+
|
3224 |
+
// Reference: src/components/PostinfoOptions.vue:595
|
3225 |
+
__( 'Custom Date Format', 'coming-soon' ),
|
3226 |
+
|
3227 |
+
// Reference: src/components/PostinfoOptions.vue:596
|
3228 |
+
__( 'Use the letters: l D d j S F m M n Y y', 'coming-soon' ),
|
3229 |
+
|
3230 |
+
// Reference: src/components/PostinfoOptions.vue:604
|
3231 |
+
// Reference: src/components/ProductMetaOptions.vue:339
|
3232 |
+
// Reference: src/components/ProductRelatedOptions.vue:618
|
3233 |
+
// Reference: src/components/TypographyControl.vue:282
|
3234 |
+
// Reference: src/components/UpsellsOptions.vue:618
|
3235 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1154
|
3236 |
+
__( 'Alignment', 'coming-soon' ),
|
3237 |
+
|
3238 |
+
// Reference: src/components/PostinfoOptions.vue:609
|
3239 |
+
__( 'Modified Date', 'coming-soon' ),
|
3240 |
+
|
3241 |
+
// Reference: src/components/PostinfoOptions.vue:610
|
3242 |
+
__( 'Modified Time', 'coming-soon' ),
|
3243 |
+
|
3244 |
+
// Reference: src/components/PostinfoOptions.vue:611
|
3245 |
+
__( 'Tags', 'coming-soon' ),
|
3246 |
+
|
3247 |
+
// Reference: src/components/PostinfoOptions.vue:612
|
3248 |
+
__( 'Category', 'coming-soon' ),
|
3249 |
+
|
3250 |
+
// Reference: src/components/PostinfoOptions.vue:613
|
3251 |
+
__( 'Terms', 'coming-soon' ),
|
3252 |
+
|
3253 |
+
// Reference: src/components/PostinfoOptions.vue:614
|
3254 |
+
__( 'Time Format', 'coming-soon' ),
|
3255 |
+
|
3256 |
+
// Reference: src/components/PostinfoOptions.vue:615
|
3257 |
+
__( '9:15 am (g:i a)', 'coming-soon' ),
|
3258 |
+
|
3259 |
+
// Reference: src/components/PostinfoOptions.vue:616
|
3260 |
+
__( '9:15 AM (g:i A)', 'coming-soon' ),
|
3261 |
+
|
3262 |
+
// Reference: src/components/PostinfoOptions.vue:617
|
3263 |
+
__( '09:15 (H:i)', 'coming-soon' ),
|
3264 |
+
|
3265 |
+
// Reference: src/components/PostinfoOptions.vue:618
|
3266 |
+
__( 'Custom Time Format', 'coming-soon' ),
|
3267 |
+
|
3268 |
+
// Reference: src/components/PostinfoOptions.vue:619
|
3269 |
+
__( 'Use the letters: g G H i a A', 'coming-soon' ),
|
3270 |
+
|
3271 |
+
// Reference: src/components/PostinfoOptions.vue:620
|
3272 |
+
__( 'Show Icons', 'coming-soon' ),
|
3273 |
+
|
3274 |
+
// Reference: src/components/PostsOptions.vue:1456
|
3275 |
+
__( 'Posts Query', 'coming-soon' ),
|
3276 |
+
|
3277 |
+
// Reference: src/components/PostsOptions.vue:1457
|
3278 |
+
__( 'Query Type', 'coming-soon' ),
|
3279 |
+
|
3280 |
+
// Reference: src/components/PostsOptions.vue:1460
|
3281 |
+
__( 'Manual', 'coming-soon' ),
|
3282 |
+
|
3283 |
+
// Reference: src/components/PostsOptions.vue:1461
|
3284 |
+
__( 'Query By Post Type', 'coming-soon' ),
|
3285 |
+
|
3286 |
+
// Reference: src/components/PostsOptions.vue:1462
|
3287 |
+
__( 'Include Selected Post Type(s)', 'coming-soon' ),
|
3288 |
+
|
3289 |
+
// Reference: src/components/PostsOptions.vue:1463
|
3290 |
+
__( '- Select Post Type(s) -', 'coming-soon' ),
|
3291 |
+
|
3292 |
+
// Reference: src/components/PostsOptions.vue:1464
|
3293 |
+
__( 'Query By Category', 'coming-soon' ),
|
3294 |
+
|
3295 |
+
// Reference: src/components/PostsOptions.vue:1465
|
3296 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1215
|
3297 |
+
__( 'Include Selected Categories', 'coming-soon' ),
|
3298 |
+
|
3299 |
+
// Reference: src/components/PostsOptions.vue:1466
|
3300 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1200
|
3301 |
+
__( '- Select Categories -', 'coming-soon' ),
|
3302 |
+
|
3303 |
+
// Reference: src/components/PostsOptions.vue:1467
|
3304 |
+
__( 'Query By Tag(s)', 'coming-soon' ),
|
3305 |
+
|
3306 |
+
// Reference: src/components/PostsOptions.vue:1468
|
3307 |
+
__( 'Include Selected Tag(s)', 'coming-soon' ),
|
3308 |
+
|
3309 |
+
// Reference: src/components/PostsOptions.vue:1469
|
3310 |
+
__( '- Select Tag(s) -', 'coming-soon' ),
|
3311 |
+
|
3312 |
+
// Reference: src/components/PostsOptions.vue:1470
|
3313 |
+
__( 'Query By Author(s)', 'coming-soon' ),
|
3314 |
+
|
3315 |
+
// Reference: src/components/PostsOptions.vue:1471
|
3316 |
+
__( 'Include Selected Author(s)', 'coming-soon' ),
|
3317 |
+
|
3318 |
+
// Reference: src/components/PostsOptions.vue:1472
|
3319 |
+
__( '- Select Author(s) -', 'coming-soon' ),
|
3320 |
+
|
3321 |
+
// Reference: src/components/PostsOptions.vue:1473
|
3322 |
+
// Reference: src/components/ProductRelatedOptions.vue:614
|
3323 |
+
// Reference: src/components/UpsellsOptions.vue:614
|
3324 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1142
|
3325 |
+
__( 'Order By', 'coming-soon' ),
|
3326 |
+
|
3327 |
+
// Reference: src/components/PostsOptions.vue:1474
|
3328 |
+
// Reference: src/components/ProductRelatedOptions.vue:651
|
3329 |
+
// Reference: src/components/UpsellsOptions.vue:651
|
3330 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1189
|
3331 |
+
__( '- Select Options -', 'coming-soon' ),
|
3332 |
+
|
3333 |
+
// Reference: src/components/PostsOptions.vue:1476
|
3334 |
+
__( 'Date Last Modified', 'coming-soon' ),
|
3335 |
+
|
3336 |
+
// Reference: src/components/PostsOptions.vue:1477
|
3337 |
+
// Reference: src/components/ProductRelatedOptions.vue:658
|
3338 |
+
// Reference: src/components/TestimonialOptions.vue:548
|
3339 |
+
// Reference: src/components/UpsellsOptions.vue:658
|
3340 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1196
|
3341 |
+
__( 'Title', 'coming-soon' ),
|
3342 |
+
|
3343 |
+
// Reference: src/components/PostsOptions.vue:1478
|
3344 |
+
__( 'Comment Count', 'coming-soon' ),
|
3345 |
+
|
3346 |
+
// Reference: src/components/PostsOptions.vue:1479
|
3347 |
+
// Reference: src/components/ProductRelatedOptions.vue:654
|
3348 |
+
// Reference: src/components/UpsellsOptions.vue:654
|
3349 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1192
|
3350 |
+
__( 'Menu Order', 'coming-soon' ),
|
3351 |
+
|
3352 |
+
// Reference: src/components/PostsOptions.vue:1480
|
3353 |
+
// Reference: src/components/ProductRelatedOptions.vue:615
|
3354 |
+
// Reference: src/components/UpsellsOptions.vue:615
|
3355 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1143
|
3356 |
+
__( 'Order', 'coming-soon' ),
|
3357 |
+
|
3358 |
+
// Reference: src/components/PostsOptions.vue:1481
|
3359 |
+
// Reference: src/components/ProductRelatedOptions.vue:616
|
3360 |
+
// Reference: src/components/UpsellsOptions.vue:616
|
3361 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1151
|
3362 |
+
__( 'ASC', 'coming-soon' ),
|
3363 |
+
|
3364 |
+
// Reference: src/components/PostsOptions.vue:1482
|
3365 |
+
// Reference: src/components/ProductRelatedOptions.vue:617
|
3366 |
+
// Reference: src/components/UpsellsOptions.vue:617
|
3367 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1152
|
3368 |
+
__( 'DESC', 'coming-soon' ),
|
3369 |
+
|
3370 |
+
// Reference: src/components/PostsOptions.vue:1483
|
3371 |
+
__( 'Query Params', 'coming-soon' ),
|
3372 |
+
|
3373 |
+
// Reference: src/components/PostsOptions.vue:1485
|
3374 |
+
// Reference: src/components/ProductRelatedOptions.vue:613
|
3375 |
+
// Reference: src/components/UpsellsOptions.vue:613
|
3376 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1126
|
3377 |
+
__( 'Columns', 'coming-soon' ),
|
3378 |
+
|
3379 |
+
// Reference: src/components/PostsOptions.vue:1486
|
3380 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1128
|
3381 |
+
__( 'Pagination', 'coming-soon' ),
|
3382 |
+
|
3383 |
+
// Reference: src/components/PostsOptions.vue:1487
|
3384 |
+
__( 'Number Per Pages', 'coming-soon' ),
|
3385 |
+
|
3386 |
+
// Reference: src/components/PostsOptions.vue:1488
|
3387 |
+
__( 'Show Feature Image', 'coming-soon' ),
|
3388 |
+
|
3389 |
+
// Reference: src/components/PostsOptions.vue:1489
|
3390 |
+
__( 'Show Title', 'coming-soon' ),
|
3391 |
+
|
3392 |
+
// Reference: src/components/PostsOptions.vue:1490
|
3393 |
+
__( 'Title Tag', 'coming-soon' ),
|
3394 |
+
|
3395 |
+
// Reference: src/components/PostsOptions.vue:1500
|
3396 |
+
__( 'Show Meta', 'coming-soon' ),
|
3397 |
+
|
3398 |
+
// Reference: src/components/PostsOptions.vue:1501
|
3399 |
+
__( 'Show Date Modified', 'coming-soon' ),
|
3400 |
+
|
3401 |
+
// Reference: src/components/PostsOptions.vue:1502
|
3402 |
+
__( 'Show Author', 'coming-soon' ),
|
3403 |
+
|
3404 |
+
// Reference: src/components/PostsOptions.vue:1503
|
3405 |
+
__( 'Show Date', 'coming-soon' ),
|
3406 |
+
|
3407 |
+
// Reference: src/components/PostsOptions.vue:1504
|
3408 |
+
__( 'Show Time', 'coming-soon' ),
|
3409 |
+
|
3410 |
+
// Reference: src/components/PostsOptions.vue:1505
|
3411 |
+
__( 'Show Comment Count', 'coming-soon' ),
|
3412 |
+
|
3413 |
+
// Reference: src/components/PostsOptions.vue:1506
|
3414 |
+
__( 'Separator', 'coming-soon' ),
|
3415 |
+
|
3416 |
+
// Reference: src/components/PostsOptions.vue:1507
|
3417 |
+
__( 'Show Excerpt', 'coming-soon' ),
|
3418 |
+
|
3419 |
+
// Reference: src/components/PostsOptions.vue:1508
|
3420 |
+
__( 'Excerpt Length', 'coming-soon' ),
|
3421 |
+
|
3422 |
+
// Reference: src/components/PostsOptions.vue:1509
|
3423 |
+
__( 'Show Read More', 'coming-soon' ),
|
3424 |
+
|
3425 |
+
// Reference: src/components/PostsOptions.vue:1514
|
3426 |
+
__( 'Title Color', 'coming-soon' ),
|
3427 |
+
|
3428 |
+
// Reference: src/components/PostsOptions.vue:1515
|
3429 |
+
__( 'Meta Text', 'coming-soon' ),
|
3430 |
+
|
3431 |
+
// Reference: src/components/PostsOptions.vue:1516
|
3432 |
+
__( 'Meta Text Color', 'coming-soon' ),
|
3433 |
+
|
3434 |
+
// Reference: src/components/PostsOptions.vue:1517
|
3435 |
+
__( 'Excerpt', 'coming-soon' ),
|
3436 |
+
|
3437 |
+
// Reference: src/components/PostsOptions.vue:1518
|
3438 |
+
__( 'Excerpt Color', 'coming-soon' ),
|
3439 |
+
|
3440 |
+
// Reference: src/components/PostsOptions.vue:1519
|
3441 |
+
__( 'Read More Text', 'coming-soon' ),
|
3442 |
+
|
3443 |
+
// Reference: src/components/PostsOptions.vue:1520
|
3444 |
+
__( 'Read More Text Color', 'coming-soon' ),
|
3445 |
+
|
3446 |
+
// Reference: src/components/PostsOptions.vue:1521
|
3447 |
+
__( 'Pagination Color', 'coming-soon' ),
|
3448 |
+
|
3449 |
+
// Reference: src/components/PostsOptions.vue:1522
|
3450 |
+
__( 'Space Bottom', 'coming-soon' ),
|
3451 |
+
|
3452 |
+
// Reference: src/components/PostsOptions.vue:1543
|
3453 |
+
// Reference: src/components/ProductRelatedOptions.vue:643
|
3454 |
+
// Reference: src/components/UpsellsOptions.vue:643
|
3455 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1181
|
3456 |
+
__( 'Image Border Color', 'coming-soon' ),
|
3457 |
+
|
3458 |
+
// Reference: src/components/PostsOptions.vue:1544
|
3459 |
+
// Reference: src/components/ProductRelatedOptions.vue:644
|
3460 |
+
// Reference: src/components/UpsellsOptions.vue:644
|
3461 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1182
|
3462 |
+
__( 'Image Border Width', 'coming-soon' ),
|
3463 |
+
|
3464 |
+
// Reference: src/components/PostsOptions.vue:1554
|
3465 |
+
__( 'Post Padding', 'coming-soon' ),
|
3466 |
+
|
3467 |
+
// Reference: src/components/PostsOptions.vue:1555
|
3468 |
+
__( 'Image Margin', 'coming-soon' ),
|
3469 |
+
|
3470 |
+
// Reference: src/components/PostsOptions.vue:1556
|
3471 |
+
__( 'Post', 'coming-soon' ),
|
3472 |
+
|
3473 |
+
// Reference: src/components/PostsOptions.vue:1557
|
3474 |
+
__( 'Post Background Color', 'coming-soon' ),
|
3475 |
+
|
3476 |
+
// Reference: src/components/PricingTableOptions.vue:1232
|
3477 |
+
__( 'Features List', 'coming-soon' ),
|
3478 |
+
|
3479 |
+
// Reference: src/components/PricingTableOptions.vue:1234
|
3480 |
+
__( 'Plan Name', 'coming-soon' ),
|
3481 |
+
|
3482 |
+
// Reference: src/components/PricingTableOptions.vue:1236
|
3483 |
+
__( 'Currency Symbol', 'coming-soon' ),
|
3484 |
+
|
3485 |
+
// Reference: src/components/PricingTableOptions.vue:1239
|
3486 |
+
// Reference: src/components/WCCartOptions.vue:499
|
3487 |
+
// Reference: src/components/WCCheckoutOptions.vue:767
|
3488 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1080
|
3489 |
+
// Reference: src/views/GlobalCSS.vue:1960
|
3490 |
+
// Reference: src/views/SetupDesign-Lite.vue:748
|
3491 |
+
__( 'Buttons', 'coming-soon' ),
|
3492 |
+
|
3493 |
+
// Reference: src/components/PricingTableOptions.vue:1240
|
3494 |
+
__( 'Plan Name Typography', 'coming-soon' ),
|
3495 |
+
|
3496 |
+
// Reference: src/components/PricingTableOptions.vue:1241
|
3497 |
+
__( 'Plan Name Color', 'coming-soon' ),
|
3498 |
+
|
3499 |
+
// Reference: src/components/PricingTableOptions.vue:1242
|
3500 |
+
__( 'Top Button Size', 'coming-soon' ),
|
3501 |
+
|
3502 |
+
// Reference: src/components/PricingTableOptions.vue:1243
|
3503 |
+
__( 'Top Button', 'coming-soon' ),
|
3504 |
+
|
3505 |
+
// Reference: src/components/PricingTableOptions.vue:1246
|
3506 |
+
__( 'Bottom Button', 'coming-soon' ),
|
3507 |
+
|
3508 |
+
// Reference: src/components/PricingTableOptions.vue:1247
|
3509 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1156
|
3510 |
+
__( 'Price', 'coming-soon' ),
|
3511 |
+
|
3512 |
+
// Reference: src/components/PricingTableOptions.vue:1248
|
3513 |
+
__( 'Top Size', 'coming-soon' ),
|
3514 |
+
|
3515 |
+
// Reference: src/components/PricingTableOptions.vue:1249
|
3516 |
+
__( 'Top Button Before Text Icon', 'coming-soon' ),
|
3517 |
+
|
3518 |
+
// Reference: src/components/PricingTableOptions.vue:1250
|
3519 |
+
__( 'Top Button After Text Icon', 'coming-soon' ),
|
3520 |
+
|
3521 |
+
// Reference: src/components/PricingTableOptions.vue:1251
|
3522 |
+
__( 'Regular Price Color', 'coming-soon' ),
|
3523 |
+
|
3524 |
+
// Reference: src/components/PricingTableOptions.vue:1255
|
3525 |
+
__( '$ Dollar', 'coming-soon' ),
|
3526 |
+
|
3527 |
+
// Reference: src/components/PricingTableOptions.vue:1256
|
3528 |
+
__( '€ Euro', 'coming-soon' ),
|
3529 |
+
|
3530 |
+
// Reference: src/components/PricingTableOptions.vue:1257
|
3531 |
+
__( '฿ Baht', 'coming-soon' ),
|
3532 |
+
|
3533 |
+
// Reference: src/components/PricingTableOptions.vue:1258
|
3534 |
+
__( '₣ Franc', 'coming-soon' ),
|
3535 |
+
|
3536 |
+
// Reference: src/components/PricingTableOptions.vue:1259
|
3537 |
+
__( 'ƒ Guilder', 'coming-soon' ),
|
3538 |
+
|
3539 |
+
// Reference: src/components/PricingTableOptions.vue:1260
|
3540 |
+
__( 'kr Krona', 'coming-soon' ),
|
3541 |
+
|
3542 |
+
// Reference: src/components/PricingTableOptions.vue:1261
|
3543 |
+
__( '₤ Lira', 'coming-soon' ),
|
3544 |
+
|
3545 |
+
// Reference: src/components/PricingTableOptions.vue:1262
|
3546 |
+
__( '₧ Peseta', 'coming-soon' ),
|
3547 |
+
|
3548 |
+
// Reference: src/components/PricingTableOptions.vue:1263
|
3549 |
+
__( '₱ Peso', 'coming-soon' ),
|
3550 |
+
|
3551 |
+
// Reference: src/components/PricingTableOptions.vue:1264
|
3552 |
+
__( '£ Pound Sterling', 'coming-soon' ),
|
3553 |
+
|
3554 |
+
// Reference: src/components/PricingTableOptions.vue:1265
|
3555 |
+
__( 'R$ Real', 'coming-soon' ),
|
3556 |
+
|
3557 |
+
// Reference: src/components/PricingTableOptions.vue:1266
|
3558 |
+
__( '₽ Ruble', 'coming-soon' ),
|
3559 |
+
|
3560 |
+
// Reference: src/components/PricingTableOptions.vue:1267
|
3561 |
+
__( '₨ Rupee', 'coming-soon' ),
|
3562 |
+
|
3563 |
+
// Reference: src/components/PricingTableOptions.vue:1268
|
3564 |
+
__( '₹ Rupee (Indian)', 'coming-soon' ),
|
3565 |
+
|
3566 |
+
// Reference: src/components/PricingTableOptions.vue:1269
|
3567 |
+
__( '₪ Shekel', 'coming-soon' ),
|
3568 |
+
|
3569 |
+
// Reference: src/components/PricingTableOptions.vue:1270
|
3570 |
+
__( '¥ Yen/Yuan', 'coming-soon' ),
|
3571 |
+
|
3572 |
+
// Reference: src/components/PricingTableOptions.vue:1271
|
3573 |
+
__( '₩ Won', 'coming-soon' ),
|
3574 |
+
|
3575 |
+
// Reference: src/components/PricingTableOptions.vue:1273
|
3576 |
+
__( 'Custom Symbol', 'coming-soon' ),
|
3577 |
+
|
3578 |
+
// Reference: src/components/PricingTableOptions.vue:1274
|
3579 |
+
__( 'Period', 'coming-soon' ),
|
3580 |
+
|
3581 |
+
// Reference: src/components/PricingTableOptions.vue:1275
|
3582 |
+
__( 'Show Regular Price', 'coming-soon' ),
|
3583 |
+
|
3584 |
+
// Reference: src/components/PricingTableOptions.vue:1276
|
3585 |
+
__( 'Regular Price', 'coming-soon' ),
|
3586 |
+
|
3587 |
+
// Reference: src/components/PricingTableOptions.vue:1277
|
3588 |
+
__( 'Regular Price Label', 'coming-soon' ),
|
3589 |
+
|
3590 |
+
// Reference: src/components/PricingTableOptions.vue:1278
|
3591 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1155
|
3592 |
+
__( 'Description', 'coming-soon' ),
|
3593 |
+
|
3594 |
+
// Reference: src/components/PricingTableOptions.vue:1279
|
3595 |
+
__( 'Show Top Button', 'coming-soon' ),
|
3596 |
+
|
3597 |
+
// Reference: src/components/PricingTableOptions.vue:1280
|
3598 |
+
__( 'Top Button Text', 'coming-soon' ),
|
3599 |
+
|
3600 |
+
// Reference: src/components/PricingTableOptions.vue:1281
|
3601 |
+
__( 'Top Button Link', 'coming-soon' ),
|
3602 |
+
|
3603 |
+
// Reference: src/components/PricingTableOptions.vue:1284
|
3604 |
+
__( 'Show Bottom Button', 'coming-soon' ),
|
3605 |
+
|
3606 |
+
// Reference: src/components/PricingTableOptions.vue:1285
|
3607 |
+
__( 'Bottom Button Text', 'coming-soon' ),
|
3608 |
+
|
3609 |
+
// Reference: src/components/PricingTableOptions.vue:1286
|
3610 |
+
__( 'Bottom Button Link', 'coming-soon' ),
|
3611 |
+
|
3612 |
+
// Reference: src/components/PricingTableOptions.vue:1287
|
3613 |
+
__( 'Description Color', 'coming-soon' ),
|
3614 |
+
|
3615 |
+
// Reference: src/components/PricingTableOptions.vue:1289
|
3616 |
+
__( 'Top Button Color', 'coming-soon' ),
|
3617 |
+
|
3618 |
+
// Reference: src/components/PricingTableOptions.vue:1290
|
3619 |
+
__( 'Features List Color', 'coming-soon' ),
|
3620 |
+
|
3621 |
+
// Reference: src/components/PricingTableOptions.vue:1293
|
3622 |
+
__( 'Bottom Button Color', 'coming-soon' ),
|
3623 |
+
|
3624 |
+
// Reference: src/components/PricingTableOptions.vue:1294
|
3625 |
+
__( 'Bottom Button Size', 'coming-soon' ),
|
3626 |
+
|
3627 |
+
// Reference: src/components/PricingTableOptions.vue:1295
|
3628 |
+
__( 'Bottom Button Before Text Icon', 'coming-soon' ),
|
3629 |
+
|
3630 |
+
// Reference: src/components/PricingTableOptions.vue:1299
|
3631 |
+
__( 'Bottom Button After Text Icon', 'coming-soon' ),
|
3632 |
+
|
3633 |
+
// Reference: src/components/PricingTableOptions.vue:1303
|
3634 |
+
// Reference: src/components/ProductRelatedOptions.vue:619
|
3635 |
+
// Reference: src/components/UpsellsOptions.vue:619
|
3636 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1157
|
3637 |
+
__( 'Price Color', 'coming-soon' ),
|
3638 |
+
|
3639 |
+
// Reference: src/components/PricingTableOptions.vue:1304
|
3640 |
+
__( 'Price Superscript', 'coming-soon' ),
|
3641 |
+
|
3642 |
+
// Reference: src/components/PricingTableOptions.vue:1305
|
3643 |
+
__( 'Price Superscript Top', 'coming-soon' ),
|
3644 |
+
|
3645 |
+
// Reference: src/components/PricingTableOptions.vue:1306
|
3646 |
+
__( 'Block', 'coming-soon' ),
|
3647 |
+
|
3648 |
+
// Reference: src/components/ProductDataTabsOptions.vue:329
|
3649 |
+
__( 'Tab', 'coming-soon' ),
|
3650 |
+
|
3651 |
+
// Reference: src/components/ProductDataTabsOptions.vue:331
|
3652 |
+
__( 'Panel', 'coming-soon' ),
|
3653 |
+
|
3654 |
+
// Reference: src/components/ProductDataTabsOptions.vue:332
|
3655 |
+
__( 'Heading', 'coming-soon' ),
|
3656 |
+
|
3657 |
+
// Reference: src/components/ProductDataTabsOptions.vue:333
|
3658 |
+
__( 'Tabs', 'coming-soon' ),
|
3659 |
+
|
3660 |
+
// Reference: src/components/ProductDataTabsOptions.vue:334
|
3661 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:183
|
3662 |
+
__( 'Heading Color', 'coming-soon' ),
|
3663 |
+
|
3664 |
+
// Reference: src/components/ProductDataTabsOptions.vue:338
|
3665 |
+
__( 'Panel Padding', 'coming-soon' ),
|
3666 |
+
|
3667 |
+
// Reference: src/components/ProductMetaOptions.vue:322
|
3668 |
+
__( 'View', 'coming-soon' ),
|
3669 |
+
|
3670 |
+
// Reference: src/components/ProductMetaOptions.vue:323
|
3671 |
+
__( 'Table', 'coming-soon' ),
|
3672 |
+
|
3673 |
+
// Reference: src/components/ProductMetaOptions.vue:324
|
3674 |
+
// Reference: src/components/ProductPriceOptions.vue:184
|
3675 |
+
// Reference: src/components/SocialProfilesOptions.vue:687
|
3676 |
+
__( 'Stacked', 'coming-soon' ),
|
3677 |
+
|
3678 |
+
// Reference: src/components/ProductMetaOptions.vue:325
|
3679 |
+
__( 'Inline', 'coming-soon' ),
|
3680 |
+
|
3681 |
+
// Reference: src/components/ProductPriceOptions.vue:183
|
3682 |
+
__( 'Sale Price', 'coming-soon' ),
|
3683 |
+
|
3684 |
+
// Reference: src/components/ProductRelatedOptions.vue:622
|
3685 |
+
// Reference: src/components/UpsellsOptions.vue:622
|
3686 |
+
// Reference: src/components/WCCartOptions.vue:523
|
3687 |
+
// Reference: src/components/WCCheckoutOptions.vue:791
|
3688 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1160
|
3689 |
+
// Reference: src/views/GlobalCSS.vue:1984
|
3690 |
+
__( 'Button Color', 'coming-soon' ),
|
3691 |
+
|
3692 |
+
// Reference: src/components/ProductRelatedOptions.vue:650
|
3693 |
+
// Reference: src/components/UpsellsOptions.vue:650
|
3694 |
+
__( 'Posts Per Page', 'coming-soon' ),
|
3695 |
+
|
3696 |
+
// Reference: src/components/ProductRelatedOptions.vue:653
|
3697 |
+
// Reference: src/components/UpsellsOptions.vue:653
|
3698 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1191
|
3699 |
+
__( 'ID', 'coming-soon' ),
|
3700 |
+
|
3701 |
+
// Reference: src/components/ProductRelatedOptions.vue:655
|
3702 |
+
// Reference: src/components/UpsellsOptions.vue:655
|
3703 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1193
|
3704 |
+
__( 'Popularity', 'coming-soon' ),
|
3705 |
+
|
3706 |
+
// Reference: src/components/ProductRelatedOptions.vue:656
|
3707 |
+
// Reference: src/components/UpsellsOptions.vue:656
|
3708 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1194
|
3709 |
+
__( 'Random', 'coming-soon' ),
|
3710 |
+
|
3711 |
+
// Reference: src/components/ProductRelatedOptions.vue:657
|
3712 |
+
// Reference: src/components/StarRatingOptions.vue:300
|
3713 |
+
// Reference: src/components/UpsellsOptions.vue:657
|
3714 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1195
|
3715 |
+
__( 'Rating', 'coming-soon' ),
|
3716 |
+
|
3717 |
+
// Reference: src/components/ProductRelatedOptions.vue:659
|
3718 |
+
// Reference: src/components/UpsellsOptions.vue:659
|
3719 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1229
|
3720 |
+
__( 'Sale Badge Color', 'coming-soon' ),
|
3721 |
+
|
3722 |
+
// Reference: src/components/ProgressBarOptions.vue:322
|
3723 |
+
__( 'Progress Bar', 'coming-soon' ),
|
3724 |
+
|
3725 |
+
// Reference: src/components/ProgressBarOptions.vue:323
|
3726 |
+
__( 'Bar Text', 'coming-soon' ),
|
3727 |
+
|
3728 |
+
// Reference: src/components/ProgressBarOptions.vue:324
|
3729 |
+
__( 'Percent', 'coming-soon' ),
|
3730 |
+
|
3731 |
+
// Reference: src/components/ProgressBarOptions.vue:326
|
3732 |
+
__( 'My Text', 'coming-soon' ),
|
3733 |
+
|
3734 |
+
// Reference: src/components/Row.vue:1056
|
3735 |
+
// Reference: src/components/Section.vue:668
|
3736 |
+
// Reference: src/views/BuilderView.vue:1053
|
3737 |
+
__( 'Drag a new block here', 'coming-soon' ),
|
3738 |
+
|
3739 |
+
// Reference: src/components/Row.vue:1057
|
3740 |
+
// Reference: src/components/Section.vue:672
|
3741 |
+
// Reference: src/views/BuilderView.vue:1054
|
3742 |
+
// Reference: src/views/Layoutnav.vue:774
|
3743 |
+
__( 'Choose your layout:', 'coming-soon' ),
|
3744 |
+
|
3745 |
+
// Reference: src/components/Row.vue:1058
|
3746 |
+
__( 'Enter a new block template name:', 'coming-soon' ),
|
3747 |
+
|
3748 |
+
// Reference: src/components/Row.vue:1060
|
3749 |
+
// Reference: src/components/Section.vue:671
|
3750 |
+
// Reference: src/views/Layoutnav.vue:773
|
3751 |
+
// Reference: src/views/Setup.vue:1026
|
3752 |
+
__( 'Save Template', 'coming-soon' ),
|
3753 |
+
|
3754 |
+
// Reference: src/components/RowOptions.vue:666
|
3755 |
+
__( 'Column Gutter', 'coming-soon' ),
|
3756 |
+
|
3757 |
+
// Reference: src/components/RowOptions.vue:696
|
3758 |
+
__( 'Row Width', 'coming-soon' ),
|
3759 |
+
|
3760 |
+
// Reference: src/components/RowOptions.vue:697
|
3761 |
+
// Reference: src/components/SectionOptions.vue:367
|
3762 |
+
__( 'Full Screen', 'coming-soon' ),
|
3763 |
+
|
3764 |
+
// Reference: src/components/RowOptions.vue:698
|
3765 |
+
// Reference: src/components/SectionOptions.vue:368
|
3766 |
+
__( 'Fixed Width', 'coming-soon' ),
|
3767 |
+
|
3768 |
+
// Reference: src/components/RowOptions.vue:699
|
3769 |
+
// Reference: src/components/SectionOptions.vue:369
|
3770 |
+
__( 'Content Width', 'coming-soon' ),
|
3771 |
+
|
3772 |
+
// Reference: src/components/Section.vue:669
|
3773 |
+
// Reference: src/views/Layoutnav.vue:771
|
3774 |
+
__( 'Enter a new section template name:', 'coming-soon' ),
|
3775 |
+
|
3776 |
+
// Reference: src/components/SectionOptions.vue:366
|
3777 |
+
__( 'Section Width', 'coming-soon' ),
|
3778 |
+
|
3779 |
+
// Reference: src/components/SettingsLiteCTA.vue:166
|
3780 |
+
__( 'Powerful Page Editor', 'coming-soon' ),
|
3781 |
+
|
3782 |
+
// Reference: src/components/SettingsLiteCTA.vue:168
|
3783 |
+
__( 'Email Marketing Integrations', 'coming-soon' ),
|
3784 |
+
|
3785 |
+
// Reference: src/components/SettingsLiteCTA.vue:173
|
3786 |
+
__( 'Access Controls', 'coming-soon' ),
|
3787 |
+
|
3788 |
+
// Reference: src/components/SettingsLiteCTA.vue:179
|
3789 |
+
__( 'Subscriber Management', 'coming-soon' ),
|
3790 |
+
|
3791 |
+
// Reference: src/components/ShadowControl.vue:141
|
3792 |
+
__( 'Blur', 'coming-soon' ),
|
3793 |
+
|
3794 |
+
// Reference: src/components/ShadowControl.vue:142
|
3795 |
+
__( 'Spread', 'coming-soon' ),
|
3796 |
+
|
3797 |
+
// Reference: src/components/ShadowControl.vue:144
|
3798 |
+
__( 'Outline', 'coming-soon' ),
|
3799 |
+
|
3800 |
+
// Reference: src/components/ShadowControl.vue:145
|
3801 |
+
__( 'Inset', 'coming-soon' ),
|
3802 |
+
|
3803 |
+
// Reference: src/components/ShapeDividerControl.vue:351
|
3804 |
+
__( 'Mountains', 'coming-soon' ),
|
3805 |
+
|
3806 |
+
// Reference: src/components/ShapeDividerControl.vue:352
|
3807 |
+
__( 'Drops', 'coming-soon' ),
|
3808 |
+
|
3809 |
+
// Reference: src/components/ShapeDividerControl.vue:353
|
3810 |
+
__( 'Clouds', 'coming-soon' ),
|
3811 |
+
|
3812 |
+
// Reference: src/components/ShapeDividerControl.vue:354
|
3813 |
+
__( 'Zigzag', 'coming-soon' ),
|
3814 |
+
|
3815 |
+
// Reference: src/components/ShapeDividerControl.vue:355
|
3816 |
+
__( 'Pyramids', 'coming-soon' ),
|
3817 |
+
|
3818 |
+
// Reference: src/components/ShapeDividerControl.vue:356
|
3819 |
+
__( 'Triangle', 'coming-soon' ),
|
3820 |
+
|
3821 |
+
// Reference: src/components/ShapeDividerControl.vue:357
|
3822 |
+
__( 'Triangle Asymmetrical', 'coming-soon' ),
|
3823 |
+
|
3824 |
+
// Reference: src/components/ShapeDividerControl.vue:358
|
3825 |
+
__( 'Tilt', 'coming-soon' ),
|
3826 |
+
|
3827 |
+
// Reference: src/components/ShapeDividerControl.vue:359
|
3828 |
+
__( 'Tilt Opacity', 'coming-soon' ),
|
3829 |
+
|
3830 |
+
// Reference: src/components/ShapeDividerControl.vue:360
|
3831 |
+
__( 'Fan Opacity', 'coming-soon' ),
|
3832 |
+
|
3833 |
+
// Reference: src/components/ShapeDividerControl.vue:361
|
3834 |
+
__( 'Curve', 'coming-soon' ),
|
3835 |
+
|
3836 |
+
// Reference: src/components/ShapeDividerControl.vue:362
|
3837 |
+
__( 'Curve Asymmetrical', 'coming-soon' ),
|
3838 |
+
|
3839 |
+
// Reference: src/components/ShapeDividerControl.vue:363
|
3840 |
+
__( 'Waves', 'coming-soon' ),
|
3841 |
+
|
3842 |
+
// Reference: src/components/ShapeDividerControl.vue:364
|
3843 |
+
__( 'Waves Brush', 'coming-soon' ),
|
3844 |
+
|
3845 |
+
// Reference: src/components/ShapeDividerControl.vue:365
|
3846 |
+
__( 'Waves Pattern', 'coming-soon' ),
|
3847 |
+
|
3848 |
+
// Reference: src/components/ShapeDividerControl.vue:366
|
3849 |
+
__( 'Arrow', 'coming-soon' ),
|
3850 |
+
|
3851 |
+
// Reference: src/components/ShapeDividerControl.vue:367
|
3852 |
+
__( 'Split', 'coming-soon' ),
|
3853 |
+
|
3854 |
+
// Reference: src/components/ShapeDividerControl.vue:368
|
3855 |
+
__( 'Book', 'coming-soon' ),
|
3856 |
+
|
3857 |
+
// Reference: src/components/ShapeDividerControl.vue:372
|
3858 |
+
__( 'Flip', 'coming-soon' ),
|
3859 |
+
|
3860 |
+
// Reference: src/components/ShapeDividerControl.vue:373
|
3861 |
+
__( 'Invert', 'coming-soon' ),
|
3862 |
+
|
3863 |
+
// Reference: src/components/ShapeDividerControl.vue:374
|
3864 |
+
__( 'Bring to Front', 'coming-soon' ),
|
3865 |
+
|
3866 |
+
// Reference: src/components/ShortcodeOptions.vue:140
|
3867 |
+
__( 'Shortcode', 'coming-soon' ),
|
3868 |
+
|
3869 |
+
// Reference: src/components/ShortcodeOptions.vue:144
|
3870 |
+
__( 'Show Shortcode Preview', 'coming-soon' ),
|
3871 |
+
|
3872 |
+
// Reference: src/components/SocialProfilesOptions.vue:671
|
3873 |
+
// Reference: src/components/SocialSharingOptions.vue:388
|
3874 |
+
__( 'Select a Type', 'coming-soon' ),
|
3875 |
+
|
3876 |
+
// Reference: src/components/SocialProfilesOptions.vue:672
|
3877 |
+
// Reference: src/components/SocialSharingOptions.vue:389
|
3878 |
+
__( 'Facebook', 'coming-soon' ),
|
3879 |
+
|
3880 |
+
// Reference: src/components/SocialProfilesOptions.vue:673
|
3881 |
+
// Reference: src/components/SocialSharingOptions.vue:390
|
3882 |
+
__( 'Twitter', 'coming-soon' ),
|
3883 |
+
|
3884 |
+
// Reference: src/components/SocialProfilesOptions.vue:674
|
3885 |
+
// Reference: src/components/SocialSharingOptions.vue:391
|
3886 |
+
__( 'LinkedIn', 'coming-soon' ),
|
3887 |
+
|
3888 |
+
// Reference: src/components/SocialProfilesOptions.vue:675
|
3889 |
+
// Reference: src/components/SocialSharingOptions.vue:392
|
3890 |
+
__( 'Pinterest', 'coming-soon' ),
|
3891 |
+
|
3892 |
+
// Reference: src/components/SocialProfilesOptions.vue:676
|
3893 |
+
// Reference: src/components/VideoOptions.vue:234
|
3894 |
+
__( 'YouTube', 'coming-soon' ),
|
3895 |
+
|
3896 |
+
// Reference: src/components/SocialProfilesOptions.vue:677
|
3897 |
+
__( 'Instagram', 'coming-soon' ),
|
3898 |
+
|
3899 |
+
// Reference: src/components/SocialProfilesOptions.vue:678
|
3900 |
+
__( 'Snapchat', 'coming-soon' ),
|
3901 |
+
|
3902 |
+
// Reference: src/components/SocialProfilesOptions.vue:679
|
3903 |
+
__( 'WordPress', 'coming-soon' ),
|
3904 |
+
|
3905 |
+
// Reference: src/components/SocialProfilesOptions.vue:680
|
3906 |
+
__( 'Github', 'coming-soon' ),
|
3907 |
+
|
3908 |
+
// Reference: src/components/SocialProfilesOptions.vue:681
|
3909 |
+
__( 'SoundCloud', 'coming-soon' ),
|
3910 |
+
|
3911 |
+
// Reference: src/components/SocialProfilesOptions.vue:682
|
3912 |
+
__( 'RSS', 'coming-soon' ),
|
3913 |
+
|
3914 |
+
// Reference: src/components/SocialProfilesOptions.vue:684
|
3915 |
+
__( 'URL (Include https:// for web links)', 'coming-soon' ),
|
3916 |
+
|
3917 |
+
// Reference: src/components/SocialProfilesOptions.vue:694
|
3918 |
+
__( 'Icon Padding', 'coming-soon' ),
|
3919 |
+
|
3920 |
+
// Reference: src/components/SocialProfilesOptions.vue:703
|
3921 |
+
__( 'Phone', 'coming-soon' ),
|
3922 |
+
|
3923 |
+
// Reference: src/components/SocialProfilesOptions.vue:705
|
3924 |
+
__( 'Discord', 'coming-soon' ),
|
3925 |
+
|
3926 |
+
// Reference: src/components/SocialProfilesOptions.vue:706
|
3927 |
+
__( 'Telegram', 'coming-soon' ),
|
3928 |
+
|
3929 |
+
// Reference: src/components/SocialProfilesOptions.vue:707
|
3930 |
+
__( 'Facebook Messenger', 'coming-soon' ),
|
3931 |
+
|
3932 |
+
// Reference: src/components/SocialProfilesOptions.vue:708
|
3933 |
+
__( 'Slack', 'coming-soon' ),
|
3934 |
+
|
3935 |
+
// Reference: src/components/SocialProfilesOptions.vue:709
|
3936 |
+
__( 'Vimeo', 'coming-soon' ),
|
3937 |
+
|
3938 |
+
// Reference: src/components/SocialProfilesOptions.vue:710
|
3939 |
+
__( 'Weibo', 'coming-soon' ),
|
3940 |
+
|
3941 |
+
// Reference: src/components/SocialProfilesOptions.vue:711
|
3942 |
+
__( 'Whatsapp', 'coming-soon' ),
|
3943 |
+
|
3944 |
+
// Reference: src/components/SocialProfilesOptions.vue:712
|
3945 |
+
__( 'TikTok', 'coming-soon' ),
|
3946 |
+
|
3947 |
+
// Reference: src/components/SocialSharingOptions.vue:385
|
3948 |
+
__( 'Social Sharing', 'coming-soon' ),
|
3949 |
+
|
3950 |
+
// Reference: src/components/SocialSharingOptions.vue:386
|
3951 |
+
__( 'Add New Share', 'coming-soon' ),
|
3952 |
+
|
3953 |
+
// Reference: src/components/SocialSharingOptions.vue:394
|
3954 |
+
__( 'Tweet Text', 'coming-soon' ),
|
3955 |
+
|
3956 |
+
// Reference: src/components/SpacerOptions.vue:67
|
3957 |
+
__( 'Spacer', 'coming-soon' ),
|
3958 |
+
|
3959 |
+
// Reference: src/components/StarRatingOptions.vue:297
|
3960 |
+
__( 'Star Rating', 'coming-soon' ),
|
3961 |
+
|
3962 |
+
// Reference: src/components/StarRatingOptions.vue:299
|
3963 |
+
__( 'Scale', 'coming-soon' ),
|
3964 |
+
|
3965 |
+
// Reference: src/components/StarRatingOptions.vue:304
|
3966 |
+
__( 'Star Color', 'coming-soon' ),
|
3967 |
+
|
3968 |
+
// Reference: src/components/StarRatingOptions.vue:306
|
3969 |
+
__( 'Empty Star Color', 'coming-soon' ),
|
3970 |
+
|
3971 |
+
// Reference: src/components/TemplatetagOptions.vue:120
|
3972 |
+
__( 'Templatetag', 'coming-soon' ),
|
3973 |
+
|
3974 |
+
// Reference: src/components/TemplatetagOptions.vue:124
|
3975 |
+
__( 'Show Templatetag Preview', 'coming-soon' ),
|
3976 |
+
|
3977 |
+
// Reference: src/components/TemplatetagOptions.vue:125
|
3978 |
+
__( 'Select Type', 'coming-soon' ),
|
3979 |
+
|
3980 |
+
// Reference: src/components/TestimonialOptions.vue:546
|
3981 |
+
__( 'Add Testimonial', 'coming-soon' ),
|
3982 |
+
|
3983 |
+
// Reference: src/components/TestimonialOptions.vue:549
|
3984 |
+
__( 'Navigation Color Mode', 'coming-soon' ),
|
3985 |
+
|
3986 |
+
// Reference: src/components/TestimonialOptions.vue:550
|
3987 |
+
__( 'Dark', 'coming-soon' ),
|
3988 |
+
|
3989 |
+
// Reference: src/components/TestimonialOptions.vue:551
|
3990 |
+
__( 'Light', 'coming-soon' ),
|
3991 |
+
|
3992 |
+
// Reference: src/components/TestimonialOptions.vue:554
|
3993 |
+
__( 'AutoPlay', 'coming-soon' ),
|
3994 |
+
|
3995 |
+
// Reference: src/components/TestimonialOptions.vue:555
|
3996 |
+
__( 'Pause On Hover', 'coming-soon' ),
|
3997 |
+
|
3998 |
+
// Reference: src/components/TestimonialOptions.vue:556
|
3999 |
+
__( 'Autoplay Speed', 'coming-soon' ),
|
4000 |
+
|
4001 |
+
// Reference: src/components/TestimonialOptions.vue:557
|
4002 |
+
__( 'seconds', 'coming-soon' ),
|
4003 |
+
|
4004 |
+
// Reference: src/components/TestimonialOptions.vue:558
|
4005 |
+
__( 'Enable Comment Bubble', 'coming-soon' ),
|
4006 |
+
|
4007 |
+
// Reference: src/components/TestimonialOptions.vue:559
|
4008 |
+
__( 'Bubble Color', 'coming-soon' ),
|
4009 |
+
|
4010 |
+
// Reference: src/components/TextOptions.vue:393
|
4011 |
+
__( 'Visual Editor', 'coming-soon' ),
|
4012 |
+
|
4013 |
+
// Reference: src/components/TextOptions.vue:394
|
4014 |
+
__( 'Edit HTML', 'coming-soon' ),
|
4015 |
+
|
4016 |
+
// Reference: src/components/TypographyControl.vue:274
|
4017 |
+
__( 'Typography', 'coming-soon' ),
|
4018 |
+
|
4019 |
+
// Reference: src/components/TypographyControl.vue:279
|
4020 |
+
__( 'Line Height', 'coming-soon' ),
|
4021 |
+
|
4022 |
+
// Reference: src/components/TypographyControl.vue:280
|
4023 |
+
__( 'Letter Spacing', 'coming-soon' ),
|
4024 |
+
|
4025 |
+
// Reference: src/components/TypographyControl.vue:283
|
4026 |
+
__( 'Letter Case', 'coming-soon' ),
|
4027 |
+
|
4028 |
+
// Reference: src/components/VideoOptions.vue:231
|
4029 |
+
__( 'Video', 'coming-soon' ),
|
4030 |
+
|
4031 |
+
// Reference: src/components/VideoOptions.vue:236
|
4032 |
+
// Reference: src/views/GlobalCSS.vue:1899
|
4033 |
+
// Reference: src/views/SetupDesign-Lite.vue:736
|
4034 |
+
__( 'YouTube URL', 'coming-soon' ),
|
4035 |
+
|
4036 |
+
// Reference: src/components/VideoOptions.vue:237
|
4037 |
+
__( 'Custom Video Code', 'coming-soon' ),
|
4038 |
+
|
4039 |
+
// Reference: src/components/WCAddToCartOptions.vue:731
|
4040 |
+
__( 'Product ID', 'coming-soon' ),
|
4041 |
+
|
4042 |
+
// Reference: src/components/WCAddToCartOptions.vue:732
|
4043 |
+
__( 'Direct To Checkout', 'coming-soon' ),
|
4044 |
+
|
4045 |
+
// Reference: src/components/WCCartOptions.vue:497
|
4046 |
+
// Reference: src/components/WCCheckoutOptions.vue:765
|
4047 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1078
|
4048 |
+
// Reference: src/views/GlobalCSS.vue:1912
|
4049 |
+
// Reference: src/views/SetupDesign-Lite.vue:746
|
4050 |
+
__( 'Headers', 'coming-soon' ),
|
4051 |
+
|
4052 |
+
// Reference: src/components/WCCartOptions.vue:500
|
4053 |
+
// Reference: src/components/WCCheckoutOptions.vue:768
|
4054 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1081
|
4055 |
+
__( 'Alerts', 'coming-soon' ),
|
4056 |
+
|
4057 |
+
// Reference: src/components/WCCartOptions.vue:501
|
4058 |
+
// Reference: src/components/WCCheckoutOptions.vue:769
|
4059 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1082
|
4060 |
+
__( 'Cart', 'coming-soon' ),
|
4061 |
+
|
4062 |
+
// Reference: src/components/WCCartOptions.vue:502
|
4063 |
+
// Reference: src/components/WCCheckoutOptions.vue:770
|
4064 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1083
|
4065 |
+
__( 'Payment Section', 'coming-soon' ),
|
4066 |
+
|
4067 |
+
// Reference: src/components/WCCartOptions.vue:512
|
4068 |
+
// Reference: src/components/WCCheckoutOptions.vue:780
|
4069 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1093
|
4070 |
+
__( 'One Column', 'coming-soon' ),
|
4071 |
+
|
4072 |
+
// Reference: src/components/WCCartOptions.vue:513
|
4073 |
+
// Reference: src/components/WCCheckoutOptions.vue:781
|
4074 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1094
|
4075 |
+
__( 'Two Column', 'coming-soon' ),
|
4076 |
+
|
4077 |
+
// Reference: src/components/WCCartOptions.vue:530
|
4078 |
+
// Reference: src/components/WCCheckoutOptions.vue:798
|
4079 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1111
|
4080 |
+
__( 'Info Highlight Color', 'coming-soon' ),
|
4081 |
+
|
4082 |
+
// Reference: src/components/WCCartOptions.vue:531
|
4083 |
+
// Reference: src/components/WCCheckoutOptions.vue:799
|
4084 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1112
|
4085 |
+
__( 'Error Highlight Color', 'coming-soon' ),
|
4086 |
+
|
4087 |
+
// Reference: src/components/WCCartOptions.vue:532
|
4088 |
+
// Reference: src/components/WCCheckoutOptions.vue:800
|
4089 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1113
|
4090 |
+
__( 'Success Highlight Color', 'coming-soon' ),
|
4091 |
+
|
4092 |
+
// Reference: src/components/WCCartOptions.vue:533
|
4093 |
+
// Reference: src/components/WCCheckoutOptions.vue:801
|
4094 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1114
|
4095 |
+
__( 'Cart Border Color', 'coming-soon' ),
|
4096 |
+
|
4097 |
+
// Reference: src/components/WCCartOptions.vue:534
|
4098 |
+
// Reference: src/components/WCCheckoutOptions.vue:802
|
4099 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1115
|
4100 |
+
__( 'Cart Border Width', 'coming-soon' ),
|
4101 |
+
|
4102 |
+
// Reference: src/components/WCCartOptions.vue:539
|
4103 |
+
// Reference: src/components/WCCheckoutOptions.vue:807
|
4104 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1120
|
4105 |
+
__( 'Header Background Color', 'coming-soon' ),
|
4106 |
+
|
4107 |
+
// Reference: src/components/WCCartOptions.vue:540
|
4108 |
+
// Reference: src/components/WCCheckoutOptions.vue:808
|
4109 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1121
|
4110 |
+
__( 'Header Font Family', 'coming-soon' ),
|
4111 |
+
|
4112 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1124
|
4113 |
+
__( 'Query', 'coming-soon' ),
|
4114 |
+
|
4115 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1127
|
4116 |
+
__( 'All Products', 'coming-soon' ),
|
4117 |
+
|
4118 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1132
|
4119 |
+
__( 'Featured Products', 'coming-soon' ),
|
4120 |
+
|
4121 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1133
|
4122 |
+
__( 'Sale Products', 'coming-soon' ),
|
4123 |
+
|
4124 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1134
|
4125 |
+
__( 'Best Selling Products', 'coming-soon' ),
|
4126 |
+
|
4127 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1135
|
4128 |
+
__( 'Recent Products', 'coming-soon' ),
|
4129 |
+
|
4130 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1136
|
4131 |
+
__( 'Top Rated Products', 'coming-soon' ),
|
4132 |
+
|
4133 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1137
|
4134 |
+
__( 'Include', 'coming-soon' ),
|
4135 |
+
|
4136 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1138
|
4137 |
+
__( 'Exclude', 'coming-soon' ),
|
4138 |
+
|
4139 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1139
|
4140 |
+
__( 'Include By', 'coming-soon' ),
|
4141 |
+
|
4142 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1140
|
4143 |
+
__( 'Exclude By', 'coming-soon' ),
|
4144 |
+
|
4145 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1141
|
4146 |
+
__( 'Term', 'coming-soon' ),
|
4147 |
+
|
4148 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1188
|
4149 |
+
__( 'Limit', 'coming-soon' ),
|
4150 |
+
|
4151 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1197
|
4152 |
+
__( 'Select By SKU', 'coming-soon' ),
|
4153 |
+
|
4154 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1198
|
4155 |
+
__( '- Select SKU(s) -', 'coming-soon' ),
|
4156 |
+
|
4157 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1199
|
4158 |
+
__( 'Select By Category', 'coming-soon' ),
|
4159 |
+
|
4160 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1201
|
4161 |
+
__( 'Select By Tags', 'coming-soon' ),
|
4162 |
+
|
4163 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1202
|
4164 |
+
__( '- Select Tags -', 'coming-soon' ),
|
4165 |
+
|
4166 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1203
|
4167 |
+
__( 'Select By Group', 'coming-soon' ),
|
4168 |
+
|
4169 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1204
|
4170 |
+
__( '- Select Group -', 'coming-soon' ),
|
4171 |
+
|
4172 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1205
|
4173 |
+
__( 'On Sale', 'coming-soon' ),
|
4174 |
+
|
4175 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1206
|
4176 |
+
__( 'Best Selling', 'coming-soon' ),
|
4177 |
+
|
4178 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1207
|
4179 |
+
__( 'Top Rated', 'coming-soon' ),
|
4180 |
+
|
4181 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1208
|
4182 |
+
__( 'Query By Attribute', 'coming-soon' ),
|
4183 |
+
|
4184 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1209
|
4185 |
+
__( '- Select Attribute -', 'coming-soon' ),
|
4186 |
+
|
4187 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1210
|
4188 |
+
__( '- Select Attribute Terms -', 'coming-soon' ),
|
4189 |
+
|
4190 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1211
|
4191 |
+
__( 'Include Selected Terms', 'coming-soon' ),
|
4192 |
+
|
4193 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1212
|
4194 |
+
__( 'Exclude Selected Terms', 'coming-soon' ),
|
4195 |
+
|
4196 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1213
|
4197 |
+
__( 'Include Selected Tags', 'coming-soon' ),
|
4198 |
+
|
4199 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1214
|
4200 |
+
__( 'Exclude Selected Tags', 'coming-soon' ),
|
4201 |
+
|
4202 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1216
|
4203 |
+
__( 'Exclude Selected Categories', 'coming-soon' ),
|
4204 |
+
|
4205 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1217
|
4206 |
+
__( 'Select By Visibility', 'coming-soon' ),
|
4207 |
+
|
4208 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1218
|
4209 |
+
__( '- Select Product Visibility -', 'coming-soon' ),
|
4210 |
+
|
4211 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1220
|
4212 |
+
__( 'Catalog', 'coming-soon' ),
|
4213 |
+
|
4214 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1223
|
4215 |
+
__( 'Featured', 'coming-soon' ),
|
4216 |
+
|
4217 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1224
|
4218 |
+
__( 'Custom Query', 'coming-soon' ),
|
4219 |
+
|
4220 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1225
|
4221 |
+
__( 'Select By ID', 'coming-soon' ),
|
4222 |
+
|
4223 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1226
|
4224 |
+
__( '- Select ID(s) -', 'coming-soon' ),
|
4225 |
+
|
4226 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1227
|
4227 |
+
__( 'Show Items Count', 'coming-soon' ),
|
4228 |
+
|
4229 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1228
|
4230 |
+
__( 'Show Order By', 'coming-soon' ),
|
4231 |
+
|
4232 |
+
// Reference: src/components/WCCustomProductsGridOptions.vue:1230
|
4233 |
+
__( 'Archive Products', 'coming-soon' ),
|
4234 |
+
|
4235 |
+
// Reference: src/components/WpWidgetBlock-Lite.vue:52
|
4236 |
+
__( '(Click \'Apply\' on the Widget Settings to see changes)', 'coming-soon' ),
|
4237 |
+
|
4238 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:188
|
4239 |
+
__( 'Widget Settings', 'coming-soon' ),
|
4240 |
+
|
4241 |
+
// Reference: src/components/WpWidgetBlockOptions.vue:190
|
4242 |
+
__( 'Heading Bottom Margin', 'coming-soon' ),
|
4243 |
+
|
4244 |
+
// Reference: src/mixins/helpers.js:1026
|
4245 |
+
__( 'Visit Docs <i class="fas fa-external-link-alt"></i>', 'coming-soon' ),
|
4246 |
+
|
4247 |
+
// Reference: src/mixins/helpers.js:1052
|
4248 |
+
__( ' is a PRO Feature', 'coming-soon' ),
|
4249 |
+
|
4250 |
+
// Reference: src/mixins/helpers.js:1056
|
4251 |
+
__( ' feature is not available on your plan. Please upgrade to the PRO plan to unlock all these awesome features.', 'coming-soon' ),
|
4252 |
+
|
4253 |
+
// Reference: src/mixins/helpers.js:1070
|
4254 |
+
__( 'UPGRADE TO PRO', 'coming-soon' ),
|
4255 |
+
|
4256 |
+
// Reference: src/mixins/helpers.js:1074
|
4257 |
+
__( '<strong>Bonus:</strong> SeedProd Lite users get a discount off the regular price, automatically applied at checkout.', 'coming-soon' ),
|
4258 |
+
|
4259 |
+
// Reference: src/mixins/helpers.js:1087
|
4260 |
+
__( 'Thanks for your interest in SeedProd Lite!<br>If you have any questions or issues just <a href=\'https://www.seedprod.com/?contact=1\' target=\'_blank\'>let us know</a>.<br><br>After purchasing SeedProd Lite, you\'ll need to download and install the Pro version of the plugin, and then remove the free plugin. <br><br>(Don\'t worry, all your settings will be preserved.)', 'coming-soon' ),
|
4261 |
+
|
4262 |
+
// Reference: src/mixins/helpers.js:1103
|
4263 |
+
__( 'Upgrade to PRO', 'coming-soon' ),
|
4264 |
+
|
4265 |
+
// Reference: src/mixins/helpers.js:1104
|
4266 |
+
__( 'Increase traffic, engagement, and get more email subscribers. Click below to learn more about all our awesome features.', 'coming-soon' ),
|
4267 |
+
|
4268 |
+
// Reference: src/mixins/helpers.js:1110
|
4269 |
+
__( 'Upgrade to Unlock ', 'coming-soon' ),
|
4270 |
+
|
4271 |
+
// Reference: src/mixins/helpers.js:1112
|
4272 |
+
__( 'We\'re sorry, the ', 'coming-soon' ),
|
4273 |
+
|
4274 |
+
// Reference: src/mixins/helpers.js:1114
|
4275 |
+
__( ' feature is not available on your plan. Please upgrade your plan to unlock this feature and more!', 'coming-soon' ),
|
4276 |
+
|
4277 |
+
// Reference: src/mixins/helpers.js:1130
|
4278 |
+
__( 'Upgrade with just a click of a button!', 'coming-soon' ),
|
4279 |
+
|
4280 |
+
// Reference: src/mixins/helpers.js:895
|
4281 |
+
// Reference: src/views/SectionTemplateOptions-Lite.vue:475
|
4282 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1397
|
4283 |
+
__( 'Are you sure you want to delete?', 'coming-soon' ),
|
4284 |
+
|
4285 |
+
// Reference: src/mixins/helpers.js:904
|
4286 |
+
// Reference: src/views/SectionTemplateOptions-Lite.vue:484
|
4287 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1406
|
4288 |
+
__( 'Yes, delete it!', 'coming-soon' ),
|
4289 |
+
|
4290 |
+
// Reference: src/views/GlobalCSS.vue:1893
|
4291 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1171
|
4292 |
+
// Reference: src/views/SetupDesign-Lite.vue:730
|
4293 |
+
__( 'Editing:', 'coming-soon' ),
|
4294 |
+
|
4295 |
+
// Reference: src/views/GlobalCSS.vue:1894
|
4296 |
+
__( 'Global CSS Settings', 'coming-soon' ),
|
4297 |
+
|
4298 |
+
// Reference: src/views/GlobalCSS.vue:1895
|
4299 |
+
// Reference: src/views/SetupDesign-Lite.vue:732
|
4300 |
+
__( 'Header Font', 'coming-soon' ),
|
4301 |
+
|
4302 |
+
// Reference: src/views/GlobalCSS.vue:1896
|
4303 |
+
// Reference: src/views/SetupDesign-Lite.vue:733
|
4304 |
+
__( 'Body Text Font', 'coming-soon' ),
|
4305 |
+
|
4306 |
+
// Reference: src/views/GlobalCSS.vue:1898
|
4307 |
+
__( 'Use Video Background', 'coming-soon' ),
|
4308 |
+
|
4309 |
+
// Reference: src/views/GlobalCSS.vue:1900
|
4310 |
+
// Reference: src/views/SetupDesign-Lite.vue:737
|
4311 |
+
__( 'The video background will not be displayed on mobile devices or in the editor preview.', 'coming-soon' ),
|
4312 |
+
|
4313 |
+
// Reference: src/views/GlobalCSS.vue:1904
|
4314 |
+
// Reference: src/views/SetupDesign-Lite.vue:738
|
4315 |
+
__( 'Play on auto-loop', 'coming-soon' ),
|
4316 |
+
|
4317 |
+
// Reference: src/views/GlobalCSS.vue:1905
|
4318 |
+
// Reference: src/views/SetupDesign-Lite.vue:739
|
4319 |
+
__( 'Enter your custom css below', 'coming-soon' ),
|
4320 |
+
|
4321 |
+
// Reference: src/views/GlobalCSS.vue:1906
|
4322 |
+
// Reference: src/views/SetupDesign-Lite.vue:740
|
4323 |
+
__( 'Edit Custom CSS', 'coming-soon' ),
|
4324 |
+
|
4325 |
+
// Reference: src/views/GlobalCSS.vue:1909
|
4326 |
+
// Reference: src/views/SetupDesign-Lite.vue:743
|
4327 |
+
__( 'Font Themes Library', 'coming-soon' ),
|
4328 |
+
|
4329 |
+
// Reference: src/views/GlobalCSS.vue:1910
|
4330 |
+
// Reference: src/views/SetupDesign-Lite.vue:744
|
4331 |
+
__( 'Search colors...', 'coming-soon' ),
|
4332 |
+
|
4333 |
+
// Reference: src/views/GlobalCSS.vue:1911
|
4334 |
+
// Reference: src/views/SetupDesign-Lite.vue:745
|
4335 |
+
__( 'Search fonts...', 'coming-soon' ),
|
4336 |
+
|
4337 |
+
// Reference: src/views/GlobalCSS.vue:1915
|
4338 |
+
// Reference: src/views/SetupDesign-Lite.vue:749
|
4339 |
+
__( 'Links', 'coming-soon' ),
|
4340 |
+
|
4341 |
+
// Reference: src/views/GlobalCSS.vue:1917
|
4342 |
+
// Reference: src/views/SetupDesign-Lite.vue:751
|
4343 |
+
__( 'Font Themes', 'coming-soon' ),
|
4344 |
+
|
4345 |
+
// Reference: src/views/GlobalCSS.vue:1918
|
4346 |
+
// Reference: src/views/SetupDesign-Lite.vue:752
|
4347 |
+
__( 'Color Palettes', 'coming-soon' ),
|
4348 |
+
|
4349 |
+
// Reference: src/views/GlobalCSS.vue:1920
|
4350 |
+
// Reference: src/views/SetupDesign-Lite.vue:754
|
4351 |
+
__( 'Fonts', 'coming-soon' ),
|
4352 |
+
|
4353 |
+
// Reference: src/views/GlobalCSS.vue:1923
|
4354 |
+
// Reference: src/views/SetupDesign-Lite.vue:757
|
4355 |
+
__( 'Custom CSS', 'coming-soon' ),
|
4356 |
+
|
4357 |
+
// Reference: src/views/GlobalCSS.vue:1924
|
4358 |
+
// Reference: src/views/SetupDesign-Lite.vue:758
|
4359 |
+
__( 'All Palettes', 'coming-soon' ),
|
4360 |
+
|
4361 |
+
// Reference: src/views/GlobalCSS.vue:1925
|
4362 |
+
// Reference: src/views/SetupDesign-Lite.vue:759
|
4363 |
+
__( 'All Themes', 'coming-soon' ),
|
4364 |
+
|
4365 |
+
// Reference: src/views/GlobalCSS.vue:1926
|
4366 |
+
// Reference: src/views/SetupDesign-Lite.vue:760
|
4367 |
+
__( 'Serif', 'coming-soon' ),
|
4368 |
+
|
4369 |
+
// Reference: src/views/GlobalCSS.vue:1927
|
4370 |
+
// Reference: src/views/SetupDesign-Lite.vue:761
|
4371 |
+
__( 'Sans Serif', 'coming-soon' ),
|
4372 |
+
|
4373 |
+
// Reference: src/views/GlobalCSS.vue:1928
|
4374 |
+
// Reference: src/views/SetupDesign-Lite.vue:762
|
4375 |
+
__( 'Background Slideshow', 'coming-soon' ),
|
4376 |
+
|
4377 |
+
// Reference: src/views/GlobalCSS.vue:1929
|
4378 |
+
// Reference: src/views/SetupDesign-Lite.vue:763
|
4379 |
+
__( 'Slideshow Images', 'coming-soon' ),
|
4380 |
+
|
4381 |
+
// Reference: src/views/GlobalCSS.vue:1930
|
4382 |
+
// Reference: src/views/SetupDesign-Lite.vue:764
|
4383 |
+
__( 'Add New Slide', 'coming-soon' ),
|
4384 |
+
|
4385 |
+
// Reference: src/views/GlobalCSS.vue:1931
|
4386 |
+
// Reference: src/views/SetupDesign-Lite.vue:765
|
4387 |
+
__( 'The background slideshow will not be shown in the editor preview. The slides will only be displayed in the live preview.', 'coming-soon' ),
|
4388 |
+
|
4389 |
+
// Reference: src/views/GlobalCSS.vue:1936
|
4390 |
+
__( 'Add Custom Color', 'coming-soon' ),
|
4391 |
+
|
4392 |
+
// Reference: src/views/GlobalCSS.vue:1937
|
4393 |
+
__( 'Body Text Color', 'coming-soon' ),
|
4394 |
+
|
4395 |
+
// Reference: src/views/GlobalCSS.vue:1938
|
4396 |
+
__( 'Show H1 - H6 Settings', 'coming-soon' ),
|
4397 |
+
|
4398 |
+
// Reference: src/views/GlobalCSS.vue:1940
|
4399 |
+
__( 'H1 ', 'coming-soon' ),
|
4400 |
+
|
4401 |
+
// Reference: src/views/GlobalCSS.vue:1941
|
4402 |
+
__( 'H1 Color', 'coming-soon' ),
|
4403 |
+
|
4404 |
+
// Reference: src/views/GlobalCSS.vue:1942
|
4405 |
+
__( 'H2 ', 'coming-soon' ),
|
4406 |
+
|
4407 |
+
// Reference: src/views/GlobalCSS.vue:1943
|
4408 |
+
__( 'H2 Color', 'coming-soon' ),
|
4409 |
+
|
4410 |
+
// Reference: src/views/GlobalCSS.vue:1944
|
4411 |
+
__( 'H3 ', 'coming-soon' ),
|
4412 |
+
|
4413 |
+
// Reference: src/views/GlobalCSS.vue:1945
|
4414 |
+
__( 'H3 Color', 'coming-soon' ),
|
4415 |
+
|
4416 |
+
// Reference: src/views/GlobalCSS.vue:1946
|
4417 |
+
__( 'H4 ', 'coming-soon' ),
|
4418 |
+
|
4419 |
+
// Reference: src/views/GlobalCSS.vue:1947
|
4420 |
+
__( 'H4 Color', 'coming-soon' ),
|
4421 |
+
|
4422 |
+
// Reference: src/views/GlobalCSS.vue:1948
|
4423 |
+
__( 'H5 ', 'coming-soon' ),
|
4424 |
+
|
4425 |
+
// Reference: src/views/GlobalCSS.vue:1949
|
4426 |
+
__( 'H5 Color', 'coming-soon' ),
|
4427 |
+
|
4428 |
+
// Reference: src/views/GlobalCSS.vue:1950
|
4429 |
+
__( 'H6 ', 'coming-soon' ),
|
4430 |
+
|
4431 |
+
// Reference: src/views/GlobalCSS.vue:1951
|
4432 |
+
__( 'H6 Color', 'coming-soon' ),
|
4433 |
+
|
4434 |
+
// Reference: src/views/GlobalCSS.vue:1952
|
4435 |
+
__( 'Body Text', 'coming-soon' ),
|
4436 |
+
|
4437 |
+
// Reference: src/views/GlobalCSS.vue:1953
|
4438 |
+
__( 'Desktop BG', 'coming-soon' ),
|
4439 |
+
|
4440 |
+
// Reference: src/views/GlobalCSS.vue:1954
|
4441 |
+
__( 'Mobile BG', 'coming-soon' ),
|
4442 |
+
|
4443 |
+
// Reference: src/views/GlobalCSS.vue:1959
|
4444 |
+
__( 'Row Default Max Width', 'coming-soon' ),
|
4445 |
+
|
4446 |
+
// Reference: src/views/GlobalCSS.vue:1961
|
4447 |
+
__( 'Forms', 'coming-soon' ),
|
4448 |
+
|
4449 |
+
// Reference: src/views/GlobalCSS.vue:1964
|
4450 |
+
__( 'Field', 'coming-soon' ),
|
4451 |
+
|
4452 |
+
// Reference: src/views/GlobalCSS.vue:1968
|
4453 |
+
__( 'Field Border Style', 'coming-soon' ),
|
4454 |
+
|
4455 |
+
// Reference: src/views/GlobalCSS.vue:1973
|
4456 |
+
__( 'Field Padding', 'coming-soon' ),
|
4457 |
+
|
4458 |
+
// Reference: src/views/GlobalCSS.vue:1974
|
4459 |
+
__( 'Header Default Bottom Margin', 'coming-soon' ),
|
4460 |
+
|
4461 |
+
// Reference: src/views/GlobalCSS.vue:1978
|
4462 |
+
__( 'Paragraph Default Bottom Margin', 'coming-soon' ),
|
4463 |
+
|
4464 |
+
// Reference: src/views/GlobalCSS.vue:1982
|
4465 |
+
__( 'Label Default Bottom Margin', 'coming-soon' ),
|
4466 |
+
|
4467 |
+
// Reference: src/views/Layoutnav.vue:766
|
4468 |
+
__( 'Expand All', 'coming-soon' ),
|
4469 |
+
|
4470 |
+
// Reference: src/views/Layoutnav.vue:767
|
4471 |
+
__( 'Collapse All', 'coming-soon' ),
|
4472 |
+
|
4473 |
+
// Reference: src/views/Layoutnav.vue:768
|
4474 |
+
__( 'Section', 'coming-soon' ),
|
4475 |
+
|
4476 |
+
// Reference: src/views/Revisions.vue:62
|
4477 |
+
__( 'Loading Revisons', 'coming-soon' ),
|
4478 |
+
|
4479 |
+
// Reference: src/views/Revisions.vue:63
|
4480 |
+
__( 'Click to preview version:', 'coming-soon' ),
|
4481 |
+
|
4482 |
+
// Reference: src/views/Revisions.vue:64
|
4483 |
+
__( 'Current Version', 'coming-soon' ),
|
4484 |
+
|
4485 |
+
// Reference: src/views/Revisions.vue:65
|
4486 |
+
__( 'by', 'coming-soon' ),
|
4487 |
+
|
4488 |
+
// Reference: src/views/Revisions.vue:66
|
4489 |
+
__( 'There are no revisons to show.', 'coming-soon' ),
|
4490 |
+
|
4491 |
+
// Reference: src/views/Revisions.vue:67
|
4492 |
+
__( 'ago', 'coming-soon' ),
|
4493 |
+
|
4494 |
+
// Reference: src/views/SectionTemplateOptions-Lite.vue:432
|
4495 |
+
__( 'Choose This Section', 'coming-soon' ),
|
4496 |
+
|
4497 |
+
// Reference: src/views/SectionTemplateOptions-Lite.vue:535
|
4498 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1455
|
4499 |
+
__( 'Deleted!', 'coming-soon' ),
|
4500 |
+
|
4501 |
+
// Reference: src/views/SectionTemplates-Lite.vue:100
|
4502 |
+
__( 'All Sections', 'coming-soon' ),
|
4503 |
+
|
4504 |
+
// Reference: src/views/SectionTemplates-Lite.vue:101
|
4505 |
+
__( 'Favorites', 'coming-soon' ),
|
4506 |
+
|
4507 |
+
// Reference: src/views/SectionTemplates-Lite.vue:102
|
4508 |
+
__( 'Categories:', 'coming-soon' ),
|
4509 |
+
|
4510 |
+
// Reference: src/views/SectionTemplates-Lite.vue:98
|
4511 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1166
|
4512 |
+
__( 'Blocks', 'coming-soon' ),
|
4513 |
+
|
4514 |
+
// Reference: src/views/SectionTemplates-Lite.vue:99
|
4515 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1167
|
4516 |
+
__( 'Sections', 'coming-soon' ),
|
4517 |
+
|
4518 |
+
// Reference: src/views/SettingsAccess-Lite.vue:320
|
4519 |
+
// Reference: src/views/SetupSettings.vue:248
|
4520 |
+
__( 'Access Control', 'coming-soon' ),
|
4521 |
+
|
4522 |
+
// Reference: src/views/SettingsAccess-Lite.vue:321
|
4523 |
+
__( 'Exclude Default:', 'coming-soon' ),
|
4524 |
+
|
4525 |
+
// Reference: src/views/SettingsAccess-Lite.vue:324
|
4526 |
+
__( 'By default we exclude urls with the terms: login, admin, dashboard and account to prevent lockouts.', 'coming-soon' ),
|
4527 |
+
|
4528 |
+
// Reference: src/views/SettingsAccess-Lite.vue:325
|
4529 |
+
__( 'Bypass Cookie:', 'coming-soon' ),
|
4530 |
+
|
4531 |
+
// Reference: src/views/SettingsAccess-Lite.vue:326
|
4532 |
+
__( 'Use cookies instead of creating a WordPress user for the bypass. Note: this may not work on sites that are cached. Learn More', 'coming-soon' ),
|
4533 |
+
|
4534 |
+
// Reference: src/views/SettingsAccess-Lite.vue:327
|
4535 |
+
__( 'Bypass URL:', 'coming-soon' ),
|
4536 |
+
|
4537 |
+
// Reference: src/views/SettingsAccess-Lite.vue:328
|
4538 |
+
__( 'Bypass URL Expires:', 'coming-soon' ),
|
4539 |
+
|
4540 |
+
// Reference: src/views/SettingsAccess-Lite.vue:329
|
4541 |
+
__( 'Access by IP:', 'coming-soon' ),
|
4542 |
+
|
4543 |
+
// Reference: src/views/SettingsAccess-Lite.vue:330
|
4544 |
+
__( 'Access by Role:', 'coming-soon' ),
|
4545 |
+
|
4546 |
+
// Reference: src/views/SettingsAccess-Lite.vue:331
|
4547 |
+
__( 'By default anyone logged in will see the regular website and not the coming soon page. To override this select Roles that will be given access to see the regular website.', 'coming-soon' ),
|
4548 |
+
|
4549 |
+
// Reference: src/views/SettingsAccess-Lite.vue:332
|
4550 |
+
__( 'Include/Exclude URLs:', 'coming-soon' ),
|
4551 |
+
|
4552 |
+
// Reference: src/views/SettingsAccess-Lite.vue:333
|
4553 |
+
__( 'Show on the Entire Website', 'coming-soon' ),
|
4554 |
+
|
4555 |
+
// Reference: src/views/SettingsAccess-Lite.vue:334
|
4556 |
+
__( 'Show on the Entire Website except for the Blog', 'coming-soon' ),
|
4557 |
+
|
4558 |
+
// Reference: src/views/SettingsAccess-Lite.vue:335
|
4559 |
+
__( 'Show on the Home Page Only', 'coming-soon' ),
|
4560 |
+
|
4561 |
+
// Reference: src/views/SettingsAccess-Lite.vue:336
|
4562 |
+
__( 'Include URLs', 'coming-soon' ),
|
4563 |
+
|
4564 |
+
// Reference: src/views/SettingsAccess-Lite.vue:337
|
4565 |
+
__( 'Exclude URLs', 'coming-soon' ),
|
4566 |
+
|
4567 |
+
// Reference: src/views/SettingsAccess-Lite.vue:338
|
4568 |
+
__( 'By default the Coming Soon/Maintenance page is shown on every page. Use the \'Show on the Home Page Only\' option to only show on the home page. Alternatively Include or Exclude URLs.', 'coming-soon' ),
|
4569 |
+
|
4570 |
+
// Reference: src/views/SettingsAccess-Lite.vue:339
|
4571 |
+
__( 'Enter a phrase above and give your visitors a secret url that will allow them to bypass the Coming Soon page.', 'coming-soon' ),
|
4572 |
+
|
4573 |
+
// Reference: src/views/SettingsAccess-Lite.vue:340
|
4574 |
+
__( 'After the bypass url expires the user will need to revisit the bypass url to regain access.', 'coming-soon' ),
|
4575 |
+
|
4576 |
+
// Reference: src/views/SettingsAccess-Lite.vue:341
|
4577 |
+
__( 'One IP Address per line', 'coming-soon' ),
|
4578 |
+
|
4579 |
+
// Reference: src/views/SettingsAccess-Lite.vue:342
|
4580 |
+
__( 'All visitors from certain IP\'s to bypass the Coming Soon page.', 'coming-soon' ),
|
4581 |
+
|
4582 |
+
// Reference: src/views/SettingsAccess-Lite.vue:343
|
4583 |
+
__( 'Put each IP on it\'s own line. Your current IP is:', 'coming-soon' ),
|
4584 |
+
|
4585 |
+
// Reference: src/views/SettingsAccess-Lite.vue:344
|
4586 |
+
__( 'Add Role', 'coming-soon' ),
|
4587 |
+
|
4588 |
+
// Reference: src/views/SettingsAccess-Lite.vue:345
|
4589 |
+
__( 'Include certain urls to display the Coming Soon or Maintenance Page.', 'coming-soon' ),
|
4590 |
+
|
4591 |
+
// Reference: src/views/SettingsAccess-Lite.vue:346
|
4592 |
+
__( 'One per line. You may also enter a page or post id.', 'coming-soon' ),
|
4593 |
+
|
4594 |
+
// Reference: src/views/SettingsAccess-Lite.vue:347
|
4595 |
+
__( 'Exclude certain urls to display the Coming Soon or Maintenance Page.', 'coming-soon' ),
|
4596 |
+
|
4597 |
+
// Reference: src/views/SettingsAccess-Lite.vue:348
|
4598 |
+
__( 'Example: /about-us/', 'coming-soon' ),
|
4599 |
+
|
4600 |
+
// Reference: src/views/SettingsAnalytics.vue:114
|
4601 |
+
// Reference: src/views/SetupSettings.vue:250
|
4602 |
+
__( 'Analytics', 'coming-soon' ),
|
4603 |
+
|
4604 |
+
// Reference: src/views/SettingsAnalytics.vue:115
|
4605 |
+
__( 'Your Analytics settings are being managed by:', 'coming-soon' ),
|
4606 |
+
|
4607 |
+
// Reference: src/views/SettingsAnalytics.vue:119
|
4608 |
+
__( 'Edit Analytics Settings', 'coming-soon' ),
|
4609 |
+
|
4610 |
+
// Reference: src/views/SettingsAnalytics.vue:120
|
4611 |
+
// Reference: src/views/SettingsSEO.vue:229
|
4612 |
+
__( 'Your SEO settings are being managed by:', 'coming-soon' ),
|
4613 |
+
|
4614 |
+
// Reference: src/views/SettingsAnalytics.vue:124
|
4615 |
+
__( 'Install Google Analytics plugin:', 'coming-soon' ),
|
4616 |
+
|
4617 |
+
// Reference: src/views/SettingsAnalytics.vue:128
|
4618 |
+
__( 'Install MonsterInsights', 'coming-soon' ),
|
4619 |
+
|
4620 |
+
// Reference: src/views/SettingsAnalytics.vue:129
|
4621 |
+
__( 'Activate MonsterInsights', 'coming-soon' ),
|
4622 |
+
|
4623 |
+
// Reference: src/views/SettingsAnalytics.vue:130
|
4624 |
+
__( 'Install Analytics plugin:', 'coming-soon' ),
|
4625 |
+
|
4626 |
+
// Reference: src/views/SettingsDomain.vue:120
|
4627 |
+
// Reference: src/views/SetupSettings.vue:252
|
4628 |
+
__( 'Custom Domain', 'coming-soon' ),
|
4629 |
+
|
4630 |
+
// Reference: src/views/SettingsDomain.vue:121
|
4631 |
+
__( 'Custom Domain:', 'coming-soon' ),
|
4632 |
+
|
4633 |
+
// Reference: src/views/SettingsDomain.vue:122
|
4634 |
+
__( 'OFF', 'coming-soon' ),
|
4635 |
+
|
4636 |
+
// Reference: src/views/SettingsDomain.vue:123
|
4637 |
+
__( 'ON', 'coming-soon' ),
|
4638 |
+
|
4639 |
+
// Reference: src/views/SettingsDomain.vue:124
|
4640 |
+
__( 'Domain Name:', 'coming-soon' ),
|
4641 |
+
|
4642 |
+
// Reference: src/views/SettingsDomain.vue:125
|
4643 |
+
__( 'Please enter your domain.', 'coming-soon' ),
|
4644 |
+
|
4645 |
+
// Reference: src/views/SettingsDomain.vue:126
|
4646 |
+
__( 'Click here to learn more', 'coming-soon' ),
|
4647 |
+
|
4648 |
+
// Reference: src/views/SettingsDomain.vue:127
|
4649 |
+
__( 'how to map your custom domain.', 'coming-soon' ),
|
4650 |
+
|
4651 |
+
// Reference: src/views/SettingsDomain.vue:128
|
4652 |
+
__( 'Force HTTPS', 'coming-soon' ),
|
4653 |
+
|
4654 |
+
// Reference: src/views/SettingsDomain.vue:129
|
4655 |
+
__( 'Only enable this if you have an SSL certificate installed and you wish to redirect users to https://', 'coming-soon' ),
|
4656 |
+
|
4657 |
+
// Reference: src/views/SettingsDomain.vue:130
|
4658 |
+
__( 'Please enter a valid URL that will be pointed to this landing page, such as', 'coming-soon' ),
|
4659 |
+
|
4660 |
+
// Reference: src/views/SettingsDomain.vue:131
|
4661 |
+
__( 'It should look something like, \'mynewdomain.com\' or \'mynewdomain.com/coming-soon\'', 'coming-soon' ),
|
4662 |
+
|
4663 |
+
// Reference: src/views/SettingsDomain.vue:132
|
4664 |
+
__( 'You can leave out the \'http://\'. If you are using \'https://\', turn on Force HTTPS below.', 'coming-soon' ),
|
4665 |
+
|
4666 |
+
// Reference: src/views/SettingsGeneral.vue:218
|
4667 |
+
__( 'Page Title:', 'coming-soon' ),
|
4668 |
+
|
4669 |
+
// Reference: src/views/SettingsGeneral.vue:219
|
4670 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1224
|
4671 |
+
__( 'Page URL:', 'coming-soon' ),
|
4672 |
+
|
4673 |
+
// Reference: src/views/SettingsGeneral.vue:220
|
4674 |
+
__( 'Page Status:', 'coming-soon' ),
|
4675 |
+
|
4676 |
+
// Reference: src/views/SettingsGeneral.vue:221
|
4677 |
+
__( 'Draft', 'coming-soon' ),
|
4678 |
+
|
4679 |
+
// Reference: src/views/SettingsGeneral.vue:222
|
4680 |
+
// Reference: src/views/Setup.vue:1021
|
4681 |
+
__( 'Publish', 'coming-soon' ),
|
4682 |
+
|
4683 |
+
// Reference: src/views/SettingsGeneral.vue:223
|
4684 |
+
__( '"Powered by SeedProd"', 'coming-soon' ),
|
4685 |
+
|
4686 |
+
// Reference: src/views/SettingsGeneral.vue:226
|
4687 |
+
__( 'Choose New Template:', 'coming-soon' ),
|
4688 |
+
|
4689 |
+
// Reference: src/views/SettingsGeneral.vue:227
|
4690 |
+
__( 'Redirect Mode', 'coming-soon' ),
|
4691 |
+
|
4692 |
+
// Reference: src/views/SettingsGeneral.vue:228
|
4693 |
+
__( 'Redirect URL: A temporary redirect (302 status) will be created to the url entered.', 'coming-soon' ),
|
4694 |
+
|
4695 |
+
// Reference: src/views/SettingsGeneral.vue:229
|
4696 |
+
__( 'Enable', 'coming-soon' ),
|
4697 |
+
|
4698 |
+
// Reference: src/views/SettingsGeneral.vue:230
|
4699 |
+
__( 'Redirect URL: A permanent redirect (301 status) will be created to the url entered.', 'coming-soon' ),
|
4700 |
+
|
4701 |
+
// Reference: src/views/SettingsGeneral.vue:232
|
4702 |
+
__( 'SeedProd Link', 'coming-soon' ),
|
4703 |
+
|
4704 |
+
// Reference: src/views/SettingsGeneral.vue:233
|
4705 |
+
__( 'Enter Your Affiliate URL and Make Money with SeedProd', 'coming-soon' ),
|
4706 |
+
|
4707 |
+
// Reference: src/views/SettingsGeneral.vue:234
|
4708 |
+
__( 'Join our affiliate program', 'coming-soon' ),
|
4709 |
+
|
4710 |
+
// Reference: src/views/SettingsGeneral.vue:235
|
4711 |
+
__( 'and get a 20% commission on all sales generated from your powered by link.', 'coming-soon' ),
|
4712 |
+
|
4713 |
+
// Reference: src/views/SettingsGeneral.vue:236
|
4714 |
+
__( 'Isolation Mode', 'coming-soon' ),
|
4715 |
+
|
4716 |
+
// Reference: src/views/SettingsGeneral.vue:237
|
4717 |
+
__( 'Redirect the Default Login Page', 'coming-soon' ),
|
4718 |
+
|
4719 |
+
// Reference: src/views/SettingsGeneral.vue:238
|
4720 |
+
__( 'Facebook App ID:', 'coming-soon' ),
|
4721 |
+
|
4722 |
+
// Reference: src/views/SettingsSEO.vue:228
|
4723 |
+
// Reference: src/views/SetupSettings.vue:249
|
4724 |
+
__( 'SEO', 'coming-soon' ),
|
4725 |
+
|
4726 |
+
// Reference: src/views/SettingsSEO.vue:233
|
4727 |
+
__( 'Yoast SEO', 'coming-soon' ),
|
4728 |
+
|
4729 |
+
// Reference: src/views/SettingsSEO.vue:234
|
4730 |
+
__( 'Edit this page\'s SEO Settings', 'coming-soon' ),
|
4731 |
+
|
4732 |
+
// Reference: src/views/SettingsSEO.vue:239
|
4733 |
+
__( 'Install All In One SEO', 'coming-soon' ),
|
4734 |
+
|
4735 |
+
// Reference: src/views/SettingsSEO.vue:240
|
4736 |
+
__( 'Activate All in One SEO', 'coming-soon' ),
|
4737 |
+
|
4738 |
+
// Reference: src/views/SettingsSEO.vue:241
|
4739 |
+
__( 'Install SEO plugin:', 'coming-soon' ),
|
4740 |
+
|
4741 |
+
// Reference: src/views/SettingsScripts.vue:56
|
4742 |
+
// Reference: src/views/SetupSettings.vue:251
|
4743 |
+
__( 'Scripts', 'coming-soon' ),
|
4744 |
+
|
4745 |
+
// Reference: src/views/SettingsScripts.vue:57
|
4746 |
+
__( 'Header Scripts:', 'coming-soon' ),
|
4747 |
+
|
4748 |
+
// Reference: src/views/SettingsScripts.vue:58
|
4749 |
+
__( 'This code will be rendered before the closing </head> tag.', 'coming-soon' ),
|
4750 |
+
|
4751 |
+
// Reference: src/views/SettingsScripts.vue:62
|
4752 |
+
__( 'Footer Scripts:', 'coming-soon' ),
|
4753 |
+
|
4754 |
+
// Reference: src/views/SettingsScripts.vue:63
|
4755 |
+
__( 'The code will be rendered before the closing </body> tag.', 'coming-soon' ),
|
4756 |
+
|
4757 |
+
// Reference: src/views/SettingsScripts.vue:67
|
4758 |
+
__( 'Body Scripts:', 'coming-soon' ),
|
4759 |
+
|
4760 |
+
// Reference: src/views/SettingsScripts.vue:68
|
4761 |
+
__( 'The code will be rendered after the <body> tag.', 'coming-soon' ),
|
4762 |
+
|
4763 |
+
// Reference: src/views/SettingsScripts.vue:72
|
4764 |
+
__( 'You do not have the proper WordPress permissions to add scripts.', 'coming-soon' ),
|
4765 |
+
|
4766 |
+
// Reference: src/views/Setup.vue:1010
|
4767 |
+
__( 'Design', 'coming-soon' ),
|
4768 |
+
|
4769 |
+
// Reference: src/views/Setup.vue:1011
|
4770 |
+
__( 'Connect', 'coming-soon' ),
|
4771 |
+
|
4772 |
+
// Reference: src/views/Setup.vue:1012
|
4773 |
+
__( 'Page Settings', 'coming-soon' ),
|
4774 |
+
|
4775 |
+
// Reference: src/views/Setup.vue:1013
|
4776 |
+
__( 'You have unsaved changes. Are you sure you want to lose these changes?', 'coming-soon' ),
|
4777 |
+
|
4778 |
+
// Reference: src/views/Setup.vue:1014
|
4779 |
+
__( 'Exit Without Saving', 'coming-soon' ),
|
4780 |
+
|
4781 |
+
// Reference: src/views/Setup.vue:1015
|
4782 |
+
__( 'template has been saved!', 'coming-soon' ),
|
4783 |
+
|
4784 |
+
// Reference: src/views/Setup.vue:1016
|
4785 |
+
__( 'You can find it in your template library when you create a new landing page.', 'coming-soon' ),
|
4786 |
+
|
4787 |
+
// Reference: src/views/Setup.vue:1017
|
4788 |
+
__( 'Enter a new template name:', 'coming-soon' ),
|
4789 |
+
|
4790 |
+
// Reference: src/views/Setup.vue:1019
|
4791 |
+
__( 'Your page has been published!', 'coming-soon' ),
|
4792 |
+
|
4793 |
+
// Reference: src/views/Setup.vue:1022
|
4794 |
+
__( 'Unpublish', 'coming-soon' ),
|
4795 |
+
|
4796 |
+
// Reference: src/views/Setup.vue:1023
|
4797 |
+
__( 'Schedule', 'coming-soon' ),
|
4798 |
+
|
4799 |
+
// Reference: src/views/Setup.vue:1024
|
4800 |
+
__( 'Save as Template', 'coming-soon' ),
|
4801 |
+
|
4802 |
+
// Reference: src/views/Setup.vue:1025
|
4803 |
+
__( 'Return to Page Editor', 'coming-soon' ),
|
4804 |
+
|
4805 |
+
// Reference: src/views/Setup.vue:1027
|
4806 |
+
__( 'See Live Page', 'coming-soon' ),
|
4807 |
+
|
4808 |
+
// Reference: src/views/Setup.vue:1028
|
4809 |
+
__( 'Save and Exit', 'coming-soon' ),
|
4810 |
+
|
4811 |
+
// Reference: src/views/Setup.vue:1029
|
4812 |
+
__( 'Help', 'coming-soon' ),
|
4813 |
+
|
4814 |
+
// Reference: src/views/Setup.vue:1030
|
4815 |
+
__( 'Save', 'coming-soon' ),
|
4816 |
+
|
4817 |
+
// Reference: src/views/Setup.vue:1033
|
4818 |
+
__( 'You are about to leave this page and go to the Global CSS page. Continue?', 'coming-soon' ),
|
4819 |
+
|
4820 |
+
// Reference: src/views/Setup.vue:1034
|
4821 |
+
__( 'This page is not active. Would you like to activate it now?', 'coming-soon' ),
|
4822 |
+
|
4823 |
+
// Reference: src/views/Setup.vue:1035
|
4824 |
+
__( 'Yes, Activate', 'coming-soon' ),
|
4825 |
+
|
4826 |
+
// Reference: src/views/Setup.vue:1036
|
4827 |
+
__( 'No, Close', 'coming-soon' ),
|
4828 |
+
|
4829 |
+
// Reference: src/views/Setup.vue:1037
|
4830 |
+
__( 'Coming Soon Mode is not active. Would you like to activate it now and show this page to visitors?', 'coming-soon' ),
|
4831 |
+
|
4832 |
+
// Reference: src/views/Setup.vue:1038
|
4833 |
+
__( 'Maintenance Mode is not active. Would you like to activate it now and show this page to visitors?', 'coming-soon' ),
|
4834 |
+
|
4835 |
+
// Reference: src/views/Setup.vue:1039
|
4836 |
+
__( 'Note: This page will only be shown to users who are logged out. If you logged out and and do not see the correct page you may need to clear your site cache.', 'coming-soon' ),
|
4837 |
+
|
4838 |
+
// Reference: src/views/Setup.vue:1040
|
4839 |
+
__( 'This page is not published. Would you like to publish it now?', 'coming-soon' ),
|
4840 |
+
|
4841 |
+
// Reference: src/views/Setup.vue:1041
|
4842 |
+
__( 'Yes, Publish', 'coming-soon' ),
|
4843 |
+
|
4844 |
+
// Reference: src/views/Setup.vue:1567
|
4845 |
+
__( 'Something has prevented the page from being saved.', 'coming-soon' ),
|
4846 |
+
|
4847 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1168
|
4848 |
+
__( 'Standard', 'coming-soon' ),
|
4849 |
+
|
4850 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1170
|
4851 |
+
__( 'Saved Blocks', 'coming-soon' ),
|
4852 |
+
|
4853 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1172
|
4854 |
+
__( 'Search blocks...', 'coming-soon' ),
|
4855 |
+
|
4856 |
+
// Reference: src/views/SetupBlockOptions-Lite.vue:1174
|
4857 |
+
__( 'Widgets', 'coming-soon' ),
|
4858 |
+
|
4859 |
+
// Reference: src/views/SetupDesign-Lite.vue:735
|
4860 |
+
__( 'Video Background', 'coming-soon' ),
|
4861 |
+
|
4862 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1205
|
4863 |
+
__( '← Go Back', 'coming-soon' ),
|
4864 |
+
|
4865 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1206
|
4866 |
+
__( '← Go to Dashboard', 'coming-soon' ),
|
4867 |
+
|
4868 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1207
|
4869 |
+
__( 'Choose a New Page Template', 'coming-soon' ),
|
4870 |
+
|
4871 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1211
|
4872 |
+
__( 'No Favorited Templates Found', 'coming-soon' ),
|
4873 |
+
|
4874 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1212
|
4875 |
+
__( 'No Saved Templates Found', 'coming-soon' ),
|
4876 |
+
|
4877 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1217
|
4878 |
+
__( 'Choose This Template', 'coming-soon' ),
|
4879 |
+
|
4880 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1218
|
4881 |
+
__( 'Enter your new page details', 'coming-soon' ),
|
4882 |
+
|
4883 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1219
|
4884 |
+
__( 'You can always change it later in Page Settings.', 'coming-soon' ),
|
4885 |
+
|
4886 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1223
|
4887 |
+
__( 'Page Name:', 'coming-soon' ),
|
4888 |
+
|
4889 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1225
|
4890 |
+
__( 'Save and Start Editing the Page', 'coming-soon' ),
|
4891 |
+
|
4892 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1234
|
4893 |
+
__( 'My Landing Page name goes here', 'coming-soon' ),
|
4894 |
+
|
4895 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1238
|
4896 |
+
__( 'You can favorite any template by clicking the heart icon under the page template.', 'coming-soon' ),
|
4897 |
+
|
4898 |
+
// Reference: src/views/TemplateChooser-Lite.vue:1242
|
4899 |
+
__( 'You can save pages as templates in the builder. Any saved pages will be shown here.', 'coming-soon' )
|
4900 |
+
);
|
4901 |
+
/* THIS IS THE END OF THE GENERATED FILE */
|
public/css/admin-style.css
CHANGED
@@ -785,7 +785,7 @@ ul.striped > :nth-child(even),
|
|
785 |
#seedprod-preview-wrapper {
|
786 |
margin-bottom: 72px;
|
787 |
background-color: #7B6B7A;
|
788 |
-
overflow-y:
|
789 |
}
|
790 |
#seedprod-preview-wrapper #seedprod-builder-view {
|
791 |
margin-left: auto;
|
@@ -3941,6 +3941,6 @@ div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
|
3941 |
}
|
3942 |
}
|
3943 |
|
3944 |
-
/*# sourceMappingURL=data:application/json;charset=utf8;base64,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 */
|
3945 |
|
3946 |
/*# sourceMappingURL=admin-style.css.map */
|
785 |
#seedprod-preview-wrapper {
|
786 |
margin-bottom: 72px;
|
787 |
background-color: #7B6B7A;
|
788 |
+
overflow-y: auto;
|
789 |
}
|
790 |
#seedprod-preview-wrapper #seedprod-builder-view {
|
791 |
margin-left: auto;
|
3941 |
}
|
3942 |
}
|
3943 |
|
3944 |
+
/*# sourceMappingURL=data:application/json;charset=utf8;base64,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 */
|
3945 |
|
3946 |
/*# sourceMappingURL=admin-style.css.map */
|
public/css/admin-style.css.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["admin-style.css","admin-style.less"],"names":[],"mappings":"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","file":"admin-style.css","sourcesContent":[null,"/* Global */\n\n.seedprod {\n}\n\nbody{\n //font-family: 'Open Sans', sans-serif;\n}\n\nimg{border: inherit}\n\n[v-cloak]{\n\tdisplay: none !important;\n}\n\nbody, .subsubsub, .tablenav .tablenav-pages{\ncolor: #222;\n}\n\n.subsubsub .current{\n color: #222 !important;\n}\n\n.search-box,.subsubsub{\n margin-bottom:0px !important;\n}\n\nbody.seedprod-body{\n background: #fff;\n}\n\nbody.seedprod_page_seedprod_pro_template #wpwrap, body.seedprod_page_seedprod_lite_template #wpwrap{\n background: #f7f6f7;\n}\n\n.seedprod_page_seedprod_pro_template{\nbutton, input, optgroup, select, textarea{\n outline:none !important;\n box-shadow: none !important;\n}\n}\n\n.seedprod_page_seedprod_lite_template{\n button, input, optgroup, select, textarea{\n outline:none !important;\n box-shadow: none !important;\n }\n }\n\n.seedprod_page_seedprod_pro_template{\ninput[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {\n box-shadow: 0 0 0 transparent;\n border-radius: 4px;\n border: 1px solid #d3ced2;\n background-color: #fff;\n color: #32373c;\n}\n}\n\n.seedprod_page_seedprod_lite_template{\n input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {\n box-shadow: 0 0 0 transparent;\n border-radius: 4px;\n border: 1px solid #d3ced2;\n background-color: #fff;\n color: #32373c;\n }\n }\n\n// body.seedprod-body #wpwrap{\n// background: #f1f1f1;\n// }\n\n.seedprod-builder{\n display: none ;\n}\n\n.seedprod-action-txt{\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 340px;\n display: inline-block;\n}\n\n#seedprod-page-name{\n width:100%;\n background:#fbfcfb;\n height: 75px;\n border-bottom:1px solid #f0f0f0;\n margin-top: 67px;\n display: table;\n padding:0 23px;\n input{\n height:40px;\n border-radius:2px;\n width: 315px;\n }\n label{\n margin-bottom: 0px;\n font-size:16px;\n margin-right:15px;\n }\n .form-group{\n display: table-cell;\n vertical-align: middle\n }\n}\n.template-chooser{\n h2{\n margin-top:0;\n margin-bottom: 15px;\n font-size:24px;\n color: #2d2d2d;\n font-weight: 400;\n }\n p{\n color: #666;\n font-size: 14px;\n margin-bottom:30px;\n }\n .highlight-template{\n color: #f1470d !important;\n text-decoration: underline;\n :hover{\n text-decoration: none;\n }\n }\n}\n\n.seedprod-builder #adminmenu,.seedprod-builder #wpadminbar{\n display:none !important;\n}\n\n#seedprod-steps-nav{\n border-left: 1px solid #f9f9f9;\n a{\n font-size:14px;\n padding-left: 15px;\n padding-right: 15px;\n }\n}\n\n.seedprod-builder-step .container-fluid {\n padding-left: 23px !important;\n padding-right: 23px !important;\n}\n\n .seedprod-builder-step h1{\n margin:20px 0 10px 0 !important;\n}\n\n.seedprod table{\n background-color: #f8f8f8;\n}\n\n.seedprod .navbar-default{\n background-color: #fafbfc;\n border-color: #e8e8e8;\n overflow: hidden;\n}\n\n.seedprod-builder .navbar-default{\n background-color: #fff;\n}\n\n.seedprod .panel-default>.panel-heading {\n color: #222;\n background-color: #f8f8f8;\n border-color: #ddd;\n font-weight: bold;\n position: relative;\n}\n\n.widefat thead th, .widefat thead td {\n border-bottom: 1px solid #ddd;\n}\n\n.widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .imgedit-group, .comment-ays {\n border: 1px solid transparent;\n box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n margin-top:20px;\n}\n\n\n\n\n// .seedprod-builder{ .form-control, input[type=\"text\"], input[type=\"password\"], input[type=\"checkbox\"], input[type=\"color\"], input[type=\"date\"], input[type=\"datetime\"], input[type=\"datetime-local\"], input[type=\"email\"], input[type=\"month\"], input[type=\"number\"], input[type=\"search\"], input[type=\"radio\"], input[type=\"tel\"], input[type=\"text\"], input[type=\"time\"], input[type=\"url\"], input[type=\"week\"], select, textarea{\n// background-color: #fff;\n// border-color: #DEDADE;\n// box-shadow: none;\n// }\n// }\n\n.seedprod .form-control[disabled], .seedprod .form-control[readonly], fieldset[disabled] .seedprod .form-control {\n background-color: #fbfcfb;\n opacity: 1;\n}\n\n.seedprod-builder .input-group-addon{\n background-color: #fff;\n border-color: #DEDADE;\n}\n\n.column.entries, .column.subscribers, .column.active {\n width:120px;\n}\n\n.column.type{\n width:160px;\n}\n\n.column.status{\n width:210px;\n white-space: nowrap;\n}\n\n.column.starts{\n width:130px;\n white-space: nowrap;\n\n}\n.column.ends{\n width:130px;\n white-space: nowrap;\n}\n\n.vue-js-switch .v-switch-core{\n background: #d6d6d6 !important;\n}\n\n.vue-js-switch.toggled .v-switch-core{\n background: #4CAF50 !important;\n}\n\n\n\n\n\n// .wp-core-ui #post-body-content .button{\n// color: #222;\n// border-color: #ddd;\n// background: #f8f8f8;\n// box-shadow:none;\n// }\n\n\n.seedprod .navbar-default .navbar-nav>li>a , .seedprod .input-group-addon{\n color: #b3b3b3;\n}\n\n.seedprod-builder #seedprod-sidebar-wrapper .input-group-addon{\n color: #c7c7c7;\n font-size:13px;\n\n}\n\n.seedprod .navbar-nav>li>a{\n padding-top: 19px !important;\n padding-bottom: 23px !important;\n}\n\n.seedprod-builder .navbar-nav>li>a{\n padding-top: 23px !important;\n padding-bottom: 23px !important;\n}\n\n#seedprod-steps-nav a span{\n padding: 0 10px 24px;\n}\n\n.seedprod .navbar-default .navbar-nav>.active>a,\n.seedprod .navbar-default .navbar-nav>.active>a:focus\n{\n color: #222;\n background-color: #fff !important;\n span{\n box-shadow: inset 0 -3px 0px 0px #f1470d !important;\n padding: 0 10px 24px;\n }\n\n}\n\n\n.seedprod .navbar-default .navbar-nav>li>a:hover{\n color: #222;\n background-color: #fff !important;\n}\n\n.striped > tbody > :nth-child(even), ul.striped > :nth-child(even), .alternate {\n background-color: #fff;\n}\n\n.seedprod-icon::before {\n display: inline-block;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n}\n\n.icon-refer-a-friend::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f004\";\n}\n\n.icon-refer-a-friend{\n background-color: #e42e2f;\n border-color: #e42e2f !important;\n color: #fff;\n}\n\n.icon-automatic-entry::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f3ff\";\n}\n\n.icon-automatic-entry{\n background-color: #FF9800;\n border-color: #FF9800 !important;\n color: #fff;\n}\n\n.icon-submit-image::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f03e\";\n}\n\n.icon-submit-image{\n background-color: #009688;\n border-color: #009688 !important;\n color: #fff;\n}\n\n.icon-polls-surveys::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f681\";\n}\n\n.icon-polls-surveys{\n background-color: #E91E63;\n border-color: #E91E63 !important;\n color: #fff;\n}\n\n.icon-join-newsletter{\n background-color: #4CAF50;\n border-color: #4CAF50 !important;\n color: #fff;\n}\n\n.icon-join-newsletter::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f0e0\";\n}\n\n\n.icon-visit-a-page::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f35d\";\n}\n\n.icon-visit-a-page{\n background-color: #0000ba;\n border-color: #0000ba !important;\n color: #fff;\n}\n\n.icon-visit-fb::before, .icon-fb-page-post::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f09a\";\n}\n\n.icon-visit-fb, .icon-fb-page-post{\n background-color: #4267b2;\n border-color: #4267b2 !important;\n color: #fff;\n}\n\n.icon-tweet::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f099\";\n}\n\n.icon-tweet{\n background-color: #38A1F3;\n border-color: #38A1F3 !important;\n color: #fff;\n}\n\n.icon-twitter-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f099\";\n}\n\n.icon-twitter-follow{\n background-color: #38A1F3;\n border-color: #38A1F3 !important;\n color: #fff;\n}\n\n.icon-instagram-follow::before, .icon-instagram-page-post::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f16d\";\n}\n\n.icon-instagram-follow, .icon-instagram-page-post{\n background-color: #f55f3f;\n border-color: #f55f3f !important;\n color: #fff;\n}\n\n.icon-pinterest-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f0d2\";\n}\n\n.icon-pinterest-follow{\n background-color: #e60023;\n border-color: #e60023 !important;\n color: #fff;\n}\n\n.icon-youtube-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f167\";\n}\n\n.icon-youtube-follow{\n background-color: #ff0000;\n border-color: #ff0000 !important;\n color: #fff;\n}\n\n.icon-watch-a-video::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f167\";\n}\n\n.icon-watch-a-video{\n background-color: #ff0000;\n border-color: #ff0000 !important;\n color: #fff;\n}\n\n.icon-question::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f059\";\n}\n\n.icon-question{\n background-color: #9900bb;\n border-color: #9900bb !important;\n color: #fff;\n}\n\n\n.icon-invent-your-own::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f0eb\";\n}\n\n.icon-invent-your-own{\n background-color: #0f0f0f;\n border-color: #0f0f0f !important;\n color: #fff;\n}\n\n\n.seedprod-page-types{\n display: flex;\n margin-left:-20px;\n margin-right:-20px;\n}\n\n.seedprod-page-type{\n border:1px solid #ccc;\n padding:20px;\n margin-left:20px;\n margin-right:20px;\n}\n\n\n#seedprod-dashboard{\npadding-right:20px;\n}\n\n.seedprod-app{\n #poststuff{\n padding-top:30px\n }\n .widefat{\n margin-top:10px !important;\n box-shadow: 0 1px 1px rgba(0,0,0,0.04) !important;\n }\n}\n\n#seedprod-dashboard .column-active{\n\twidth:90px;\n}\n\n#seedprod-dashboard .column-subscribers{\n\twidth:120px;\n}\n\n#seedprod-dashboard .column-entries{\n\twidth:120px;\n}\n\n#seedprod-entries .column-entries{\n\twidth:120px;\n}\n\n#seedprod-entries .fa-trophy{\n padding-right:5px;\n}\n\n#seedprod-entries #poststuff{\n padding-top:10px;\n}\n\n#lpage-details-sub{\n color: #999;\n display: block;\n font-size: 10px;\n text-transform: uppercase;\n margin: 0 0 8px 0;\n}\n\n#lpage-details-title{\n float: left;\n font-size: 18px;\n font-weight: 400;\n margin: 0;\n padding-right:8px\n}\n\n#lpage-selector {\n display: inline-block;\n position: relative;\n}\n\n#seedprod-entries{\n margin-top:20px;\n}\n\n#seedprod-entries .toggle.active {\n background-color: #e3e3e3;\n outline: none;\n}\n\n#seedprod-entries .toggle {\n border-radius: 50%;\n color: #444;\n font-size: 16px;\n box-shadow: none;\n}\n\n#seedprod-entries .toggle:before {\n vertical-align: middle;\n}\n\n#lpage-details-actions{\n margin-top: 26px;\n text-align:right;\n}\n\n.lpage-details-actions{\n margin-right:12px;\n text-decoration:none;\n}\n\n.lpage-details-actions:last-child {\n margin-right:0px;\n }\n\n .lpage-selector {\n display: inline-block;\n position: relative;\n}\n\n.lpage-selector ul {\n max-height: 196px;\n overflow-x: hidden;\n padding: 0;\n margin: 0;\n}\n\n#raffleprsss-lpage-list-loading{\n text-align: center;\n display: block;\n}\n\n.lpage-selector ul li {\n list-style: none;\n margin: 0;\n font-size: 13px;\n}\n\n.lpage-selector ul li a {\n display: block;\n text-decoration: none;\n padding: 5px 15px;\n color: #444;\n}\n\n.lpage-selector ul li a:hover {\n background-color: #f7f7f7;\n color: #444;\n}\n\n#winner-selector{\n display: inline-block;\n position: relative;\n}\n\n#seedprod-winner-options{\n background: #fff;\n border-radius: 3px;\n box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);\n position: absolute;\n top: 69px;\n left: -15px;\n width: 300px;\n z-index: 9992;\n font-size: 13px;\n font-weight: normal;\n padding: 20px;\n input[type=\"radio\"]{\n margin-top: 3px;\n }\n}\n\n#seedprod-winner-options:before{\n content: \" \";\n position: absolute;\n top: -10px;\n left: 145px;\n width: 0;\n height: 0;\n border-style: solid;\n\n border-width: 0 8px 10px 8px;\n border-color: transparent transparent #fff transparent;\n}\n\n#lpage-list{\n background: #fff;\n border-radius: 3px;\n box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);\n position: absolute;\n top: 27px;\n left: -108px;\n width: 230px;\n padding: 10px 0;\n z-index: 9991;\n}\n\n#lpage-list:before{\n content: \" \";\n position: absolute;\n top: -10px;\n left: 110px;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 8px 10px 8px;\n border-color: transparent transparent #fff transparent;\n}\n\n\n#seedprod-header{\n position: relative;\n background: #fff;\n margin-left: -20px;\n border-bottom:1px solid #ccc;\n}\n\n.seedprod-header-margin{\n margin-top:20px !important;\n}\n\n.seedprod .navbar-right{\n margin-right: 0;\n border-color:transparent;\n border-bottom-color: #e7e7e7;\n}\n\n.seedprod-breadcrumbs{\n display: inline-block;\n margin-top:10px;\n margin-bottom:20px;\n}\n\n#seedprod-page-title{\n background-color: #fff;\n margin: 0 0 0px -20px;\n padding: 15px 20px;\n font-size: 23px;\n font-weight: 400;\n line-height: 29px;\n border-bottom:1px solid #e7e8e7;\n .add-new-h2 {\n margin-left: 28px;\n }\n}\n\n.seedprod-btn-orange {\n background-color: #f1460d !important;\n border-color: #f0460d !important;\n color: #fff !important;\n}\n\n.seedprod-btn-orange:hover {\n background-color: #c1390a !important;\n border-color: #c1390a !important;\n color: #fff !important;\n}\n\n\n.seedprod-breadcrumbs small{\n font-size:14px;\n}\n\n.seedprod .container-fluid{\n padding:0;\n}\n\n.d-ib{\n display:inline-block;\n}\n\n.seedprod .tablenav{\n margin: 0px 0 4px;\n}\n\n\n.seedprod-default-cusor{\n cursor: default;\n}\n\n.seedprod td, .seedprod th{\n padding:10px\n}\n\n.seedprod :focus{\n outline: none !important;\n box-shadow: none !important;\n}\n\n\n/* Builder */\n#seedprod-search-close{\n margin-left: -24px;\n margin-right: 11px;\n color: #aaa;\n z-index:999;\n position: relative;\n cursor: pointer;\n}\n// #seedprod-customizer {\n// background: #fff;\n// position: fixed;\n// top: 0;\n// bottom: 0;\n// left: 0;\n// right: 0;\n// z-index: 99999;\n// height: 100%;\n\n// }\n\n\n\n#seedprod-customizer-wrapper {\n height: 100%;\n}\n\n.seedprod-builder .mx-input, #seedprod-sidebar-wrapper .form-control{\n font-size: 16px;\n height:40px;\n\n}\n\n.seedprod-builder .btn i{\n color: rgba(0, 0, 0, 0.34);\n}\n\n// .seedprod-builder .seedprod-sidebar-form-body .btn i {\n// margin-right: 4px;\n// }\n// .seedprod-builder .seedprod-settings-page-wrapper .btn i {\n// margin-right: 4px;\n// }\n\n.rules-modal{\n\n .seedprod-modal-container{\n border-radius: 6px;\n max-width:620px;\n position: relative;\n }\n hr{\n margin-top:15px;\n margin-bottom:25px;\n }\n .seedprod-modal-body{\n margin-top:0;\n }\n i{\n color: #ccc;\n cursor: pointer;\n position:absolute;\n top:20px;\n font-size:16px;\n right:20px\n }\n}\n\n\n\n\n\n#seedprod-sidebar-nav-wrapper {\n background-color: #2d2d2d;\n color: #a3a3a3;\n z-index: 200;\n left: 0px;\n position: absolute;\n bottom: 0;\n top: 67px;\n right: auto;\n width: 95px;\n overflow-y: auto;\n overflow-x: hidden;\n .active{\n background-color: #000;\n color:#fff;\n }\n}\n\n\n.sp-section-toolbar{\n background: url(../svg/section-toolbar.svg);\n background-position: top center;\n background-repeat: no-repeat;\n width: 218px;\n height: 28px;\n margin-top: -4px;\n align-items: center;\n justify-content: center;\n span{\n margin: 2px 2px 0 2px;\n }\n span:first-child{\n margin-left:6px\n }\n}\n\n#sp-sidebar-drawer{\ncursor: pointer;\n height:76px;\n width:13px;\n background-image: url(../svg/sidebar-drawer.svg);\n background-repeat: no-repeat;\n background-size: auto;\n background-position: -7px 0;\n top:50%;\n svg{\n min-width: 23px;\n margin-left: -6px;\n }\n}\n\n.sp-sidebar-drawer-closed{\n margin-left: -320px !important;\n}\n\n#seedprod-sidebar-wrapper {\n background-color: #F7F6F7;\n color: #4F394D;\n width: 320px;\n min-width: 320px;\n z-index:10;\n margin-top: 0px;\n margin-bottom: 125px;\n box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);\n}\n\n#seedprod-preview-wrapper.sp-setup_settings_connect{\n background-color: #EDEBED !important;\n}\n\n\n\n#seedprod-preview-wrapper{\n margin-bottom: 72px;\n background-color: #7B6B7A;\n overflow-y: scroll;\n\n #seedprod-builder-view{\n margin-left:auto;\n margin-right:auto;\n background-color: #fff;\n }\n}\n\n.sp-mobile-view{\n border-radius: 10px;\n border: 5px solid #4F394D;\n box-shadow: 0px 15px 50px rgba(35, 8, 32, 0.25);\n margin-top:15px;\n}\n\n\n.seedprod-sidebar-form-body {\n padding: 0px;\n padding-top:0px;\n padding-bottom: 30px;\n margin: 0 20px;\n text-align: left;\n box-shadow: inset 0 -1px 0 rgba(167,156,166,0.25);\n .col-md-6:first-child{\n padding-right:7px;\n }\n .col-md-6:last-child{\n padding-left:7px;\n }\n .help_tip i{\n vertical-align: text-top;\n color: #c7c7c7;\n }\n}\n\n// .seedprod_collaspe, .seedprod-sidebar-form-body{\n// border-bottom: 1px solid #e3dfe3;\n// }\n\n\n// .seedprod-sidebar-form h3{\n// cursor: pointer;\n// color: #4f394d;\n// font-weight: 600;\n// font-size: 16px;\n// padding: 15px 0;\n// }\n\n\n\n// .seedprod-sidebar-form h3::after {\n// text-align: right;\n// float:right;\n// content: \"\";\n// // font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f078\";\n// // color: #4F394D ;\n// background-image: url(../img/down-arrow.png);\n// background-repeat: no-repeat;\n// background-size: auto;\n// background-position: 0;\n// width: 13px;\n// height: 13px;\n// }\n\n\n// .seedprod-sidebar-form h3.seedprod_collaspe::after {\n// text-align: right;\n// float:right;\n// content: \"\";\n// background-image: url(../img/right-arrow.png);\n// background-repeat: no-repeat;\n// background-size: auto;\n// background-position: 0;\n// width: 13px;\n// height: 13px;\n// }\n\n\n#seedprod-dragbar {\n background-color: #ccc;\n height: 100%;\n width: 3px;\n cursor: col-resize;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n#seedprod-ajax-status{\n background: #230820;\n position: fixed;\n right: 29px;\n top: 26px;\n font-size:16px;\n z-index: 999999;\n color: #fff;\n}\n\n#seedprod-builder-view{\n padding:0;\n height:100%;\n overflow-y: auto;\n}\n\n#seedprod-preview, .seedprod-settings-page {\n overflow-y: scroll;\n float: right;\n height: 100%;\n width: 100%;\n padding:40px 35px;\n //background:#EDEBED;\n background:#F7F6F7;\n}\n\n.sp-sectiontemplates .seedprod-settings-page {\n background:#EDEBED;\n}\n\n\n\n#seedprod-sidebar-wrapper .sp-setting-control{\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom:10px;\n }\n\n#seedprod-sidebar-wrapper .sp-setting-control label{\n font-size:13px;\n }\n\n.seedprod-settings-page-wrapper{\n color:#4F394D;\n p, label{\n font-size:16px !important;\n font-weight:600;\n }\n .form-group{\n margin-bottom:25px;\n }\n\n h1{\n font-weight: bold;\n font-size: 20px;\n margin-bottom: 40px;\n }\n hr{\n margin-top: 15px;\n margin-bottom: 25px;\n }\n .checkbox label{\n color: #4F394D;\n }\n .form-control, .btn {\n height: 40px;\n }\n .help_tip {\n vertical-align: top;\n display: inline-block;\n i{\n color: #c7c7c7;\n }\n\n }\n .seedprod-affiliate-details{\n color: #999 !important;\n font-size:13px !important;\n margin-top:8px;\n a{\n color: #f1470d !important;\n text-decoration: underline;\n }\n }\n}\n\n#seedprod-settings{\n border-right:0px;\n border-left:0px;\n\n .list-group-item{\n display: flex;\n justify-content: space-between ;\n align-items: center;\n padding: 19px 24px;\n color: #7B6B7A;\n width: 100%;\n text-align: left;\n font-weight: 600;\n font-size: 16px;\n border-bottom: 1px solid #EDEBED;\n }\n\n .list-group-item:first-child{\n border-top:0 !important;\n\n }\n\n .active{\n color: #f1470d;\n }\n\n}\n\n#seedprod-preview{\n padding:0;\n}\n\n#seedprod-customizer-header-wrapper{\n\ttop:0;\n\tleft:0;\n\theight: 67px;\n\twidth:100%;\n background:#fafafa;\n z-index:99;\n\n}\n\n.seedprod .navbar-brand{\n padding: 6px 15px;\n height: 67px;\n}\n\n.seedprod-builder .navbar-brand{\n padding: 11px 15px;\n height: 67px;\n}\n\n#seedprod-builder-help{\n color: #A79CA6;\n margin-right: 18px;\n font-size:14px;\n padding: 8px 12px;\n i{ margin-right: 4px;\n color:#A79CA6;\n }\n}\n\n#seedprod-builder-help:hover{\n color: #fff;\n}\n\n\n\n\n\n.seedprod-overflow-hidden{\n overflow: hidden;\n}\n\n// .seedprod-overflow-scroll{\n// overflow-y: scroll;\n// }\n\n#seedprod_preview{\n width:100%;\n height:700px;\n}\n\n\n\n.seedprod .navbar{\n\tborder-radius: 0 !important;\n\tmargin-bottom: 0;\n\theight: 90px;\n}\n\n.seedprod-builder .navbar{\n\tborder-radius: 0;\n\tmargin-bottom: 0;\n\theight: 67px;\n}\n\n\n\n#seedprod-builder-close{\n margin-right: 16px;\n margin-left: 14px;\n font-size:15px;\n width: 40px;\n height: 40px;\n color: #a79ca6;\n border-radius: 100px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n#seedprod-builder-close:hover{\n color: #fff;\n}\n\n\n\n\n.seedprod-install-option{\n\tfloat: left;\n\twidth:250px;\n\tmin-height: 195px;\n\tmargin-right:20px;\n}\n\n#seedprod-publish-title{\nfont-size:24px;\nfont-weight: 400;\nmargin-top:50px;\nmargin-bottom:15px;\ncolor:#2d2d2d;\n}\n\n#seedprod-publish-desc{\ncolor:#676767;\nfont-size:14px;\nmargin-bottom:30px;\n}\n\n.seedprod-publish-option{\n padding:20px;\n background: #fff;\n border: 1px solid #f1f1f1;\n border-radius: 8px;\n cursor: pointer;\n margin-bottom:20px;\n h3{\n margin-top:0;\n margin-bottom: 17px;\n font-size: 16px;\n }\n p{\n margin:0;\n font-size:14px;\n color: #a7a7a7;\n }\n}\n\n.seedprod-publish-options .col-sm-4:first-child{\n padding-right:7px;\n}\n\n.seedprod-publish-options .col-sm-4:nth-child(2){\n padding-right:7px;\n padding-left:7px;\n}\n\n.seedprod-publish-options .col-sm-4:last-child{\n padding-left:7px;\n}\n\n#seedprod-publish-options-details{\n padding:30px 20px;\n background: #fff;\n border: 1px solid #f1f1f1;\n border-radius: 8px;\n margin:0 0px;\n h4{\n font-size: 18px;\n color: #2d2d2d;\n margin:0 0 40px 0;\n font-weight: 400;\n }\n ol{\n margin:0;\n margin-left: 15px;\n }\n li{\n color: #666;\n font-size:14px;\n margin-bottom:10px;\n\n }\n p{\n margin:40px 0 15px 0;\n color: #666;\n font-size: 14px;\n }\n .fa-copy{\n\n color:#999;\n }\n .input-group-addon{\n padding: 2px 10px 0;\n cursor: pointer;\n }\n .input-group-addon, .form-control{\n height: 40px;\n }\n .form-control{\n width: 215px;\n }\n .btn{\n height: 40px;\n margin-left:7px;\n }\n\n\n\n}\n\n.seedprod-sidebar-nav{\n\tpadding:17px 0;\n\ttext-align: center;\n border-bottom: 1px solid #3d3d3d;\n}\n\n.seedprod-sidebar-nav:hover{\n color: #fff;\n}\n\n.seedprod-sidebar-nav span{\n display: block;\n padding-top:5px;\n font-size:14px;\n}\n\n.seedprod-sidebar-nav i{\n font-size: 25px;\n}\n\n\n\n.seedprod-enter-active{\n\ttransition: opacity .3s\n}\n\n.seedprod-leave-active {\n\topacity: 0\n}\n\n.seedprod-enter,.seedprod-leave-to /* .fade-leave-active below version 2.1.8 */ {\n\topacity: 0\n}\n\n.fade-enter-active{\n\ttransition: opacity 1s\n}\n\n.fade-leave-active {\n\topacity: 0\n}\n\n// .fade-enter,.fade-leave-to /* .fade-leave-active below version 2.1.8 */ {\n// \topacity: 0\n// }\n\n#seedprod-sidebar-nav-wrapper > div{\n\tcursor: pointer;\n}\n\n.seedprod-prize{\n margin-bottom:13px;\n}\n\n.seedprod-prize .btn{\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.toast {\n opacity: 1 !important;\n}\n\n.seedprod-install-option{\n cursor:pointer;\n}\n\n.seedprod .vue-swatches__row{\n height:24px;\n}\n\n.seedprod .vue-swatches__container{\n white-space: normal;\n}\n\n.seedprod .vue-swatches__wrapper{\n width: 230px !important;\n}\n\n\n.seedprod .input-group-addon{\n padding:2px 6px 0;\n}\n\n.seedprod .vue-swatches .vue-swatches__trigger{\n width: 20px !important;\n height: 20px !important;\n}\n\n.seedprod .mx-input,.seedprod .mx-input-append ,.seedprod .mx-calendar{\n color:#555 !important ;\n}\n.seedprod .mx-input-append{\n padding: 7px;\n}\n\n.seedprod .mx-calendar .actived{\n color:#fff !important;\n}\n\n.seedprod .mx-datepicker-popup{\n margin-top: -10px;\n}\n\n\n.seedprod .time-picker input.display-time{\n border:1px solid #ddd;\n box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );\n height: 34px;\n border-radius: 4px;\n padding: 6px 10px;\n font-size:14px;\n width: 100%;\n color: #6a6a6a;\n}\n\n.time-picker .dropdown ul li.active, .time-picker .dropdown ul li.active:hover {\n background: #f3510a;\n color: #fff;\n}\n\n.seedprod-builder .time-select:after{\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f017\";\n color: #a6a6a6;\n position: absolute;\n right: 23px;\n top:11px;\n font-size:13px;\n}\n\n.seedprod-builder select.form-control {\n // appearance:none;\n // background: url(../img/down-arrow.png) 250px no-repeat;\n}\n\n.time-select select.form-control {\n appearance:none;\n}\n\n\n\n\n.mx-panel-date td.today {\n color: #f3510a !important;\n}\n\n.mx-calendar-content .cell.actived {\n color: #fff;\n background-color: #f3510a !important;\n}\n\n\n\n.seedprod-img-preview{\n position:relative;\n display: inline-block;\n}\n\n.seedprod-img-preview i{\n position: absolute;\n top: 4px;\n right: -6px;\n}\n\n.seedprod-img-preview img{\n max-width:100%;\n max-height:280px;\n // border:1px solid #DEDADE;\n // padding:5px;\n\n}\n\n/* Slideshow BG Settings */\n.sp-slideshow-bg-settings {\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview {\n\tcursor: move;\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview img {\n\tmax-width: 150px;\n\tmax-height: 150px;\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview button:nth-of-type(2) {\n\tdisplay: none;\n}\n\n.sp-slideshow-bg-settings .sp-slide .sp-remove-slide-btn {\n\tvisibility: hidden;\n}\n\n.sp-slideshow-bg-settings .sp-slide:hover .sp-remove-slide-btn {\n\tvisibility: visible;\n}\n\n.seedprod textarea.form-control{\n height:auto;\n}\n\n.seedprod :focus {\n outline: none;\n}\n\n// .seedprod label{\n// cursor: default;\n// }\n\n// .seedprod-builder label{\n// font-size:13px;\n// font-weight: normal;\n// }\n\n\n.seedprod-modal-mask {\n position: fixed;\n z-index: 9998;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(0, 0, 0, .5);\n display: table;\n transition: opacity .3s ease;\n}\n\n.seedprod-modal-wrapper {\n display: table-cell;\n vertical-align: middle;\n}\n\n\n\n.seedprod-modal-header h3 {\n margin-top: 0;\n}\n\n.seedprod-modal-header h3{\n font-size: 20px;\n margin-top: 0;\n margin: 0;\n padding: 0;\n background: #fff;\n display: block;\n}\n\n\n\n.seedprod-modal-body {\n margin: 20px 0;\n}\n\n.seedprod-modal-enter {\n opacity: 0;\n}\n\n.seedprod-modal-leave-active {\n opacity: 0;\n}\n\n.seedprod-modal-enter .seedprod-modal-container,\n.seedprod-modal-leave-active .seedprod-modal-container {\n -webkit-transform: scale(1.1);\n transform: scale(1.1);\n}\n\n.seedprod .btn-prize{\n text-align:left;\n border-left:none;\n border-right:none;\n border-radius:0;\n width: 213px;\n font-size: 13px;\n color: #666;\n\n}\n\n.seedprod .btn-prize-sngle{\n text-align:left;\n width: 213px;\n font-size: 13px;\n color: #666;\n\n}\n\n.seedprod .btn-prize,\n.seedprod .btn-prize-single{\n background: #fff !important;\n color: #333 !important;\n border-color: #efefef !important;\n padding-left:2px;\n padding-right:2px;\n\n}\n\n.seedprod .btn-add-prize, .seedprod .btn-prize-single{\n font-size: 14px;\n}\n\n.seedprod .btn-prize-single{\n padding-left:10px;\n padding-right:10px;\n}\n\n.seedprod .btn-prize::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f303\";\n float:right;\n color: #c7c7c7;\n}\n\n\n.seedprod .btn-prize-single::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f303\";\n float:right;\n color: #c7c7c7;\n}\n\n.seedprod .btn-prize:active::before, .seedprod .btn-prize:hover::before, .seedprod .btn-prize-single:hover::before {\n color: #333 !important;\n}\n\n.seedprod .btn-my-entry-option{\n\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n text-align:left;\n}\n\n.seedprod-prize .input-group-addon:hover{\n color: #333;\n}\n\n.seedprod-prize-close, .seedprod-block-option-remove{\n cursor:pointer;\n}\n\n.seedprod-prize-move, .seedprod-block-option-move{\n cursor:grab;\n}\n\n.seedprod-prize-move:active, .seedprod-block-option-move:active{\n cursor:grabbing;\n}\n\n.seedprod .btn-entry-option{\n margin-bottom:8px;\n position: relative;\n padding-left: 45px;\n height: 40px;\n}\n\n.seedprod .btn-entry-option:active,.seedprod .btn-entry-option:focus {\n background-color:#fff !important;\n}\n\n.btn-entry-option{\n .seedprod-block-option-icon{\n position: absolute;\n left: 0;\n height: 40px;\n padding-top: 9px;\n padding-left: 10px;\n padding-right: 10px;\n width: 35px;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .fa-plus,.fa-sync-alt{\n position: absolute;\n right: 10px;\n color: #c7c7c7;\n top: 12px;\n }\n}\n\n#seedprod-add-actions{\n\n h3{\n color:#4F394D;\n font-weight: 600;\n font-size: 16px;\n margin: 0px 20px;\n padding:15px 0;\n\n }\n\n // h3:last-of-type{\n // border-bottom: 1px solid #e3dfe3 !important;\n // }\n\n\n}\n\n\n\n\n/* scroll modal */\n\n.seedprod-modal-mask {\n position: fixed !important;\n z-index: 99999 !important;\n top: 0px !important;\n right: 0px !important;\n bottom: 0px !important;\n left: 0px !important;\n overflow-y: auto !important;\n transform: translate3d(0,0,0) !important;\n display: flex !important;\n transition: opacity .3s ease;\n }\n\n .seedprod-modal-wrapper {\n display: flex !important;\n margin: auto !important;\n //max-width: 760px !important;\n width: 100% !important;\n padding-left:80px;\n padding-right: 80px;\n }\n\n .seedprod-modal-container {\n width: 600px;\n background-color: #ffffff;\n flex: 1 !important;\n width: 100% !important;\n margin: 100px auto;\n padding:0 ;\n background-color: #fff;\n border-radius: 10px;\n box-shadow: 0 2px 8px rgba(35,8,32, 0.6);\n transition: all .3s ease;\n .seedprod-modal-body{\n margin:0;\n }\n .sp-modal-left{\n border-top-left-radius: 10px;\n border-bottom-left-radius: 10px;\n }\n .sp-modal-right{\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px;\n }\n }\n\n .seedprod-modal-header h3 {\n margin-top: 0;\n }\n\n .seedprod-modal-body {\n margin: 20px 0;\n }\n\n .seedprod-modal-enter, .seedprod-modal-leave {\n opacity: 0;\n }\n\n .seedprod-modal-enter .seedprod-modal-container,\n .seedprod-modal-leave .seedprod-modal-container {\n -webkit-transform: scale(1.1);\n transform: scale(1.1);\n }\n\n .seedprod input[type=checkbox], .seedprod input[type=radio] {\n margin: 0px 0 0;\n}\n\n.seedprod-sidebar-nav.active:before {\n position: absolute;\n right: -10px;\n margin-top: 28px;\n display: block;\n width: 20px;\n height: 20px;\n content: '';\n background-color: #ffffff;\n -webkit-transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -o-transform: rotate(45deg);\n transform: rotate(45deg);\n border-bottom: 1px solid transparent;\n border-right: 1px solid rgba(0,0,0,.05);\n}\n\n.seedprod .modal{\n z-index: 99999;\n background-color:rgba(0, 0, 0, 0.5);\n}\n\n.seedprod .modal-dialog{\n margin: 80px auto;\n}\n\n#seedprod-upgrade-ribbon-wrapper{\n position: fixed;\n z-index: 1;\n right: 0;\n bottom: 0;\n overflow: hidden;\n height: 110px;\n width: 150px;\n}\n\n#seedprod-upgrade-ribbon{\n position: absolute;\n z-index: 1;\n right: -48px;\n bottom: -15px;\n height: 75px;\n width: 150px;\n font-size: 14px;\n font-weight: 700;\n color: #fff;\n text-transform: uppercase;\n text-align: right;\n line-height: 20px;\n transform: rotate(-45deg);\n cursor:pointer;\n display: block;\n background: #4CAF50;\n box-shadow: inset 0 3px 15px -5px #000;\n}\n\n#seedprod-upgrade-ribbon span{\n transform: rotate(45deg);\n position: absolute;\n bottom: 25px;\n right: 43px;\n}\n\n.seedprod-pro #seedprod-upgrade-ribbon-wrapper{\n display: none;\n }\n\n.seedprod .ribbon {\n position: absolute;\n right: 0px;\n top: 0px;\n z-index: 1;\n overflow: hidden;\n width: 75px;\n height: 75px;\n text-align: left;\n}\n\n.ribbon span {\n font-size: 8px;\n font-weight: 700;\n color: #fff;\n text-transform: uppercase;\n text-align: center;\n line-height: 20px;\n transform: rotate(45deg);\n width: 100px;\n display: block;\n background: #79a70a;\n background: linear-gradient(#ff9c41 0%,#ff9c41 100%);\n box-shadow: 0 3px 20px -5px #000;\n position: absolute;\n top: 18px;\n right: -21px;\n}\n\n\n\n\n\n.seedprod-img-preview i{\n cursor: pointer;\n}\n\n.seedprod .help-block{\n font-size: 12px;\n\n}\n\n.seedprod .has-error .form-control {\n border-color: #ff0000 !important;\n}\n\n.seedprod-builder .input-group-poll-choices{\n margin-bottom:10px;\n position: relative;\n i{\n position: absolute ;\n top: 13px;\n right: 7px;\n color: #c7c7c7;\n cursor: pointer;\n }\n}\n\n.seedprod-winner{\n background-color: rgba(241, 71, 13, 0.08) !important;\n background-image: url(../img/confetti-light.png);\n background-repeat: no-repeat;\n background-size: 200px;\n background-position: 23px -48px;\n font-weight: bold;\n\n}\n\n.seedprod-invalid-entry{\nopacity: 0.4;\n}\n\n.notice, div.updated, div.error{\n}\n\n.error{\n color:red !important;\n}\n\n.seedprod-pro #wpfooter{\n display:none;\n}\n\n#footer-upgrade{\n display:none;\n}\n\n#email_integrations{\n width:100%\n}\n\nhtml{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center center !important;\n height: 100%;\n}\n\n#email_integrations_wrapper{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==');\n background-repeat: no-repeat;\n background-position: center center;\n}\n\n.iframe_loading{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center 100px !important;\n height: 100%;\n}\n\n.results_loading{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center 50px !important;\n height: 100%;\n}\n\n.seedprod .navbar-right {\n margin-right: 0px !important;\n}\n\n.seedprod_page_seedprod_account .seedprod .radio label, .seedprod-pro_page_seedprod_account .seedprod .radio label{\n padding-left:0;\n}\n\n.seedprod .navbar-header {\n float: left !important;\n}\n\n.seedprod{\n.navbar-collapse.collapse {\n display: block!important;\n }\n\n .navbar-nav>li, .navbar-nav {\n float: left !important;\n }\n\n\n .navbar-right {\n float: right!important;\n }\n}\n\n.seedprod-pro-feature{\n opacity: 0.65;\n}\n\n\n.seedprod-pro-upgrade{\n background: rgba(4, 4, 4, 0.6);\n position: fixed;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n z-index: 99999;\n display: table;\n width: 100%;\n height: 100%;\n}\n\n.seedprod-pro-upgrade-row{\n display: table-row;\n width: 100%;\n}\n\n.seedprod-pro-upgrade-cell{\n display: table-cell;\n vertical-align: middle;\n}\n\n.seedprod-pro-upgrade-content{\n background-color: #fff;\n border-radius: 4px;\n max-width: 500px;\n margin: auto;\n padding: 20px;\n text-align:center;\n .btn{\n text-transform: uppercase;\n }\n}\n\n.handdrawn-underline {\n border-bottom: 2px solid #ff9948;\n line-height: .9;\n display: inline-block;\n}\n\n\n/* Builder Preview */\n#seedprod-wrapper{\n\n\n max-width: 480px;\n margin:auto;\n text-align:center;\n border-radius: 6px;\n color: #696969;\n background-color: #fbfbfb;\n box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n}\n#seedprod-wrapper .seedprod-td{\n display: table-cell;\n vertical-align: middle;\n padding:0 3px;\n height: 68px;\n}\n\n#seedprod-page-footer {\n padding: 15px 20px;\n font-size: 11px;\n a{\n color: #9c9c9c !important;\n }\n}\n\n#seedprod-page-entries {\n padding: 11px 0px 0 0;\n color: #2d2d2d;\n p > strong{\n font-size: 16px;\n }\n p{\n margin-bottom:11px;\n }\n}\n\n#seedprod-page-login {\n padding: 15px 0px;\n font-size: 14px;\n color:#666;\n .btn-primary{\n color: #fff;\n background-color: #36ad39;\n border-color: #36ad39;\n }\n .form-control{\n height: 40px;\n margin-right:8px;\n width:165px;\n }\n .btn{\n padding: 9px 20px;\n }\n i{\n color: #fff;\n }\n #login-ft-txt{\n margin-top:15px;\n font-size:12px;\n }\n}\n\n#seedprod-page-form {\n background: #fff;\n border-bottom: 1px solid #f2f2f2;\n padding:5px;\n}\n#seedprod-wrapper .seedprod-top-sep{\n border-right: 1px solid #f2f2f2;\n\n}\n\n#seedprod-wrapper .seedprod-over-txt{\n font-size:20px;\n line-height: 0.9;\n font-weight: bold;\n margin-bottom: 5px;\n display: inline-block;\n}\n\n#seedprod-wrapper .seedprod-under-txt{\n font-size:12px;\n line-height: 1;\n display: block;\n\n}\n\n.seedprod-drag-source{\n margin-bottom: -8px;\n margin-right: -8px;\n}\n\n#sp-blocks-editing{\n background: #DD4A1F;\n color: #fff;\n height:56px;\n line-height: 1;\n font-weight: 600;\nfont-size: 16px;\ntext-transform: capitalize;\n span{\n display: block;\n opacity: 0.5;\n text-transform: uppercase;\n font-weight: 600;\nfont-size: 10px;\n }\n}\n\n.sp-block-type-global{\n background: #E4E1E4!important;\n color: #4F394D !important;\n}\n\n.sp-block-type-row{\n background: #3F5FD1 !important;\n}\n\n.sp-block-type-section{\n background: #7036BB !important;\n}\n\n.sp-sidebar-headers .sp-w-5 {\n width: 1.5rem !important;\n}\n\n#sp-blocks-edit-sections {\n margin-bottom:16px;\n margin-left: -20px;\n margin-right: -20px;\n div{\n display:flex;\n padding-top:18px;\n padding-bottom:18px;\n justify-content: center;\n align-items: center;\n font-weight: 600;\n font-size: 13px;\n\n }\n i{\n margin-right:6px;\n }\n div.sp-secondary{\n background: #DEDADE;\n color: #7B6B7A;\n }\n}\n\n#sp-blocks-sections {\n div{\n display:flex;\n padding-top:18px;\n padding-bottom:18px;\n justify-content: center;\n align-items: center;\n font-weight: 600;\n font-size: 14px;\n\n }\n i{\n margin-right:6px;\n }\n div.sp-secondary{\n background: #DEDADE;\n color: #7B6B7A;\n }\n}\n\n\n.seedprod-block-option:hover{\n background: #DD4A1F;\n border-radius:5px;\n color: #fff;\n}\n\n.seedprod-block-option{\n background: #EDEBED;\n width:88px;\n height:85px;\n margin-bottom:8px;\n margin-right:8px;\n display:flex;\n justify-content: center;\n border-radius:5px;\n\n i{\n margin-top:24px;\n font-size:20px !important;\n }\n button{\n display: flex;\n flex-direction: column;\n font-size:11px;\n justify-content: center;\n align-items:center;\n width:100%;\n height:100%;\n cursor: move;\n\n }\n span{\n flex:1;\n display: flex;\n align-items: center;\n }\n\n}\n\n\n\n#seedprod-wrapper .seedprod-block-option-details{\n background: #fff;\n border-top:1px solid #f2f2f2;\n color: #707070;\n position: relative;\n padding:20px 0;\n display: table-cell;\n width: 480px;\n text-align: left;\n padding-left: 74px;\n font-size:16px;\n cursor: pointer;\n}\n\n\n\n.seedprod-entry-drag-area{\n width: 582px;\n margin-left: -34px;\n}\n\n.seedprod-entry-drag-area > div{\n width:100%;\n margin:auto;\n}\n\n#seedprod-wrapper .seedprod-block-option-move:hover{\n color: #333;\n}\n\n\n#seedprod-wrapper .seedprod-block-option-move{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n padding: 18px 0 ;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n text-align: center;\n position: relative;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n border-right: none;\n padding: 18px 0;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit:hover{\n color: #333;\n}\n\n#seedprod-wrapper .seedprod-block-option-value{\n border: 1px solid #f2f2f2;\n color: #9b9b9b;\n padding:2px;\n padding-top: 5px;\n width: 30px;\n height: 30px;\n right: 24px;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n font-size:13px;\n text-align: center;\n}\n\n .seedprod-block-option-icon{\n border: 1px solid #f2f2f2;\n padding:2px;\n padding-left:3px;\n padding-top: 4px;\n width: 29px;\n height: 29px;\n left: 24px;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n font-size:14px;\n text-align: center;\n}\n\n.seedprod-block-option-icon::before{\n -webkit-font-smoothing: antialiased;\n}\n\n#seedprod-wrapper .seedprod-block-option-remove:hover{\n color: #333;\n}\n\n\n#seedprod-wrapper .seedprod-block-option-remove{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n padding: 18px 0;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n text-align: center;\n}\n\n.show_hidden{\n visibility:visible !important;\n}\n\n\n.seedprod-entry-drag-area > div:last-child .seedprod-block-option-details\n{\n border-bottom:1px solid #f2f2f2;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit{\n cursor:pointer;\n}\n\n\n#seedprod-wrapper .seedprod-page .equal {\n display: flex;\n display: -webkit-flex;\n flex-wrap: wrap;\n }\n\n#seedprod-wrapper .row , #seedprod-wrapper .seedprod .row{\n margin-left: 0;\n margin-right: 0;\n}\n\n\n#seedprod-prize-info .col-md-12{\n padding:0;\n background: #fff;\n}\n\n#seedprod-wrapper .col-xs-4, #seedprod-wrapper .seedprod .col-xs-4 {\n padding-left: 0;\n padding-right: 0;\n}\n\n\n#seedprod-countdown,#seedprod-total-entries,#seedprod-my-entires {\n text-align:center;\n display: table;\n width: 100%;\n min-height: 40px;\n}\n\n#seedprod-countdown{\n font-size: 16px;\n}\n\n#seedprod-wrapper .slider-btn-left{\n background: transparent !important;\n}\n\n#seedprod-wrapper .slider-btn-right{\n background: transparent !important;\n}\n\n#seedprod-wrapper .slider-icon{\n box-shadow: rgba(0, 0, 0, 0.3) -1px 1px 0px;\n}\n\n#seedprod-wrapper .slider-indicator-icon{\n box-shadow: rgba(255, 255, 255, 0.76) 0 0 2px;\n width: 8px;\n height: 8px;\n}\n\n#seedprod-wrapper .slider-indicator-active{\n box-shadow: rgba(0, 0, 0, 0.76) 0 0 2px;\n width: 7px;\n height: 7px;\n}\n\n\n#seedprod-wrapper .slider-indicator-icon{\n background-color: rgba(0,0,0,.3) !important;\n}\n\n#seedprod-wrapper .slider-indicator-active {\n background-color: rgba(255,255,255,.9) !important;\n}\n\n#seedprod-wrapper #seedprod-prize-info {\n border-top: 1px solid #f2f2f2;\n //border-bottom: 1px solid #f2f2f2;\n}\n\n#seedprod-wrapper h1{\n margin:0;\n margin-top: 30px;\n margin-bottom: 10px;\n font-size: 24px;\n color: #2d2d2d;\n font-weight: 700;\n}\n\n#seedprod-wrapper #seedprod-header{\n margin:0;\n padding:0 40px;\n margin-bottom:12px;\n font-size:16px;\n line-height: 1.4;\n color: #666;\n}\n\n.seedprod .btn-default:hover {\n color: #222;\n background-color: #fff;\n border-color: #bbb;\n}\n\n\n\n.seedprod-action-single h3{\n margin-left: 0px !important;\n margin-right: 0px !important;\n}\n\n.seedprod-action-single .seedprod-action-header:first-child {\n margin-bottom: 0px !important;\n}\n\n.seedprod-sidebar-action-body{\n padding:10px 0;\n // border-bottom-width: 1px;\n // border-color: #d3ced2;\n box-shadow: inset 0px -1px 0px rgba(167, 156, 166, 0.25);\n}\n\n.seedprod-action-single .btn-group button{\n padding: 9px 16px;\n\n}\n\n.seedprod .btn-group{\n display:flex !important;\n .btn-default{\n border-color: #DEDADE !important;\n }\n}\n\n.seedprod-action-single .btn{\n padding: 8px 12px;\n}\n\n.seedprod-action-single .btn-group .active{\n background-color: #f1470d !important;\n color: #fff !important;\n box-shadow: none !important;\n\n}\n\n.seedprod-action-header:first-child{\n border-top:0 !important;\n margin-top:1px !important;\n margin-bottom:20px !important;\n}\n\n.seedprod-action-single{\n padding-top: 0px;\n padding-bottom: 0px;\n}\n\n\n.seedprod-block-option-details.active{\n box-shadow:inset 0px 0px 1px 1px #f3510b;\n}\n\n.seedprod .has-error .help-block, .seedprod .has-error .control-label, .seedprod .has-error .radio, .seedprod .has-error .checkbox, .seedprod .has-error .radio-inline, .seedprod .has-error .checkbox-inline, .seedprod .has-error.radio label, .seedprod .has-error.checkbox label, .seedprod .has-error.radio-inline label, .seedprod .has-error.checkbox-inline label {\n color: #ff0000;\n}\n\n\n\n\n/* Tool tips */\n.seedprod-tooltip {\n display: block !important;\n z-index: 99999;\n\n }\n\n .seedprod-tooltip .tooltip-inner {\n font-size:13px;\n background: #4F394D;\n color: #fff;\n border-radius: 6px;\n padding: 5px 10px 4px;\n border:1px solid #4F394D;\n box-shadow: 0 0 3px #4F394D !important;\n max-width:250px;\n width:auto;\n word-wrap: break-word;\n }\n\n .seedprod-tooltip .tooltip-arrow {\n width: 0;\n height: 0;\n border-style: solid;\n position: absolute;\n margin: 5px;\n border-color:#4F394D;\n }\n\n .seedprod-tooltip .tooltip-arrow:before {\n // position: absolute;\n // bottom: -1px;\n // left: 33px;\n // display: block;\n // width: 10px;\n // height: 10px;\n // content: '';\n // background-color: white;\n // -webkit-transform: rotate(45deg);\n // transform: rotate(45deg);\n // border-bottom: 1px solid #b9b9b9;\n // border-right: 1px solid rgba(193, 193, 193, 0.87);\n // z-index: 1;\n}\n\n .seedprod-tooltip[x-placement^=\"top\"] {\n margin-bottom: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"top\"] .tooltip-arrow {\n border-width: 5px 5px 0 5px;\n border-left-color: transparent !important;\n border-right-color: transparent !important;\n border-bottom-color: transparent !important;\n bottom: -5px;\n left: calc(50% - 5px);\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"bottom\"] {\n margin-top: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"bottom\"] .tooltip-arrow {\n border-width: 0 5px 5px 5px;\n border-left-color: transparent !important;\n border-right-color: transparent !important;\n border-top-color: transparent !important;\n top: -5px;\n left: calc(50% - 5px);\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"right\"] {\n margin-left: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"right\"] .tooltip-arrow {\n border-width: 5px 5px 5px 0;\n border-left-color: transparent !important;\n border-top-color: transparent !important;\n border-bottom-color: transparent !important;\n left: -5px;\n top: calc(50% - 5px);\n margin-left: 0;\n margin-right: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"left\"] {\n margin-right: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"left\"] .tooltip-arrow {\n border-width: 5px 0 5px 5px;\n border-top-color: transparent !important;\n border-right-color: transparent !important;\n border-bottom-color: transparent !important;\n right: -5px;\n top: calc(50% - 5px);\n margin-left: 0;\n margin-right: 0;\n }\n\n .seedprod-tooltip[aria-hidden='true'] {\n visibility: hidden;\n opacity: 0;\n transition: opacity .15s, visibility .15s;\n }\n\n .seedprod-tooltip[aria-hidden='false'] {\n visibility: visible;\n opacity: 1;\n transition: opacity .15s;\n }\n\n .swal2-container{\n z-index: 99999 !important;\n }\n\n button.swal-styled{\n box-shadow:none;\n }\n\n\n\n .swal2-toast{\n border-radius: 2px !important;\n border:none !important;\n .swal2-title{\n display:none !important;\n }\n #swal2-content{\n padding-left:10px;\n font-size: 13px;\n color: #fff;\n }\n\n }\n\n .swal2-toast .swal2-image{\n margin:0 !important;\n }\n\n .swal2-popup.swal2-toast{\n box-shadow: 0 0 3px rgba(239, 239, 239, 0.45)!important;\n border-radius:3px !important;\n }\n\n .swal2-top-end{\n top:30px !important;\n }\n\n .seedprod-builder{\n .swal2-top-end{\n top:70px !important;\n }\n }\n\n .seedprod-upgrade-popup{\n .swal2-modal{\n padding: 20px 0px 0px 0px !important;\n }\n }\n\n .swal2-confirm{\n box-shadow: none !important;\n }\n\n .seedprod-moreinfo-popup{\n .swal2-image{\n width:40px;\n height:40px;\n margin: 10px auto !important;\n\n }\n .swal2-modal{\n width:600px;\n }\n .swal2-content{\n font-size:16px !important;\n }\n }\n\n .seedprod-upgrade-popup {\n .swal2-modal{\n width:600px;\n }\n\n .swal2-image{\n width:40px;\n height:40px;\n\n }\n .swal2-title{\n line-height: 1;\n color: #230820 !important;\n font-size:18px !important;\n margin: 0 40px 20px 40px!important;\n }\n .swal2-styled.swal2-confirm{\n background-color: #DD4A1F !important;\n box-shadow: none !important;\n }\n .swal2-content{\n color: #fff !important;\n font-size:18px !important;\n line-height: 1.5 !important;\n padding: 0px 40px 0px 40px !important;\n\n }\n .swal2-confirm{\n padding: 15px 28px !important;\n font-size: 18px !important;\n margin-bottom: 27px !important;\n }\n .swal2-footer{\n position: relative;\n border-top: none !important;\n color: #2d2d2d !important;\n font-size:16px !important;\n line-height: 1.5 !important;\n background: #f9ffab !important;\n padding: 37px 0 37px !important;\n border-bottom-left-radius: .3125em !important;\n border-bottom-right-radius: .3125em !important;\n }\n .fa-check-circle{\n position: absolute;\n top: -16px;\n font-size: 23px;\n color: #36ad39;\n background: #fff;\n border-radius: 50px;\n padding: 6px;\n }\n }\n\n .swal2-popup .swal2-styled.swal2-cancel{\n background-color: #DEDADE !important;\n color: #4F394D !important;\n }\n\n .swal2-popup .swal2-title{\n font-size:18px !important;\n color: #230820 !important;\n }\n .swal2-modal .swal2-close{\n font-size: 1.5em !important;\n }\n\n// .swal2-modal .swal2-image{\n// display:none !important;\n// }\n\n .vue-popover-theme{\n z-index:10;\n outline:none;\n }\n\n .v-popover .trigger{\n display: block !important;\n }\n\n .sp-highlight-theme-template{\n box-shadow: inset 0 0 1px 1px #0F8A5E;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0px;\n left: 0;\n }\n\n .sp-highlight-section{\n box-shadow: inset 0 0 1px 1px #7036BB;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0px;\n left: 0;\n }\n\n .sp-highlight-row {\n box-shadow: inset 0 0 1px 1px #3F5FD1;\n }\n\n .sp-highlight-block{\n box-shadow: inset 0 0 1px 1px #dd4a1f;\n // position: absolute;\n // width: 100%;\n // height: 100%;\n // top: 0px;\n // left: 0;\n // animation-name: hightlight_pulse_color;\n // animation-duration: 1.5s;\n // animation-iteration-count: infinite;\n // animation-timing-function: ease;\n }\n\n\n\n@keyframes hightlight_pulse_color {\n0% {\n box-shadow: inset 0 0 1px 1px red;\n}\n50% {\n box-shadow: inset 0 0 1px 1px #fff;\n}\n100% {\n box-shadow: inset 0 0 1px 1px #f3510b;\n}\n}\n\n.seedprod-highlight-prize {\n .input-group-addon,.btn-prize,.btn-prize-single {\n border-color: #f3510a !important;\n }\n\n\n}\n\n .seedprod-highlight-option , .seedprod-highlight-option-slider-img{\n box-shadow: inset 0 0 1px 1px #f3510b;\n position: relative;\n cursor: pointer;\n z-index:9999;\n\n}\n\n.seedprod-highlight-padding {\n padding:2px;\n}\n\n.seedprod-highlight-option-slider-img::before {\n position: absolute;\n bottom:0px;\n left:-1px;\n background: #f3510a;\n padding: 0px 4px;\n color:rgba(0,0,0,0.5);\n font-family: \"Font Awesome 5 Free\";\n font-weight: 900;\n content: \"\\f303\";\n font-size:13px;\n z-index: 9;\n}\n\n#seedprod-welcome-video{\n margin:30px 0;\n}\n\n#seedprod-welcome-upgrade{\n margin:30px 0;\n}\n\n.seedprod-highlight-option::before {\n position: absolute;\n bottom: -17px;\n background: #f3510a;\n padding: 0px 4px;\n color:rgba(0,0,0,0.5);\n font-family: \"Font Awesome 5 Free\";\n font-weight: 900;\n content: \"\\f303\";\n font-size:13px;\n z-index: 9;\n}\n\n#seedprod-install-options button{\n font-size:13px;\n margin-top:5px;\n min-width: 250px;\n display: block;\n}\n\n.seedprod-50{\n width:49% !important;\n}\n\nh1.seedprod-highlight-option::before {\n bottom: -15px;\n padding: 1px 4px;\n}\n\n// input[type=\"text\"]:focus, input[type=\"password\"]:focus, input[type=\"color\"]:focus, input[type=\"date\"]:focus, input[type=\"datetime\"]:focus, input[type=\"datetime-local\"]:focus, input[type=\"email\"]:focus, input[type=\"month\"]:focus, input[type=\"number\"]:focus, input[type=\"search\"]:focus, input[type=\"tel\"]:focus, input[type=\"text\"]:focus, input[type=\"time\"]:focus, input[type=\"url\"]:focus, input[type=\"week\"]:focus, input[type=\"checkbox\"]:focus, input[type=\"radio\"]:focus, select:focus, textarea:focus {\n// border-color: #5b9dd9;//#f3510a;\n// }\n\n.help_tip{\n cursor: pointer;\n padding: 0 5px;\n font-size:13px;\n vertical-align: middle;\n}\n\n\n /* Make clicks pass-through */\n#nprogress {\n pointer-events: none;\n }\n\n #nprogress .bar {\n background: #f3510a;\n margin:0;\n position: fixed;\n z-index: 999999;\n top: 0;\n left: 0;\n\n width: 100%;\n height: 2px;\n }\n\n /* Fancy blur effect */\n #nprogress .peg {\n display: block;\n position: absolute;\n right: 0px;\n width: 100px;\n height: 100%;\n box-shadow: 0 0 10px #f3510a, 0 0 5px #f3510a;\n opacity: 1.0;\n\n transform: rotate(3deg) translate(0px, -4px);\n }\n\n /* Remove these to get rid of the spinner */\n #nprogress .spinner {\n display: block;\n position: fixed;\n z-index: 1031;\n top: 15px;\n right: 15px;\n }\n\n #nprogress .spinner-icon {\n width: 18px;\n height: 18px;\n box-sizing: border-box;\n z-index: 1031;\n border: solid 2px transparent;\n border-top-color: #29d;\n border-left-color: #29d;\n border-radius: 50%;\n\n\n animation: nprogress-spinner 400ms linear infinite;\n }\n\n .nprogress-custom-parent {\n overflow: hidden;\n position: relative;\n }\n\n .nprogress-custom-parent #nprogress .spinner,\n .nprogress-custom-parent #nprogress .bar {\n position: absolute;\n }\n\n @-webkit-keyframes nprogress-spinner {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n }\n @keyframes nprogress-spinner {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n }\n\n .layout-3 .slider-indicators{\n top:5px !important;\n }\n\n .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {\n border-color: #f1470d;\n color: #fff;\n background: #f1470d;\n box-shadow: none;\n outline: none;\n}\n\n.tablenav-pages{\n margin: 5px 0 0px !important;\n\n}\n.tablenav.top .displaying-num{\n padding-top: 5px;\n display: inline-block;\n}\n\n.tablenav.bottom{\n.tablenav-pages{\n margin: 5px 0 0px !important;\n}\n}\n\nthead, tfoot{\n background:#fff;\n}\n\n.tablenav.bottom{\n margin-top:8px !important\n}\n\n.widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input {\n margin: 0 0 0 8px !important;\n padding: 0 !important;\n vertical-align: text-top !important;\n}\n\n.row-actions span.delete a{\n color: #ff1010 !important;\n}\n\n#seedprod-giveway-details{\n border-bottom: 1px solid #ddd;\n padding-bottom: 15px;\n margin: 0 0 10px;\n}\n\n#seedprod-settings-nav{\n height: 58px;\n margin-left: -20px;\n border-top:none;\n background: #fff;\n margin-bottom:13px;\n border-radius: 0;\n a{\n height: 58px;\n padding-top: 18px;\n padding-left: 10px;\n padding-right: 10px;\n font-size:14px;\n span{\n padding: 0 10px 24px;\n }\n }\n .active a{\n box-shadow: none !important;\n color: #b3b3b3 !important;\n }\n .router-link-exact-active a{\n color:#222 !important;\n span{\n box-shadow: inset 0 -7px 0 0 #f1470d !important;\n }\n\n }\n\n}\n\n.form-table{\n margin-top:0;\n background-color:transparent !important;\n color: #666;\n tr{\n border-bottom:1px solid #e4e4e4;\n }\n p{\n margin: 8px 0 0;\n }\n label{\n padding-left: 0 !important;\n }\n .help-block{\n padding-top:8px;\n font-style: italic;\n color: #666;\n max-width:600px;\n }\n h4{\n margin-top:0;\n margin-bottom:0;\n font-size: 20px;\n font-weight: 700;\n color: #444;\n }\n strong{\n padding-top: 8px;\n color: #444;\n display:inline-block;\n }\n button{\n font-weight:600 !important;\n }\n .form-control{\n margin-bottom:0 !important;\n margin-right:10px;\n width:400px !important;\n }\n}\n\n.seedprod-settings-title{\n th,td{\n padding:20px 0;\n }\n}\n\n.seedprod-settings-form{\n th,td{\n padding:30px 0;\n }\n}\n\n.seedprod-settings-submit{\n border-bottom:none !important;\n td{\n padding:20px 0;\n }\n}\n\n#seedprod-settings-integrations .seedprod-settings-form{\n td:first-child{\n width:160px\n }\n i{\n display: inline-block;\n margin-left: 10px;\n }\n img{\n background: #fff;\n border: 1px solid #ddd;\n max-width: 90px;\n display: inline;\n margin: 0 0 0 20px;\n }\n}\n\n#seedprod-settings-lite-cta{\n background-color: #fff;\n border: 1px solid #dadada;\n padding: 25px 20px;\n margin: 10px 0 0 0;\n position: relative;\n .dismiss {\n position: absolute;\n top: 10px;\n right: 10px;\n color: #666;\n font-size: 16px;\n }\n h5{\n margin: 0 0 16px;\n font-size: 18px;\n font-weight: 700;\n }\n p{\n color: #555;\n font-size: 14px;\n margin: 0 0 16px;\n }\n a{\n color: #f1470d;\n }\n h6{\n font-weight: 700;\n font-size: 14px;\n margin: 0 0 16px;\n }\n p:last-of-type {\n margin: 0;\n }\n .list {\n margin: 0 0 16px 0;\n overflow: auto;\n max-width: 900px;\n }\n ul {\n margin: 0;\n padding: 0;\n width: 50%;\n float: left;\n }\n li {\n margin: 0;\n padding: 0 0 2px 16px;\n color: #555;\n font-size: 14px;\n position: relative;\n }\n li:before {\n content: '+';\n position: absolute;\n top: -1px;\n left: 0;\n }\n}\n\n\n\n.btn-facebook{\n background: #3C5A99;\n color: #fff;\n border-radius: 4px;\n font-size: 14px;\n padding: 12px 26px;\n line-height: 1 !important;\n border: 0;\n outline: 0;\n cursor: pointer;\n color:#fff !important;\n}\n.btn-facebook.seedprod-highlight-option::before{\n bottom:-13px;\n}\n\n.green{\n color: #218900;\n font-weight: 700;\n}\n\n/* Welcome */\n.seedprod-welcome-video{\n .swal2-popup {\n width: 600px !important;\n max-width:100% !important;\n }\n\n}\n\n.swal2-popup .swal2-styled.swal2-confirm{\n background-color: #DD4A1F !important;\n}\n#seedprod-welcome {\n color: #555;\n padding-top: 110px;\n .btn{\n font-size:15px;\n\n }\n hr{\n width:115px;\n color: #ddd;\n margin-top: 40px;\n margin-bottom: 40px;\n }\n #license-info{\n text-align:center;\n p{\n color: #666;\n font-size: 15px;\n }\n #license-sub{\n font-size:12px;\n a{\n color: #f1470d;\n text-decoration: underline;\n }\n }\n .input-lg{\n min-width: 350px !important;\n height: 42px !important;\n margin-right: 8px;\n }\n .fa-question-circle{\n margin-left:20px;\n color: #999;\n font-size:16px;\n cursor: pointer;\n vertical-align:middle;\n }\n .btn {\n font-size: 14px;\n padding: 10px 30px;\n }\n .form-inline{\n margin-bottom:10px\n }\n\n }\n\n #sub-welcome{\n padding-bottom:50px;\n h6, .btn{\n font-size:15px;\n }\n .button-wrap {\n margin-left:40px;\n margin-right: 40px;\n }\n }\n .btn-default{\n background:#f1f1f1;\n border:1px solid #f1f1f1;\n color:#666;\n }\n .btn-block{\n font-weight: 500;\n }\n .btn-default:hover{\n background:#ddd;\n border:1px solid #f1f1f1;\n }\n .intro {\n background-color: #fff;\n border: 1px solid #ddd;\n border-top: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n border-radius: 2px;\n margin-bottom: 30px;\n position: relative;\n padding-top: 40px;\n border-radius: 7px;\n }\n .button-wrap {\n margin-top: 25px;\n .left {\n float: left;\n width: 50%;\n padding-right: 6px;\n\n }\n .right {\n float: right;\n width: 50%;\n padding-left: 6px;\n\n }\n }\n .welcome-container {\n margin: 0 auto;\n max-width: 676px;\n padding: 0;\n }\n .robbie {\n background-color: #fff;\n border: 2px solid #e1e1e1;\n border-radius: 50%;\n height: 114px;\n width: 114px;\n padding: 12px 14px 0 14px;\n position: absolute;\n top: -58px;\n left: 50%;\n margin-left: -55px;\n }\n img {\n max-width: 100%;\n height: auto;\n }\n .block {\n padding: 40px;\n }\n h1 {\n color: #2d2d2d;\n font-size: 24px;\n text-align: center;\n margin: 0 0 16px 0;\n font-weight: 700;\n }\n h6 {\n font-size: 16px;\n font-weight: 400;\n line-height: 1.6;\n text-align: center;\n margin: 0;\n color:#7c7c7c;\n }\n\n .features {\n background-color: #fff;\n border: 1px solid #ddd;\n border-top: 2px solid #ddd;\n border-bottom: 0;\n\n border-radius: 7px 7px 0 0;\n position: relative;\n padding-top: 10px;\n padding-bottom: 0px;\n margin-bottom:0px;\n .feature-list {\n margin-top: 60px;\n }\n .feature-block {\n float: left;\n width: 50%;\n padding-bottom: 35px;\n overflow: auto;\n\n img {\n float: left;\n max-width: 58px;\n }\n h5 {\n margin-left: 68px;\n margin-top:0;\n color:#2d2d2d;\n }\n p {\n margin: 0;\n margin-left: 68px;\n font-size:12px;\n color:#666;\n }\n }\n .feature-block.first {\n padding-right: 16px;\n clear: both;\n }\n .feature-block.last {\n padding-left: 16px;\n }\n }\n .seedprod-clear:before {\n content: \" \";\n display: table;\n }\n\n .seedprod-clear:after {\n clear: both;\n content: \" \";\n display: table;\n }\n\n .footer {\n background-color: #f7f7f7;\n border: 1px solid #ddd;\n border-bottom: 2px solid #ddd;\n border-radius: 0 0 7px 7px;\n .block {\n padding: 45px 80px;\n }\n .button-wrap{\n margin-top: 0px;\n }\n }\n\n .btn-trans-green {\n background-color: none;\n color: #0f8000;\n }\n\n .underline {\n position: relative;\n }\n\n .btn-trans-green .dashicons {\n height: 18px;\n }\n\n .btn-trans-green .underline:after {\n content: \" \";\n border-bottom: 1px dashed #0f8000;\n position: absolute;\n bottom: -5px;\n left: 0;\n width: 100%;\n }\n\n .testimonial-block {\n margin: 50px 0 0 0;\n color:#666;\n .sig{\n margin-top:35px\n }\n }\n .testimonial-block img {\n border-radius: 50%;\n float: left;\n max-width: 116px;\n }\n\n .testimonial-block p {\n font-size: 15px;\n margin: 0 0 12px 140px;\n }\n\n}\n\n/* About Us */\n\n#seedprod-aboutus{\n .row{\n margin-left:0 !important;\n margin-right:0 !important;\n }\n h2{\n margin-top:0 !important;\n margin-bottom: 24px;\n color: #23282d;\n font-size: 24px;\n }\n h3{\n margin-top:0 !important;\n font-size: 18px;\n margin-bottom: 30px;\n color: #23282C;\n line-height: 1.6;\n }\n p {\n font-size: 16px;\n line-height: 1.52;\n color:#444;\n margin: 1em 0;\n }\n p:last-child {\n margin-bottom: 0;\n }\n figcaption {\n font-size: 14px;\n color: #888888;\n margin-top: 5px;\n text-align: center;\n line-height: initial;\n }\n}\n\n#seedprod-aboutus-section{\n margin-top:20px;\n background:#fff;\n padding: 30px 15px;\n border: 1px solid #DDDDDD;\n\n}\n\n#seedprod-plugin-recommendations{\n margin-top:20px;\n .col-md-4:first-child{\n padding-left:0;\n }\n .col-md-4:nth-child(2){\n padding-left:7px;\n padding-right:7px;\n }\n .col-md-4:last-child{\n padding-right:0;\n }\n}\n\n.seedprod-plugin-recommendations{\n display: flex;\n flex-flow: row wrap;\n justify-content: space-between;\n margin:20px -10px 0 !important;\n li{\n background-color:#fff;\n border: 1px solid #ddd;\n flex: 1;\n margin:0 10px 20px;\n display: flex;\n flex-flow: column ;\n flex-basis:30%;\n }\n .seedprod-plugin-recommendations-block{\n display:flex;\n padding:20px;\n }\n .seedprod-media-img{\n margin-right:20px;\n img{\n border: 1px solid #eee;\n max-width: 75px;\n padding: 13px;\n }\n }\n .seedprod-media-body{\n flex:1;\n h4{\n margin-top:0;\n margin-bottom:16px;\n color:#2d2d2d;\n font-size:16px;\n }\n p{\n font-size:13px !important;\n }\n }\n .seedprod-plugin-install{\n display:flex;\n margin-top: auto;\n background-color: #f7f7f7;\n border-top: 1px solid #ddd;\n padding: 20px;\n justify-content: space-between;\n align-items: center;\n }\n\n}\n\n\n#seedprod-aboutus-getting-started-section{\n margin-top:20px;\n background:#fff;\n padding: 30px 15px;\n border: 1px solid #DDDDDD;\n .embed-responsive{\n border: 1px solid #DDDDDD;\n }\n ul{\n margin-top:20px;\n margin-bottom:0;\n }\n a{\n text-decoration:underline;\n }\n}\n\n#seedprod-aboutus-getting-upsell-section{\n margin-top:20px;\n background:#FAFAFA;\n\n border: 1px solid #DDDDDD;\n font-size: 18px;\n .row:first-child{\n padding: 30px 15px;\n }\n .row:last-child{\n padding: 30px 15px;\n }\n p:last-child{\n margin-top: 15px;\n }\n hr {\n margin:0 30px;\n border: 0;\n border-top: 1px solid #ddd;\n }\n h2{\n font-size: 24px;\n line-height: 1.6;\n margin-bottom: 24px;\n }\n #upsell-features{\n background: #fff;\n border-top: 1px solid #ddd;\n a{\n text-decoration: underline;\n font-weight: 600;\n }\n }\n\n .fa {\n color: #2a9b39;\n margin: 0 8px 0 0;\n font-size:16px;\n }\n li{\n line-height:2;\n font-size:16px;\n color: #444;\n margin-bottom:0;\n\n }\n}\n\n#seedprod-aboutus-getting-started-docs1-section{\n margin-top:20px;\n\n}\n\n.docs-section{\n background:#fff;\n border: 1px solid #DDDDDD;\n padding: 30px;\n line-height: 2;\n img{\n margin-right:20px;\n }\n .media-heading{\n font-size:24px;\n margin-bottom:16px;\n }\n .media-body{\n font-size:16px;\n line-height: 1.5;\n p{\n margin-bottom:30px;\n }\n\n }\n}\n\n#seedprod-aboutus-lite-vs-pro-section{\n margin-top:20px;\n table{\n border: 1px solid #DDDDDD;\n caption{\n background:#fff;\n text-align:center;\n border: 1px solid #DDDDDD;\n border-bottom: 0;\n padding: 30px;\n font-size:16px;\n color:#444;\n h1{\n color: #23282d;\n font-size:23px;\n }\n\n }\n }\n td{\n border: 1px solid #DDDDDD;\n background:#fff;\n padding: 30px;\n vertical-align: top;\n font-size: 16px;\n color:#444;\n width:33.33333%\n }\n th{\n border: 0;\n background:#FAFAFA;\n padding: 30px;\n font-size: 18px;\n color: #23282C;\n }\n tfoot{\n text-align:center;\n a{\n font-size:18px;\n text-decoration: underline;\n font-weight: bold;\n }\n p{\n margin-top:20px;\n }\n }\n\n .features-none{\n padding-left: 30px;\n background-position: 0px 4px;\n background-size: 15px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-none.svg);\n }\n\n .features-partial{\n padding-left: 30px;\n background-position: -3px 0;\n background-size: 23px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-partial.svg);\n }\n\n .features-full{\n padding-left: 30px;\n background-position: 0 6px;\n background-size: 15px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-full.svg);\n }\n\n}\n\n.clearfix{\n opacity: 1 !important;\n\n}\n\n/* Google Charts */\nsvg > g > g:last-child { pointer-events: none }\n\n.seedprod-charts{\n background: #fff;\n border: 1px solid #e7e8e7;\n padding: 40px 0 0;\n min-height: 120px;\n\n}\n\n/* New Builder */\n.sp-btn{\n padding: 11px 15px;\n border-radius: 6px;\n i{ margin-right: 10px;}\n}\n\n#seedprod-builder-view{\n scroll-behavior: smooth;\n}\n\n#sp-revision-history{\n padding: 20px;\n p{\n font-weight: 600;\n font-size: 13px;\n padding: 0px 0 16px 0px;\n }\n .active-current{\n border: 2px solid #dd4a1f;\n }\n .sp-revision-item{\n display: flex;\n align-items: center;\n margin-bottom:10px;\n margin-left: -6px;\n }\n .active.sp-revision-item{\n margin-left: -21px;\n button{\n border: 2px solid #DD4A1F;\n background: #fff;\n }\n }\n .active .sp-revision-item-circle{\n border: 2px solid #dd4a1f;\n width: 10px;\n height: 10px;\n display: inline-block;\n border-radius: 9999px;\n }\n .active .sp-revision-item-line{\n border-bottom: 2px solid #dd4a1f;\n width: 5px;\n display: inline-block;\n }\n button{\n padding-left:16px;\n display: flex;\n align-items: center;\n background: #EDEBED;\n height: 70px;\n width: 100%;\n border-radius: 6px;\n color: #4F394D;\n font-weight: 600;\n font-size: 13px;\n img{\n border: none;\n border-radius: 9999px;\n width:39px;\n height: 39px;\n margin-right:16px;\n }\n .sp-rev-date{\n color: #7b6b7a;\n font-size: 10px;\n }\n }\n button:hover{\n background: #fff;\n }\n\n}\n\n\n\n#sp-revision-timeline{\n margin-top:-3px;\n padding-top: 16px;\n border-left: 2px solid #EDEBED;\n padding-left:15px;\n}\n\n#sp-bottom-nav-actions{\n position: fixed;\n height:53px;\n width:inherit;\n bottom: 0;\n background: #4F394D;\n color: #D3CED2;\n z-index:20;\n font-size: 16px;\n\n}\n\n#sp-bottom-nav-actions button{\n width: 38px;\n height: 38px;\n border-radius: 6px;\n}\n\n#sp-bottom-nav-actions button.active{\n background: #fff !important;\n color: #4f394d !important;\n}\n\n#sp-bottom-nav-actions button:hover{\n color: #fff ;\n background: #392037;\n}\n\n#seedprod-builder-preview{\n margin-left:10px;\n font-size:14px;\n font-weight: 600;\n border:1px solid #a79ca6;\n color: #a79ca6;\n height:40px;\n}\n\n#seedprod-builder-preview:hover{\n border:1px solid #0b6142;\n background: #0b6142;\n color: #fff;\n opacity: 1;\n}\n\n#seedprod-builder-save{\n font-size:14px;\n font-weight: 600;\n border-top-right-radius:0;\n border-bottom-right-radius:0;\n background:#0F8A5E;\n height:40px;\n}\n\n#seedprod-builder-save:hover{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown{\n background:#0F8A5E;\n display:flex;\n height:40px;\n font-size:15px;\n border-left: 1px rgba(0, 0, 0, 0.3) solid;\n border-top-left-radius:0;\n border-bottom-left-radius:0;\n padding-right: 12px;\n padding-left: 12px;\n i{ margin-right: 0px;}\n}\n\n#seedprod-builder-save-dropdown:hover{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown.active{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown-menu{\n background: #fff;\n font-size:14px;\n font-weight:600;\n width: 179px;\n margin-top: 2px;\n z-index: 99999;\n color: #4F394D ;\n border-radius: 6px;\n box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;\n .sp-btn{\n width: 100%;\n text-align:left;\n }\n button:hover{\n color: #0F8A5E;\n background:rgba(15, 138, 94, 0.05);\n }\n button{\n display: flex;\n align-items: center;\n }\n}\n\n\n\n#sp-builder-top{\n background: #230820;\n color: #fff;\n}\n\n#sp-builder-top > div{\n height: 72px;\n}\n\n#sp-builder-top-main-nav-utlity{\n display: flex;\n align-items: center;\n justify-content: flex-end;\n height: 100%;\n}\n\n#sp-builder-top-main-nav{\n height: 100%;\n > div{\n\n display: flex;\n height: 100%;\n align-items: stretch;\n\n }\n a{\n display: flex;\n align-items: center;\n padding:2px 20px;\n font-size: 16px;\n color: #A79CA6;\n font-weight:600;\n }\n a.active{\n font-size: 16px;\n color:#fff;\n box-shadow: inset 0 -3px 0 0 #fff !important;\n }\n a:hover{\n color: #fff;\n }\n}\n\n\n\n.sp-el-toolbar{\n top: -24px;\n left: 0;\n width: inherit;\n justify-content: center;\n}\n\n.sp-el-toolbar-add{\n height: 0px;\n bottom: 0px;\n left: 0;\n width: inherit;\n justify-content: center;\n z-index:100;\n}\n\n.sp-el-toolbar-add > span{\n position: relative;\n top: -11px;\n}\n\n.sp-toolbar-bottom{\n top: 0px;\n\n > div{\n border-top-left-radius: 0px !important;\n border-top-right-radius: 0px !important;\n border-bottom-left-radius: 6px;\n border-bottom-right-radius: 6px;\n }\n\n}\n\n.sp-el-toolbar > div{\n border-top-left-radius: 6px;\n border-top-right-radius: 6px;\n}\n\n.sp-toolbar-left{\n width: 22px;\n height: inherit;\n background: linear-gradient(135deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,#7036BB 50%,#7036BB 100%);\n background-position-y: 2px;\n background-repeat: no-repeat;\n background-position-x: 0px;\n position: relative;\n right: -1px;\n}\n\n.sp-toolbar-bottom{\n .sp-toolbar-left{\n width: 22px;\n height: inherit;\n background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,#7036BB 50%,#7036BB 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: 0px;\n position: relative;\n right: -3px;\n }\n}\n\n.sp-toolbar-right{\n width: 22px;\n height: inherit;\n background: linear-gradient(45deg, #7036BB 0%,#7036BB 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: -1px;\n position: relative;\n left: -1px;\n}\n\n.sp-toolbar-bottom{\n .sp-toolbar-right{\n width: 22px;\n height: inherit;\n background: linear-gradient(135deg, #7036BB 0%,#7036BB 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: -1px;\n position: relative;\n left: -1px;\n }\n}\n\n.color-picker-float{\n position: absolute;\n z-index: 10;\n right: 7px;\n margin-top:5px;\n background:#fff;\n border-radius: 10px;\n padding:16px;\n box-shadow: 0px 15px 50px rgba(81, 75, 104, 0.3);\n\n}\n\n.color-picker-float-overflow{\n //position: absolute;\n z-index: 50;\n left: 20px;\n margin-left:18px;\n margin-top:5px;\n background:#fff;\n border-radius: 10px;\n padding:16px;\n box-shadow: 0px 15px 50px rgba(81, 75, 104, 0.3);\n top:0;\n width: 364px;\n .vc-chrome{\n width:180px\n }\n button{\n box-shadow: 0 0 1px 1px #dedede;\n }\n}\n\n.vc-chrome{\n box-shadow:none !important;\n}\n\n.sp-form-group{\n margin-bottom:10px;\n input[type=text],select{\n width:100%;\n display:block;\n }\n .help_tip i{\n vertical-align: text-top;\n }\n .color-picker-container{\n left:5px;\n }\n .simple-color-picker{\n .sp-cp-label{\n font-weight: 600;\n font-size: 14px;\n }\n }\n .simple-color-picker-container{\n\n .sp-bg-cv-transparent{\n width:105px;\n height:28px;\n border-radius: 20px;\n }\n .current-color{\n width:105px;\n height:28px;\n border-radius: 20px;\n border: 2px solid #FFFFFF;\n }\n }\n .current-color{\n //border:1px solid #DEDADE;\n display: inherit;\n }\n .sp-color-value{\n padding-left:28px;\n }\n // .vc-sketch{\n // position: absolute;\n // z-index: 10;\n // left:20px;\n // }\n .sp-color-value-clear{\n display:inline-block;\n right:7px;\n color: #efefef;\n }\n .sp-btn-primary{\n background-color: #38A169;\n color:#fff;\n padding:10px 10px;\n border-radius:4px;\n line-height: 1;\n cursor: pointer;\n }\n}\n\n.sp-bg-cv-transparent{\n background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0px;\n width: 1.25rem;\n height: 1.25rem;\n border-radius: 9999px;\n}\n\n\n\n .gutter.gutter-horizontal {\n cursor: ew-resize;\n margin-left: -1px !important;\n margin-right: -1px !important;\n min-height:75px;\n }\n\n// .sp-el-row {\n// margin-left: -2px !important;\n// margin-right: -2px !important;\n// }\n\n// .sp-el-col {\n// margin-left: 2px !important;\n// margin-right: 2px !important;\n// }\n\n .sp-btn-group{\n span{\n padding:7px;\n background: #eee;\n width: 50px;\n display:inline-block;\n text-align:center;\n cursor: pointer;\n }\n span.active{\n background: #ccc;\n }\n span:hover{\n background: #ddd;\n }\n span:first-child{\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n span:last-child{\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n }\n\n .mce-i-help{\n display: none !important;\n }\n\n .mce-panel .mce-btn i.mce-caret {\n border-top: 6px solid #7b6b7a;\n margin-left: 2px;\n margin-right: 2px;\n}\n\n.mce-panel .mce-btn i.mce-caret {\n border-top: 6px solid #7b6b7a;\n margin-left: 2px;\n margin-right: 2px;\n}\n\n.mce-panel .mce-btn:focus i.mce-caret, .mce-panel .mce-btn:hover i.mce-caret {\n border-top-color: #ffffff;\n}\n\n\n .mce-tinymce-inline .mce-flow-layout-item .mce-first,.mce-tinymce-inline .mce-flow-layout-item .mce-last{\n pointer-events: none !important;\n }\n\n .sp-section-categories{\n li{\n padding:16px 0;\n color: #7B6B7A;\n font-weight: 600;\n font-size: 16px;\n margin-bottom:0;\n //border-bottom: 1px solid\n box-shadow: inset 0px -1px 0px rgba(167, 156, 166, 0.25);\n }\n .sp-w-4{\n width:24px;\n }\n .sp-h-4{\n height:24px;\n }\n }\n\n.mce-toolbar-grp{\n background: #EDEBED !important;\n border-bottom: 1px solid #EDEBED !important;\n }\n\n .mce-tinymce-inline.mce-panel{\n background: transparent !important;\n box-shadow: none !important;\n }\n.mce-tinymce-inline .mce-toolbar-grp{\n background: #230820 !important;\n border-bottom: 1px solid #230820 !important;\n border-radius: 50px;\n }\n\n .mce-tinymce-inline .mce-btn:hover{\n color: #fff !important;\n background: #230820 !important;\n border-color: #7B6B7A !important;\n box-shadow: none !important;\n .mce-ico{\n color:#fff !important;\n }\n\n }\n\n .mce-tinymce-inline .mce-ico{\ncolor:#7B6B7A !important;\n }\n\n .mce-tinymce-inline .mce-toolbar-grp .mce-active {\n\n background: #230820 !important;\n border-color: #7B6B7A !important;\n\n\n .mce-ico{\n color:#fff !important;\n }\n }\n\n .mce-inline-toolbar-grp{\n background: #230820 !important;\n border-bottom: 1px solid #230820 !important;\n .mce-ico{\n color:#7B6B7A !important;\n }\n .mce-ico:hover{\n color:#fff !important;\n }\n .mce-btn:hover{\n color:#fff !important;\n background: #230820 !important;\n border-color: #7B6B7A !important;\n box-shadow: none !important;\n\n }\n\n .mce-primary{\n color:#fff !important;\n background: #0f8a5e !important;\n border-color: #0f8a5e !important;\n box-shadow: none !important;\n .mce-ico{\n color: #fff !important;\n }\n }\n\n .mce-primary:hover{\n color:#fff !important;\n background: #0b6142 !important;\n border-color: #0b6142 !important;\n box-shadow: none !important;\n .mce-ico{\n color: #fff !important;\n }\n }\n\n div.wp-link-preview a {\n color: #fff !important;\n }\n }\n\n div.mce-inline-toolbar-grp.mce-arrow-up:after {\n border-bottom-color: #230820 !important;\n\n}\n\n\n\n\n.vue-slider-process{\n background-color: #dd4a1f !important;\n}\n\n.vue-slider-dot-tooltip-inner{\n border-color: #dd4a1f !important;\n background-color: #dd4a1f !important;\n}\n\n.seedprod-sidebar-form::-webkit-scrollbar {\n display: none;\n }\n\n\n #wpforms-builder-elementor-popup {\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n padding: 30px;\n z-index: 10000;\n background: rgba( 0, 0, 0, 0.75 );\n}\n\n#wpforms-builder-elementor-popup iframe {\n width: 100%;\n height: 100%;\n background-color: #ffffff;\n}\n\n.fade-enter-active, .fade-leave-active {\n transition: opacity 0.25s ease-out;\n}\n\n.fade-enter, .fade-leave-to {\n opacity: 0;\n}\n\n.sp-preview-hidden {\n display: none !important;\n}\n\n.sp-wp-button {\n display: inline-block;\n padding: .5em .75em;\n font-weight: 600;\n border-radius: 3px;\n\n &-transparent {\n background-color: #7b6b7a;\n border: 1px solid #7b6b7a;\n color: #fff;\n\n &:hover {\n background-color: #4f394d;\n border-color: #4f394d;\n color: #fff;\n }\n }\n}\n\n.loading:after {\n content: ' .';\n animation: dots 1s steps(5, end) infinite;}\n \n @keyframes dots {\n 0%, 20% {\n color: rgba(0,0,0,0);\n text-shadow:\n .25em 0 0 rgba(0,0,0,0),\n .5em 0 0 rgba(0,0,0,0);}\n 40% {\n color: black;\n text-shadow:\n .25em 0 0 rgba(0,0,0,0),\n .5em 0 0 rgba(0,0,0,0);}\n 60% {\n text-shadow:\n .25em 0 0 black,\n .5em 0 0 rgba(0,0,0,0);}\n 80%, 100% {\n text-shadow:\n .25em 0 0 black,\n .5em 0 0 black;}}\n\n"]}
|
1 |
+
{"version":3,"sources":["admin-style.css","admin-style.less"],"names":[],"mappings":"AAAA,YAAY;ACeM;EAAA,gBAAA;CDZjB;AAQD;ECQA,yBAAA;CDbC;ACiBD;;;EAAY,YAAA;CDZX;ACgBD;EACI,uBAAA;CDdH;ACiBiD;;EAC9C,8BAAA;CDdH;ACiBD;EAAA,iBAAA;CDdC;AAUD;;ECOI,oBAAA;CDbH;ACiBD;;;;;EAAA,yBAAA;EAAA,oCAAA;UAAA,4BAAA;CDTC;ACgBD;;;;;EAAA,yBAAA;EAAA,oCAAA;UAAA,4BAAA;CDRC;ACQD;;;;;;;;;;;;;;;;EAAA,sCAAA;UAAA,8BAAA;EAAA,mBAAA;EAAA,0BAAA;EAAA,uBAAA;EAAA,eAAA;CDcC;AAJD;;;;;;;;;;;;;;;;ECLI,sCAAA;UAAA,8BAAA;EACA,mBAAA;EDQI,0BAAA;ECJR,uBAAA;EAAA,eAAA;CD0BC;AC1BD;EAAA,eAAA;CD6BC;AC7BD;EAAA,oBAAA;EAAA,wBAAA;EAEQ,iBAAA;EACA,aAAA;EACA,sBAAA;CDgCP;AAVD;ECZA,YAAA;EACI,oBAAA;EDcA,aAAA;ECXJ,iCAAA;EACI,iBAAA;EACA,eAAA;EACA,gBAAA;CDwBH;AAnBD;ECHI,aAAA;EDaI,mBAAA;ECVR,aAAA;CDwBC;AAxBD;ECGI,mBAAA;EACA,gBAAA;EACA,mBAAA;CDwBH;AA7BD;EAmBQ,oBAAA;ECnBR,uBAAA;CDiCC;AAVD;ECvBA,cAAA;EAcQ,oBAAA;EACA,gBAAA;EACA,eAAA;EDaA,iBAAA;CAWP;AAjBD;ECHQ,YAAA;EDaA,gBAAA;ECVR,oBAAA;CDsBC;AAtBD;ECIQ,0BAAA;EACA,2BAAA;CDqBP;AA1BD;EAiBY,sBAAA;CAYX;AAPD;;ECtBA,yBAAA;CDiCC;AAPD;EC1BA,+BAAA;CDoCC;AAVD;EAGQ,gBAAA;ECPR,mBAAA;EAA6B,oBAAA;CDmB5B;AAND;EACI,8BAAA;ECVJ,+BAAA;CDmBC;AALA;EACG,iCAAA;CAOH;AAJD;EACI,0BAAA;CAMH;AAHD;ECJA,0BAAA;EACI,sBAAA;EDMA,iBAAA;CAKH;AAFD;ECHI,uBAAA;CDQH;AADD;EACI,YAAA;ECDJ,0BAAA;EACI,mBAAA;EACA,kBAAA;EACA,mBAAA;CDKH;AAAD;;ECAA,8BAAA;CDIC;AAAD;;;;;;;;;;;;;;;ECAA,8BAAA;EAAa,wHAAA;UAAA,gHAAA;EAAmB,iBAAA;CDmB/B;AAHD;;;ECdI,0BAAA;EACA,WAAA;CDsBH;ACTkC;EAAmC,uBAAA;EAClE,sBAAA;CDYH;ACRD;;;EACI,aAAA;CDYH;ACRD;EAAiB,aAAA;CDWhB;AAHD;ECJA,aAAA;EACI,oBAAA;CDUH;AAFD;ECHI,aAAA;EDKA,oBAAA;CAIH;AADD;EACI,aAAA;ECDJ,oBAAA;CDKC;AAAD;ECAA,+BAAA;CDGC;ACCD;EACI,+BAAA;CDCH;AAcD;;ECiBI,eAAA;CD3BH;AAcD;EACI,eAAA;ECmBJ,gBAAA;CD9BC;AAgBD;ECcA,6BAAA;EACA,gCAAA;CD3BC;AAiBD;ECsBA,6BAAA;EACI,gCAAA;CDpCH;ACwCD;EAAuC,qBAAA;CDrCtC;AAmBD;;ECwBI,YAAA;EACA,kCAAA;CDvCH;AAcD;;EC2BI,4DAAA;UAAA,oDAAA;EDpBI,qBAAA;CAhBP;AC2CD;EACI,YAAA;EACA,kCAAA;CDzCH;AC6CD;;;EACI,uBAAA;CDzCH;AAsBD;ECsBA,sBAAA;EACI,mBAAA;EACA,qBAAA;EACA,qBAAA;EDpBA,oCAAA;CApBH;AAuBD;ECqB0D,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDvCzD;AAsBD;ECsBI,0BAAA;EACA,iCAAA;EDpBA,YAAA;CApBH;AAuBD;ECqB0D,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDvCzD;AAsBD;ECsBI,0BAAA;EACA,iCAAA;EDpBA,YAAA;CApBH;AAuBD;ECuBI,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDzCH;AAsBD;ECuBwC,0BAAA;EAAkB,iCAAA;EDpBtD,YAAA;CApBH;AAuBD;ECsB0D,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDxCzD;AAsBD;ECuBI,0BAAA;EACA,iCAAA;EDrBA,YAAA;CApBH;AAuBD;ECsB0C,0BAAA;EAAkB,iCAAA;EDnBxD,YAAA;CArBH;AAwBD;ECqBI,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDxCH;AAwBD;ECqB0C,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDxCzC;AC2CD;EACI,0BAAA;EACA,iCAAA;EACA,YAAA;CDzCH;AAwBD;;ECqB0C,qCAAA;EAAA,iBAAA;EAAA,iBAAA;CDvCzC;AC0CD;;EACI,0BAAA;EACA,iCAAA;EACA,YAAA;CDvCH;AC0C+B;EAC5B,qCAAA;EAAA,iBAAA;EAAA,iBAAA;CDtCH;AAqBD;ECoBA,0BAAA;EAAwB,iCAAA;EACpB,YAAA;CDrCH;AAsBD;ECoBA,qCAAA;EAAsB,iBAAA;EAAA,iBAAA;CDrCrB;AAqBD;EACI,0BAAA;ECmBJ,iCAAA;EACI,YAAA;CDrCH;AAsBD;;ECoBA,qCAAA;EAAoB,iBAAA;EAAA,iBAAA;CDpCnB;AAoBD;;EACI,0BAAA;ECmBJ,iCAAA;EACI,YAAA;CDnCH;AAoBD;ECoBA,qCAAA;EAAmB,iBAAA;EAAA,iBAAA;CDnClB;AAmBD;EACI,0BAAA;ECmBJ,iCAAA;EACI,YAAA;CDnCH;AAoBD;ECoBA,qCAAA;EAAc,iBAAA;EAAA,iBAAA;CDnCb;AAmBD;EACI,0BAAA;ECmBJ,iCAAA;EACI,YAAA;CDnCH;AAoBD;ECqBA,qCAAA;EAAqB,iBAAA;EAAA,iBAAA;CDpCpB;AAmBD;EACI,0BAAA;ECoBJ,iCAAA;EACI,YAAA;CDpCH;AAoBD;ECsBA,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDrCC;AAmBD;EACI,0BAAA;ECuBJ,iCAAA;EACI,YAAA;CDvCH;AAqBD;ECyBA,mCAAA;EAAA,iBAAA;EAAA,iBAAA;CDzCC;AC6CD;EAEQ,0BAAA;EDzBJ,iCAAA;ECuBJ,YAAA;CDxCC;ACkDD;EACC,qBAAA;EAAA,qBAAA;EAAA,cAAA;ED3BG,mBAAA;EC8BJ,oBAAA;CDjDC;ACqDD;EACC,uBAAA;ED7BG,cAAA;ECgCJ,kBAAA;EACC,mBAAA;CDpDA;AAyBD;ECkCA,oBAAA;CDxDC;AC4DD;EAEI,kBAAA;CD3DH;ACyDD;EAKI,4BAAA;EDjCI,6DAAA;UAAA,qDAAA;CAzBP;AA6BD;EACC,YAAA;CA3BA;ACkED;EDnCC,aAAA;CA5BA;ACoED;EDpCC,aAAA;CA7BA;AAgCD;EACC,aAAA;CA9BA;AAiCD;ECwCI,mBAAA;CDtEH;AAkCD;ECyCA,kBAAA;CDxEC;AC4ED;EACC,YAAA;EACA,eAAA;EDxCG,gBAAA;EC2CJ,0BAAA;EACI,kBAAA;CD3EH;AC+ED;EACI,YAAA;ED1CA,gBAAA;EC6CF,iBAAA;EACE,UAAA;EACA,mBAAA;CD9EH;AAqCD;EC8CI,sBAAA;EACA,mBAAA;CDhFH;ACoFD;EACI,iBAAA;CDlFH;ACsFD;EACI,0BAAA;EACA,cAAA;CDpFH;ACwFD;EACI,mBAAA;EACA,YAAA;EACA,gBAAA;EACA,yBAAA;UAAA,iBAAA;CDtFH;AAyCD;ECkDI,uBAAA;CDxFH;AA0CD;EACC,iBAAA;EACA,kBAAA;CAxCA;AA2CD;ECoDI,mBAAA;EACA,sBAAA;CD5FH;AA4CD;ECoDI,kBAAA;CD7FH;ACgGG;EDlDA,sBAAA;ECuCJ,mBAAA;CDjFC;ACkGD;EACI,kBAAA;EACA,mBAAA;EACA,WAAA;EACA,UAAA;CDhGH;AA+CD;ECsDI,mBAAA;EACA,eAAA;CDlGH;AAgDD;ECuDI,iBAAA;EACA,UAAA;EACA,gBAAA;CDpGH;AAiDD;ECuDI,eAAA;EACA,sBAAA;EDrDA,kBAAA;ECwDJ,YAAA;CDtGC;AAkDD;ECwDI,0BAAA;EACA,YAAA;CDvGH;AAmDD;ECwDI,sBAAA;EDtDA,mBAAA;CAjDH;AAoDD;EC0DI,iBAAA;EACA,mBAAA;EDxDA,mDAAA;UAAA,2CAAA;EC2DJ,mBAAA;EACI,UAAA;EDzDA,YAAA;EC4DJ,aAAA;EACI,cAAA;EACA,gBAAA;EACA,oBAAA;ED1DA,cAAA;CAlDH;AAuCD;ECyEI,gBAAA;CD7GH;ACkHD;EACI,aAAA;EACA,mBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,UAAA;EACA,oBAAA;EAPJ,6BAAA;EASQ,uDAAA;CDhHP;AAuDD;EC+DI,iBAAA;EACA,mBAAA;ED7DA,mDAAA;UAAA,2CAAA;ECgEJ,mBAAA;EACI,UAAA;EACA,aAAA;EACA,aAAA;ED9DA,gBAAA;ECkEJ,cAAA;CDtHC;AC0HD;EACI,aAAA;EDjEA,mBAAA;ECoEJ,WAAA;EACI,YAAA;EDlEA,SAAA;ECqEJ,UAAA;EACI,oBAAA;EDnEA,6BAAA;ECuEJ,uDAAA;CD5HC;ACgIa;EACV,mBAAA;EDrEA,iBAAA;ECwEJ,mBAAA;EACI,8BAAA;CD/HH;AA2DD;EC0EA,4BAAA;CDlIC;AA4DD;EC0EI,gBAAA;EACA,0BAAA;EACA,6BAAA;CDnIH;AA6DD;EACI,sBAAA;ECyFJ,iBAAA;EAA6B,oBAAA;CDlJ5B;AA8DD;EC0FA,uBAAA;EACI,sBAAA;EDxFA,mBAAA;ECkGJ,gBAAA;EAGQ,iBAAA;EACA,kBAAA;EACA,iCAAA;CD/JP;AAqDD;ECqGA,kBAAA;CDvJC;ACuJD;EAYQ,qCAAA;EDlGJ,iCAAA;ECsFJ,uBAAA;CDlJC;AAgED;ECoGQ,qCAAA;EACA,iCAAA;EACA,uBAAA;CDjKP;AAkED;EC0GI,gBAAA;CDzKH;AAmED;EC0GI,WAAA;CD1KH;AAoED;EC0GI,sBAAA;CD3KH;AAqED;ECyGQ,kBAAA;CD3KP;AAuED;EC4GI,gBAAA;CDhLH;AAwED;;EC4GI,cAAA;CDhLH;ACyKD;EAUQ,yBAAA;EDzGJ,oCAAA;UAAA,4BAAA;CAtEH;AACD,aAAa;AA0Eb;EC6GE,mBAAA;EACA,mBAAA;EACA,YAAA;EACA,aAAA;EACA,mBAAA;EACA,gBAAA;CDpLD;AAwFD;EC+GI,aAAA;CDpMH;ACwMD;;EACI,gBAAA;ED9GA,aAAA;CAtFH;AA0FD;EACI,2BAAA;CAxFH;AAkGD;ECyHI,mBAAA;EACA,iBAAA;EACA,mBAAA;CDxNH;AA6FD;EC8HI,iBAAA;EDrHI,oBAAA;CAlGP;AAyFD;EAYQ,cAAA;CAlGP;AAsFD;EAeQ,YAAA;ECyGR,gBAAA;EAcQ,mBAAA;EACA,UAAA;EDpHA,gBAAA;ECmKR,YAAA;CDpQC;AA0GD;ECoKA,0BAAA;EACI,eAAA;EACA,aAAA;EACA,UAAA;EACA,mBAAA;EACA,UAAA;EACA,UAAA;EACA,YAAA;EDlKA,YAAA;ECqKJ,iBAAA;EACI,mBAAA;CD5QH;AA6FD;ECiLI,uBAAA;EDnKI,YAAA;CAvGP;AA4GD;ECqKI,4CAAA;EACA,gCAAA;EAEA,6BAAA;EDpKA,aAAA;ECuKJ,aAAA;EACI,iBAAA;EDrKA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EC0KJ,yBAAA;MAAA,sBAAA;UAAA,wBAAA;CDnRC;AAkGD;ECmLQ,sBAAA;CDlRP;AA+FD;EAaQ,iBAAA;CAzGP;ACwRD;ED1KA,gBAAA;EACE,aAAA;ECyKF,YAAA;EAAA,iDAAA;EAGQ,6BAAA;EACA,sBAAA;EDxKN,4BAAA;ECoKF,SAAA;CD9QC;AC8QD;EDjKI,gBAAA;ECiKJ,kBAAA;CD1QC;AA8GD;EC4JA,+BAAA;CDvQC;AA+GD;ECwJA,0BAAA;EAoBQ,eAAA;EDzKJ,aAAA;ECqJJ,iBAAA;EAAA,YAAA;EAuBQ,gBAAA;EDxKJ,qBAAA;ECiJJ,sDAAA;UAAA,8CAAA;CD7PC;AAgHD;EC6IA,qCAAA;CD1PC;AAmHD;EC2KQ,oBAAA;EDzKJ,0BAAA;ECqIJ,iBAAA;CDrPC;AA8GD;EAMQ,kBAAA;EC6KR,mBAAA;EACI,uBAAA;CD7RH;AAqHD;EC6KQ,oBAAA;EACA,0BAAA;EACA,wDAAA;UAAA,gDAAA;EACA,iBAAA;CD/RP;AAuHD;EC6KQ,aAAA;ED3KJ,iBAAA;EC6JJ,qBAAA;EAkBQ,eAAA;ED5KJ,iBAAA;EC0JJ,6DAAA;UAAA,qDAAA;CD9QC;AA+GD;EAQQ,mBAAA;CApHP;AA4GD;EAWQ,kBAAA;CApHP;AAyGD;ECiMC,yBAAA;EACA,eAAA;CDvSA;AAmKD;ECyMI,uBAAA;EACA,aAAA;EACA,WAAA;EACA,mBAAA;EACA,mBAAA;EACA,SAAA;EDvMA,OAAA;CAjKH;AAoKD;EC6MA,oBAAA;EACC,gBAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;ED3MG,gBAAA;EC8MJ,YAAA;CD/WC;AAqKD;EC8MA,WAAA;EACA,aAAA;ED5MI,iBAAA;CAnKH;AAsKD;;EC+MA,mBAAA;ED7MI,aAAA;ECgNJ,aAAA;EACI,YAAA;EACA,mBAAA;EAEA,oBAAA;CDnXH;AAuKD;ECwMA,oBAAA;CD5WC;AC4WD;EAaQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,wBAAA;ED7MA,oBAAA;CAxKP;AA2KD;ECkNA,gBAAA;CD1XC;AA4KD;ECmNA,eAAA;CD5XC;AAyKD;;EAGQ,2BAAA;ECoNR,iBAAA;CD3XC;AAoKD;EC0NI,oBAAA;CD3XH;AAiKD;ECuNA,kBAAA;EAOQ,gBAAA;EACA,oBAAA;CD3XP;AA4JD;EAgBQ,iBAAA;ECuMR,oBAAA;CD/WC;AAwJD;EAoBQ,eAAA;CAzKP;AAqJD;;ECyOQ,aAAA;CD1XP;AAiJD;ECuNA,oBAAA;EAuBQ,sBAAA;CD3XP;AA6ID;ECgPQ,eAAA;CD1XP;AA0ID;ECuNA,uBAAA;EAgCQ,2BAAA;EACA,gBAAA;CD7XP;AAqID;ECuNA,0BAAA;EAAA,2BAAA;CDxVC;AA6KD;EC2KA,kBAAA;EA0CQ,iBAAA;CD9XP;AAyKD;EC6NA,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACC,0BAAA;MAAA,uBAAA;UAAA,+BAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACG,mBAAA;EDvNI,eAAA;EC0NR,YAAA;EACI,iBAAA;EDxNI,iBAAA;EC2NR,gBAAA;EACI,iCAAA;CDrYH;AA6JD;EC6OA,0BAAA;CDvYC;AA0JD;EAuBQ,eAAA;CA9KP;ACkZe;EACf,WAAA;CDhZA;AAoLD;EACC,OAAA;ECkOD,QAAA;EDhOC,aAAA;EACA,YAAA;ECuOD,oBAAA;EACC,YAAA;CDxZA;AAsLD;ECyOA,kBAAA;EACI,aAAA;CD5ZH;AAuLD;EC0OA,mBAAA;EACI,aAAA;CD9ZH;AAwLD;EACI,eAAA;EC4OJ,mBAAA;EACI,gBAAA;ED1OA,kBAAA;CAtLH;AAkLD;ECiPU,kBAAA;EACN,eAAA;CDhaH;AAwLD;ECgPA,YAAA;CDraC;AC8aD;EAAoB,iBAAA;CD3anB;ACkbD;EACI,YAAA;ED/OA,cAAA;CAhMH;AAqMD;EACC,4BAAA;EACA,iBAAA;EACA,aAAA;CAnMA;AAsMD;EACC,iBAAA;EACA,iBAAA;ECqPD,aAAA;CDxbC;AC6bD;EACI,mBAAA;EAAoC,kBAAA;EAAkB,gBAAA;EACtD,YAAA;EACA,aAAA;EACA,eAAA;EACA,qBAAA;EACA,qBAAA;EAAA,qBAAA;EAAA,cAAA;EDjPA,yBAAA;MAAA,sBAAA;UAAA,wBAAA;ECyPJ,0BAAA;MAAA,uBAAA;UAAA,oBAAA;CD/bC;AAyMD;EC6PA,YAAA;CDncC;AA6MD;ECiQA,YAAA;ED/PC,aAAA;EACA,kBAAA;EACA,mBAAA;CA3MA;AA8MD;EACA,gBAAA;EACA,iBAAA;ECmQA,iBAAA;EDjQA,oBAAA;EACA,eAAA;CA5MC;ACwdD;EDxQA,eAAA;EACA,gBAAA;EC2QA,oBAAA;CDvdC;AAgND;EC4QA,cAAA;EACC,iBAAA;ED1QG,0BAAA;EC6QJ,mBAAA;EACC,gBAAA;ED3QG,oBAAA;CA9MH;AAwMD;ECqRC,cAAA;ED5QO,oBAAA;EC+QR,gBAAA;CD3dC;AAmMD;EC4RA,UAAA;EACI,gBAAA;ED9QI,eAAA;CA7MP;AAiND;EC2RI,mBAAA;CDzeH;AAkND;EC2RI,mBAAA;EACA,kBAAA;CD1eH;AAmND;EC4RI,kBAAA;CD5eH;AAoND;EACI,mBAAA;ECgSJ,iBAAA;EACI,0BAAA;EACA,mBAAA;EACA,cAAA;CDjfH;AA6MD;ECsSI,gBAAA;EACA,eAAA;ED9RI,mBAAA;ECmSR,iBAAA;CDnfC;AAuMD;ECgTA,UAAA;EACI,kBAAA;CDpfH;AAmMD;ECqTI,YAAA;EDnSI,gBAAA;ECsSR,oBAAA;CDtfC;AA8LD;EAuBQ,sBAAA;ECuSR,YAAA;EACI,gBAAA;CDxfH;AAyLD;ECmUI,YAAA;CDzfH;AAsLD;EAgCQ,oBAAA;ECySR,gBAAA;CD3fC;AAkLD;;EC4UI,aAAA;CD1fH;AA8KD;ECiVA,aAAA;CD5fC;AA2KD;ECoVI,aAAA;EACA,iBAAA;CD5fH;AAyND;EC6SA,gBAAA;ED3SC,mBAAA;EC6SG,iCAAA;CDngBH;AA0ND;EC6SwC,YAAA;CDpgBvC;AA2ND;EACI,eAAA;EC8SJ,iBAAA;EACI,gBAAA;CDtgBH;AA4ND;EC4SI,gBAAA;CDrgBH;AA+ND;EACC,iCAAA;EAAA,yBAAA;CA7NA;AAgOD;EACC,WAAA;CA9NA;AC8gBD;;ED5SC,WAAA;CA9NA;AC8gBsB;ED5StB,+BAAA;EAAA,uBAAA;CA/NA;AC+gBqB;ED5SrB,WAAA;CAhOA;AAuOD;EACC,gBAAA;CArOA;AAwOD;ECgTA,oBAAA;CDrhBC;AAyOD;ECgTA,oBAAA;EAEQ,iBAAA;EACA,wBAAA;CDvhBP;AA0OD;ECiTQ,sBAAA;CDxhBP;AA2OD;EACI,gBAAA;CAzOH;AA4OD;ECgTQ,aAAA;CDzhBP;AA6OD;ECkTA,oBAAA;CD5hBC;AA8OD;ECoTQ,wBAAA;CD/hBP;ACgjBD;EACI,mBAAA;CD9iBH;AAiPD;ECiUI,uBAAA;EACA,wBAAA;CD/iBH;AAkPD;;;ECiUI,uBAAA;CD9iBH;ACijBC;EACE,aAAA;CD/iBH;AAiPD;ECmUI,uBAAA;CDjjBH;AAkPD;ECoUI,kBAAA;CDnjBH;AAoPD;ECoUI,uBAAA;EACA,wDAAA;UAAA,gDAAA;EACA,aAAA;EACA,mBAAA;EDlUA,kBAAA;ECwTF,gBAAA;EAYM,YAAA;EDjUJ,eAAA;CAlPH;AAqPD;;EACI,oBAAA;ECiTF,YAAA;CDliBD;AAqPD;ECqUE,mCAAA;EAAuB,iBAAA;EAAA,iBAAA;EACrB,eAAA;EDnUA,mBAAA;ECsUF,YAAA;EACE,UAAA;EDpUA,gBAAA;CAjPH;AAyPD;EACK,yBAAA;KAAA,sBAAA;UAAA,iBAAA;CAvPJ;AA6PD;ECwUI,0BAAA;CDlkBH;AA8PD;ECwUI,YAAA;EACA,qCAAA;CDnkBH;AAiQD;ECwUI,mBAAA;EACA,sBAAA;CDtkBH;AAkQD;ECyUI,mBAAA;EDvUA,SAAA;EC0UJ,YAAA;CDzkBC;AC6kBD;EACI,gBAAA;EACA,kBAAA;CD3kBH;AACD,2BAA2B;AA0Q3B;EACC,aAAA;CAxQA;AA2QD;EACC,iBAAA;EACA,kBAAA;CAzQA;AA4QD;EACC,cAAA;CA1QA;AA6QD;EACC,mBAAA;CA3QA;AA8QD;EACC,oBAAA;CA5QA;AA+QD;EC8UA,aAAA;CD1lBC;AC8lBD;EACI,cAAA;CD5lBH;AA2RD;ECgVI,gBAAA;EACA,cAAA;EACA,OAAA;EACA,QAAA;EACA,YAAA;EACA,aAAA;EACA,qCAAA;EACA,eAAA;EACA,sCAAA;EAAA,8BAAA;CDxmBH;AA4RD;ECqVA,oBAAA;EACI,uBAAA;CD9mBH;ACsnBD;EACI,cAAA;CDpnBH;AAgSD;ECyVI,gBAAA;EDvVA,cAAA;ECqVJ,UAAA;EAIG,WAAA;EACA,iBAAA;EACC,eAAA;CDrnBH;AAmSD;EC0VI,eAAA;CD1nBH;AAoSD;EC0VI,WAAA;CD3nBH;AAqSD;EACI,WAAA;CAnSH;AAsSD;;ECkWI,8BAAA;ED/VA,sBAAA;CApSH;AAuSD;ECmWA,iBAAA;EACI,kBAAA;EDjWA,mBAAA;ECoWJ,iBAAA;EACI,aAAA;EACA,gBAAA;EACA,YAAA;CDxoBH;AAySD;ECqWI,iBAAA;EACA,aAAA;EDnWA,gBAAA;ECsWJ,YAAA;CD5oBC;AA2SD;;ECwWA,4BAAA;EACI,uBAAA;EACA,iCAAA;EACA,kBAAA;EACA,mBAAA;CD/oBH;AA6SD;;ECyWA,gBAAA;CDlpBC;AA6SD;ECyWA,mBAAA;EACI,oBAAA;CDnpBH;AA8SD;EACI,mCAAA;EAAoC,iBAAA;EAAkB,iBAAA;ECuW1D,aAAA;EAAA,eAAA;CD/oBC;AA8SD;EACI,mCAAA;EAAoC,iBAAA;EAAkB,iBAAA;EC+W1D,aAAA;EACI,eAAA;CDxpBH;AA6SD;;;ECiXI,uBAAA;CDzpBH;AA4SD;ECoXI,oBAAA;EACA,iBAAA;EDjXA,wBAAA;ECoXJ,iBAAA;CD9pBC;AA8SD;ECqXA,YAAA;CDhqBC;AA+SD;;ECsXA,gBAAA;CDjqBC;AA+SD;;ECsXI,qBAAA;EAAA,aAAA;CDjqBH;AA+SD;;EC8WA,yBAAA;EAAA,iBAAA;CDzpBC;ACqqBD;EACI,mBAAA;EACA,mBAAA;EACA,mBAAA;EDrXA,aAAA;CA7SH;AAgTD;;EC2XI,kCAAA;CDvqBH;AAgTD;EC4XE,mBAAA;EDzXM,QAAA;EC2XR,aAAA;EACI,iBAAA;EACA,mBAAA;EACA,oBAAA;EACA,YAAA;EDzXI,4BAAA;EC4XR,+BAAA;CD1qBC;AAqSD;;EAaQ,mBAAA;ECwXR,YAAA;EAIQ,eAAA;EDzXA,UAAA;CA9SP;AAkTD;EAGQ,eAAA;ECsXR,iBAAA;EAOQ,gBAAA;ED1XA,iBAAA;EC8XR,gBAAA;CD/qBC;AACD,kBAAkB;AAiUlB;EACI,2BAAA;EC4WJ,0BAAA;EAkBQ,oBAAA;ED3XJ,sBAAA;ECyWJ,uBAAA;EAqBQ,qBAAA;EACA,4BAAA;ED3XJ,mDAAA;UAAA,2CAAA;EC+XJ,gCAAA;EAAA,gCAAA;EAAA,yBAAA;EACI,sCAAA;EAAA,8BAAA;CD7rBH;AAkUC;EC+XF,gCAAA;EAAA,gCAAA;EAAA,yBAAA;EACI,wBAAA;EAIJ,uBAAA;EACI,mBAAA;EACA,oBAAA;CDjsBH;ACosBG;ED/XA,aAAA;ECkYJ,0BAAA;EACI,+BAAA;MAAA,uBAAA;UAAA,mBAAA;EACA,uBAAA;EACA,mBAAA;EDhYA,YAAA;ECoYJ,uBAAA;EACI,oBAAA;EACA,mDAAA;UAAA,2CAAA;EDlYA,kCAAA;EAAA,0BAAA;CAlUH;ACwrBG;EAgBA,UAAA;CDrsBH;ACqrBG;EAmBA,6BAAA;EACA,gCAAA;CDrsBH;ACirBG;ED7WI,8BAAA;EC4XR,iCAAA;CD5rBC;ACwsBO;EACR,cAAA;CDtsBC;AC2sBG;EACA,eAAA;CDzsBH;AC6sBG;;EDrYA,WAAA;CApUH;AAuUC;;EC0YE,8BAAA;EDvYA,sBAAA;CArUH;ACitBG;;EACA,gBAAA;CD9sBH;AAwUD;ECyYQ,mBAAA;EACA,aAAA;EACA,iBAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EDvYJ,YAAA;EC4XJ,0BAAA;EAeQ,iCAAA;EAGA,yBAAA;EACA,qCAAA;EDxYJ,4CAAA;CAtUH;AAyUD;EC6YQ,eAAA;EACA,qCAAA;CDntBP;AA0UD;EACI,kBAAA;CAxUH;AA2UD;ECgYA,gBAAA;EAeQ,WAAA;EACA,SAAA;ED5YJ,UAAA;ECiZJ,iBAAA;EACI,cAAA;EACA,aAAA;CDztBH;AC6tBD;EACI,mBAAA;EACA,WAAA;EACA,aAAA;EACA,cAAA;EACA,aAAA;EACA,aAAA;EACA,gBAAA;EACA,iBAAA;EDhZA,YAAA;ECwYJ,0BAAA;EAWQ,kBAAA;EACA,kBAAA;EDhZJ,kCAAA;UAAA,0BAAA;ECoYJ,gBAAA;EAeQ,eAAA;EACA,oBAAA;EACA,+CAAA;UAAA,uCAAA;CD3tBP;AA6UD;ECkZQ,iCAAA;UAAA,yBAAA;EACA,mBAAA;EDhZJ,aAAA;EC0XJ,YAAA;CDpsBC;AA8UD;EACI,cAAA;CA5UH;AA+UD;ECwZI,mBAAA;EACA,WAAA;EACA,SAAA;EACA,WAAA;EACA,iBAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;CDpuBH;AC0uBD;EACI,eAAA;EACA,iBAAA;EDzZA,YAAA;EC4ZJ,0BAAA;EACI,mBAAA;EACA,kBAAA;ED1ZA,iCAAA;UAAA,yBAAA;EC6ZJ,aAAA;EACI,eAAA;ED3ZA,oBAAA;EC+ZJ,wFAAA;EAAA,sDAAA;EACI,yCAAA;UAAA,iCAAA;EACA,mBAAA;EACA,UAAA;EACA,aAAA;CD5uBH;AAqVD;EACI,gBAAA;CAnVH;AAsVD;ECgaI,gBAAA;CDnvBH;AAwVD;ECgaI,iCAAA;CDrvBH;AAyVD;EACI,oBAAA;ECkaJ,mBAAA;CDxvBC;AAqVD;ECqaI,oBAAA;EACA,UAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;CDvvBH;AA0VD;ECkaI,qDAAA;EACA,iDAAA;EDhaA,6BAAA;ECmaH,uBAAA;EACG,gCAAA;EACA,kBAAA;CD1vBH;AA4VD;EACA,aAAA;CA1VC;AAgWD;ECoaA,sBAAA;CDjwBC;ACqwBD;EACI,cAAA;CDnwBH;AAkWD;ECuaI,cAAA;CDtwBH;AAmWD;ECuaI,YAAA;CDvwBH;AAoWD;ECuaI,+7BAAA;EDraA,wCAAA;ECwaJ,8CAAA;EACI,aAAA;CDzwBH;AAqWD;EACI,o7BAAA;EC4aJ,6BAAA;EACI,mCAAA;CD9wBH;AAsWD;EC8aI,+7BAAA;EACA,wCAAA;ED5aA,+CAAA;EC+aJ,aAAA;CDlxBC;AAuWD;EACI,+7BAAA;ECgbJ,wCAAA;EACI,8CAAA;EACA,aAAA;CDpxBH;ACuxB6B;EAC1B,6BAAA;CDrxBH;AC0xBD;;EAAoB,gBAAA;CDtxBnB;AAyWD;ECgbI,uBAAA;CDtxBH;AC0xBD;ED9aI,yBAAA;CAzWH;ACuxBD;;EAQA,uBAAA;CD3xBC;ACmxBD;EDraI,uBAAA;CA3WH;AA+WD;EACI,cAAA;CA7WH;AAiXD;EACI,+BAAA;ECwbJ,gBAAA;EAIA,OAAA;EACI,QAAA;EDvbA,eAAA;EC0bJ,eAAA;EACI,YAAA;EDxbA,aAAA;CAjXH;AAoXD;EC4bI,mBAAA;EACA,YAAA;CD7yBH;AAqXD;EC6bA,oBAAA;EACI,uBAAA;CD/yBH;AAsXD;EC6bI,uBAAA;EACA,mBAAA;ED3bA,iBAAA;EC8bJ,aAAA;EACI,cAAA;EACA,mBAAA;CDjzBH;AA8WD;EAQQ,0BAAA;CAnXP;AAuXD;ECkcA,iCAAA;EACI,iBAAA;EDhcA,sBAAA;CArXH;AACD,qBAAqB;AC8zBrB;EAKA,iBAAA;EACI,aAAA;EDtcA,mBAAA;ECqcJ,mBAAA;EAGQ,eAAA;EDrcN,0BAAA;ECycF,wHAAA;UAAA,gHAAA;CDj0BC;AA2XD;EC0cA,oBAAA;EACI,uBAAA;EACA,eAAA;EACA,aAAA;CDl0BH;AA4XD;EC4cI,mBAAA;EACA,gBAAA;CDr0BH;AAwXD;ECgdA,0BAAA;CDr0BC;AC20BD;EACI,sBAAA;ED7cA,eAAA;CA3XH;ACu0BD;EAIkC,gBAAA;CDx0BjC;ACo0BD;EAIoI,oBAAA;CDr0BnI;ACq0BqR;EAAyC,kBAAA;EAC3T,gBAAA;EDrcA,YAAA;CA5XH;ACg0BqR;EAQtR,YAAA;EACI,0BAAA;EACA,sBAAA;CDr0BH;AC2zBqR;EAelR,aAAA;EACA,kBAAA;EACA,aAAA;CDv0BH;ACszBqR;EAoBlR,kBAAA;CDv0BH;ACmzBqR;EAuBlR,YAAA;CDv0BH;ACgzBqR;EA2BpR,iBAAA;EACE,gBAAA;CDx0BH;AA+XD;EC8cI,iBAAA;ED5cA,iCAAA;EC+dF,aAAA;CD31BD;AA+XD;ECgeE,gCAAA;CD51BD;AAiYD;ECgeI,gBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;ED9dA,sBAAA;CA/XH;AAkYD;ECkeE,gBAAA;EACE,eAAA;EACA,eAAA;CDj2BH;AAoYD;ECkeI,oBAAA;EACA,mBAAA;CDn2BH;AAqYD;EACI,oBAAA;ECoeF,YAAA;EACE,aAAA;EACA,eAAA;EACA,iBAAA;EDleJ,gBAAA;EACA,2BAAA;CAnYC;AA4XD;EC4eI,eAAA;EACA,aAAA;EDleI,0BAAA;ECqeN,iBAAA;EDneF,gBAAA;CAlYC;AAsYD;ECseI,+BAAA;EACA,0BAAA;CDz2BH;AAuYD;ECseI,+BAAA;CD12BH;AAwYD;ECueI,+BAAA;CD52BH;ACg3BC;EACE,yBAAA;CD92BH;AA0YD;ECyeE,oBAAA;EACE,mBAAA;EDveA,oBAAA;CAxYH;AAqYD;EC8eM,qBAAA;EAAA,qBAAA;EAAA,cAAA;EDxeE,kBAAA;EC6eN,qBAAA;EACE,yBAAA;MAAA,sBAAA;UAAA,wBAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;ED3eI,iBAAA;ECyeN,gBAAA;CD/2BD;AA4XD;EC0fQ,kBAAA;CDn3BP;AAyXD;EAkBQ,oBAAA;EC+eN,eAAA;CDt3BD;AA4YD;EAEQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;ECifN,kBAAA;EACE,qBAAA;ED/eI,yBAAA;MAAA,sBAAA;UAAA,wBAAA;ECkfN,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EAEM,iBAAA;EDjfA,gBAAA;CA3YP;AAmYD;ECmgBE,kBAAA;CDn4BD;AAgYD;ECugBE,oBAAA;EAEQ,eAAA;CDr4BT;AAiZD;EACI,oBAAA;ECifF,mBAAA;EAWM,YAAA;CDz4BP;AAkZD;EACI,oBAAA;EC0fF,YAAA;EAMM,aAAA;EACA,mBAAA;ED7fJ,kBAAA;ECsfF,qBAAA;EAAA,qBAAA;EAAA,cAAA;EAWM,yBAAA;MAAA,sBAAA;UAAA,wBAAA;EACA,mBAAA;CD/4BP;AAwYD;EAWQ,iBAAA;ECgfN,2BAAA;CD/3BD;AAoYD;EAeQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;EC4eN,6BAAA;EAAA,8BAAA;MAAA,2BAAA;UAAA,uBAAA;EAqBQ,gBAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,wBAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,YAAA;ED9fF,aAAA;ECseN,aAAA;CDr3BD;AA0XD;EA0BQ,oBAAA;MAAA,YAAA;UAAA,QAAA;ECieN,qBAAA;EAAA,qBAAA;EAAA,cAAA;EAiCQ,0BAAA;MAAA,uBAAA;UAAA,oBAAA;CDj5BT;AAwZD;ECigBU,iBAAA;ED/fN,8BAAA;ECsdF,eAAA;EA4CM,mBAAA;EACA,gBAAA;EACA,oBAAA;EACA,aAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;ED/fJ,gBAAA;CAtZH;AC85BC;EACI,aAAA;EACA,mBAAA;CD55BL;AA4ZD;EACI,YAAA;ECygBF,aAAA;CDl6BD;AA6ZD;EC0gBE,YAAA;CDp6BD;AA+ZD;EC2gBI,oBAAA;EACA,0BAAA;EACA,eAAA;EACA,iBAAA;EACA,YAAA;EDzgBA,oBAAA;EC4gBF,mBAAA;EACE,4BAAA;EACA,+BAAA;EACA,mBAAA;EACA,mBAAA;CDx6BH;AAgaD;EC6gBI,oBAAA;EACI,0BAAA;ED3gBJ,eAAA;EC8gBF,mBAAA;EACE,gBAAA;ED5gBA,YAAA;EC0hBJ,oBAAA;EACA,mBAAA;CDv7BC;AAiaD;EC0hBI,YAAA;CDx7BH;AAkaD;EACI,0BAAA;EACA,eAAA;EC2hBJ,aAAA;EAAA,iBAAA;EAAA,YAAA;EAEQ,aAAA;EDxhBJ,YAAA;EC8hBF,mBAAA;EAA6B,SAAA;EAC3B,oCAAA;UAAA,4BAAA;EACA,gBAAA;EACA,mBAAA;CD57BH;ACi8BD;EACI,0BAAA;ED7hBA,aAAA;ECgiBJ,kBAAA;EACI,iBAAA;EACA,YAAA;EACA,aAAA;EACA,WAAA;EACA,mBAAA;EACA,SAAA;EACA,oCAAA;UAAA,4BAAA;EACA,gBAAA;EACA,mBAAA;CDh8BH;AAoaD;ECiiBA,oCAAA;CDl8BC;ACs8BD;EACI,YAAA;CDp8BH;AAuaD;ECmiBI,oBAAA;EACA,0BAAA;EACA,eAAA;EACA,gBAAA;EACA,YAAA;EACA,oBAAA;EACA,mBAAA;EACA,6BAAA;EDjiBA,gCAAA;ECoiBJ,mBAAA;CDx8BC;AAwaD;ECoiBI,+BAAA;CDz8BH;AA0aD;ECuiBI,iCAAA;CD98BH;ACs9BD;EACI,gBAAA;CDp9BH;AA8aD;EACI,qBAAA;EAAA,qBAAA;EAAA,cAAA;EC6iBJ,sBAAA;EACI,oBAAA;MAAA,gBAAA;CDx9BH;AA+aD;;EC8iBI,eAAA;EACA,gBAAA;CDz9BH;AAgbD;EC+iBI,WAAA;ED7iBA,iBAAA;CA9aH;AAibD;;ECgjBI,gBAAA;EACA,iBAAA;CD79BH;AAkbD;;;ECijBY,mBAAA;ED/iBR,eAAA;EACA,YAAA;ECkjBF,iBAAA;CD/9BD;AAibD;ECkjBI,gBAAA;CDh+BH;ACo+BC;EACE,mCAAA;CDl+BH;AAmbD;ECmjBI,mCAAA;CDn+BH;AAobD;ECqjBY,oDAAA;UAAA,4CAAA;CDt+BX;AAqbD;ECsjBI,sDAAA;UAAA,8CAAA;EDpjBA,WAAA;ECujBF,YAAA;CDz+BD;AAsbD;ECwjBE,gDAAA;UAAA,wCAAA;EACE,WAAA;EAAO,YAAA;CD1+BV;AAwbD;EACI,gDAAA;CAtbH;AAybD;EACI,sDAAA;CAvbH;AA0bD;EACI,8BAAA;CAxbH;AC6+BC;EAAmC,UAAA;EACjC,iBAAA;EACA,oBAAA;EACA,gBAAA;EACA,eAAA;EACA,iBAAA;CD1+BH;AA6bD;EACI,UAAA;ECmjBJ,gBAAA;EACI,oBAAA;EACA,gBAAA;EDjjBA,iBAAA;ECojBJ,YAAA;CD9+BC;ACo/BD;EAAO,YAAA;EACH,uBAAA;EDpjBA,mBAAA;CA5bH;ACu/BkB;EAAyB,4BAAA;EAAyB,6BAAA;CDn/BpE;AAkcD;EACI,8BAAA;CAhcH;AAmcD;ECujBA,gBAAA;EAGQ,iEAAA;UAAA,yDAAA;CDz/BP;AAscD;ECwjBI,kBAAA;CD3/BH;AAwcD;EACI,gCAAA;EAAA,gCAAA;EAAA,yBAAA;CAtcH;AAqcD;ECyjBQ,iCAAA;CD3/BP;AAycD;EACI,kBAAA;CAvcH;AA0cD;ECsiBA,qCAAA;EAkBQ,uBAAA;EACA,oCAAA;UAAA,4BAAA;CD9/BP;AA4cD;EC+hBA,yBAAA;EAwBY,2BAAA;EDpjBR,+BAAA;CA1cH;AA6cD;EC2jBI,iBAAA;EDzjBA,oBAAA;CA3cH;ACigCD;EAQQ,kDAAA;UAAA,0CAAA;CDtgCP;AAgdD;;;;;;;;;;EACI,eAAA;CArcH;AACD,eAAe;ACi/Bf;EAoBQ,0BAAA;EACA,eAAA;CDlgCP;AA6cC;ECgiBF,gBAAA;EA2BQ,oBAAA;EACA,YAAA;EACA,mBAAA;EDxjBJ,sBAAA;EC2hBJ,0BAAA;EAgCQ,+CAAA;UAAA,uCAAA;EDxjBJ,iBAAA;ECwhBJ,YAAA;EAmCQ,sBAAA;CDpgCP;AA8cC;EC4jBF,SAAA;EAAA,UAAA;EAEI,oBAAA;ED1jBA,mBAAA;EC8jBJ,YAAA;EAAA,sBAAA;CDxgCC;ACgiCO;EACA,mBAAA;CD9hCP;ACmiCD;EACI,4BAAA;EACA,0CAAA;EACA,2CAAA;EACA,4CAAA;EACA,aAAA;EDlkBA,sBAAA;EC6jBJ,cAAA;EAOQ,iBAAA;CDhiCP;ACmiCO;EACA,gBAAA;CDjiCP;ACoiCO;EACA,4BAAA;EACA,0CAAA;EDjkBJ,2CAAA;ECijBJ,yCAAA;EAmBQ,UAAA;EACJ,sBAAA;EACA,cAAA;EDjkBA,iBAAA;CAheH;AAmeC;ECyiBF,iBAAA;CDzgCC;ACsiCO;EDjkBJ,4BAAA;ECoiBJ,0CAAA;EAgCQ,yCAAA;EDjkBJ,4CAAA;ECiiBJ,WAAA;EAmCQ,qBAAA;EACA,eAAA;EACA,gBAAA;CDpiCP;ACuiCO;EACA,kBAAA;CDriCP;AAseC;ECshBF,4BAAA;EA8CQ,yCAAA;EACA,2CAAA;EACA,4CAAA;EACA,YAAA;EACA,qBAAA;EDjkBJ,eAAA;EC+gBJ,gBAAA;CDl/BC;ACyiCO;EACA,mBAAA;EDjkBJ,WAAA;ECukBJ,oDAAA;EAAA,4CAAA;CD3iCC;AC8iCG;EACA,oBAAA;EACA,WAAA;EACA,kCAAA;EAAA,0BAAA;CD5iCH;AC+iCG;EACA,0BAAA;CD7iCH;ACgjCG;EDrkBE,yBAAA;UAAA,iBAAA;CAxeL;AA6eC;ECykBF,8BAAA;EAEQ,wBAAA;CDpjCP;AAyeC;EAIM,yBAAA;CA1eP;AAseC;EAOM,mBAAA;EC6kBR,gBAAA;EACI,YAAA;CDtjCH;AA+eC;ECskBF,qBAAA;CDljCC;AC4jCO;EACJ,iEAAA;UAAA,yDAAA;ED3kBA,8BAAA;CA9eH;AAifC;EC6jBF,qBAAA;CD3iCC;AAkfC;EC6kBU,qBAAA;CD5jCX;AC+jCe;EAvBhB,qCAAA;CDriCC;AAwfC;EC6iBF,oCAAA;UAAA,4BAAA;CDliCC;ACokCW;EAEA,YAAA;ED1kBF,aAAA;ECsiBV,6BAAA;CD7hCC;AC+jCW;EAlCZ,aAAA;CD1hCC;AC4jCW;EAlCZ,2BAAA;CDvhCC;ACuhCD;EDxhBQ,aAAA;CA5fP;ACohCD;EDphBQ,YAAA;ECohBR,aAAA;CDhhCC;ACghCD;ED/gBQ,eAAA;EC+gBR,0BAAA;EAgEQ,2BAAA;ED5kBA,mCAAA;CA9fP;AC0gCD;EAoEQ,qCAAA;ED5kBA,oCAAA;UAAA,4BAAA;CA9fP;ACsgCD;EAwEQ,uBAAA;EACA,2BAAA;EACA,4BAAA;EACA,sCAAA;CD3kCP;ACggCD;EA+EQ,8BAAA;ED5kBA,2BAAA;EC6fR,+BAAA;CD3/BC;AC2/BD;EAAA,mBAAA;EAoFY,4BAAA;EACA,0BAAA;EACA,2BAAA;ED3kBF,4BAAA;ECqfV,+BAAA;EA0FY,gCAAA;EACA,+CAAA;EACA,gDAAA;CD5kCX;ACg/BD;EAiGQ,mBAAA;EACA,WAAA;EACA,gBAAA;ED9kBA,eAAA;EC2eR,iBAAA;EAsGQ,oBAAA;EACA,aAAA;CD9kCP;ACklCO;EACA,qCAAA;EACA,0BAAA;CDhlCP;AAogBC;EC+dF,2BAAA;EAkHQ,0BAAA;CDjlCP;AAogBC;EC2dF,4BAAA;CD59BC;ACwlCO;EACA,YAAA;ED9kBF,cAAA;CAvgBL;ACylCO;EACA,0BAAA;CDvlCP;AC0lCO;ED9kBJ,8CAAA;UAAA,sCAAA;ECycJ,mBAAA;EAyIQ,YAAA;EACA,aAAA;EACA,SAAA;EACA,QAAA;CDzlCP;AC6lCO;EACA,8CAAA;UAAA,sCAAA;EACA,mBAAA;EDhlBJ,YAAA;EC8bJ,aAAA;EAoJY,SAAA;ED/kBR,QAAA;CA1gBH;AC6lCW;EACA,8CAAA;UAAA,sCAAA;CD3lCX;ACk8BD;EA6JgB,8CAAA;UAAA,sCAAA;CD5lCf;AC+7BD;EDpaA;ICklBY,0CAAA;YAAA,kCAAA;GDzmCT;EC27BH;IAiLY,2CAAA;YAAA,mCAAA;GDzmCT;ECw7BH;IAqLQ,8CAAA;YAAA,sCAAA;GD1mCL;CACF;ACo7BD;EDpaA;ICklBY,0CAAA;YAAA,kCAAA;GDzmCT;EC27BH;IAiLY,2CAAA;YAAA,mCAAA;GDzmCT;ECw7BH;IAqLQ,8CAAA;YAAA,sCAAA;GD1mCL;CACF;AA2hBD;;;ECqlBQ,iCAAA;CD3mCP;ACknCO;;EDnlBJ,8CAAA;UAAA,sCAAA;ECgZJ,mBAAA;EAqMY,gBAAA;EDllBR,cAAA;CA3hBH;ACw6BD;EA6MQ,aAAA;CDlnCP;ACq6BD;EAkNQ,mBAAA;EDrlBJ,YAAA;ECmYJ,WAAA;EAsNQ,oBAAA;EDtlBJ,iBAAA;ECgYJ,0BAAA;EA0NQ,mCAAA;EACA,iBAAA;EACA,iBAAA;EACA,gBAAA;EACA,WAAA;CDtnCP;ACw5BD;EAmOQ,eAAA;CDxnCP;ACq5BD;EAsOY,eAAA;CDxnCX;AAmiBD;EC0lBQ,mBAAA;EACA,cAAA;EDxlBJ,oBAAA;EC4WJ,iBAAA;EAgPQ,0BAAA;EACA,mCAAA;EDzlBJ,iBAAA;EACA,iBAAA;EC+lBJ,gBAAA;EAEQ,WAAA;CDhoCP;AC8nCD;EAMQ,gBAAA;EACA,gBAAA;EACA,iBAAA;EACA,eAAA;CDjoCP;AAqiBD;ECgmBQ,sBAAA;CDloCP;AAsiBD;EACI,cAAA;EC8kBJ,iBAAA;CDjnCC;AA2iBD;EACI,gBAAA;ECqkBJ,eAAA;EA4BQ,gBAAA;EACA,uBAAA;CDxoCP;AACD,8BAA8B;AC8oC9B;EACI,qBAAA;CD5oCH;AC+oCG;EDhmBA,oBAAA;EComBJ,UAAA;EACI,gBAAA;EDlmBA,gBAAA;ECimBJ,OAAA;EAGQ,QAAA;EAHR,YAAA;EAMQ,YAAA;CD/oCP;AACD,uBAAuB;ACkpCf;EDjmBJ,eAAA;ECqmBJ,mBAAA;EACI,WAAA;EACA,aAAA;EACA,aAAA;EACA,sDAAA;UAAA,8CAAA;EDnmBA,WAAA;ECqmBI,qDAAA;UAAA,6CAAA;CDlpCP;AACD,4CAA4C;ACqpCpC;EACA,eAAA;EACA,gBAAA;EDlmBJ,cAAA;ECslBJ,UAAA;EAeQ,YAAA;CDnpCP;ACooCD;EAmBQ,YAAA;EDlmBJ,aAAA;EC+kBJ,+BAAA;UAAA,uBAAA;EAqBY,cAAA;EACA,8BAAA;EACA,uBAAA;EDjmBR,wBAAA;EC0kBJ,mBAAA;EAAA,2DAAA;UAAA,mDAAA;CDznCC;ACwpCW;EACA,iBAAA;EDjmBR,mBAAA;CApjBH;AAujBC;;ECqmBM,mBAAA;CDxpCP;AC2pCO;EACA;IAAA,gCAAA;GDxpCL;ECypCK;IAAA,kCAAA;GDtpCL;CACF;AAojBC;ECwmBF;IAAA,gCAAA;YAAA,wBAAA;GDxpCG;ECypCC;IAAA,kCAAA;YAAA,0BAAA;GDtpCD;CACF;ACwpCG;EDtmBE,oBAAA;CA/iBL;AAkjBC;;EC+lBF,sBAAA;EASQ,YAAA;EACA,oBAAA;EDrmBJ,yBAAA;UAAA,iBAAA;EC2lBJ,cAAA;CDzoCC;AC0pCD;EACI,6BAAA;CDxpCH;AAmjBD;EACI,iBAAA;ECmmBJ,sBAAA;CDnpCC;ACmpCD;ED7lBI,6BAAA;CAnjBH;ACgpCD;;EAgBQ,iBAAA;CD5pCP;AAujBD;ECqlBA,2BAAA;CDzoCC;AAwjBD;;;;EACI,6BAAA;ECglBJ,sBAAA;EA0BQ,oCAAA;CD3pCP;ACioCD;EA6BY,0BAAA;CD3pCX;AC8nCD;EAmCQ,8BAAA;EACA,qBAAA;EACA,iBAAA;CD9pCP;AAwjBD;EC0mBQ,aAAA;EACA,mBAAA;EACA,iBAAA;EDxmBJ,iBAAA;EC6mBJ,oBAAA;EACI,iBAAA;CDlqCH;AAgjBD;ECsnBA,aAAA;EACI,kBAAA;EACA,mBAAA;EACA,oBAAA;EACA,gBAAA;CDnqCH;AAyiBD;ECsnBA,qBAAA;CD5pCC;AAsiBD;EC+nBQ,oCAAA;UAAA,4BAAA;EACA,0BAAA;CDlqCP;AAkiBD;ECmoBQ,uBAAA;CDlqCP;AA+hBD;EAwBY,wDAAA;UAAA,gDAAA;CApjBX;ACwqCD;EAGQ,cAAA;ED9mBJ,yCAAA;EC2mBJ,YAAA;CDnqCC;ACmqCD;EAMY,iCAAA;CDtqCX;ACgqCD;EASY,gBAAA;CDtqCX;AC6pCD;EDlmBQ,2BAAA;CAxjBP;AC0pCD;EAcgB,iBAAA;ED5mBR,mBAAA;EC8lBR,YAAA;EAoBQ,iBAAA;CDxqCP;ACopCD;EAuBQ,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,iBAAA;ED/mBJ,YAAA;CAxjBH;AC6oCD;EA8BQ,iBAAA;EACA,YAAA;EACA,sBAAA;CDxqCP;ACwoCD;EAAA,4BAAA;CDroCC;ACqoCD;EAAA,4BAAA;EAsCY,mBAAA;EACA,wBAAA;CDvqCX;AA4jBD;;ECokBA,gBAAA;CD5nCC;AA8jBD;;EAEI,gBAAA;CA5jBH;AAgkBD;ECmnBQ,+BAAA;CDhrCP;AA6jBD;EAGQ,gBAAA;CA7jBP;AAikBD;ECqnBQ,aAAA;CDnrCP;AA8jBD;EC2nBI,sBAAA;EDrnBI,kBAAA;CAhkBP;AA0jBD;ECgoByB,iBAAA;EDtnBjB,uBAAA;ECwnBR,gBAAA;EACI,gBAAA;EACA,mBAAA;CDvrCH;AAokBD;EC0nBA,uBAAA;EACI,0BAAA;EACA,mBAAA;EDxnBA,mBAAA;ECsnBJ,mBAAA;CDvrCC;AA6jBD;EAOQ,mBAAA;ECynBR,UAAA;EACI,YAAA;EDvnBI,YAAA;EC0nBR,gBAAA;CD1rCC;AAsjBD;ECooBA,iBAAA;EAGQ,gBAAA;EACA,iBAAA;CDzrCP;AAijBD;ECooBA,YAAA;EAQQ,gBAAA;EDvnBJ,iBAAA;CAjkBH;AA4iBD;ECgpBQ,eAAA;CDzrCP;AAyiBD;EA2BQ,iBAAA;ECymBR,gBAAA;EAiBQ,iBAAA;CDzrCP;AAoiBD;ECupBY,UAAA;CDxrCX;AAiiBD;ECooBA,mBAAA;EAwBQ,eAAA;EACA,iBAAA;CDzrCP;AA4hBD;ECgqBQ,UAAA;EDvnBA,WAAA;EC2lBR,WAAA;EA+BQ,YAAA;CDzrCP;AAshBD;EA8CQ,UAAA;ECslBR,sBAAA;EAoCQ,YAAA;EACA,gBAAA;EACA,mBAAA;CDzrCP;AA+gBD;EC6qBQ,aAAA;EACA,mBAAA;EACA,UAAA;EACA,QAAA;CDzrCP;AAukBD;ECwnBY,oBAAA;EACA,YAAA;EDtnBR,mBAAA;ECmkBJ,gBAAA;EAsDY,mBAAA;EACA,0BAAA;EDtnBR,UAAA;EC+jBJ,WAAA;EA2DQ,gBAAA;EDvnBJ,uBAAA;CArkBH;AAukBD;EC8nBI,cAAA;CDlsCH;AAwkBD;EC+nBA,eAAA;EACI,iBAAA;CDpsCH;AACD,aAAa;AAykBb;ECgoBI,wBAAA;EACA,2BAAA;CDtsCH;AA6kBD;EACI,qCAAA;CA3kBH;AA6kBD;ECkoBI,YAAA;EDhoBA,mBAAA;CA3kBH;AAykBD;ECsoBI,gBAAA;CD5sCH;AAskBD;EC2oBI,aAAA;EACA,YAAA;EACA,iBAAA;EACA,oBAAA;CD9sCH;AAgkBD;EAcQ,mBAAA;CA3kBP;AA6jBD;ECopBI,YAAA;EACA,gBAAA;CD9sCH;AAyjBD;EAoBY,gBAAA;CA1kBX;AAsjBD;EC2pBI,eAAA;EACA,2BAAA;CD9sCH;AAkjBD;ECgqBI,4BAAA;EDpoBQ,wBAAA;ECuoBZ,kBAAA;CDhtCC;AA6iBD;ECuqBA,kBAAA;EACI,YAAA;EACA,gBAAA;EACA,gBAAA;EACA,uBAAA;CDjtCH;AAsiBD;EC8qBI,gBAAA;EACA,mBAAA;CDjtCH;AAkiBD;ECuqBA,oBAAA;CDtsCC;AA+hBD;ECwrBA,qBAAA;CDptCC;AA4hBD;;EAmDY,gBAAA;CA3kBX;AAwhBD;EC8rBI,kBAAA;EACA,mBAAA;CDntCH;AAohBD;ECmsBI,oBAAA;EACA,0BAAA;EACA,YAAA;CDptCH;AA+gBD;ECusBQ,iBAAA;CDntCP;AA4gBD;EC4rBA,iBAAA;EAeQ,0BAAA;CDntCP;AAwgBD;EC4rBA,uBAAA;EAmBQ,uBAAA;EACA,2BAAA;EDtoBA,8BAAA;EC4oBR,mBAAA;EACI,oBAAA;EACA,mBAAA;ED1oBI,kBAAA;EC6oBR,mBAAA;CDxtCC;AA6fD;EC+tBA,iBAAA;CDztCC;AA0fD;ECiuBI,YAAA;EACA,WAAA;EACA,mBAAA;CDxtCH;AAqfD;EA0FY,aAAA;EC4oBZ,WAAA;EAII,kBAAA;CD1tCH;AAgfD;ECgvBI,eAAA;EACA,iBAAA;EACA,WAAA;CD7tCH;AA2eD;ECqvBI,uBAAA;ED9oBI,0BAAA;EC+nBR,mBAAA;EAkBI,cAAA;EACA,aAAA;EACA,0BAAA;ED9oBI,mBAAA;EC0nBR,WAAA;EAuBQ,UAAA;ED9oBA,mBAAA;CA9kBP;AA+dD;ECqwBI,gBAAA;EACA,aAAA;CDjuCH;AA2dD;EC0wBA,cAAA;CDluCC;AAwdD;EC6wBI,eAAA;EACA,gBAAA;EACA,mBAAA;EACA,mBAAA;EDnpBI,iBAAA;CA9kBP;AAidD;ECqxBI,gBAAA;EDppBI,iBAAA;ECupBR,iBAAA;EACI,mBAAA;EDrpBI,UAAA;ECopBR,eAAA;CDjuCC;AAycD;EC+xBQ,uBAAA;EDrpBA,uBAAA;EC0pBR,2BAAA;EACI,iBAAA;EDvpBI,2BAAA;EC2pBR,mBAAA;EACI,kBAAA;EACA,oBAAA;EACA,mBAAA;CD1uCH;AA8bD;EC8yBI,iBAAA;CDzuCH;AA2bD;ECizBI,YAAA;EDzpBQ,WAAA;EC4pBZ,qBAAA;EAEQ,eAAA;CD3uCP;AAqbD;ECyzBQ,YAAA;EACA,gBAAA;CD3uCP;AAibD;EC6zBQ,kBAAA;ED3pBQ,cAAA;EC+pBhB,eAAA;CD7uCC;AA4aD;ECo0BgB,UAAA;EACZ,kBAAA;EACA,gBAAA;EACA,YAAA;CD7uCH;AAsaD;EC40BA,oBAAA;EAEQ,YAAA;CDhvCP;AAkaD;ECi1BQ,mBAAA;CDhvCP;AA+ZD;ECq1BQ,aAAA;ED/pBA,eAAA;CAjlBP;AA2ZD;EC41BI,YAAA;EACA,aAAA;EACA,eAAA;CDpvCH;AAsZD;EAgMQ,0BAAA;ECqqBR,uBAAA;EAEI,8BAAA;EACA,2BAAA;CDxvCH;AAgZD;EC02BI,mBAAA;CDvvCH;AA6YD;EC62BI,gBAAA;CDvvCH;AA0YD;ECq2BA,uBAAA;EAaQ,eAAA;CDxvCP;AAsYD;EAkNQ,mBAAA;CArlBP;AAmYD;EC63BA,aAAA;CD7vCC;AAgYD;EC63BA,aAAA;EAGQ,kCAAA;EACA,mBAAA;EDpqBA,aAAA;ECgqBR,QAAA;EAOQ,YAAA;CD5vCP;AAwXD;EAmOQ,mBAAA;EC0pBR,YAAA;CDjvCC;AAoXD;EC44BY,iBAAA;CD7vCX;AAiXD;ECm5BY,mBAAA;EACA,YAAA;EDxqBJ,iBAAA;CAxlBP;AA4WD;ECy5BY,gBAAA;EACA,uBAAA;CDlwCX;AACD,cAAc;AA+lBd;ECkrBQ,0BAAA;EACA,4BAAA;CD9wCP;AA2lBD;ECqoBA,yBAAA;EAkDQ,oBAAA;EACA,eAAA;EACA,gBAAA;CD9wCP;AAqlBD;EC4rBQ,yBAAA;ED/qBA,gBAAA;ECmrBR,oBAAA;EACI,eAAA;EACA,iBAAA;CDhxCH;AA8kBD;ECqsBI,gBAAA;EACA,kBAAA;EDjrBI,YAAA;ECsrBC,cAAA;CDnxCR;AAwkBD;EC8sBI,iBAAA;CDnxCH;AAqkBD;EC4tBE,gBAAA;EAEM,eAAA;EACA,gBAAA;EACA,mBAAA;EACA,qBAAA;CD/xCP;AC0xCC;EAUM,iBAAA;EDhsBJ,iBAAA;ECsrBF,mBAAA;EAaM,0BAAA;CDjyCP;AAomBD;EACI,iBAAA;CAlmBH;AAimBD;ECosBQ,gBAAA;CDlyCP;AA8lBD;ECysBE,kBAAA;EACI,mBAAA;CDpyCL;AA0lBD;EC8sBI,iBAAA;CDryCH;AC0yCD;EACI,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,+BAAA;EAAA,8BAAA;MAAA,wBAAA;UAAA,oBAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,+BAAA;EDpsBA,gCAAA;CAnmBH;ACoyCD;EAMuC,uBAAA;EACnC,uBAAA;EDpsBI,oBAAA;MAAA,YAAA;UAAA,QAAA;ECwsBN,oBAAA;EAAqD,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACnD,6BAAA;EAAA,8BAAA;MAAA,uBAAA;UAAA,mBAAA;EDrsBI,6BAAA;MAAA,gBAAA;CAlmBP;AC2xCD;EAkBU,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,cAAA;CD1yCT;ACuxCD;EAuBU,mBAAA;CD3yCT;ACoxCD;EAeE,uBAAA;EAWM,gBAAA;EDxsBI,cAAA;CAjmBX;AC+wCD;EAiCA,oBAAA;MAAA,YAAA;UAAA,QAAA;CD7yCC;AC4wCD;EAmCI,cAAA;ED1sBQ,oBAAA;EC6sBV,eAAA;EACI,gBAAA;CD7yCL;ACswCD;EA0CA,2BAAA;CD7yCC;ACmwCD;ED9pBQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;EC8sBN,iBAAA;EACE,0BAAA;EACA,2BAAA;EACA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,+BAAA;ED5sBI,0BAAA;MAAA,uBAAA;UAAA,oBAAA;CAlmBP;AAwmBD;ECitBE,iBAAA;EAEE,iBAAA;EACA,mBAAA;EDhtBA,0BAAA;CAtmBH;AAkmBD;ECwtBQ,0BAAA;CDvzCP;AA+lBD;EC6tBI,iBAAA;EACA,iBAAA;CDzzCH;AA2lBD;ECguBQ,2BAAA;CDxzCP;AAymBD;EC2sBE,iBAAA;EAUM,oBAAA;EAEA,0BAAA;EACA,gBAAA;CD3zCP;AAmmBD;EC2sBE,mBAAA;CD3yCD;AAgmBD;EC+tBQ,mBAAA;CD5zCP;AA6lBD;EC2sBE,iBAAA;CDryCD;AA0lBD;EC2sBE,eAAA;EA4BM,UAAA;EACA,2BAAA;CD7zCP;AAqlBD;EAqBQ,gBAAA;ECsrBN,iBAAA;EAiCU,oBAAA;CD5zCX;AAglBD;ECivBQ,iBAAA;EDttBA,2BAAA;CAvmBP;AA4kBD;ECsvBI,2BAAA;EDxtBQ,iBAAA;CAtmBX;AAwkBD;ECkwBI,eAAA;EACA,kBAAA;ED9tBI,gBAAA;CAxmBP;AAmkBD;EAwCQ,eAAA;ECmuBN,gBAAA;EACE,YAAA;EACA,iBAAA;CD10CH;AA6mBD;ECmuBI,iBAAA;CD70CH;AA+mBD;ECouBI,iBAAA;EDluBA,0BAAA;ECquBJ,cAAA;EAAoB,eAAA;CDh1CnB;AAymBD;EAMQ,mBAAA;CA5mBP;AAsmBD;EC4uBI,gBAAA;EDluBI,oBAAA;CA5mBP;AAkmBD;EAaQ,gBAAA;ECsuBR,iBAAA;CDj1CC;AA8lBD;ECqvBI,oBAAA;CDh1CH;AAinBD;ECsuBQ,iBAAA;CDp1CP;AA8mBD;ECwuBQ,0BAAA;CDn1CP;AA2mBD;EC0uBY,iBAAA;EACA,mBAAA;EDpuBA,0BAAA;ECyuBJ,iBAAA;EACK,cAAA;EACT,gBAAA;EDvuBQ,YAAA;CA7mBX;AAkmBD;ECqvBI,eAAA;EAAI,gBAAA;CDn1CP;AA8lBD;EC4vBM,0BAAA;EDvuBE,iBAAA;EC0uBJ,cAAA;EACE,oBAAA;EDxuBE,gBAAA;EC2uBJ,YAAA;EAAK,iBAAA;CDx1CR;AAqlBD;EA6BQ,UAAA;EACA,oBAAA;EACA,cAAA;EACA,gBAAA;EACA,eAAA;CA/mBP;AA8kBD;EAoCQ,mBAAA;CA/mBP;AA2kBD;EAsCY,gBAAA;EACA,2BAAA;EACA,kBAAA;CA9mBX;AAskBD;EA2CY,iBAAA;CA9mBX;AAmkBD;EAgDQ,mBAAA;EACA,6BAAA;EACA,2BAAA;EACA,6BAAA;EACA,4CAAA;CAhnBP;AA4jBD;EAwDQ,mBAAA;EACA,4BAAA;EACA,2BAAA;EACA,6BAAA;EACA,+CAAA;CAjnBP;AAqjBD;EAgEQ,mBAAA;EACA,2BAAA;EACA,2BAAA;EACA,6BAAA;EACA,4CAAA;CAlnBP;AAunBD;EACI,sBAAA;CArnBH;AACD,mBAAmB;AAynBnB;EAAyB,qBAAA;CAtnBxB;AAwnBD;EACI,iBAAA;EACA,0BAAA;EACA,kBAAA;EACA,kBAAA;CAtnBH;AACD,iBAAiB;AA0nBjB;EACI,mBAAA;EACA,mBAAA;CAxnBH;AAsnBD;EAGU,mBAAA;CAtnBT;AAynBD;EACI,wBAAA;CAvnBH;AA0nBD;EACI,cAAA;CAxnBH;AAunBD;EAGQ,iBAAA;EACA,gBAAA;EACA,wBAAA;CAvnBP;AAknBD;EAQQ,0BAAA;CAvnBP;AA+mBD;EAWQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,oBAAA;EACA,kBAAA;CAvnBP;AAymBD;EAiBQ,mBAAA;CAvnBP;AAsmBD;EAmBY,0BAAA;EACA,iBAAA;CAtnBX;AAkmBD;EAwBQ,0BAAA;EACA,YAAA;EACA,aAAA;EACA,sBAAA;EACA,sBAAA;CAvnBP;AA2lBD;EA+BQ,iCAAA;EACA,WAAA;EACA,sBAAA;CAvnBP;AAslBD;EAoCQ,mBAAA;EACA,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,oBAAA;EACA,aAAA;EACA,YAAA;EACA,mBAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;CAvnBP;AA0kBD;EA+CY,aAAA;EACA,sBAAA;EACA,YAAA;EACA,aAAA;EACA,mBAAA;CAtnBX;AAmkBD;EAsDY,eAAA;EACA,gBAAA;CAtnBX;AA+jBD;EA2DQ,iBAAA;CAvnBP;AA8nBD;EACI,iBAAA;EACA,kBAAA;EACA,+BAAA;EACA,mBAAA;CA5nBH;AA+nBD;EACI,gBAAA;EACA,aAAA;EACA,eAAA;EACA,UAAA;EACA,oBAAA;EACA,eAAA;EACA,YAAA;EACA,gBAAA;CA7nBH;AAioBD;EACI,YAAA;EACA,aAAA;EACA,mBAAA;CA/nBH;AAkoBD;EACI,4BAAA;EACA,0BAAA;CAhoBH;AAmoBD;EACI,YAAA;EACA,oBAAA;CAjoBH;AAooBD;EACI,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,0BAAA;EACA,eAAA;EACA,aAAA;CAloBH;AAqoBD;EACI,0BAAA;EACA,oBAAA;EACA,YAAA;EACA,WAAA;CAnoBH;AAsoBD;EACI,gBAAA;EACA,iBAAA;EACA,2BAAA;EACA,8BAAA;EACA,oBAAA;EACA,aAAA;CApoBH;AAuoBD;EACI,oBAAA;CAroBH;AAwoBD;EACI,oBAAA;EACA,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,aAAA;EACA,gBAAA;EACA,0CAAA;EACA,0BAAA;EACA,6BAAA;EACA,oBAAA;EACA,mBAAA;CAtoBH;AA6nBD;EAUU,kBAAA;CApoBT;AAuoBD;EACI,oBAAA;CAroBH;AAwoBD;EACI,oBAAA;CAtoBH;AAyoBD;EACI,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,aAAA;EACA,gBAAA;EACA,eAAA;EACA,eAAA;EACA,mBAAA;EACA,iEAAA;UAAA,yDAAA;CAvoBH;AA8nBD;EAWQ,YAAA;EACA,iBAAA;CAtoBP;AA0nBD;EAeQ,eAAA;EACA,oCAAA;CAtoBP;AAsnBD;EAmBQ,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;CAtoBP;AA4oBD;EACI,oBAAA;EACA,YAAA;CA1oBH;AA6oBD;EACI,aAAA;CA3oBH;AA8oBD;EACI,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,sBAAA;MAAA,mBAAA;UAAA,0BAAA;EACA,aAAA;CA5oBH;AA+oBD;EACI,aAAA;CA7oBH;AA4oBD;EAII,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,aAAA;EACA,2BAAA;MAAA,wBAAA;UAAA,qBAAA;CA7oBH;AAuoBD;EAUI,qBAAA;EAAA,qBAAA;EAAA,cAAA;EACA,0BAAA;MAAA,uBAAA;UAAA,oBAAA;EACA,kBAAA;EACA,gBAAA;EACA,eAAA;EACA,iBAAA;CA9oBH;AA+nBD;EAkBI,gBAAA;EACA,YAAA;EACA,qDAAA;UAAA,6CAAA;CA9oBH;AA0nBD;EAuBQ,YAAA;CA9oBP;AAopBD;EACI,WAAA;EACA,QAAA;EACA,eAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,wBAAA;CAlpBH;AAqpBD;EACI,YAAA;EACA,YAAA;EACA,QAAA;EACA,eAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,wBAAA;EACA,aAAA;CAnpBH;AAspBD;EACI,mBAAA;EACA,WAAA;CAppBH;AAupBD;EACI,SAAA;CArpBH;AAopBD;EAIQ,uCAAA;EACA,wCAAA;EACA,+BAAA;EACA,gCAAA;CArpBP;AA0pBD;EACI,4BAAA;EACA,6BAAA;CAxpBH;AA2pBD;EACI,YAAA;EACA,gBAAA;EACA,sHAAA;EACA,2BAAA;EACA,6BAAA;EACA,2BAAA;EACA,mBAAA;EACA,YAAA;CAzpBH;AA4pBD;EAEQ,YAAA;EACA,gBAAA;EACA,qHAAA;EACA,2BAAA;EACA,6BAAA;EACA,2BAAA;EACA,mBAAA;EACA,YAAA;CA3pBP;AA+pBD;EACI,YAAA;EACA,gBAAA;EACA,qHAAA;EACA,2BAAA;EACA,6BAAA;EACA,4BAAA;EACA,mBAAA;EACA,WAAA;CA7pBH;AAgqBD;EAEQ,YAAA;EACA,gBAAA;EACA,sHAAA;EACA,2BAAA;EACA,6BAAA;EACA,4BAAA;EACA,mBAAA;EACA,WAAA;CA/pBP;AAmqBD;EACI,mBAAA;EACA,YAAA;EACA,WAAA;EACA,gBAAA;EACA,iBAAA;EACA,oBAAA;EACA,cAAA;EACA,yDAAA;UAAA,iDAAA;CAjqBH;AAqqBD;EAEI,YAAA;EACA,WAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,oBAAA;EACA,cAAA;EACA,yDAAA;UAAA,iDAAA;EACA,OAAA;EACA,aAAA;CApqBH;AAypBD;EAaQ,aAAA;CAnqBP;AAspBD;EAgBQ,wCAAA;UAAA,gCAAA;CAnqBP;AAuqBD;EACI,oCAAA;UAAA,4BAAA;CArqBH;AAwqBD;EACI,oBAAA;CAtqBH;AAqqBD;;EAGQ,YAAA;EACA,eAAA;CApqBP;AAgqBD;EAOQ,yBAAA;CApqBP;AA6pBD;EAUQ,UAAA;CApqBP;AA0pBD;EAcY,iBAAA;EACA,gBAAA;CArqBX;AAspBD;EAqBY,aAAA;EACA,aAAA;EACA,oBAAA;CAxqBX;AAipBD;EA0BY,aAAA;EACA,aAAA;EACA,oBAAA;EACA,0BAAA;CAxqBX;AA2oBD;EAkCQ,iBAAA;CA1qBP;AAwoBD;EAqCQ,mBAAA;CA1qBP;AAqoBD;EA6CQ,sBAAA;EACA,WAAA;EACA,eAAA;CA/qBP;AAgoBD;EAkDQ,0BAAA;EACA,YAAA;EACA,mBAAA;EACA,mBAAA;EACA,eAAA;EACA,gBAAA;CA/qBP;AAmrBD;EACI,+NAAA;EACA,2BAAA;EACA,oDAAA;EACA,eAAA;EACA,gBAAA;EACA,sBAAA;CAjrBH;AAsrBC;EACE,kBAAA;EACA,6BAAA;EACA,8BAAA;EACA,iBAAA;CAprBH;AAisBC;EAEM,aAAA;EACA,iBAAA;EACA,YAAA;EACA,sBAAA;EACA,mBAAA;EACA,gBAAA;CAhsBP;AAyrBC;EAUM,iBAAA;CAhsBP;AAsrBC;EAaM,iBAAA;CAhsBP;AAmrBC;EAgBM,4BAAA;EACA,+BAAA;CAhsBP;AA+qBC;EAoBM,6BAAA;EACA,gCAAA;CAhsBP;AAosBC;EACI,yBAAA;CAlsBL;AAqsBC;EACE,8BAAA;EACA,iBAAA;EACA,kBAAA;CAnsBH;AAssBD;EACI,8BAAA;EACA,iBAAA;EACA,kBAAA;CApsBH;AAusBD;;EACI,0BAAA;CApsBH;AAwsBC;;EACE,iCAAA;CArsBH;AAwsBC;EAEQ,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,iBAAA;EAEA,iEAAA;UAAA,yDAAA;CAxsBT;AAgsBC;EAWM,YAAA;CAxsBP;AA6rBC;EAcM,aAAA;CAxsBP;AA4sBD;EACI,+BAAA;EACA,4CAAA;CA1sBH;AA6sBC;EACI,mCAAA;EACA,oCAAA;UAAA,4BAAA;CA3sBL;AA6sBD;EACI,+BAAA;EACA,4CAAA;EACA,oBAAA;CA3sBH;AA8sBC;EACE,uBAAA;EACA,+BAAA;EACA,iCAAA;EACA,oCAAA;UAAA,4BAAA;CA5sBH;AAwsBC;EAMM,uBAAA;CA3sBP;AAgtBC;EACF,0BAAA;CA9sBC;AAitBC;EAEE,+BAAA;EACA,iCAAA;CAhtBH;AA6sBC;EAOM,uBAAA;CAjtBP;AAqtBC;EACE,+BAAA;EACA,4CAAA;CAntBH;AAitBC;EAIM,0BAAA;CAltBP;AA8sBC;EAOU,uBAAA;CAltBX;AA2sBC;EAUM,uBAAA;EACA,+BAAA;EACA,iCAAA;EACA,oCAAA;UAAA,4BAAA;CAltBP;AAqsBC;EAkBM,uBAAA;EACA,+BAAA;EACA,iCAAA;EACA,oCAAA;UAAA,4BAAA;CAptBP;AA+rBC;EAuBU,uBAAA;CAntBX;AA4rBC;EA4BM,uBAAA;EACA,+BAAA;EACA,iCAAA;EACA,oCAAA;UAAA,4BAAA;CArtBP;AAsrBC;EAiCU,uBAAA;CAptBX;AAmrBC;EAsCM,uBAAA;CAttBP;AA0tBC;EACE,wCAAA;CAxtBH;AA+tBD;EACI,qCAAA;CA7tBH;AAguBD;EACI,iCAAA;EACA,qCAAA;CA9tBH;AAiuBD;EACI,cAAA;CA/tBH;AAmuBC;EACE,gBAAA;EACA,OAAA;EACA,QAAA;EACA,aAAA;EACA,cAAA;EACA,cAAA;EACA,eAAA;EACA,gCAAA;CAjuBH;AAouBD;EACI,YAAA;EACA,aAAA;EACA,0BAAA;CAluBH;AAquBD;;EACI,2CAAA;EAAA,mCAAA;CAluBH;AAquBD;;EACI,WAAA;CAluBH;AAquBD;EACI,yBAAA;CAnuBH;AAsuBD;EACI,sBAAA;EACA,sBAAA;EACA,iBAAA;EACA,mBAAA;CApuBH;AAsuBG;EACI,0BAAA;EACA,0BAAA;EACA,YAAA;CApuBP;AAsuBO;EACI,0BAAA;EACA,sBAAA;EACA,YAAA;CApuBX;AAyuBD;EACI,cAAA;EACA,kDAAA;UAAA,0CAAA;CAvuBH;AAyuBC;EACE;;IACE,wBAAA;IACA,qEAAA;GAtuBH;EAyuBC;IACE,aAAA;IACA,qEAAA;GAvuBH;EA0uBC;IACE,0DAAA;GAxuBH;EA2uBC;;IACE,+CAAA;GAxuBH;CACF;AAutBC;EACE;;IACE,wBAAA;IACA,qEAAA;GAtuBH;EAyuBC;IACE,aAAA;IACA,qEAAA;GAvuBH;EA0uBC;IACE,0DAAA;GAxuBH;EA2uBC;;IACE,+CAAA;GAxuBH;CACF;;AAED,ki4CAAki4C","file":"admin-style.css","sourcesContent":[null,"/* Global */\n\n.seedprod {\n}\n\nbody{\n //font-family: 'Open Sans', sans-serif;\n}\n\nimg{border: inherit}\n\n[v-cloak]{\n\tdisplay: none !important;\n}\n\nbody, .subsubsub, .tablenav .tablenav-pages{\ncolor: #222;\n}\n\n.subsubsub .current{\n color: #222 !important;\n}\n\n.search-box,.subsubsub{\n margin-bottom:0px !important;\n}\n\nbody.seedprod-body{\n background: #fff;\n}\n\nbody.seedprod_page_seedprod_pro_template #wpwrap, body.seedprod_page_seedprod_lite_template #wpwrap{\n background: #f7f6f7;\n}\n\n.seedprod_page_seedprod_pro_template{\nbutton, input, optgroup, select, textarea{\n outline:none !important;\n box-shadow: none !important;\n}\n}\n\n.seedprod_page_seedprod_lite_template{\n button, input, optgroup, select, textarea{\n outline:none !important;\n box-shadow: none !important;\n }\n }\n\n.seedprod_page_seedprod_pro_template{\ninput[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {\n box-shadow: 0 0 0 transparent;\n border-radius: 4px;\n border: 1px solid #d3ced2;\n background-color: #fff;\n color: #32373c;\n}\n}\n\n.seedprod_page_seedprod_lite_template{\n input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {\n box-shadow: 0 0 0 transparent;\n border-radius: 4px;\n border: 1px solid #d3ced2;\n background-color: #fff;\n color: #32373c;\n }\n }\n\n// body.seedprod-body #wpwrap{\n// background: #f1f1f1;\n// }\n\n.seedprod-builder{\n display: none ;\n}\n\n.seedprod-action-txt{\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n width: 340px;\n display: inline-block;\n}\n\n#seedprod-page-name{\n width:100%;\n background:#fbfcfb;\n height: 75px;\n border-bottom:1px solid #f0f0f0;\n margin-top: 67px;\n display: table;\n padding:0 23px;\n input{\n height:40px;\n border-radius:2px;\n width: 315px;\n }\n label{\n margin-bottom: 0px;\n font-size:16px;\n margin-right:15px;\n }\n .form-group{\n display: table-cell;\n vertical-align: middle\n }\n}\n.template-chooser{\n h2{\n margin-top:0;\n margin-bottom: 15px;\n font-size:24px;\n color: #2d2d2d;\n font-weight: 400;\n }\n p{\n color: #666;\n font-size: 14px;\n margin-bottom:30px;\n }\n .highlight-template{\n color: #f1470d !important;\n text-decoration: underline;\n :hover{\n text-decoration: none;\n }\n }\n}\n\n.seedprod-builder #adminmenu,.seedprod-builder #wpadminbar{\n display:none !important;\n}\n\n#seedprod-steps-nav{\n border-left: 1px solid #f9f9f9;\n a{\n font-size:14px;\n padding-left: 15px;\n padding-right: 15px;\n }\n}\n\n.seedprod-builder-step .container-fluid {\n padding-left: 23px !important;\n padding-right: 23px !important;\n}\n\n .seedprod-builder-step h1{\n margin:20px 0 10px 0 !important;\n}\n\n.seedprod table{\n background-color: #f8f8f8;\n}\n\n.seedprod .navbar-default{\n background-color: #fafbfc;\n border-color: #e8e8e8;\n overflow: hidden;\n}\n\n.seedprod-builder .navbar-default{\n background-color: #fff;\n}\n\n.seedprod .panel-default>.panel-heading {\n color: #222;\n background-color: #f8f8f8;\n border-color: #ddd;\n font-weight: bold;\n position: relative;\n}\n\n.widefat thead th, .widefat thead td {\n border-bottom: 1px solid #ddd;\n}\n\n.widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .imgedit-group, .comment-ays {\n border: 1px solid transparent;\n box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n margin-top:20px;\n}\n\n\n\n\n// .seedprod-builder{ .form-control, input[type=\"text\"], input[type=\"password\"], input[type=\"checkbox\"], input[type=\"color\"], input[type=\"date\"], input[type=\"datetime\"], input[type=\"datetime-local\"], input[type=\"email\"], input[type=\"month\"], input[type=\"number\"], input[type=\"search\"], input[type=\"radio\"], input[type=\"tel\"], input[type=\"text\"], input[type=\"time\"], input[type=\"url\"], input[type=\"week\"], select, textarea{\n// background-color: #fff;\n// border-color: #DEDADE;\n// box-shadow: none;\n// }\n// }\n\n.seedprod .form-control[disabled], .seedprod .form-control[readonly], fieldset[disabled] .seedprod .form-control {\n background-color: #fbfcfb;\n opacity: 1;\n}\n\n.seedprod-builder .input-group-addon{\n background-color: #fff;\n border-color: #DEDADE;\n}\n\n.column.entries, .column.subscribers, .column.active {\n width:120px;\n}\n\n.column.type{\n width:160px;\n}\n\n.column.status{\n width:210px;\n white-space: nowrap;\n}\n\n.column.starts{\n width:130px;\n white-space: nowrap;\n\n}\n.column.ends{\n width:130px;\n white-space: nowrap;\n}\n\n.vue-js-switch .v-switch-core{\n background: #d6d6d6 !important;\n}\n\n.vue-js-switch.toggled .v-switch-core{\n background: #4CAF50 !important;\n}\n\n\n\n\n\n// .wp-core-ui #post-body-content .button{\n// color: #222;\n// border-color: #ddd;\n// background: #f8f8f8;\n// box-shadow:none;\n// }\n\n\n.seedprod .navbar-default .navbar-nav>li>a , .seedprod .input-group-addon{\n color: #b3b3b3;\n}\n\n.seedprod-builder #seedprod-sidebar-wrapper .input-group-addon{\n color: #c7c7c7;\n font-size:13px;\n\n}\n\n.seedprod .navbar-nav>li>a{\n padding-top: 19px !important;\n padding-bottom: 23px !important;\n}\n\n.seedprod-builder .navbar-nav>li>a{\n padding-top: 23px !important;\n padding-bottom: 23px !important;\n}\n\n#seedprod-steps-nav a span{\n padding: 0 10px 24px;\n}\n\n.seedprod .navbar-default .navbar-nav>.active>a,\n.seedprod .navbar-default .navbar-nav>.active>a:focus\n{\n color: #222;\n background-color: #fff !important;\n span{\n box-shadow: inset 0 -3px 0px 0px #f1470d !important;\n padding: 0 10px 24px;\n }\n\n}\n\n\n.seedprod .navbar-default .navbar-nav>li>a:hover{\n color: #222;\n background-color: #fff !important;\n}\n\n.striped > tbody > :nth-child(even), ul.striped > :nth-child(even), .alternate {\n background-color: #fff;\n}\n\n.seedprod-icon::before {\n display: inline-block;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n}\n\n.icon-refer-a-friend::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f004\";\n}\n\n.icon-refer-a-friend{\n background-color: #e42e2f;\n border-color: #e42e2f !important;\n color: #fff;\n}\n\n.icon-automatic-entry::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f3ff\";\n}\n\n.icon-automatic-entry{\n background-color: #FF9800;\n border-color: #FF9800 !important;\n color: #fff;\n}\n\n.icon-submit-image::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f03e\";\n}\n\n.icon-submit-image{\n background-color: #009688;\n border-color: #009688 !important;\n color: #fff;\n}\n\n.icon-polls-surveys::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f681\";\n}\n\n.icon-polls-surveys{\n background-color: #E91E63;\n border-color: #E91E63 !important;\n color: #fff;\n}\n\n.icon-join-newsletter{\n background-color: #4CAF50;\n border-color: #4CAF50 !important;\n color: #fff;\n}\n\n.icon-join-newsletter::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f0e0\";\n}\n\n\n.icon-visit-a-page::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f35d\";\n}\n\n.icon-visit-a-page{\n background-color: #0000ba;\n border-color: #0000ba !important;\n color: #fff;\n}\n\n.icon-visit-fb::before, .icon-fb-page-post::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f09a\";\n}\n\n.icon-visit-fb, .icon-fb-page-post{\n background-color: #4267b2;\n border-color: #4267b2 !important;\n color: #fff;\n}\n\n.icon-tweet::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f099\";\n}\n\n.icon-tweet{\n background-color: #38A1F3;\n border-color: #38A1F3 !important;\n color: #fff;\n}\n\n.icon-twitter-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f099\";\n}\n\n.icon-twitter-follow{\n background-color: #38A1F3;\n border-color: #38A1F3 !important;\n color: #fff;\n}\n\n.icon-instagram-follow::before, .icon-instagram-page-post::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f16d\";\n}\n\n.icon-instagram-follow, .icon-instagram-page-post{\n background-color: #f55f3f;\n border-color: #f55f3f !important;\n color: #fff;\n}\n\n.icon-pinterest-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f0d2\";\n}\n\n.icon-pinterest-follow{\n background-color: #e60023;\n border-color: #e60023 !important;\n color: #fff;\n}\n\n.icon-youtube-follow::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f167\";\n}\n\n.icon-youtube-follow{\n background-color: #ff0000;\n border-color: #ff0000 !important;\n color: #fff;\n}\n\n.icon-watch-a-video::before {\n font-family: \"Font Awesome 5 Brands\"; font-weight: 400; content: \"\\f167\";\n}\n\n.icon-watch-a-video{\n background-color: #ff0000;\n border-color: #ff0000 !important;\n color: #fff;\n}\n\n.icon-question::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f059\";\n}\n\n.icon-question{\n background-color: #9900bb;\n border-color: #9900bb !important;\n color: #fff;\n}\n\n\n.icon-invent-your-own::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f0eb\";\n}\n\n.icon-invent-your-own{\n background-color: #0f0f0f;\n border-color: #0f0f0f !important;\n color: #fff;\n}\n\n\n.seedprod-page-types{\n display: flex;\n margin-left:-20px;\n margin-right:-20px;\n}\n\n.seedprod-page-type{\n border:1px solid #ccc;\n padding:20px;\n margin-left:20px;\n margin-right:20px;\n}\n\n\n#seedprod-dashboard{\npadding-right:20px;\n}\n\n.seedprod-app{\n #poststuff{\n padding-top:30px\n }\n .widefat{\n margin-top:10px !important;\n box-shadow: 0 1px 1px rgba(0,0,0,0.04) !important;\n }\n}\n\n#seedprod-dashboard .column-active{\n\twidth:90px;\n}\n\n#seedprod-dashboard .column-subscribers{\n\twidth:120px;\n}\n\n#seedprod-dashboard .column-entries{\n\twidth:120px;\n}\n\n#seedprod-entries .column-entries{\n\twidth:120px;\n}\n\n#seedprod-entries .fa-trophy{\n padding-right:5px;\n}\n\n#seedprod-entries #poststuff{\n padding-top:10px;\n}\n\n#lpage-details-sub{\n color: #999;\n display: block;\n font-size: 10px;\n text-transform: uppercase;\n margin: 0 0 8px 0;\n}\n\n#lpage-details-title{\n float: left;\n font-size: 18px;\n font-weight: 400;\n margin: 0;\n padding-right:8px\n}\n\n#lpage-selector {\n display: inline-block;\n position: relative;\n}\n\n#seedprod-entries{\n margin-top:20px;\n}\n\n#seedprod-entries .toggle.active {\n background-color: #e3e3e3;\n outline: none;\n}\n\n#seedprod-entries .toggle {\n border-radius: 50%;\n color: #444;\n font-size: 16px;\n box-shadow: none;\n}\n\n#seedprod-entries .toggle:before {\n vertical-align: middle;\n}\n\n#lpage-details-actions{\n margin-top: 26px;\n text-align:right;\n}\n\n.lpage-details-actions{\n margin-right:12px;\n text-decoration:none;\n}\n\n.lpage-details-actions:last-child {\n margin-right:0px;\n }\n\n .lpage-selector {\n display: inline-block;\n position: relative;\n}\n\n.lpage-selector ul {\n max-height: 196px;\n overflow-x: hidden;\n padding: 0;\n margin: 0;\n}\n\n#raffleprsss-lpage-list-loading{\n text-align: center;\n display: block;\n}\n\n.lpage-selector ul li {\n list-style: none;\n margin: 0;\n font-size: 13px;\n}\n\n.lpage-selector ul li a {\n display: block;\n text-decoration: none;\n padding: 5px 15px;\n color: #444;\n}\n\n.lpage-selector ul li a:hover {\n background-color: #f7f7f7;\n color: #444;\n}\n\n#winner-selector{\n display: inline-block;\n position: relative;\n}\n\n#seedprod-winner-options{\n background: #fff;\n border-radius: 3px;\n box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);\n position: absolute;\n top: 69px;\n left: -15px;\n width: 300px;\n z-index: 9992;\n font-size: 13px;\n font-weight: normal;\n padding: 20px;\n input[type=\"radio\"]{\n margin-top: 3px;\n }\n}\n\n#seedprod-winner-options:before{\n content: \" \";\n position: absolute;\n top: -10px;\n left: 145px;\n width: 0;\n height: 0;\n border-style: solid;\n\n border-width: 0 8px 10px 8px;\n border-color: transparent transparent #fff transparent;\n}\n\n#lpage-list{\n background: #fff;\n border-radius: 3px;\n box-shadow: 0 2px 8px 0 rgba(0,0,0,0.1);\n position: absolute;\n top: 27px;\n left: -108px;\n width: 230px;\n padding: 10px 0;\n z-index: 9991;\n}\n\n#lpage-list:before{\n content: \" \";\n position: absolute;\n top: -10px;\n left: 110px;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: 0 8px 10px 8px;\n border-color: transparent transparent #fff transparent;\n}\n\n\n#seedprod-header{\n position: relative;\n background: #fff;\n margin-left: -20px;\n border-bottom:1px solid #ccc;\n}\n\n.seedprod-header-margin{\n margin-top:20px !important;\n}\n\n.seedprod .navbar-right{\n margin-right: 0;\n border-color:transparent;\n border-bottom-color: #e7e7e7;\n}\n\n.seedprod-breadcrumbs{\n display: inline-block;\n margin-top:10px;\n margin-bottom:20px;\n}\n\n#seedprod-page-title{\n background-color: #fff;\n margin: 0 0 0px -20px;\n padding: 15px 20px;\n font-size: 23px;\n font-weight: 400;\n line-height: 29px;\n border-bottom:1px solid #e7e8e7;\n .add-new-h2 {\n margin-left: 28px;\n }\n}\n\n.seedprod-btn-orange {\n background-color: #f1460d !important;\n border-color: #f0460d !important;\n color: #fff !important;\n}\n\n.seedprod-btn-orange:hover {\n background-color: #c1390a !important;\n border-color: #c1390a !important;\n color: #fff !important;\n}\n\n\n.seedprod-breadcrumbs small{\n font-size:14px;\n}\n\n.seedprod .container-fluid{\n padding:0;\n}\n\n.d-ib{\n display:inline-block;\n}\n\n.seedprod .tablenav{\n margin: 0px 0 4px;\n}\n\n\n.seedprod-default-cusor{\n cursor: default;\n}\n\n.seedprod td, .seedprod th{\n padding:10px\n}\n\n.seedprod :focus{\n outline: none !important;\n box-shadow: none !important;\n}\n\n\n/* Builder */\n#seedprod-search-close{\n margin-left: -24px;\n margin-right: 11px;\n color: #aaa;\n z-index:999;\n position: relative;\n cursor: pointer;\n}\n// #seedprod-customizer {\n// background: #fff;\n// position: fixed;\n// top: 0;\n// bottom: 0;\n// left: 0;\n// right: 0;\n// z-index: 99999;\n// height: 100%;\n\n// }\n\n\n\n#seedprod-customizer-wrapper {\n height: 100%;\n}\n\n.seedprod-builder .mx-input, #seedprod-sidebar-wrapper .form-control{\n font-size: 16px;\n height:40px;\n\n}\n\n.seedprod-builder .btn i{\n color: rgba(0, 0, 0, 0.34);\n}\n\n// .seedprod-builder .seedprod-sidebar-form-body .btn i {\n// margin-right: 4px;\n// }\n// .seedprod-builder .seedprod-settings-page-wrapper .btn i {\n// margin-right: 4px;\n// }\n\n.rules-modal{\n\n .seedprod-modal-container{\n border-radius: 6px;\n max-width:620px;\n position: relative;\n }\n hr{\n margin-top:15px;\n margin-bottom:25px;\n }\n .seedprod-modal-body{\n margin-top:0;\n }\n i{\n color: #ccc;\n cursor: pointer;\n position:absolute;\n top:20px;\n font-size:16px;\n right:20px\n }\n}\n\n\n\n\n\n#seedprod-sidebar-nav-wrapper {\n background-color: #2d2d2d;\n color: #a3a3a3;\n z-index: 200;\n left: 0px;\n position: absolute;\n bottom: 0;\n top: 67px;\n right: auto;\n width: 95px;\n overflow-y: auto;\n overflow-x: hidden;\n .active{\n background-color: #000;\n color:#fff;\n }\n}\n\n\n.sp-section-toolbar{\n background: url(../svg/section-toolbar.svg);\n background-position: top center;\n background-repeat: no-repeat;\n width: 218px;\n height: 28px;\n margin-top: -4px;\n align-items: center;\n justify-content: center;\n span{\n margin: 2px 2px 0 2px;\n }\n span:first-child{\n margin-left:6px\n }\n}\n\n#sp-sidebar-drawer{\ncursor: pointer;\n height:76px;\n width:13px;\n background-image: url(../svg/sidebar-drawer.svg);\n background-repeat: no-repeat;\n background-size: auto;\n background-position: -7px 0;\n top:50%;\n svg{\n min-width: 23px;\n margin-left: -6px;\n }\n}\n\n.sp-sidebar-drawer-closed{\n margin-left: -320px !important;\n}\n\n#seedprod-sidebar-wrapper {\n background-color: #F7F6F7;\n color: #4F394D;\n width: 320px;\n min-width: 320px;\n z-index:10;\n margin-top: 0px;\n margin-bottom: 125px;\n box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);\n}\n\n#seedprod-preview-wrapper.sp-setup_settings_connect{\n background-color: #EDEBED !important;\n}\n\n\n\n#seedprod-preview-wrapper{\n margin-bottom: 72px;\n background-color: #7B6B7A;\n overflow-y: auto;\n\n #seedprod-builder-view{\n margin-left:auto;\n margin-right:auto;\n background-color: #fff;\n }\n}\n\n.sp-mobile-view{\n border-radius: 10px;\n border: 5px solid #4F394D;\n box-shadow: 0px 15px 50px rgba(35, 8, 32, 0.25);\n margin-top:15px;\n}\n\n\n.seedprod-sidebar-form-body {\n padding: 0px;\n padding-top:0px;\n padding-bottom: 30px;\n margin: 0 20px;\n text-align: left;\n box-shadow: inset 0 -1px 0 rgba(167,156,166,0.25);\n .col-md-6:first-child{\n padding-right:7px;\n }\n .col-md-6:last-child{\n padding-left:7px;\n }\n .help_tip i{\n vertical-align: text-top;\n color: #c7c7c7;\n }\n}\n\n// .seedprod_collaspe, .seedprod-sidebar-form-body{\n// border-bottom: 1px solid #e3dfe3;\n// }\n\n\n// .seedprod-sidebar-form h3{\n// cursor: pointer;\n// color: #4f394d;\n// font-weight: 600;\n// font-size: 16px;\n// padding: 15px 0;\n// }\n\n\n\n// .seedprod-sidebar-form h3::after {\n// text-align: right;\n// float:right;\n// content: \"\";\n// // font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f078\";\n// // color: #4F394D ;\n// background-image: url(../img/down-arrow.png);\n// background-repeat: no-repeat;\n// background-size: auto;\n// background-position: 0;\n// width: 13px;\n// height: 13px;\n// }\n\n\n// .seedprod-sidebar-form h3.seedprod_collaspe::after {\n// text-align: right;\n// float:right;\n// content: \"\";\n// background-image: url(../img/right-arrow.png);\n// background-repeat: no-repeat;\n// background-size: auto;\n// background-position: 0;\n// width: 13px;\n// height: 13px;\n// }\n\n\n#seedprod-dragbar {\n background-color: #ccc;\n height: 100%;\n width: 3px;\n cursor: col-resize;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n#seedprod-ajax-status{\n background: #230820;\n position: fixed;\n right: 29px;\n top: 26px;\n font-size:16px;\n z-index: 999999;\n color: #fff;\n}\n\n#seedprod-builder-view{\n padding:0;\n height:100%;\n overflow-y: auto;\n}\n\n#seedprod-preview, .seedprod-settings-page {\n overflow-y: scroll;\n float: right;\n height: 100%;\n width: 100%;\n padding:40px 35px;\n //background:#EDEBED;\n background:#F7F6F7;\n}\n\n.sp-sectiontemplates .seedprod-settings-page {\n background:#EDEBED;\n}\n\n\n\n#seedprod-sidebar-wrapper .sp-setting-control{\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom:10px;\n }\n\n#seedprod-sidebar-wrapper .sp-setting-control label{\n font-size:13px;\n }\n\n.seedprod-settings-page-wrapper{\n color:#4F394D;\n p, label{\n font-size:16px !important;\n font-weight:600;\n }\n .form-group{\n margin-bottom:25px;\n }\n\n h1{\n font-weight: bold;\n font-size: 20px;\n margin-bottom: 40px;\n }\n hr{\n margin-top: 15px;\n margin-bottom: 25px;\n }\n .checkbox label{\n color: #4F394D;\n }\n .form-control, .btn {\n height: 40px;\n }\n .help_tip {\n vertical-align: top;\n display: inline-block;\n i{\n color: #c7c7c7;\n }\n\n }\n .seedprod-affiliate-details{\n color: #999 !important;\n font-size:13px !important;\n margin-top:8px;\n a{\n color: #f1470d !important;\n text-decoration: underline;\n }\n }\n}\n\n#seedprod-settings{\n border-right:0px;\n border-left:0px;\n\n .list-group-item{\n display: flex;\n justify-content: space-between ;\n align-items: center;\n padding: 19px 24px;\n color: #7B6B7A;\n width: 100%;\n text-align: left;\n font-weight: 600;\n font-size: 16px;\n border-bottom: 1px solid #EDEBED;\n }\n\n .list-group-item:first-child{\n border-top:0 !important;\n\n }\n\n .active{\n color: #f1470d;\n }\n\n}\n\n#seedprod-preview{\n padding:0;\n}\n\n#seedprod-customizer-header-wrapper{\n\ttop:0;\n\tleft:0;\n\theight: 67px;\n\twidth:100%;\n background:#fafafa;\n z-index:99;\n\n}\n\n.seedprod .navbar-brand{\n padding: 6px 15px;\n height: 67px;\n}\n\n.seedprod-builder .navbar-brand{\n padding: 11px 15px;\n height: 67px;\n}\n\n#seedprod-builder-help{\n color: #A79CA6;\n margin-right: 18px;\n font-size:14px;\n padding: 8px 12px;\n i{ margin-right: 4px;\n color:#A79CA6;\n }\n}\n\n#seedprod-builder-help:hover{\n color: #fff;\n}\n\n\n\n\n\n.seedprod-overflow-hidden{\n overflow: hidden;\n}\n\n// .seedprod-overflow-scroll{\n// overflow-y: scroll;\n// }\n\n#seedprod_preview{\n width:100%;\n height:700px;\n}\n\n\n\n.seedprod .navbar{\n\tborder-radius: 0 !important;\n\tmargin-bottom: 0;\n\theight: 90px;\n}\n\n.seedprod-builder .navbar{\n\tborder-radius: 0;\n\tmargin-bottom: 0;\n\theight: 67px;\n}\n\n\n\n#seedprod-builder-close{\n margin-right: 16px;\n margin-left: 14px;\n font-size:15px;\n width: 40px;\n height: 40px;\n color: #a79ca6;\n border-radius: 100px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n#seedprod-builder-close:hover{\n color: #fff;\n}\n\n\n\n\n.seedprod-install-option{\n\tfloat: left;\n\twidth:250px;\n\tmin-height: 195px;\n\tmargin-right:20px;\n}\n\n#seedprod-publish-title{\nfont-size:24px;\nfont-weight: 400;\nmargin-top:50px;\nmargin-bottom:15px;\ncolor:#2d2d2d;\n}\n\n#seedprod-publish-desc{\ncolor:#676767;\nfont-size:14px;\nmargin-bottom:30px;\n}\n\n.seedprod-publish-option{\n padding:20px;\n background: #fff;\n border: 1px solid #f1f1f1;\n border-radius: 8px;\n cursor: pointer;\n margin-bottom:20px;\n h3{\n margin-top:0;\n margin-bottom: 17px;\n font-size: 16px;\n }\n p{\n margin:0;\n font-size:14px;\n color: #a7a7a7;\n }\n}\n\n.seedprod-publish-options .col-sm-4:first-child{\n padding-right:7px;\n}\n\n.seedprod-publish-options .col-sm-4:nth-child(2){\n padding-right:7px;\n padding-left:7px;\n}\n\n.seedprod-publish-options .col-sm-4:last-child{\n padding-left:7px;\n}\n\n#seedprod-publish-options-details{\n padding:30px 20px;\n background: #fff;\n border: 1px solid #f1f1f1;\n border-radius: 8px;\n margin:0 0px;\n h4{\n font-size: 18px;\n color: #2d2d2d;\n margin:0 0 40px 0;\n font-weight: 400;\n }\n ol{\n margin:0;\n margin-left: 15px;\n }\n li{\n color: #666;\n font-size:14px;\n margin-bottom:10px;\n\n }\n p{\n margin:40px 0 15px 0;\n color: #666;\n font-size: 14px;\n }\n .fa-copy{\n\n color:#999;\n }\n .input-group-addon{\n padding: 2px 10px 0;\n cursor: pointer;\n }\n .input-group-addon, .form-control{\n height: 40px;\n }\n .form-control{\n width: 215px;\n }\n .btn{\n height: 40px;\n margin-left:7px;\n }\n\n\n\n}\n\n.seedprod-sidebar-nav{\n\tpadding:17px 0;\n\ttext-align: center;\n border-bottom: 1px solid #3d3d3d;\n}\n\n.seedprod-sidebar-nav:hover{\n color: #fff;\n}\n\n.seedprod-sidebar-nav span{\n display: block;\n padding-top:5px;\n font-size:14px;\n}\n\n.seedprod-sidebar-nav i{\n font-size: 25px;\n}\n\n\n\n.seedprod-enter-active{\n\ttransition: opacity .3s\n}\n\n.seedprod-leave-active {\n\topacity: 0\n}\n\n.seedprod-enter,.seedprod-leave-to /* .fade-leave-active below version 2.1.8 */ {\n\topacity: 0\n}\n\n.fade-enter-active{\n\ttransition: opacity 1s\n}\n\n.fade-leave-active {\n\topacity: 0\n}\n\n// .fade-enter,.fade-leave-to /* .fade-leave-active below version 2.1.8 */ {\n// \topacity: 0\n// }\n\n#seedprod-sidebar-nav-wrapper > div{\n\tcursor: pointer;\n}\n\n.seedprod-prize{\n margin-bottom:13px;\n}\n\n.seedprod-prize .btn{\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.toast {\n opacity: 1 !important;\n}\n\n.seedprod-install-option{\n cursor:pointer;\n}\n\n.seedprod .vue-swatches__row{\n height:24px;\n}\n\n.seedprod .vue-swatches__container{\n white-space: normal;\n}\n\n.seedprod .vue-swatches__wrapper{\n width: 230px !important;\n}\n\n\n.seedprod .input-group-addon{\n padding:2px 6px 0;\n}\n\n.seedprod .vue-swatches .vue-swatches__trigger{\n width: 20px !important;\n height: 20px !important;\n}\n\n.seedprod .mx-input,.seedprod .mx-input-append ,.seedprod .mx-calendar{\n color:#555 !important ;\n}\n.seedprod .mx-input-append{\n padding: 7px;\n}\n\n.seedprod .mx-calendar .actived{\n color:#fff !important;\n}\n\n.seedprod .mx-datepicker-popup{\n margin-top: -10px;\n}\n\n\n.seedprod .time-picker input.display-time{\n border:1px solid #ddd;\n box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );\n height: 34px;\n border-radius: 4px;\n padding: 6px 10px;\n font-size:14px;\n width: 100%;\n color: #6a6a6a;\n}\n\n.time-picker .dropdown ul li.active, .time-picker .dropdown ul li.active:hover {\n background: #f3510a;\n color: #fff;\n}\n\n.seedprod-builder .time-select:after{\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f017\";\n color: #a6a6a6;\n position: absolute;\n right: 23px;\n top:11px;\n font-size:13px;\n}\n\n.seedprod-builder select.form-control {\n // appearance:none;\n // background: url(../img/down-arrow.png) 250px no-repeat;\n}\n\n.time-select select.form-control {\n appearance:none;\n}\n\n\n\n\n.mx-panel-date td.today {\n color: #f3510a !important;\n}\n\n.mx-calendar-content .cell.actived {\n color: #fff;\n background-color: #f3510a !important;\n}\n\n\n\n.seedprod-img-preview{\n position:relative;\n display: inline-block;\n}\n\n.seedprod-img-preview i{\n position: absolute;\n top: 4px;\n right: -6px;\n}\n\n.seedprod-img-preview img{\n max-width:100%;\n max-height:280px;\n // border:1px solid #DEDADE;\n // padding:5px;\n\n}\n\n/* Slideshow BG Settings */\n.sp-slideshow-bg-settings {\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview {\n\tcursor: move;\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview img {\n\tmax-width: 150px;\n\tmax-height: 150px;\n}\n\n.sp-slideshow-bg-settings .seedprod-img-preview button:nth-of-type(2) {\n\tdisplay: none;\n}\n\n.sp-slideshow-bg-settings .sp-slide .sp-remove-slide-btn {\n\tvisibility: hidden;\n}\n\n.sp-slideshow-bg-settings .sp-slide:hover .sp-remove-slide-btn {\n\tvisibility: visible;\n}\n\n.seedprod textarea.form-control{\n height:auto;\n}\n\n.seedprod :focus {\n outline: none;\n}\n\n// .seedprod label{\n// cursor: default;\n// }\n\n// .seedprod-builder label{\n// font-size:13px;\n// font-weight: normal;\n// }\n\n\n.seedprod-modal-mask {\n position: fixed;\n z-index: 9998;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(0, 0, 0, .5);\n display: table;\n transition: opacity .3s ease;\n}\n\n.seedprod-modal-wrapper {\n display: table-cell;\n vertical-align: middle;\n}\n\n\n\n.seedprod-modal-header h3 {\n margin-top: 0;\n}\n\n.seedprod-modal-header h3{\n font-size: 20px;\n margin-top: 0;\n margin: 0;\n padding: 0;\n background: #fff;\n display: block;\n}\n\n\n\n.seedprod-modal-body {\n margin: 20px 0;\n}\n\n.seedprod-modal-enter {\n opacity: 0;\n}\n\n.seedprod-modal-leave-active {\n opacity: 0;\n}\n\n.seedprod-modal-enter .seedprod-modal-container,\n.seedprod-modal-leave-active .seedprod-modal-container {\n -webkit-transform: scale(1.1);\n transform: scale(1.1);\n}\n\n.seedprod .btn-prize{\n text-align:left;\n border-left:none;\n border-right:none;\n border-radius:0;\n width: 213px;\n font-size: 13px;\n color: #666;\n\n}\n\n.seedprod .btn-prize-sngle{\n text-align:left;\n width: 213px;\n font-size: 13px;\n color: #666;\n\n}\n\n.seedprod .btn-prize,\n.seedprod .btn-prize-single{\n background: #fff !important;\n color: #333 !important;\n border-color: #efefef !important;\n padding-left:2px;\n padding-right:2px;\n\n}\n\n.seedprod .btn-add-prize, .seedprod .btn-prize-single{\n font-size: 14px;\n}\n\n.seedprod .btn-prize-single{\n padding-left:10px;\n padding-right:10px;\n}\n\n.seedprod .btn-prize::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f303\";\n float:right;\n color: #c7c7c7;\n}\n\n\n.seedprod .btn-prize-single::before {\n font-family: \"Font Awesome 5 Free\"; font-weight: 900; content: \"\\f303\";\n float:right;\n color: #c7c7c7;\n}\n\n.seedprod .btn-prize:active::before, .seedprod .btn-prize:hover::before, .seedprod .btn-prize-single:hover::before {\n color: #333 !important;\n}\n\n.seedprod .btn-my-entry-option{\n\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n text-align:left;\n}\n\n.seedprod-prize .input-group-addon:hover{\n color: #333;\n}\n\n.seedprod-prize-close, .seedprod-block-option-remove{\n cursor:pointer;\n}\n\n.seedprod-prize-move, .seedprod-block-option-move{\n cursor:grab;\n}\n\n.seedprod-prize-move:active, .seedprod-block-option-move:active{\n cursor:grabbing;\n}\n\n.seedprod .btn-entry-option{\n margin-bottom:8px;\n position: relative;\n padding-left: 45px;\n height: 40px;\n}\n\n.seedprod .btn-entry-option:active,.seedprod .btn-entry-option:focus {\n background-color:#fff !important;\n}\n\n.btn-entry-option{\n .seedprod-block-option-icon{\n position: absolute;\n left: 0;\n height: 40px;\n padding-top: 9px;\n padding-left: 10px;\n padding-right: 10px;\n width: 35px;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n }\n .fa-plus,.fa-sync-alt{\n position: absolute;\n right: 10px;\n color: #c7c7c7;\n top: 12px;\n }\n}\n\n#seedprod-add-actions{\n\n h3{\n color:#4F394D;\n font-weight: 600;\n font-size: 16px;\n margin: 0px 20px;\n padding:15px 0;\n\n }\n\n // h3:last-of-type{\n // border-bottom: 1px solid #e3dfe3 !important;\n // }\n\n\n}\n\n\n\n\n/* scroll modal */\n\n.seedprod-modal-mask {\n position: fixed !important;\n z-index: 99999 !important;\n top: 0px !important;\n right: 0px !important;\n bottom: 0px !important;\n left: 0px !important;\n overflow-y: auto !important;\n transform: translate3d(0,0,0) !important;\n display: flex !important;\n transition: opacity .3s ease;\n }\n\n .seedprod-modal-wrapper {\n display: flex !important;\n margin: auto !important;\n //max-width: 760px !important;\n width: 100% !important;\n padding-left:80px;\n padding-right: 80px;\n }\n\n .seedprod-modal-container {\n width: 600px;\n background-color: #ffffff;\n flex: 1 !important;\n width: 100% !important;\n margin: 100px auto;\n padding:0 ;\n background-color: #fff;\n border-radius: 10px;\n box-shadow: 0 2px 8px rgba(35,8,32, 0.6);\n transition: all .3s ease;\n .seedprod-modal-body{\n margin:0;\n }\n .sp-modal-left{\n border-top-left-radius: 10px;\n border-bottom-left-radius: 10px;\n }\n .sp-modal-right{\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px;\n }\n }\n\n .seedprod-modal-header h3 {\n margin-top: 0;\n }\n\n .seedprod-modal-body {\n margin: 20px 0;\n }\n\n .seedprod-modal-enter, .seedprod-modal-leave {\n opacity: 0;\n }\n\n .seedprod-modal-enter .seedprod-modal-container,\n .seedprod-modal-leave .seedprod-modal-container {\n -webkit-transform: scale(1.1);\n transform: scale(1.1);\n }\n\n .seedprod input[type=checkbox], .seedprod input[type=radio] {\n margin: 0px 0 0;\n}\n\n.seedprod-sidebar-nav.active:before {\n position: absolute;\n right: -10px;\n margin-top: 28px;\n display: block;\n width: 20px;\n height: 20px;\n content: '';\n background-color: #ffffff;\n -webkit-transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -o-transform: rotate(45deg);\n transform: rotate(45deg);\n border-bottom: 1px solid transparent;\n border-right: 1px solid rgba(0,0,0,.05);\n}\n\n.seedprod .modal{\n z-index: 99999;\n background-color:rgba(0, 0, 0, 0.5);\n}\n\n.seedprod .modal-dialog{\n margin: 80px auto;\n}\n\n#seedprod-upgrade-ribbon-wrapper{\n position: fixed;\n z-index: 1;\n right: 0;\n bottom: 0;\n overflow: hidden;\n height: 110px;\n width: 150px;\n}\n\n#seedprod-upgrade-ribbon{\n position: absolute;\n z-index: 1;\n right: -48px;\n bottom: -15px;\n height: 75px;\n width: 150px;\n font-size: 14px;\n font-weight: 700;\n color: #fff;\n text-transform: uppercase;\n text-align: right;\n line-height: 20px;\n transform: rotate(-45deg);\n cursor:pointer;\n display: block;\n background: #4CAF50;\n box-shadow: inset 0 3px 15px -5px #000;\n}\n\n#seedprod-upgrade-ribbon span{\n transform: rotate(45deg);\n position: absolute;\n bottom: 25px;\n right: 43px;\n}\n\n.seedprod-pro #seedprod-upgrade-ribbon-wrapper{\n display: none;\n }\n\n.seedprod .ribbon {\n position: absolute;\n right: 0px;\n top: 0px;\n z-index: 1;\n overflow: hidden;\n width: 75px;\n height: 75px;\n text-align: left;\n}\n\n.ribbon span {\n font-size: 8px;\n font-weight: 700;\n color: #fff;\n text-transform: uppercase;\n text-align: center;\n line-height: 20px;\n transform: rotate(45deg);\n width: 100px;\n display: block;\n background: #79a70a;\n background: linear-gradient(#ff9c41 0%,#ff9c41 100%);\n box-shadow: 0 3px 20px -5px #000;\n position: absolute;\n top: 18px;\n right: -21px;\n}\n\n\n\n\n\n.seedprod-img-preview i{\n cursor: pointer;\n}\n\n.seedprod .help-block{\n font-size: 12px;\n\n}\n\n.seedprod .has-error .form-control {\n border-color: #ff0000 !important;\n}\n\n.seedprod-builder .input-group-poll-choices{\n margin-bottom:10px;\n position: relative;\n i{\n position: absolute ;\n top: 13px;\n right: 7px;\n color: #c7c7c7;\n cursor: pointer;\n }\n}\n\n.seedprod-winner{\n background-color: rgba(241, 71, 13, 0.08) !important;\n background-image: url(../img/confetti-light.png);\n background-repeat: no-repeat;\n background-size: 200px;\n background-position: 23px -48px;\n font-weight: bold;\n\n}\n\n.seedprod-invalid-entry{\nopacity: 0.4;\n}\n\n.notice, div.updated, div.error{\n}\n\n.error{\n color:red !important;\n}\n\n.seedprod-pro #wpfooter{\n display:none;\n}\n\n#footer-upgrade{\n display:none;\n}\n\n#email_integrations{\n width:100%\n}\n\nhtml{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center center !important;\n height: 100%;\n}\n\n#email_integrations_wrapper{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==');\n background-repeat: no-repeat;\n background-position: center center;\n}\n\n.iframe_loading{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center 100px !important;\n height: 100%;\n}\n\n.results_loading{\n background-image: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==') !important;\n background-repeat: no-repeat !important;\n background-position: center 50px !important;\n height: 100%;\n}\n\n.seedprod .navbar-right {\n margin-right: 0px !important;\n}\n\n.seedprod_page_seedprod_account .seedprod .radio label, .seedprod-pro_page_seedprod_account .seedprod .radio label{\n padding-left:0;\n}\n\n.seedprod .navbar-header {\n float: left !important;\n}\n\n.seedprod{\n.navbar-collapse.collapse {\n display: block!important;\n }\n\n .navbar-nav>li, .navbar-nav {\n float: left !important;\n }\n\n\n .navbar-right {\n float: right!important;\n }\n}\n\n.seedprod-pro-feature{\n opacity: 0.65;\n}\n\n\n.seedprod-pro-upgrade{\n background: rgba(4, 4, 4, 0.6);\n position: fixed;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n z-index: 99999;\n display: table;\n width: 100%;\n height: 100%;\n}\n\n.seedprod-pro-upgrade-row{\n display: table-row;\n width: 100%;\n}\n\n.seedprod-pro-upgrade-cell{\n display: table-cell;\n vertical-align: middle;\n}\n\n.seedprod-pro-upgrade-content{\n background-color: #fff;\n border-radius: 4px;\n max-width: 500px;\n margin: auto;\n padding: 20px;\n text-align:center;\n .btn{\n text-transform: uppercase;\n }\n}\n\n.handdrawn-underline {\n border-bottom: 2px solid #ff9948;\n line-height: .9;\n display: inline-block;\n}\n\n\n/* Builder Preview */\n#seedprod-wrapper{\n\n\n max-width: 480px;\n margin:auto;\n text-align:center;\n border-radius: 6px;\n color: #696969;\n background-color: #fbfbfb;\n box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);\n}\n#seedprod-wrapper .seedprod-td{\n display: table-cell;\n vertical-align: middle;\n padding:0 3px;\n height: 68px;\n}\n\n#seedprod-page-footer {\n padding: 15px 20px;\n font-size: 11px;\n a{\n color: #9c9c9c !important;\n }\n}\n\n#seedprod-page-entries {\n padding: 11px 0px 0 0;\n color: #2d2d2d;\n p > strong{\n font-size: 16px;\n }\n p{\n margin-bottom:11px;\n }\n}\n\n#seedprod-page-login {\n padding: 15px 0px;\n font-size: 14px;\n color:#666;\n .btn-primary{\n color: #fff;\n background-color: #36ad39;\n border-color: #36ad39;\n }\n .form-control{\n height: 40px;\n margin-right:8px;\n width:165px;\n }\n .btn{\n padding: 9px 20px;\n }\n i{\n color: #fff;\n }\n #login-ft-txt{\n margin-top:15px;\n font-size:12px;\n }\n}\n\n#seedprod-page-form {\n background: #fff;\n border-bottom: 1px solid #f2f2f2;\n padding:5px;\n}\n#seedprod-wrapper .seedprod-top-sep{\n border-right: 1px solid #f2f2f2;\n\n}\n\n#seedprod-wrapper .seedprod-over-txt{\n font-size:20px;\n line-height: 0.9;\n font-weight: bold;\n margin-bottom: 5px;\n display: inline-block;\n}\n\n#seedprod-wrapper .seedprod-under-txt{\n font-size:12px;\n line-height: 1;\n display: block;\n\n}\n\n.seedprod-drag-source{\n margin-bottom: -8px;\n margin-right: -8px;\n}\n\n#sp-blocks-editing{\n background: #DD4A1F;\n color: #fff;\n height:56px;\n line-height: 1;\n font-weight: 600;\nfont-size: 16px;\ntext-transform: capitalize;\n span{\n display: block;\n opacity: 0.5;\n text-transform: uppercase;\n font-weight: 600;\nfont-size: 10px;\n }\n}\n\n.sp-block-type-global{\n background: #E4E1E4!important;\n color: #4F394D !important;\n}\n\n.sp-block-type-row{\n background: #3F5FD1 !important;\n}\n\n.sp-block-type-section{\n background: #7036BB !important;\n}\n\n.sp-sidebar-headers .sp-w-5 {\n width: 1.5rem !important;\n}\n\n#sp-blocks-edit-sections {\n margin-bottom:16px;\n margin-left: -20px;\n margin-right: -20px;\n div{\n display:flex;\n padding-top:18px;\n padding-bottom:18px;\n justify-content: center;\n align-items: center;\n font-weight: 600;\n font-size: 13px;\n\n }\n i{\n margin-right:6px;\n }\n div.sp-secondary{\n background: #DEDADE;\n color: #7B6B7A;\n }\n}\n\n#sp-blocks-sections {\n div{\n display:flex;\n padding-top:18px;\n padding-bottom:18px;\n justify-content: center;\n align-items: center;\n font-weight: 600;\n font-size: 14px;\n\n }\n i{\n margin-right:6px;\n }\n div.sp-secondary{\n background: #DEDADE;\n color: #7B6B7A;\n }\n}\n\n\n.seedprod-block-option:hover{\n background: #DD4A1F;\n border-radius:5px;\n color: #fff;\n}\n\n.seedprod-block-option{\n background: #EDEBED;\n width:88px;\n height:85px;\n margin-bottom:8px;\n margin-right:8px;\n display:flex;\n justify-content: center;\n border-radius:5px;\n\n i{\n margin-top:24px;\n font-size:20px !important;\n }\n button{\n display: flex;\n flex-direction: column;\n font-size:11px;\n justify-content: center;\n align-items:center;\n width:100%;\n height:100%;\n cursor: move;\n\n }\n span{\n flex:1;\n display: flex;\n align-items: center;\n }\n\n}\n\n\n\n#seedprod-wrapper .seedprod-block-option-details{\n background: #fff;\n border-top:1px solid #f2f2f2;\n color: #707070;\n position: relative;\n padding:20px 0;\n display: table-cell;\n width: 480px;\n text-align: left;\n padding-left: 74px;\n font-size:16px;\n cursor: pointer;\n}\n\n\n\n.seedprod-entry-drag-area{\n width: 582px;\n margin-left: -34px;\n}\n\n.seedprod-entry-drag-area > div{\n width:100%;\n margin:auto;\n}\n\n#seedprod-wrapper .seedprod-block-option-move:hover{\n color: #333;\n}\n\n\n#seedprod-wrapper .seedprod-block-option-move{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n padding: 18px 0 ;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n text-align: center;\n position: relative;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n border-right: none;\n padding: 18px 0;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit:hover{\n color: #333;\n}\n\n#seedprod-wrapper .seedprod-block-option-value{\n border: 1px solid #f2f2f2;\n color: #9b9b9b;\n padding:2px;\n padding-top: 5px;\n width: 30px;\n height: 30px;\n right: 24px;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n font-size:13px;\n text-align: center;\n}\n\n .seedprod-block-option-icon{\n border: 1px solid #f2f2f2;\n padding:2px;\n padding-left:3px;\n padding-top: 4px;\n width: 29px;\n height: 29px;\n left: 24px;\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n font-size:14px;\n text-align: center;\n}\n\n.seedprod-block-option-icon::before{\n -webkit-font-smoothing: antialiased;\n}\n\n#seedprod-wrapper .seedprod-block-option-remove:hover{\n color: #333;\n}\n\n\n#seedprod-wrapper .seedprod-block-option-remove{\n background: #fcfcfc;\n border: 1px solid #f2f2f2;\n color: #b3b3b3;\n padding: 18px 0;\n width: 34px;\n display:table-cell;\n visibility: hidden;\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n text-align: center;\n}\n\n.show_hidden{\n visibility:visible !important;\n}\n\n\n.seedprod-entry-drag-area > div:last-child .seedprod-block-option-details\n{\n border-bottom:1px solid #f2f2f2;\n}\n\n#seedprod-wrapper .seedprod-block-option-edit{\n cursor:pointer;\n}\n\n\n#seedprod-wrapper .seedprod-page .equal {\n display: flex;\n display: -webkit-flex;\n flex-wrap: wrap;\n }\n\n#seedprod-wrapper .row , #seedprod-wrapper .seedprod .row{\n margin-left: 0;\n margin-right: 0;\n}\n\n\n#seedprod-prize-info .col-md-12{\n padding:0;\n background: #fff;\n}\n\n#seedprod-wrapper .col-xs-4, #seedprod-wrapper .seedprod .col-xs-4 {\n padding-left: 0;\n padding-right: 0;\n}\n\n\n#seedprod-countdown,#seedprod-total-entries,#seedprod-my-entires {\n text-align:center;\n display: table;\n width: 100%;\n min-height: 40px;\n}\n\n#seedprod-countdown{\n font-size: 16px;\n}\n\n#seedprod-wrapper .slider-btn-left{\n background: transparent !important;\n}\n\n#seedprod-wrapper .slider-btn-right{\n background: transparent !important;\n}\n\n#seedprod-wrapper .slider-icon{\n box-shadow: rgba(0, 0, 0, 0.3) -1px 1px 0px;\n}\n\n#seedprod-wrapper .slider-indicator-icon{\n box-shadow: rgba(255, 255, 255, 0.76) 0 0 2px;\n width: 8px;\n height: 8px;\n}\n\n#seedprod-wrapper .slider-indicator-active{\n box-shadow: rgba(0, 0, 0, 0.76) 0 0 2px;\n width: 7px;\n height: 7px;\n}\n\n\n#seedprod-wrapper .slider-indicator-icon{\n background-color: rgba(0,0,0,.3) !important;\n}\n\n#seedprod-wrapper .slider-indicator-active {\n background-color: rgba(255,255,255,.9) !important;\n}\n\n#seedprod-wrapper #seedprod-prize-info {\n border-top: 1px solid #f2f2f2;\n //border-bottom: 1px solid #f2f2f2;\n}\n\n#seedprod-wrapper h1{\n margin:0;\n margin-top: 30px;\n margin-bottom: 10px;\n font-size: 24px;\n color: #2d2d2d;\n font-weight: 700;\n}\n\n#seedprod-wrapper #seedprod-header{\n margin:0;\n padding:0 40px;\n margin-bottom:12px;\n font-size:16px;\n line-height: 1.4;\n color: #666;\n}\n\n.seedprod .btn-default:hover {\n color: #222;\n background-color: #fff;\n border-color: #bbb;\n}\n\n\n\n.seedprod-action-single h3{\n margin-left: 0px !important;\n margin-right: 0px !important;\n}\n\n.seedprod-action-single .seedprod-action-header:first-child {\n margin-bottom: 0px !important;\n}\n\n.seedprod-sidebar-action-body{\n padding:10px 0;\n // border-bottom-width: 1px;\n // border-color: #d3ced2;\n box-shadow: inset 0px -1px 0px rgba(167, 156, 166, 0.25);\n}\n\n.seedprod-action-single .btn-group button{\n padding: 9px 16px;\n\n}\n\n.seedprod .btn-group{\n display:flex !important;\n .btn-default{\n border-color: #DEDADE !important;\n }\n}\n\n.seedprod-action-single .btn{\n padding: 8px 12px;\n}\n\n.seedprod-action-single .btn-group .active{\n background-color: #f1470d !important;\n color: #fff !important;\n box-shadow: none !important;\n\n}\n\n.seedprod-action-header:first-child{\n border-top:0 !important;\n margin-top:1px !important;\n margin-bottom:20px !important;\n}\n\n.seedprod-action-single{\n padding-top: 0px;\n padding-bottom: 0px;\n}\n\n\n.seedprod-block-option-details.active{\n box-shadow:inset 0px 0px 1px 1px #f3510b;\n}\n\n.seedprod .has-error .help-block, .seedprod .has-error .control-label, .seedprod .has-error .radio, .seedprod .has-error .checkbox, .seedprod .has-error .radio-inline, .seedprod .has-error .checkbox-inline, .seedprod .has-error.radio label, .seedprod .has-error.checkbox label, .seedprod .has-error.radio-inline label, .seedprod .has-error.checkbox-inline label {\n color: #ff0000;\n}\n\n\n\n\n/* Tool tips */\n.seedprod-tooltip {\n display: block !important;\n z-index: 99999;\n\n }\n\n .seedprod-tooltip .tooltip-inner {\n font-size:13px;\n background: #4F394D;\n color: #fff;\n border-radius: 6px;\n padding: 5px 10px 4px;\n border:1px solid #4F394D;\n box-shadow: 0 0 3px #4F394D !important;\n max-width:250px;\n width:auto;\n word-wrap: break-word;\n }\n\n .seedprod-tooltip .tooltip-arrow {\n width: 0;\n height: 0;\n border-style: solid;\n position: absolute;\n margin: 5px;\n border-color:#4F394D;\n }\n\n .seedprod-tooltip .tooltip-arrow:before {\n // position: absolute;\n // bottom: -1px;\n // left: 33px;\n // display: block;\n // width: 10px;\n // height: 10px;\n // content: '';\n // background-color: white;\n // -webkit-transform: rotate(45deg);\n // transform: rotate(45deg);\n // border-bottom: 1px solid #b9b9b9;\n // border-right: 1px solid rgba(193, 193, 193, 0.87);\n // z-index: 1;\n}\n\n .seedprod-tooltip[x-placement^=\"top\"] {\n margin-bottom: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"top\"] .tooltip-arrow {\n border-width: 5px 5px 0 5px;\n border-left-color: transparent !important;\n border-right-color: transparent !important;\n border-bottom-color: transparent !important;\n bottom: -5px;\n left: calc(50% - 5px);\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"bottom\"] {\n margin-top: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"bottom\"] .tooltip-arrow {\n border-width: 0 5px 5px 5px;\n border-left-color: transparent !important;\n border-right-color: transparent !important;\n border-top-color: transparent !important;\n top: -5px;\n left: calc(50% - 5px);\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"right\"] {\n margin-left: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"right\"] .tooltip-arrow {\n border-width: 5px 5px 5px 0;\n border-left-color: transparent !important;\n border-top-color: transparent !important;\n border-bottom-color: transparent !important;\n left: -5px;\n top: calc(50% - 5px);\n margin-left: 0;\n margin-right: 0;\n }\n\n .seedprod-tooltip[x-placement^=\"left\"] {\n margin-right: 5px;\n }\n\n .seedprod-tooltip[x-placement^=\"left\"] .tooltip-arrow {\n border-width: 5px 0 5px 5px;\n border-top-color: transparent !important;\n border-right-color: transparent !important;\n border-bottom-color: transparent !important;\n right: -5px;\n top: calc(50% - 5px);\n margin-left: 0;\n margin-right: 0;\n }\n\n .seedprod-tooltip[aria-hidden='true'] {\n visibility: hidden;\n opacity: 0;\n transition: opacity .15s, visibility .15s;\n }\n\n .seedprod-tooltip[aria-hidden='false'] {\n visibility: visible;\n opacity: 1;\n transition: opacity .15s;\n }\n\n .swal2-container{\n z-index: 99999 !important;\n }\n\n button.swal-styled{\n box-shadow:none;\n }\n\n\n\n .swal2-toast{\n border-radius: 2px !important;\n border:none !important;\n .swal2-title{\n display:none !important;\n }\n #swal2-content{\n padding-left:10px;\n font-size: 13px;\n color: #fff;\n }\n\n }\n\n .swal2-toast .swal2-image{\n margin:0 !important;\n }\n\n .swal2-popup.swal2-toast{\n box-shadow: 0 0 3px rgba(239, 239, 239, 0.45)!important;\n border-radius:3px !important;\n }\n\n .swal2-top-end{\n top:30px !important;\n }\n\n .seedprod-builder{\n .swal2-top-end{\n top:70px !important;\n }\n }\n\n .seedprod-upgrade-popup{\n .swal2-modal{\n padding: 20px 0px 0px 0px !important;\n }\n }\n\n .swal2-confirm{\n box-shadow: none !important;\n }\n\n .seedprod-moreinfo-popup{\n .swal2-image{\n width:40px;\n height:40px;\n margin: 10px auto !important;\n\n }\n .swal2-modal{\n width:600px;\n }\n .swal2-content{\n font-size:16px !important;\n }\n }\n\n .seedprod-upgrade-popup {\n .swal2-modal{\n width:600px;\n }\n\n .swal2-image{\n width:40px;\n height:40px;\n\n }\n .swal2-title{\n line-height: 1;\n color: #230820 !important;\n font-size:18px !important;\n margin: 0 40px 20px 40px!important;\n }\n .swal2-styled.swal2-confirm{\n background-color: #DD4A1F !important;\n box-shadow: none !important;\n }\n .swal2-content{\n color: #fff !important;\n font-size:18px !important;\n line-height: 1.5 !important;\n padding: 0px 40px 0px 40px !important;\n\n }\n .swal2-confirm{\n padding: 15px 28px !important;\n font-size: 18px !important;\n margin-bottom: 27px !important;\n }\n .swal2-footer{\n position: relative;\n border-top: none !important;\n color: #2d2d2d !important;\n font-size:16px !important;\n line-height: 1.5 !important;\n background: #f9ffab !important;\n padding: 37px 0 37px !important;\n border-bottom-left-radius: .3125em !important;\n border-bottom-right-radius: .3125em !important;\n }\n .fa-check-circle{\n position: absolute;\n top: -16px;\n font-size: 23px;\n color: #36ad39;\n background: #fff;\n border-radius: 50px;\n padding: 6px;\n }\n }\n\n .swal2-popup .swal2-styled.swal2-cancel{\n background-color: #DEDADE !important;\n color: #4F394D !important;\n }\n\n .swal2-popup .swal2-title{\n font-size:18px !important;\n color: #230820 !important;\n }\n .swal2-modal .swal2-close{\n font-size: 1.5em !important;\n }\n\n// .swal2-modal .swal2-image{\n// display:none !important;\n// }\n\n .vue-popover-theme{\n z-index:10;\n outline:none;\n }\n\n .v-popover .trigger{\n display: block !important;\n }\n\n .sp-highlight-theme-template{\n box-shadow: inset 0 0 1px 1px #0F8A5E;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0px;\n left: 0;\n }\n\n .sp-highlight-section{\n box-shadow: inset 0 0 1px 1px #7036BB;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0px;\n left: 0;\n }\n\n .sp-highlight-row {\n box-shadow: inset 0 0 1px 1px #3F5FD1;\n }\n\n .sp-highlight-block{\n box-shadow: inset 0 0 1px 1px #dd4a1f;\n // position: absolute;\n // width: 100%;\n // height: 100%;\n // top: 0px;\n // left: 0;\n // animation-name: hightlight_pulse_color;\n // animation-duration: 1.5s;\n // animation-iteration-count: infinite;\n // animation-timing-function: ease;\n }\n\n\n\n@keyframes hightlight_pulse_color {\n0% {\n box-shadow: inset 0 0 1px 1px red;\n}\n50% {\n box-shadow: inset 0 0 1px 1px #fff;\n}\n100% {\n box-shadow: inset 0 0 1px 1px #f3510b;\n}\n}\n\n.seedprod-highlight-prize {\n .input-group-addon,.btn-prize,.btn-prize-single {\n border-color: #f3510a !important;\n }\n\n\n}\n\n .seedprod-highlight-option , .seedprod-highlight-option-slider-img{\n box-shadow: inset 0 0 1px 1px #f3510b;\n position: relative;\n cursor: pointer;\n z-index:9999;\n\n}\n\n.seedprod-highlight-padding {\n padding:2px;\n}\n\n.seedprod-highlight-option-slider-img::before {\n position: absolute;\n bottom:0px;\n left:-1px;\n background: #f3510a;\n padding: 0px 4px;\n color:rgba(0,0,0,0.5);\n font-family: \"Font Awesome 5 Free\";\n font-weight: 900;\n content: \"\\f303\";\n font-size:13px;\n z-index: 9;\n}\n\n#seedprod-welcome-video{\n margin:30px 0;\n}\n\n#seedprod-welcome-upgrade{\n margin:30px 0;\n}\n\n.seedprod-highlight-option::before {\n position: absolute;\n bottom: -17px;\n background: #f3510a;\n padding: 0px 4px;\n color:rgba(0,0,0,0.5);\n font-family: \"Font Awesome 5 Free\";\n font-weight: 900;\n content: \"\\f303\";\n font-size:13px;\n z-index: 9;\n}\n\n#seedprod-install-options button{\n font-size:13px;\n margin-top:5px;\n min-width: 250px;\n display: block;\n}\n\n.seedprod-50{\n width:49% !important;\n}\n\nh1.seedprod-highlight-option::before {\n bottom: -15px;\n padding: 1px 4px;\n}\n\n// input[type=\"text\"]:focus, input[type=\"password\"]:focus, input[type=\"color\"]:focus, input[type=\"date\"]:focus, input[type=\"datetime\"]:focus, input[type=\"datetime-local\"]:focus, input[type=\"email\"]:focus, input[type=\"month\"]:focus, input[type=\"number\"]:focus, input[type=\"search\"]:focus, input[type=\"tel\"]:focus, input[type=\"text\"]:focus, input[type=\"time\"]:focus, input[type=\"url\"]:focus, input[type=\"week\"]:focus, input[type=\"checkbox\"]:focus, input[type=\"radio\"]:focus, select:focus, textarea:focus {\n// border-color: #5b9dd9;//#f3510a;\n// }\n\n.help_tip{\n cursor: pointer;\n padding: 0 5px;\n font-size:13px;\n vertical-align: middle;\n}\n\n\n /* Make clicks pass-through */\n#nprogress {\n pointer-events: none;\n }\n\n #nprogress .bar {\n background: #f3510a;\n margin:0;\n position: fixed;\n z-index: 999999;\n top: 0;\n left: 0;\n\n width: 100%;\n height: 2px;\n }\n\n /* Fancy blur effect */\n #nprogress .peg {\n display: block;\n position: absolute;\n right: 0px;\n width: 100px;\n height: 100%;\n box-shadow: 0 0 10px #f3510a, 0 0 5px #f3510a;\n opacity: 1.0;\n\n transform: rotate(3deg) translate(0px, -4px);\n }\n\n /* Remove these to get rid of the spinner */\n #nprogress .spinner {\n display: block;\n position: fixed;\n z-index: 1031;\n top: 15px;\n right: 15px;\n }\n\n #nprogress .spinner-icon {\n width: 18px;\n height: 18px;\n box-sizing: border-box;\n z-index: 1031;\n border: solid 2px transparent;\n border-top-color: #29d;\n border-left-color: #29d;\n border-radius: 50%;\n\n\n animation: nprogress-spinner 400ms linear infinite;\n }\n\n .nprogress-custom-parent {\n overflow: hidden;\n position: relative;\n }\n\n .nprogress-custom-parent #nprogress .spinner,\n .nprogress-custom-parent #nprogress .bar {\n position: absolute;\n }\n\n @-webkit-keyframes nprogress-spinner {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n }\n @keyframes nprogress-spinner {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n }\n\n .layout-3 .slider-indicators{\n top:5px !important;\n }\n\n .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {\n border-color: #f1470d;\n color: #fff;\n background: #f1470d;\n box-shadow: none;\n outline: none;\n}\n\n.tablenav-pages{\n margin: 5px 0 0px !important;\n\n}\n.tablenav.top .displaying-num{\n padding-top: 5px;\n display: inline-block;\n}\n\n.tablenav.bottom{\n.tablenav-pages{\n margin: 5px 0 0px !important;\n}\n}\n\nthead, tfoot{\n background:#fff;\n}\n\n.tablenav.bottom{\n margin-top:8px !important\n}\n\n.widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input {\n margin: 0 0 0 8px !important;\n padding: 0 !important;\n vertical-align: text-top !important;\n}\n\n.row-actions span.delete a{\n color: #ff1010 !important;\n}\n\n#seedprod-giveway-details{\n border-bottom: 1px solid #ddd;\n padding-bottom: 15px;\n margin: 0 0 10px;\n}\n\n#seedprod-settings-nav{\n height: 58px;\n margin-left: -20px;\n border-top:none;\n background: #fff;\n margin-bottom:13px;\n border-radius: 0;\n a{\n height: 58px;\n padding-top: 18px;\n padding-left: 10px;\n padding-right: 10px;\n font-size:14px;\n span{\n padding: 0 10px 24px;\n }\n }\n .active a{\n box-shadow: none !important;\n color: #b3b3b3 !important;\n }\n .router-link-exact-active a{\n color:#222 !important;\n span{\n box-shadow: inset 0 -7px 0 0 #f1470d !important;\n }\n\n }\n\n}\n\n.form-table{\n margin-top:0;\n background-color:transparent !important;\n color: #666;\n tr{\n border-bottom:1px solid #e4e4e4;\n }\n p{\n margin: 8px 0 0;\n }\n label{\n padding-left: 0 !important;\n }\n .help-block{\n padding-top:8px;\n font-style: italic;\n color: #666;\n max-width:600px;\n }\n h4{\n margin-top:0;\n margin-bottom:0;\n font-size: 20px;\n font-weight: 700;\n color: #444;\n }\n strong{\n padding-top: 8px;\n color: #444;\n display:inline-block;\n }\n button{\n font-weight:600 !important;\n }\n .form-control{\n margin-bottom:0 !important;\n margin-right:10px;\n width:400px !important;\n }\n}\n\n.seedprod-settings-title{\n th,td{\n padding:20px 0;\n }\n}\n\n.seedprod-settings-form{\n th,td{\n padding:30px 0;\n }\n}\n\n.seedprod-settings-submit{\n border-bottom:none !important;\n td{\n padding:20px 0;\n }\n}\n\n#seedprod-settings-integrations .seedprod-settings-form{\n td:first-child{\n width:160px\n }\n i{\n display: inline-block;\n margin-left: 10px;\n }\n img{\n background: #fff;\n border: 1px solid #ddd;\n max-width: 90px;\n display: inline;\n margin: 0 0 0 20px;\n }\n}\n\n#seedprod-settings-lite-cta{\n background-color: #fff;\n border: 1px solid #dadada;\n padding: 25px 20px;\n margin: 10px 0 0 0;\n position: relative;\n .dismiss {\n position: absolute;\n top: 10px;\n right: 10px;\n color: #666;\n font-size: 16px;\n }\n h5{\n margin: 0 0 16px;\n font-size: 18px;\n font-weight: 700;\n }\n p{\n color: #555;\n font-size: 14px;\n margin: 0 0 16px;\n }\n a{\n color: #f1470d;\n }\n h6{\n font-weight: 700;\n font-size: 14px;\n margin: 0 0 16px;\n }\n p:last-of-type {\n margin: 0;\n }\n .list {\n margin: 0 0 16px 0;\n overflow: auto;\n max-width: 900px;\n }\n ul {\n margin: 0;\n padding: 0;\n width: 50%;\n float: left;\n }\n li {\n margin: 0;\n padding: 0 0 2px 16px;\n color: #555;\n font-size: 14px;\n position: relative;\n }\n li:before {\n content: '+';\n position: absolute;\n top: -1px;\n left: 0;\n }\n}\n\n\n\n.btn-facebook{\n background: #3C5A99;\n color: #fff;\n border-radius: 4px;\n font-size: 14px;\n padding: 12px 26px;\n line-height: 1 !important;\n border: 0;\n outline: 0;\n cursor: pointer;\n color:#fff !important;\n}\n.btn-facebook.seedprod-highlight-option::before{\n bottom:-13px;\n}\n\n.green{\n color: #218900;\n font-weight: 700;\n}\n\n/* Welcome */\n.seedprod-welcome-video{\n .swal2-popup {\n width: 600px !important;\n max-width:100% !important;\n }\n\n}\n\n.swal2-popup .swal2-styled.swal2-confirm{\n background-color: #DD4A1F !important;\n}\n#seedprod-welcome {\n color: #555;\n padding-top: 110px;\n .btn{\n font-size:15px;\n\n }\n hr{\n width:115px;\n color: #ddd;\n margin-top: 40px;\n margin-bottom: 40px;\n }\n #license-info{\n text-align:center;\n p{\n color: #666;\n font-size: 15px;\n }\n #license-sub{\n font-size:12px;\n a{\n color: #f1470d;\n text-decoration: underline;\n }\n }\n .input-lg{\n min-width: 350px !important;\n height: 42px !important;\n margin-right: 8px;\n }\n .fa-question-circle{\n margin-left:20px;\n color: #999;\n font-size:16px;\n cursor: pointer;\n vertical-align:middle;\n }\n .btn {\n font-size: 14px;\n padding: 10px 30px;\n }\n .form-inline{\n margin-bottom:10px\n }\n\n }\n\n #sub-welcome{\n padding-bottom:50px;\n h6, .btn{\n font-size:15px;\n }\n .button-wrap {\n margin-left:40px;\n margin-right: 40px;\n }\n }\n .btn-default{\n background:#f1f1f1;\n border:1px solid #f1f1f1;\n color:#666;\n }\n .btn-block{\n font-weight: 500;\n }\n .btn-default:hover{\n background:#ddd;\n border:1px solid #f1f1f1;\n }\n .intro {\n background-color: #fff;\n border: 1px solid #ddd;\n border-top: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n border-radius: 2px;\n margin-bottom: 30px;\n position: relative;\n padding-top: 40px;\n border-radius: 7px;\n }\n .button-wrap {\n margin-top: 25px;\n .left {\n float: left;\n width: 50%;\n padding-right: 6px;\n\n }\n .right {\n float: right;\n width: 50%;\n padding-left: 6px;\n\n }\n }\n .welcome-container {\n margin: 0 auto;\n max-width: 676px;\n padding: 0;\n }\n .robbie {\n background-color: #fff;\n border: 2px solid #e1e1e1;\n border-radius: 50%;\n height: 114px;\n width: 114px;\n padding: 12px 14px 0 14px;\n position: absolute;\n top: -58px;\n left: 50%;\n margin-left: -55px;\n }\n img {\n max-width: 100%;\n height: auto;\n }\n .block {\n padding: 40px;\n }\n h1 {\n color: #2d2d2d;\n font-size: 24px;\n text-align: center;\n margin: 0 0 16px 0;\n font-weight: 700;\n }\n h6 {\n font-size: 16px;\n font-weight: 400;\n line-height: 1.6;\n text-align: center;\n margin: 0;\n color:#7c7c7c;\n }\n\n .features {\n background-color: #fff;\n border: 1px solid #ddd;\n border-top: 2px solid #ddd;\n border-bottom: 0;\n\n border-radius: 7px 7px 0 0;\n position: relative;\n padding-top: 10px;\n padding-bottom: 0px;\n margin-bottom:0px;\n .feature-list {\n margin-top: 60px;\n }\n .feature-block {\n float: left;\n width: 50%;\n padding-bottom: 35px;\n overflow: auto;\n\n img {\n float: left;\n max-width: 58px;\n }\n h5 {\n margin-left: 68px;\n margin-top:0;\n color:#2d2d2d;\n }\n p {\n margin: 0;\n margin-left: 68px;\n font-size:12px;\n color:#666;\n }\n }\n .feature-block.first {\n padding-right: 16px;\n clear: both;\n }\n .feature-block.last {\n padding-left: 16px;\n }\n }\n .seedprod-clear:before {\n content: \" \";\n display: table;\n }\n\n .seedprod-clear:after {\n clear: both;\n content: \" \";\n display: table;\n }\n\n .footer {\n background-color: #f7f7f7;\n border: 1px solid #ddd;\n border-bottom: 2px solid #ddd;\n border-radius: 0 0 7px 7px;\n .block {\n padding: 45px 80px;\n }\n .button-wrap{\n margin-top: 0px;\n }\n }\n\n .btn-trans-green {\n background-color: none;\n color: #0f8000;\n }\n\n .underline {\n position: relative;\n }\n\n .btn-trans-green .dashicons {\n height: 18px;\n }\n\n .btn-trans-green .underline:after {\n content: \" \";\n border-bottom: 1px dashed #0f8000;\n position: absolute;\n bottom: -5px;\n left: 0;\n width: 100%;\n }\n\n .testimonial-block {\n margin: 50px 0 0 0;\n color:#666;\n .sig{\n margin-top:35px\n }\n }\n .testimonial-block img {\n border-radius: 50%;\n float: left;\n max-width: 116px;\n }\n\n .testimonial-block p {\n font-size: 15px;\n margin: 0 0 12px 140px;\n }\n\n}\n\n/* About Us */\n\n#seedprod-aboutus{\n .row{\n margin-left:0 !important;\n margin-right:0 !important;\n }\n h2{\n margin-top:0 !important;\n margin-bottom: 24px;\n color: #23282d;\n font-size: 24px;\n }\n h3{\n margin-top:0 !important;\n font-size: 18px;\n margin-bottom: 30px;\n color: #23282C;\n line-height: 1.6;\n }\n p {\n font-size: 16px;\n line-height: 1.52;\n color:#444;\n margin: 1em 0;\n }\n p:last-child {\n margin-bottom: 0;\n }\n figcaption {\n font-size: 14px;\n color: #888888;\n margin-top: 5px;\n text-align: center;\n line-height: initial;\n }\n}\n\n#seedprod-aboutus-section{\n margin-top:20px;\n background:#fff;\n padding: 30px 15px;\n border: 1px solid #DDDDDD;\n\n}\n\n#seedprod-plugin-recommendations{\n margin-top:20px;\n .col-md-4:first-child{\n padding-left:0;\n }\n .col-md-4:nth-child(2){\n padding-left:7px;\n padding-right:7px;\n }\n .col-md-4:last-child{\n padding-right:0;\n }\n}\n\n.seedprod-plugin-recommendations{\n display: flex;\n flex-flow: row wrap;\n justify-content: space-between;\n margin:20px -10px 0 !important;\n li{\n background-color:#fff;\n border: 1px solid #ddd;\n flex: 1;\n margin:0 10px 20px;\n display: flex;\n flex-flow: column ;\n flex-basis:30%;\n }\n .seedprod-plugin-recommendations-block{\n display:flex;\n padding:20px;\n }\n .seedprod-media-img{\n margin-right:20px;\n img{\n border: 1px solid #eee;\n max-width: 75px;\n padding: 13px;\n }\n }\n .seedprod-media-body{\n flex:1;\n h4{\n margin-top:0;\n margin-bottom:16px;\n color:#2d2d2d;\n font-size:16px;\n }\n p{\n font-size:13px !important;\n }\n }\n .seedprod-plugin-install{\n display:flex;\n margin-top: auto;\n background-color: #f7f7f7;\n border-top: 1px solid #ddd;\n padding: 20px;\n justify-content: space-between;\n align-items: center;\n }\n\n}\n\n\n#seedprod-aboutus-getting-started-section{\n margin-top:20px;\n background:#fff;\n padding: 30px 15px;\n border: 1px solid #DDDDDD;\n .embed-responsive{\n border: 1px solid #DDDDDD;\n }\n ul{\n margin-top:20px;\n margin-bottom:0;\n }\n a{\n text-decoration:underline;\n }\n}\n\n#seedprod-aboutus-getting-upsell-section{\n margin-top:20px;\n background:#FAFAFA;\n\n border: 1px solid #DDDDDD;\n font-size: 18px;\n .row:first-child{\n padding: 30px 15px;\n }\n .row:last-child{\n padding: 30px 15px;\n }\n p:last-child{\n margin-top: 15px;\n }\n hr {\n margin:0 30px;\n border: 0;\n border-top: 1px solid #ddd;\n }\n h2{\n font-size: 24px;\n line-height: 1.6;\n margin-bottom: 24px;\n }\n #upsell-features{\n background: #fff;\n border-top: 1px solid #ddd;\n a{\n text-decoration: underline;\n font-weight: 600;\n }\n }\n\n .fa {\n color: #2a9b39;\n margin: 0 8px 0 0;\n font-size:16px;\n }\n li{\n line-height:2;\n font-size:16px;\n color: #444;\n margin-bottom:0;\n\n }\n}\n\n#seedprod-aboutus-getting-started-docs1-section{\n margin-top:20px;\n\n}\n\n.docs-section{\n background:#fff;\n border: 1px solid #DDDDDD;\n padding: 30px;\n line-height: 2;\n img{\n margin-right:20px;\n }\n .media-heading{\n font-size:24px;\n margin-bottom:16px;\n }\n .media-body{\n font-size:16px;\n line-height: 1.5;\n p{\n margin-bottom:30px;\n }\n\n }\n}\n\n#seedprod-aboutus-lite-vs-pro-section{\n margin-top:20px;\n table{\n border: 1px solid #DDDDDD;\n caption{\n background:#fff;\n text-align:center;\n border: 1px solid #DDDDDD;\n border-bottom: 0;\n padding: 30px;\n font-size:16px;\n color:#444;\n h1{\n color: #23282d;\n font-size:23px;\n }\n\n }\n }\n td{\n border: 1px solid #DDDDDD;\n background:#fff;\n padding: 30px;\n vertical-align: top;\n font-size: 16px;\n color:#444;\n width:33.33333%\n }\n th{\n border: 0;\n background:#FAFAFA;\n padding: 30px;\n font-size: 18px;\n color: #23282C;\n }\n tfoot{\n text-align:center;\n a{\n font-size:18px;\n text-decoration: underline;\n font-weight: bold;\n }\n p{\n margin-top:20px;\n }\n }\n\n .features-none{\n padding-left: 30px;\n background-position: 0px 4px;\n background-size: 15px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-none.svg);\n }\n\n .features-partial{\n padding-left: 30px;\n background-position: -3px 0;\n background-size: 23px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-partial.svg);\n }\n\n .features-full{\n padding-left: 30px;\n background-position: 0 6px;\n background-size: 15px auto;\n background-repeat: no-repeat;\n background-image: url(../img/icon-full.svg);\n }\n\n}\n\n.clearfix{\n opacity: 1 !important;\n\n}\n\n/* Google Charts */\nsvg > g > g:last-child { pointer-events: none }\n\n.seedprod-charts{\n background: #fff;\n border: 1px solid #e7e8e7;\n padding: 40px 0 0;\n min-height: 120px;\n\n}\n\n/* New Builder */\n.sp-btn{\n padding: 11px 15px;\n border-radius: 6px;\n i{ margin-right: 10px;}\n}\n\n#seedprod-builder-view{\n scroll-behavior: smooth;\n}\n\n#sp-revision-history{\n padding: 20px;\n p{\n font-weight: 600;\n font-size: 13px;\n padding: 0px 0 16px 0px;\n }\n .active-current{\n border: 2px solid #dd4a1f;\n }\n .sp-revision-item{\n display: flex;\n align-items: center;\n margin-bottom:10px;\n margin-left: -6px;\n }\n .active.sp-revision-item{\n margin-left: -21px;\n button{\n border: 2px solid #DD4A1F;\n background: #fff;\n }\n }\n .active .sp-revision-item-circle{\n border: 2px solid #dd4a1f;\n width: 10px;\n height: 10px;\n display: inline-block;\n border-radius: 9999px;\n }\n .active .sp-revision-item-line{\n border-bottom: 2px solid #dd4a1f;\n width: 5px;\n display: inline-block;\n }\n button{\n padding-left:16px;\n display: flex;\n align-items: center;\n background: #EDEBED;\n height: 70px;\n width: 100%;\n border-radius: 6px;\n color: #4F394D;\n font-weight: 600;\n font-size: 13px;\n img{\n border: none;\n border-radius: 9999px;\n width:39px;\n height: 39px;\n margin-right:16px;\n }\n .sp-rev-date{\n color: #7b6b7a;\n font-size: 10px;\n }\n }\n button:hover{\n background: #fff;\n }\n\n}\n\n\n\n#sp-revision-timeline{\n margin-top:-3px;\n padding-top: 16px;\n border-left: 2px solid #EDEBED;\n padding-left:15px;\n}\n\n#sp-bottom-nav-actions{\n position: fixed;\n height:53px;\n width:inherit;\n bottom: 0;\n background: #4F394D;\n color: #D3CED2;\n z-index:20;\n font-size: 16px;\n\n}\n\n#sp-bottom-nav-actions button{\n width: 38px;\n height: 38px;\n border-radius: 6px;\n}\n\n#sp-bottom-nav-actions button.active{\n background: #fff !important;\n color: #4f394d !important;\n}\n\n#sp-bottom-nav-actions button:hover{\n color: #fff ;\n background: #392037;\n}\n\n#seedprod-builder-preview{\n margin-left:10px;\n font-size:14px;\n font-weight: 600;\n border:1px solid #a79ca6;\n color: #a79ca6;\n height:40px;\n}\n\n#seedprod-builder-preview:hover{\n border:1px solid #0b6142;\n background: #0b6142;\n color: #fff;\n opacity: 1;\n}\n\n#seedprod-builder-save{\n font-size:14px;\n font-weight: 600;\n border-top-right-radius:0;\n border-bottom-right-radius:0;\n background:#0F8A5E;\n height:40px;\n}\n\n#seedprod-builder-save:hover{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown{\n background:#0F8A5E;\n display:flex;\n height:40px;\n font-size:15px;\n border-left: 1px rgba(0, 0, 0, 0.3) solid;\n border-top-left-radius:0;\n border-bottom-left-radius:0;\n padding-right: 12px;\n padding-left: 12px;\n i{ margin-right: 0px;}\n}\n\n#seedprod-builder-save-dropdown:hover{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown.active{\n background: #0b6142;\n}\n\n#seedprod-builder-save-dropdown-menu{\n background: #fff;\n font-size:14px;\n font-weight:600;\n width: 179px;\n margin-top: 2px;\n z-index: 99999;\n color: #4F394D ;\n border-radius: 6px;\n box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;\n .sp-btn{\n width: 100%;\n text-align:left;\n }\n button:hover{\n color: #0F8A5E;\n background:rgba(15, 138, 94, 0.05);\n }\n button{\n display: flex;\n align-items: center;\n }\n}\n\n\n\n#sp-builder-top{\n background: #230820;\n color: #fff;\n}\n\n#sp-builder-top > div{\n height: 72px;\n}\n\n#sp-builder-top-main-nav-utlity{\n display: flex;\n align-items: center;\n justify-content: flex-end;\n height: 100%;\n}\n\n#sp-builder-top-main-nav{\n height: 100%;\n > div{\n\n display: flex;\n height: 100%;\n align-items: stretch;\n\n }\n a{\n display: flex;\n align-items: center;\n padding:2px 20px;\n font-size: 16px;\n color: #A79CA6;\n font-weight:600;\n }\n a.active{\n font-size: 16px;\n color:#fff;\n box-shadow: inset 0 -3px 0 0 #fff !important;\n }\n a:hover{\n color: #fff;\n }\n}\n\n\n\n.sp-el-toolbar{\n top: -24px;\n left: 0;\n width: inherit;\n justify-content: center;\n}\n\n.sp-el-toolbar-add{\n height: 0px;\n bottom: 0px;\n left: 0;\n width: inherit;\n justify-content: center;\n z-index:100;\n}\n\n.sp-el-toolbar-add > span{\n position: relative;\n top: -11px;\n}\n\n.sp-toolbar-bottom{\n top: 0px;\n\n > div{\n border-top-left-radius: 0px !important;\n border-top-right-radius: 0px !important;\n border-bottom-left-radius: 6px;\n border-bottom-right-radius: 6px;\n }\n\n}\n\n.sp-el-toolbar > div{\n border-top-left-radius: 6px;\n border-top-right-radius: 6px;\n}\n\n.sp-toolbar-left{\n width: 22px;\n height: inherit;\n background: linear-gradient(135deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,#7036BB 50%,#7036BB 100%);\n background-position-y: 2px;\n background-repeat: no-repeat;\n background-position-x: 0px;\n position: relative;\n right: -1px;\n}\n\n.sp-toolbar-bottom{\n .sp-toolbar-left{\n width: 22px;\n height: inherit;\n background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,#7036BB 50%,#7036BB 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: 0px;\n position: relative;\n right: -3px;\n }\n}\n\n.sp-toolbar-right{\n width: 22px;\n height: inherit;\n background: linear-gradient(45deg, #7036BB 0%,#7036BB 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: -1px;\n position: relative;\n left: -1px;\n}\n\n.sp-toolbar-bottom{\n .sp-toolbar-right{\n width: 22px;\n height: inherit;\n background: linear-gradient(135deg, #7036BB 0%,#7036BB 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);\n background-position-y: 0px;\n background-repeat: no-repeat;\n background-position-x: -1px;\n position: relative;\n left: -1px;\n }\n}\n\n.color-picker-float{\n position: absolute;\n z-index: 10;\n right: 7px;\n margin-top:5px;\n background:#fff;\n border-radius: 10px;\n padding:16px;\n box-shadow: 0px 15px 50px rgba(81, 75, 104, 0.3);\n\n}\n\n.color-picker-float-overflow{\n //position: absolute;\n z-index: 50;\n left: 20px;\n margin-left:18px;\n margin-top:5px;\n background:#fff;\n border-radius: 10px;\n padding:16px;\n box-shadow: 0px 15px 50px rgba(81, 75, 104, 0.3);\n top:0;\n width: 364px;\n .vc-chrome{\n width:180px\n }\n button{\n box-shadow: 0 0 1px 1px #dedede;\n }\n}\n\n.vc-chrome{\n box-shadow:none !important;\n}\n\n.sp-form-group{\n margin-bottom:10px;\n input[type=text],select{\n width:100%;\n display:block;\n }\n .help_tip i{\n vertical-align: text-top;\n }\n .color-picker-container{\n left:5px;\n }\n .simple-color-picker{\n .sp-cp-label{\n font-weight: 600;\n font-size: 14px;\n }\n }\n .simple-color-picker-container{\n\n .sp-bg-cv-transparent{\n width:105px;\n height:28px;\n border-radius: 20px;\n }\n .current-color{\n width:105px;\n height:28px;\n border-radius: 20px;\n border: 2px solid #FFFFFF;\n }\n }\n .current-color{\n //border:1px solid #DEDADE;\n display: inherit;\n }\n .sp-color-value{\n padding-left:28px;\n }\n // .vc-sketch{\n // position: absolute;\n // z-index: 10;\n // left:20px;\n // }\n .sp-color-value-clear{\n display:inline-block;\n right:7px;\n color: #efefef;\n }\n .sp-btn-primary{\n background-color: #38A169;\n color:#fff;\n padding:10px 10px;\n border-radius:4px;\n line-height: 1;\n cursor: pointer;\n }\n}\n\n.sp-bg-cv-transparent{\n background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);\n background-size: 10px 10px;\n background-position: 0 0, 0 5px, 5px -5px, -5px 0px;\n width: 1.25rem;\n height: 1.25rem;\n border-radius: 9999px;\n}\n\n\n\n .gutter.gutter-horizontal {\n cursor: ew-resize;\n margin-left: -1px !important;\n margin-right: -1px !important;\n min-height:75px;\n }\n\n// .sp-el-row {\n// margin-left: -2px !important;\n// margin-right: -2px !important;\n// }\n\n// .sp-el-col {\n// margin-left: 2px !important;\n// margin-right: 2px !important;\n// }\n\n .sp-btn-group{\n span{\n padding:7px;\n background: #eee;\n width: 50px;\n display:inline-block;\n text-align:center;\n cursor: pointer;\n }\n span.active{\n background: #ccc;\n }\n span:hover{\n background: #ddd;\n }\n span:first-child{\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n }\n span:last-child{\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n }\n }\n\n .mce-i-help{\n display: none !important;\n }\n\n .mce-panel .mce-btn i.mce-caret {\n border-top: 6px solid #7b6b7a;\n margin-left: 2px;\n margin-right: 2px;\n}\n\n.mce-panel .mce-btn i.mce-caret {\n border-top: 6px solid #7b6b7a;\n margin-left: 2px;\n margin-right: 2px;\n}\n\n.mce-panel .mce-btn:focus i.mce-caret, .mce-panel .mce-btn:hover i.mce-caret {\n border-top-color: #ffffff;\n}\n\n\n .mce-tinymce-inline .mce-flow-layout-item .mce-first,.mce-tinymce-inline .mce-flow-layout-item .mce-last{\n pointer-events: none !important;\n }\n\n .sp-section-categories{\n li{\n padding:16px 0;\n color: #7B6B7A;\n font-weight: 600;\n font-size: 16px;\n margin-bottom:0;\n //border-bottom: 1px solid\n box-shadow: inset 0px -1px 0px rgba(167, 156, 166, 0.25);\n }\n .sp-w-4{\n width:24px;\n }\n .sp-h-4{\n height:24px;\n }\n }\n\n.mce-toolbar-grp{\n background: #EDEBED !important;\n border-bottom: 1px solid #EDEBED !important;\n }\n\n .mce-tinymce-inline.mce-panel{\n background: transparent !important;\n box-shadow: none !important;\n }\n.mce-tinymce-inline .mce-toolbar-grp{\n background: #230820 !important;\n border-bottom: 1px solid #230820 !important;\n border-radius: 50px;\n }\n\n .mce-tinymce-inline .mce-btn:hover{\n color: #fff !important;\n background: #230820 !important;\n border-color: #7B6B7A !important;\n box-shadow: none !important;\n .mce-ico{\n color:#fff !important;\n }\n\n }\n\n .mce-tinymce-inline .mce-ico{\ncolor:#7B6B7A !important;\n }\n\n .mce-tinymce-inline .mce-toolbar-grp .mce-active {\n\n background: #230820 !important;\n border-color: #7B6B7A !important;\n\n\n .mce-ico{\n color:#fff !important;\n }\n }\n\n .mce-inline-toolbar-grp{\n background: #230820 !important;\n border-bottom: 1px solid #230820 !important;\n .mce-ico{\n color:#7B6B7A !important;\n }\n .mce-ico:hover{\n color:#fff !important;\n }\n .mce-btn:hover{\n color:#fff !important;\n background: #230820 !important;\n border-color: #7B6B7A !important;\n box-shadow: none !important;\n\n }\n\n .mce-primary{\n color:#fff !important;\n background: #0f8a5e !important;\n border-color: #0f8a5e !important;\n box-shadow: none !important;\n .mce-ico{\n color: #fff !important;\n }\n }\n\n .mce-primary:hover{\n color:#fff !important;\n background: #0b6142 !important;\n border-color: #0b6142 !important;\n box-shadow: none !important;\n .mce-ico{\n color: #fff !important;\n }\n }\n\n div.wp-link-preview a {\n color: #fff !important;\n }\n }\n\n div.mce-inline-toolbar-grp.mce-arrow-up:after {\n border-bottom-color: #230820 !important;\n\n}\n\n\n\n\n.vue-slider-process{\n background-color: #dd4a1f !important;\n}\n\n.vue-slider-dot-tooltip-inner{\n border-color: #dd4a1f !important;\n background-color: #dd4a1f !important;\n}\n\n.seedprod-sidebar-form::-webkit-scrollbar {\n display: none;\n }\n\n\n #wpforms-builder-elementor-popup {\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n padding: 30px;\n z-index: 10000;\n background: rgba( 0, 0, 0, 0.75 );\n}\n\n#wpforms-builder-elementor-popup iframe {\n width: 100%;\n height: 100%;\n background-color: #ffffff;\n}\n\n.fade-enter-active, .fade-leave-active {\n transition: opacity 0.25s ease-out;\n}\n\n.fade-enter, .fade-leave-to {\n opacity: 0;\n}\n\n.sp-preview-hidden {\n display: none !important;\n}\n\n.sp-wp-button {\n display: inline-block;\n padding: .5em .75em;\n font-weight: 600;\n border-radius: 3px;\n\n &-transparent {\n background-color: #7b6b7a;\n border: 1px solid #7b6b7a;\n color: #fff;\n\n &:hover {\n background-color: #4f394d;\n border-color: #4f394d;\n color: #fff;\n }\n }\n}\n\n.loading:after {\n content: ' .';\n animation: dots 1s steps(5, end) infinite;}\n \n @keyframes dots {\n 0%, 20% {\n color: rgba(0,0,0,0);\n text-shadow:\n .25em 0 0 rgba(0,0,0,0),\n .5em 0 0 rgba(0,0,0,0);}\n 40% {\n color: black;\n text-shadow:\n .25em 0 0 rgba(0,0,0,0),\n .5em 0 0 rgba(0,0,0,0);}\n 60% {\n text-shadow:\n .25em 0 0 black,\n .5em 0 0 rgba(0,0,0,0);}\n 80%, 100% {\n text-shadow:\n .25em 0 0 black,\n .5em 0 0 black;}}"]}
|
public/css/admin-style.min.css
CHANGED
@@ -145,7 +145,7 @@ body.seedprod_page_seedprod_pro_template #wpwrap,body.seedprod_page_seedprod_lit
|
|
145 |
.sp-sidebar-drawer-closed{margin-left:-320px !important}
|
146 |
#seedprod-sidebar-wrapper{background-color:#f7f6f7;color:#4f394d;width:320px;min-width:320px;z-index:10;margin-top:0;margin-bottom:125px;-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,0.15);box-shadow:0 .5rem 1rem rgba(0,0,0,0.15)}
|
147 |
#seedprod-preview-wrapper.sp-setup_settings_connect{background-color:#edebed !important}
|
148 |
-
#seedprod-preview-wrapper{margin-bottom:72px;background-color:#7b6b7a;overflow-y:
|
149 |
#seedprod-preview-wrapper #seedprod-builder-view{margin-left:auto;margin-right:auto;background-color:#fff}
|
150 |
.sp-mobile-view{border-radius:10px;border:5px solid #4f394d;-webkit-box-shadow:0 15px 50px rgba(35,8,32,0.25);box-shadow:0 15px 50px rgba(35,8,32,0.25);margin-top:15px}
|
151 |
.seedprod-sidebar-form-body{padding:0;padding-top:0;padding-bottom:30px;margin:0 20px;text-align:left;-webkit-box-shadow:inset 0 -1px 0 rgba(167,156,166,0.25);box-shadow:inset 0 -1px 0 rgba(167,156,166,0.25)}
|
145 |
.sp-sidebar-drawer-closed{margin-left:-320px !important}
|
146 |
#seedprod-sidebar-wrapper{background-color:#f7f6f7;color:#4f394d;width:320px;min-width:320px;z-index:10;margin-top:0;margin-bottom:125px;-webkit-box-shadow:0 .5rem 1rem rgba(0,0,0,0.15);box-shadow:0 .5rem 1rem rgba(0,0,0,0.15)}
|
147 |
#seedprod-preview-wrapper.sp-setup_settings_connect{background-color:#edebed !important}
|
148 |
+
#seedprod-preview-wrapper{margin-bottom:72px;background-color:#7b6b7a;overflow-y:auto}
|
149 |
#seedprod-preview-wrapper #seedprod-builder-view{margin-left:auto;margin-right:auto;background-color:#fff}
|
150 |
.sp-mobile-view{border-radius:10px;border:5px solid #4f394d;-webkit-box-shadow:0 15px 50px rgba(35,8,32,0.25);box-shadow:0 15px 50px rgba(35,8,32,0.25);margin-top:15px}
|
151 |
.seedprod-sidebar-form-body{padding:0;padding-top:0;padding-bottom:30px;margin:0 20px;text-align:left;-webkit-box-shadow:inset 0 -1px 0 rgba(167,156,166,0.25);box-shadow:inset 0 -1px 0 rgba(167,156,166,0.25)}
|
public/css/lightbox.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.lb-loader,.lightbox{text-align:center;line-height:0;position:absolute;left:0}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{width:100%;z-index:10000;font-weight:400;outline:0}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-outerContainer:after{content:"";display:table;clear:both}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../img/loading.gif) no-repeat}.lb-nav{position:absolute;top:0;left:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../img/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../img/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{content:"";display:table;clear:both}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../img/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1}
|
public/css/seedprod-gallery-block.css
ADDED
@@ -0,0 +1,321 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
.sp-gallery-block{
|
3 |
+
grid-gap: var(--vgap) var(--hgap);
|
4 |
+
grid-template-columns: repeat(var(--columns), 1fr);
|
5 |
+
}
|
6 |
+
.sp-gallery-item{
|
7 |
+
padding-bottom:var(--aspect-ratio);
|
8 |
+
}
|
9 |
+
.sp-gallery-items{
|
10 |
+
position:relative;
|
11 |
+
}
|
12 |
+
|
13 |
+
.sp-gallery-items .sp-gallery-item-img{
|
14 |
+
padding-bottom: var(--aspect-ratio);
|
15 |
+
background-position: center center;
|
16 |
+
background-size: cover;
|
17 |
+
width: 100%;
|
18 |
+
transform-origin: center top;
|
19 |
+
}
|
20 |
+
|
21 |
+
.sp-gallery-bg-overlay,
|
22 |
+
.sp-gallery-item-block {
|
23 |
+
|
24 |
+
height: 100%;
|
25 |
+
width: 100%;
|
26 |
+
position: absolute;
|
27 |
+
top: 0;
|
28 |
+
left: 0;
|
29 |
+
}
|
30 |
+
|
31 |
+
.sp-gallery-item-block {
|
32 |
+
display: flex;
|
33 |
+
flex-direction: column;
|
34 |
+
align-content: center;
|
35 |
+
justify-content: center;
|
36 |
+
opacity: 0;
|
37 |
+
}
|
38 |
+
.sp-gallery-items.sp-hidden-items{
|
39 |
+
opacity: 0;
|
40 |
+
position: absolute;
|
41 |
+
}
|
42 |
+
|
43 |
+
.sp-gallery-items:hover .sp-gallery-bg-overlay{
|
44 |
+
background-color: rgba(0,0,0,0.7);
|
45 |
+
z-index: 999;
|
46 |
+
}
|
47 |
+
.sp-gallery-items:hover .sp-gallery-item-block{
|
48 |
+
z-index: 999;
|
49 |
+
opacity: 1;
|
50 |
+
}
|
51 |
+
|
52 |
+
.sp-gallery-tabs {
|
53 |
+
display: flex;
|
54 |
+
flex-wrap: wrap;
|
55 |
+
margin-bottom: 20px;
|
56 |
+
justify-content: center;
|
57 |
+
align-content: flex-start;
|
58 |
+
align-items: center;
|
59 |
+
flex-direction: row;
|
60 |
+
line-height: 34px;
|
61 |
+
}
|
62 |
+
|
63 |
+
.sp-gallery-tabs a.sp-gallery-tab-title{
|
64 |
+
padding: 4px 10px;
|
65 |
+
border-bottom: 2px solid transparent;
|
66 |
+
cursor: pointer;
|
67 |
+
}
|
68 |
+
.sp-gallery-tabs a.sp-gallery-tab-title.sp-tab-active{
|
69 |
+
border-bottom: 2px solid;
|
70 |
+
}
|
71 |
+
|
72 |
+
.sp-image-gallery .gallery-item {
|
73 |
+
display: inline-block;
|
74 |
+
text-align: center;
|
75 |
+
vertical-align: top;
|
76 |
+
width: 100%;
|
77 |
+
max-width: 100%;
|
78 |
+
margin: 0 auto;
|
79 |
+
}
|
80 |
+
|
81 |
+
.sp-image-gallery .gallery{
|
82 |
+
display: block;
|
83 |
+
text-align: left;
|
84 |
+
}
|
85 |
+
|
86 |
+
|
87 |
+
@media (min-width: 768px) {
|
88 |
+
.sp-image-gallery .gallery-columns-2 .gallery-item {
|
89 |
+
max-width: 50%; }
|
90 |
+
.sp-image-gallery .gallery-columns-3 .gallery-item {
|
91 |
+
max-width: 33.33%; }
|
92 |
+
.sp-image-gallery .gallery-columns-4 .gallery-item {
|
93 |
+
max-width: 25%; }
|
94 |
+
.sp-image-gallery .gallery-columns-5 .gallery-item {
|
95 |
+
max-width: 20%; }
|
96 |
+
.sp-image-gallery .gallery-columns-6 .gallery-item {
|
97 |
+
max-width: 16.666%; }
|
98 |
+
.sp-image-gallery .gallery-columns-7 .gallery-item {
|
99 |
+
max-width: 14.28%; }
|
100 |
+
.sp-image-gallery .gallery-columns-8 .gallery-item {
|
101 |
+
max-width: 12.5%; }
|
102 |
+
.sp-image-gallery .gallery-columns-9 .gallery-item {
|
103 |
+
max-width: 11.11%; }
|
104 |
+
.sp-image-gallery .gallery-columns-10 .gallery-item {
|
105 |
+
max-width: 10%; }
|
106 |
+
}
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
|
111 |
+
|
112 |
+
|
113 |
+
.image-preview-container {
|
114 |
+
position: fixed;
|
115 |
+
top: 0;
|
116 |
+
left: 0;
|
117 |
+
z-index: 9999;
|
118 |
+
width: 100vw;
|
119 |
+
height: 100vh;
|
120 |
+
background: rgba(0, 0, 0, 0.6);
|
121 |
+
transition: all 0.3s;
|
122 |
+
display: none;
|
123 |
+
color: #fff;
|
124 |
+
will-change: transform;
|
125 |
+
user-select: none;
|
126 |
+
}
|
127 |
+
.image-preview-container.show {
|
128 |
+
animation: show 0.5s forwards;
|
129 |
+
-webkit-animation: show 0.5s forwards;
|
130 |
+
}
|
131 |
+
.image-preview-container.hiding .preview-header {
|
132 |
+
animation: opacityAnimation 0.5s forwards reverse;
|
133 |
+
}
|
134 |
+
.image-preview-container img {
|
135 |
+
transition: all 0.5s;
|
136 |
+
transform: translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(0) scale(var(--scale), var(--scale))
|
137 |
+
rotate(var(--rotate));
|
138 |
+
}
|
139 |
+
.image-preview-container .image-container {
|
140 |
+
width: 100% !important;
|
141 |
+
height: 100% !important;
|
142 |
+
overflow: hidden;
|
143 |
+
}
|
144 |
+
.image-preview-container .preview-header {
|
145 |
+
height: 60px;
|
146 |
+
background: rgba(0, 0, 0, 0.2);
|
147 |
+
display: flex;
|
148 |
+
justify-content: space-between;
|
149 |
+
align-items: center;
|
150 |
+
padding: 0 2vw 0 1vw;
|
151 |
+
position: relative;
|
152 |
+
z-index: 90;
|
153 |
+
animation: opacityAnimation 0.5s forwards;
|
154 |
+
}
|
155 |
+
.image-preview-container .preview-header .nums {
|
156 |
+
display: flex;
|
157 |
+
justify-content: flex-start;
|
158 |
+
align-items: center;
|
159 |
+
}
|
160 |
+
.image-preview-container .preview-header .nums p {
|
161 |
+
font-weight: 300;
|
162 |
+
padding: 4px 8px;
|
163 |
+
font-size: 16px;
|
164 |
+
}
|
165 |
+
.image-preview-container .preview-header button {
|
166 |
+
background: none;
|
167 |
+
border: none;
|
168 |
+
outline: none;
|
169 |
+
font-size: 18px;
|
170 |
+
color: #fff;
|
171 |
+
padding: 4px 8px;
|
172 |
+
border-radius: 4px;
|
173 |
+
-webkit-border-radius: 4px;
|
174 |
+
-moz-border-radius: 4px;
|
175 |
+
-ms-border-radius: 4px;
|
176 |
+
-o-border-radius: 4px;
|
177 |
+
position: relative;
|
178 |
+
}
|
179 |
+
.image-preview-container .preview-header .tool-btn button {
|
180 |
+
margin-left: 2vw;
|
181 |
+
}
|
182 |
+
.image-preview-container .preview-header button:hover::after,
|
183 |
+
.image-preview-container .preview-header button:hover::before {
|
184 |
+
display: block;
|
185 |
+
}
|
186 |
+
.image-preview-container .preview-header button::before {
|
187 |
+
content: '';
|
188 |
+
position: absolute;
|
189 |
+
left: 50%;
|
190 |
+
top: calc(130% - 5px);
|
191 |
+
transform: translateX(-50%);
|
192 |
+
border-right: 5px solid transparent;
|
193 |
+
border-left: 5px solid transparent;
|
194 |
+
border-bottom: 5px solid #000;
|
195 |
+
display: none;
|
196 |
+
}
|
197 |
+
.image-preview-container .preview-header button::after {
|
198 |
+
content: attr(data-tooltip);
|
199 |
+
font-size: 12px;
|
200 |
+
position: absolute;
|
201 |
+
left: 50%;
|
202 |
+
top: 130%;
|
203 |
+
transform: translateX(-50%);
|
204 |
+
background: #000;
|
205 |
+
padding: 2px 5px;
|
206 |
+
white-space: nowrap;
|
207 |
+
-webkit-transform: translateX(-50%);
|
208 |
+
-moz-transform: translateX(-50%);
|
209 |
+
-ms-transform: translateX(-50%);
|
210 |
+
-o-transform: translateX(-50%);
|
211 |
+
border-radius: 2px;
|
212 |
+
-webkit-border-radius: 2px;
|
213 |
+
-moz-border-radius: 2px;
|
214 |
+
-ms-border-radius: 2px;
|
215 |
+
-o-border-radius: 2px;
|
216 |
+
display: none;
|
217 |
+
}
|
218 |
+
.image-preview-container .preview-header button:hover {
|
219 |
+
background: rgba(0, 0, 0, 0.2);
|
220 |
+
cursor: pointer;
|
221 |
+
}
|
222 |
+
#prev,
|
223 |
+
#next {
|
224 |
+
background: none;
|
225 |
+
border: none;
|
226 |
+
outline: none;
|
227 |
+
position: absolute;
|
228 |
+
top: 50%;
|
229 |
+
color: #f6f6f6;
|
230 |
+
padding: 20px 10px;
|
231 |
+
cursor: pointer;
|
232 |
+
}
|
233 |
+
#prev i,
|
234 |
+
#next i {
|
235 |
+
font-size: 24px;
|
236 |
+
}
|
237 |
+
#prev {
|
238 |
+
left: 1%;
|
239 |
+
}
|
240 |
+
#next {
|
241 |
+
right: 1%;
|
242 |
+
}
|
243 |
+
.zoom-in {
|
244 |
+
cursor: zoom-in;
|
245 |
+
}
|
246 |
+
.moving {
|
247 |
+
transition: none !important;
|
248 |
+
-webkit-transition: none !important;
|
249 |
+
-moz-transition: none !important;
|
250 |
+
-ms-transition: none !important;
|
251 |
+
-o-transition: none !important;
|
252 |
+
}
|
253 |
+
|
254 |
+
@keyframes show {
|
255 |
+
0% {
|
256 |
+
background: rgba(0, 0, 0, 0);
|
257 |
+
}
|
258 |
+
100% {
|
259 |
+
background: rgba(0, 0, 0, 0.6);
|
260 |
+
}
|
261 |
+
}
|
262 |
+
@keyframes opacityAnimation {
|
263 |
+
0% {
|
264 |
+
opacity: 0;
|
265 |
+
}
|
266 |
+
100% {
|
267 |
+
opacity: 1;
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
+
@font-face {
|
272 |
+
font-family: 'iconfont';
|
273 |
+
src: url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.eot?t=1614436212405'); /* IE9 */
|
274 |
+
src: url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.eot?t=1614436212405#iefix') format('embedded-opentype'),
|
275 |
+
/* IE6-IE8 */
|
276 |
+
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAT4AAsAAAAACjAAAASqAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDXgqGXIUtATYCJAMcCxAABCAFhG0HgQEbpggRFaRXkP0ocPcUUIQJE35oLZsytsFlXASH/P8RD//tx7pvZr5g2iCR4Ee6SRMNieSNBom6Ftqmsknrnm272avZT+9ZL5kSyYL4OoAruFgmd66mB+uXQDZXayVUeGYizL6S8eBfX0r6fOmkWbj7n2OmS2uw/GubS2VStY2Ge+MBDSj7ovRADvhO7OjUTwN23crPBD1NoNe0MMTq2MmzoVUomwJxWlKUA23IouSQQ6uvU04WiPvA16YB8ixwz/75+CwmRCCpMijP2j4Zkw+L7+B5CdJxOkjPRtC154JwjowOKMRdqucWkJvpIL2f38mzj0GtpH7nOfl84rnP88DnJRxHuFMZDYNqI1lRSfP650UNjKYf2ONszTvQ+WTekXwK72g+Fe981PK0gTAJaEugtaroRjfYQ+4XiC1gO03ah+KQ5TFC3eUXpVJ4eStVbZRJRxfkGzdsYh2LrHqHQgtDtdFmHZVfQKaNTFilT3OzdF0G0kGdnyuv4KJps6gqMFSOWW9us9rXr6UkV1/Pvn498caNJPbaDAmzUbeJllq3OBKWzX6YguvX3+Rr1xLeW6dgjjqR+Ji/csMJV2Q/nm6iFBYHpLdKlayZzmngvuuzh1ntmxlqtgnTCWZ2i91h6I2EisXmdRuWpJmwqXJswnMjYfLQkUnViZa9TjZ6yPXZHewsMNNK1kogvUWiMFFkVoByzJnUHd29/jiBVpzQ1LmB3RWXlpSWWkWjXbHRiI3NBuNGVxuEP3KDAVcmGbfJMNfmuhEG34wYcdbnLOiqEUrsrPdZlRc66nNUFZSkSDNvhEFXse7f92aFE849J7fOIZajy6/QclVoCo1DyYvHD52t8HH3ubj5oY98sztTkT54wvaE4iPo188M5RFWiMesI9+99FgG1zjWCyvfDOGP7Ed7JhXnrGMXiN+UBD6r34Y8Jrr3HrnSH18T0ozGDoijnXFWvsXWn5Vqc9V+mTe1grLglsj1h50bB08xXwW46p6Z0gd7tm3Y3xRSEVzPl1ldfVxwTrLNpT87727g9KijCa2oNqQ36vB5X0a0TrQA8xJ4/yv8QbxAzKlJ2OuskoO7nvjjWfgPm6Ed/H+TnuYAlvolz0Ey6tN8CA3K3fIQ0j97L/M45NqZLOXgbyIpD+BtdnM9LNz/ch4jwAOkVVr6pJkKkYP4p/jKFWtT3n10UeklCDQWZUol9KpDPF+BUffb0070JjF9rQkfksYUZK0ZZMF2UOkzD7XWAvSaM+58nzG1sihiYFYPQRi2A5JBTyAbdg5ZsPegMukd1IaxgUAiMbQ3SgVEiRrFqAU/8P6HYKhazS7KKb2h27PmoNymvJB7iMMaERXNX7Eit7Gnf90mYsEyFbjQ8zBngsYU0cjkRdp5jixM+6TJUBmUURjSBPoAb/9AYJDKmuOFin3/DXJ2mcY5PT+CL4h1YXqwmiwlkFdNLdVzLPO7L2cjhGXXWYwU4AIXymqGgJa+LEKGmPgaqeZsZgbZspqpf105zhPQS/lgEylylKiijiZawuug/4PDY53X1bmzTtoY2quMjUm0XzfhmLF3qqPJ1PHQ6qk6oygcm3ddbREMynWvwwAA')
|
277 |
+
format('woff2'),
|
278 |
+
url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.woff?t=1614436212405') format('woff'),
|
279 |
+
url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.ttf?t=1614436212405') format('truetype'),
|
280 |
+
/* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
|
281 |
+
url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.svg?t=1614436212405#iconfont') format('svg'); /* iOS 4.1- */
|
282 |
+
}
|
283 |
+
|
284 |
+
.iconfont {
|
285 |
+
font-family: 'iconfont' !important;
|
286 |
+
font-size: 16px;
|
287 |
+
font-style: normal;
|
288 |
+
-webkit-font-smoothing: antialiased;
|
289 |
+
-moz-osx-font-smoothing: grayscale;
|
290 |
+
}
|
291 |
+
|
292 |
+
.icon-xiayige:before {
|
293 |
+
content: '\e627';
|
294 |
+
}
|
295 |
+
|
296 |
+
.icon-shangyige:before {
|
297 |
+
content: '\e622';
|
298 |
+
}
|
299 |
+
|
300 |
+
.icon-account-practice-lesson-close:before {
|
301 |
+
content: '\e600';
|
302 |
+
}
|
303 |
+
|
304 |
+
.icon-zhongzhi:before {
|
305 |
+
content: '\e602';
|
306 |
+
}
|
307 |
+
|
308 |
+
.icon-xuanzhuan:before {
|
309 |
+
content: '\e615';
|
310 |
+
}
|
311 |
+
|
312 |
+
.icon-xuanzhuan1:before {
|
313 |
+
content: '\e669';
|
314 |
+
}
|
315 |
+
|
316 |
+
@media screen and (max-width: 768px) {
|
317 |
+
.preview-header .nums p,
|
318 |
+
.preview-header .iconfont {
|
319 |
+
font-size: 12px !important;
|
320 |
+
}
|
321 |
+
}
|
public/css/seedprod-gallery-block.min.css
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.sp-gallery-block{grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns),1fr)}
|
2 |
+
.sp-basic-gallery-block .gallery{display:grid;grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns),1fr)}
|
3 |
+
.sp-gallery-item{padding-bottom:var(--aspect-ratio)}
|
4 |
+
.sp-gallery-items{position:relative}
|
5 |
+
.sp-gallery-items .sp-gallery-item-img{padding-bottom:var(--aspect-ratio);background-position:center center;background-size:cover;width:100%;-webkit-transform-origin:center top;transform-origin:center top}
|
6 |
+
.sp-gallery-bg-overlay,.sp-gallery-item-block{height:100%;width:100%;position:absolute;top:0;left:0}
|
7 |
+
.sp-gallery-item-block{display:flex;flex-direction:column;align-content:center;justify-content:center;opacity:0;overflow:hidden}
|
8 |
+
.sp-gallery-items.sp-hidden-items{opacity:0;position:absolute}
|
9 |
+
.sp-gallery-items:hover .sp-gallery-bg-overlay{background-color:rgba(0,0,0,0.7);z-index:999}
|
10 |
+
.sp-gallery-items:hover .sp-gallery-item-block{z-index:999;opacity:1}
|
11 |
+
.sp-gallery-tabs{display:flex;flex-wrap:wrap;margin-bottom:20px;justify-content:center;align-content:flex-start;align-items:center;flex-direction:row;line-height:34px}
|
12 |
+
.sp-gallery-tabs a.sp-gallery-tab-title{padding:4px 10px;border-bottom:2px solid transparent;cursor:pointer;text-decoration:none !important}
|
13 |
+
.sp-gallery-tabs a.sp-gallery-tab-title.sp-tab-active{border-bottom:2px solid}
|
14 |
+
.sp-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}
|
15 |
+
.sp-image-gallery .gallery{display:block;text-align:left}
|
16 |
+
.sp-gallery-item-block .sp-gallery-overlay-title{color:#fff;font-size:100%;overflow-wrap:break-word;padding:2px 5px}
|
17 |
+
.sp-gallery-item-block .sp-gallery-overlay-desc{color:#fff;font-size:75%;overflow-wrap:break-word;padding:2px 5px}
|
18 |
+
.image-preview-container{position:fixed;top:0;left:0;z-index:9999;width:100vw;height:100vh;background:rgba(0,0,0,0.6);transition:all .3s;display:none;color:#fff;will-change:transform;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
|
19 |
+
.image-preview-container.show{animation:show .5s forwards;-webkit-animation:show .5s forwards}
|
20 |
+
.image-preview-container.hiding .preview-header{animation:opacityAnimation .5s forwards reverse}
|
21 |
+
.image-preview-container img{transition:opacity .5s ease-in;-webkit-transform:translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(0) scale(var(--scale),var(--scale)) rotate(var(--rotate));transform:translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(0) scale(var(--scale),var(--scale)) rotate(var(--rotate))}
|
22 |
+
.image-preview-container .image-container{width:100% !important;height:100% !important;overflow:hidden}
|
23 |
+
.image-preview-container .preview-header{height:60px;background:rgba(0,0,0,0.2);display:flex;justify-content:space-between;align-items:center;padding:0 2vw 0 1vw;position:relative;z-index:90;-webkit-animation:opacityAnimation .5s forwards;animation:opacityAnimation .5s forwards}
|
24 |
+
.image-preview-container .preview-header .nums{display:flex;justify-content:flex-start;align-items:center}
|
25 |
+
.image-preview-container .preview-header .nums p{font-weight:300;padding:4px 8px;font-size:16px}
|
26 |
+
.image-preview-container .preview-header button{background:0;border:0;outline:0;font-size:18px;color:#fff;padding:4px 8px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;position:relative}
|
27 |
+
.image-preview-container .preview-header .tool-btn button{margin-left:2vw}
|
28 |
+
.image-preview-container .preview-header button:hover::after,.image-preview-container .preview-header button:hover::before{display:block}
|
29 |
+
.image-preview-container .preview-header button::before{content:'';position:absolute;left:50%;top:calc(130% - 5px);-webkit-transform:translateX(-50%);transform:translateX(-50%);border-right:5px solid transparent;border-left:5px solid transparent;border-bottom:5px solid #000;display:none}
|
30 |
+
.image-preview-container .preview-header button::after{content:attr(data-tooltip);font-size:12px;position:absolute;left:50%;top:130%;transform:translateX(-50%);background:#000;padding:2px 5px;white-space:nowrap;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;display:none}
|
31 |
+
.image-preview-container .preview-header button:hover{background:rgba(0,0,0,0.2);cursor:pointer}
|
32 |
+
#prev,#next{background:0;border:0;outline:0;position:absolute;top:50%;color:#f6f6f6;padding:20px 10px;cursor:pointer}
|
33 |
+
#prev i,#next i{font-size:24px}
|
34 |
+
#prev{left:1%}
|
35 |
+
#next{right:1%}
|
36 |
+
.zoom-in{cursor:zoom-in}
|
37 |
+
.moving{transition:none !important;-webkit-transition:none !important;-moz-transition:none !important;-ms-transition:none !important;-o-transition:none !important}
|
38 |
+
@-webkit-keyframes show{0%{background:rgba(0,0,0,0)}
|
39 |
+
100%{background:rgba(0,0,0,0.6)}
|
40 |
+
}@keyframes show{0%{background:rgba(0,0,0,0)}
|
41 |
+
100%{background:rgba(0,0,0,0.6)}
|
42 |
+
}@-webkit-keyframes opacityAnimation{0%{opacity:0}
|
43 |
+
100%{opacity:1}
|
44 |
+
}@keyframes opacityAnimation{0%{opacity:0}
|
45 |
+
100%{opacity:1}
|
46 |
+
}@font-face{font-family:'iconfont';src:url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.eot?t=1614436212405');src:url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.eot?t=1614436212405#iefix') format('embedded-opentype'),url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAT4AAsAAAAACjAAAASqAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDXgqGXIUtATYCJAMcCxAABCAFhG0HgQEbpggRFaRXkP0ocPcUUIQJE35oLZsytsFlXASH/P8RD//tx7pvZr5g2iCR4Ee6SRMNieSNBom6Ftqmsknrnm272avZT+9ZL5kSyYL4OoAruFgmd66mB+uXQDZXayVUeGYizL6S8eBfX0r6fOmkWbj7n2OmS2uw/GubS2VStY2Ge+MBDSj7ovRADvhO7OjUTwN23crPBD1NoNe0MMTq2MmzoVUomwJxWlKUA23IouSQQ6uvU04WiPvA16YB8ixwz/75+CwmRCCpMijP2j4Zkw+L7+B5CdJxOkjPRtC154JwjowOKMRdqucWkJvpIL2f38mzj0GtpH7nOfl84rnP88DnJRxHuFMZDYNqI1lRSfP650UNjKYf2ONszTvQ+WTekXwK72g+Fe981PK0gTAJaEugtaroRjfYQ+4XiC1gO03ah+KQ5TFC3eUXpVJ4eStVbZRJRxfkGzdsYh2LrHqHQgtDtdFmHZVfQKaNTFilT3OzdF0G0kGdnyuv4KJps6gqMFSOWW9us9rXr6UkV1/Pvn498caNJPbaDAmzUbeJllq3OBKWzX6YguvX3+Rr1xLeW6dgjjqR+Ji/csMJV2Q/nm6iFBYHpLdKlayZzmngvuuzh1ntmxlqtgnTCWZ2i91h6I2EisXmdRuWpJmwqXJswnMjYfLQkUnViZa9TjZ6yPXZHewsMNNK1kogvUWiMFFkVoByzJnUHd29/jiBVpzQ1LmB3RWXlpSWWkWjXbHRiI3NBuNGVxuEP3KDAVcmGbfJMNfmuhEG34wYcdbnLOiqEUrsrPdZlRc66nNUFZSkSDNvhEFXse7f92aFE849J7fOIZajy6/QclVoCo1DyYvHD52t8HH3ubj5oY98sztTkT54wvaE4iPo188M5RFWiMesI9+99FgG1zjWCyvfDOGP7Ed7JhXnrGMXiN+UBD6r34Y8Jrr3HrnSH18T0ozGDoijnXFWvsXWn5Vqc9V+mTe1grLglsj1h50bB08xXwW46p6Z0gd7tm3Y3xRSEVzPl1ldfVxwTrLNpT87727g9KijCa2oNqQ36vB5X0a0TrQA8xJ4/yv8QbxAzKlJ2OuskoO7nvjjWfgPm6Ed/H+TnuYAlvolz0Ey6tN8CA3K3fIQ0j97L/M45NqZLOXgbyIpD+BtdnM9LNz/ch4jwAOkVVr6pJkKkYP4p/jKFWtT3n10UeklCDQWZUol9KpDPF+BUffb0070JjF9rQkfksYUZK0ZZMF2UOkzD7XWAvSaM+58nzG1sihiYFYPQRi2A5JBTyAbdg5ZsPegMukd1IaxgUAiMbQ3SgVEiRrFqAU/8P6HYKhazS7KKb2h27PmoNymvJB7iMMaERXNX7Eit7Gnf90mYsEyFbjQ8zBngsYU0cjkRdp5jixM+6TJUBmUURjSBPoAb/9AYJDKmuOFin3/DXJ2mcY5PT+CL4h1YXqwmiwlkFdNLdVzLPO7L2cjhGXXWYwU4AIXymqGgJa+LEKGmPgaqeZsZgbZspqpf105zhPQS/lgEylylKiijiZawuug/4PDY53X1bmzTtoY2quMjUm0XzfhmLF3qqPJ1PHQ6qk6oygcm3ddbREMynWvwwAA') format('woff2'),url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.woff?t=1614436212405') format('woff'),url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.ttf?t=1614436212405') format('truetype'),url('//at.alicdn.com/t/font_2387568_7n96d4x0sva.svg?t=1614436212405#iconfont') format('svg')}
|
47 |
+
.iconfont{font-family:'iconfont' !important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
48 |
+
.icon-xiayige:before{content:'\e627'}
|
49 |
+
.icon-shangyige:before{content:'\e622'}
|
50 |
+
.icon-account-practice-lesson-close:before{content:'\e600'}
|
51 |
+
.icon-zhongzhi:before{content:'\e602'}
|
52 |
+
.icon-xuanzhuan:before{content:'\e615'}
|
53 |
+
.icon-xuanzhuan1:before{content:'\e669'}
|
54 |
+
@media screen and (max-width:768px){.preview-header .nums p,.preview-header .iconfont{font-size:12px !important}
|
55 |
+
}@media(min-width:768px){.sp-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}
|
56 |
+
.sp-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}
|
57 |
+
.sp-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}
|
58 |
+
.sp-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}
|
59 |
+
.sp-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}
|
60 |
+
.sp-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}
|
61 |
+
.sp-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}
|
62 |
+
.sp-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}
|
63 |
+
.sp-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}
|
64 |
+
}
|
public/css/tailwind-admin.min.css
CHANGED
@@ -2086,6 +2086,8 @@ a:focus{outline:0;box-shadow:none}
|
|
2086 |
.sp-form-input{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important;background-color:#fff !important;border-color:#d3ced2 !important;border-width:1px !important;border-radius:6px !important;padding-top:.5rem !important;padding-right:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;font-size:1rem !important;line-height:1.5 !important}
|
2087 |
.sp-testimonial>p:before{position:absolute;bottom:-7px;left:33px;display:block;width:14px;height:14px;content:'';background-color:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-bottom:1px solid transparent;border-right:1px solid rgba(0,0,0,.05)}
|
2088 |
.sp-pro-only{opacity:.5}
|
|
|
|
|
2089 |
.table-loading{position:relative}
|
2090 |
.table-loader-txt{text-align:center;position:relative;top:-115px}
|
2091 |
.table-loading .table-loader-wrap{position:absolute;width:100%;height:100%;z-index:9}
|
@@ -2107,6 +2109,11 @@ a:focus{outline:0;box-shadow:none}
|
|
2107 |
.vue-js-switch.toggled .v-switch-core{border:1px solid #0f8a5e;height:20px !important}
|
2108 |
.vue-js-switch .v-switch-button{background-color:#d3ced2 !important;top:-1px !important}
|
2109 |
.vue-js-switch.toggled .v-switch-button{background-color:#fff !important}
|
|
|
|
|
|
|
|
|
|
|
2110 |
.swal2-popup.swal2-toast{box-shadow:0 0 3px rgba(239,239,239,0.45) !important;border-radius:3px !important}
|
2111 |
.swal2-toast{border-radius:2px !important;border:none !important;margin-top:40px}
|
2112 |
.swal2-toast .swal2-title{display:none !important}
|
@@ -2159,6 +2166,24 @@ a:focus{outline:0;box-shadow:none}
|
|
2159 |
.seedprod-modal-enter .seedprod-modal-container,.seedprod-modal-leave .seedprod-modal-container{-webkit-transform:scale(1.1);transform:scale(1.1)}
|
2160 |
.sp-w-720px .seedprod-modal-container{max-width:720px;border-radius:3px}
|
2161 |
.sp-w-1020px .seedprod-modal-container{max-width:1020px}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2162 |
@media(min-width:640px){.sm\:sp-sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}
|
2163 |
.sm\:sp-not-sr-only{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}
|
2164 |
.sm\:focus\:sp-sr-only:focus{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}
|
2086 |
.sp-form-input{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important;background-color:#fff !important;border-color:#d3ced2 !important;border-width:1px !important;border-radius:6px !important;padding-top:.5rem !important;padding-right:.5rem !important;padding-bottom:.5rem !important;padding-left:.5rem !important;font-size:1rem !important;line-height:1.5 !important}
|
2087 |
.sp-testimonial>p:before{position:absolute;bottom:-7px;left:33px;display:block;width:14px;height:14px;content:'';background-color:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-bottom:1px solid transparent;border-right:1px solid rgba(0,0,0,.05)}
|
2088 |
.sp-pro-only{opacity:.5}
|
2089 |
+
.sp-cat-active{background-color:#7b6b7a !important;color:#fff !important}
|
2090 |
+
.sp-cat-active:active,.sp-cat-active:focus{background-color:#7b6b7a !important;color:#fff !important}
|
2091 |
.table-loading{position:relative}
|
2092 |
.table-loader-txt{text-align:center;position:relative;top:-115px}
|
2093 |
.table-loading .table-loader-wrap{position:absolute;width:100%;height:100%;z-index:9}
|
2109 |
.vue-js-switch.toggled .v-switch-core{border:1px solid #0f8a5e;height:20px !important}
|
2110 |
.vue-js-switch .v-switch-button{background-color:#d3ced2 !important;top:-1px !important}
|
2111 |
.vue-js-switch.toggled .v-switch-button{background-color:#fff !important}
|
2112 |
+
.sp-form-input-search{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important;background-color:#fff !important;border-color:#d3ced2 !important;border-width:1px !important;border-style:solid !important;border-radius:4px !important;padding-top:.5rem !important;padding-right:.5rem !important;padding-bottom:.5rem !important;font-size:1rem !important;line-height:1.5 !important;width:275px !important}
|
2113 |
+
.sp-form-input-search::-webkit-input-placeholder{color:#b1a8b0}
|
2114 |
+
.sp-form-input-search:-ms-input-placeholder{color:#b1a8b0}
|
2115 |
+
.sp-form-input-search::-ms-input-placeholder{color:#b1a8b0}
|
2116 |
+
.sp-form-input-search::placeholder{color:#b1a8b0}
|
2117 |
.swal2-popup.swal2-toast{box-shadow:0 0 3px rgba(239,239,239,0.45) !important;border-radius:3px !important}
|
2118 |
.swal2-toast{border-radius:2px !important;border:none !important;margin-top:40px}
|
2119 |
.swal2-toast .swal2-title{display:none !important}
|
2166 |
.seedprod-modal-enter .seedprod-modal-container,.seedprod-modal-leave .seedprod-modal-container{-webkit-transform:scale(1.1);transform:scale(1.1)}
|
2167 |
.sp-w-720px .seedprod-modal-container{max-width:720px;border-radius:3px}
|
2168 |
.sp-w-1020px .seedprod-modal-container{max-width:1020px}
|
2169 |
+
.sp_om #wpwrap{background-color:#fff}
|
2170 |
+
.optinmonster-content{text-align:center;max-width:860px;margin:0 auto;background-color:#fff;color:#41495b !important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}
|
2171 |
+
.optinmonster-content p{line-height:1.3 !important;font-size:16px;font-weight:500;color:#41495b !important;margin:0}
|
2172 |
+
p.om-tagline{font-size:20px;font-weight:600;color:#41495b !important;margin-top:0;margin-bottom:32px !important;line-height:1.5 !important}
|
2173 |
+
p.om-tagline2{max-width:550px;font-size:18px !important;font-weight:500;margin-left:auto !important;margin-right:auto !important;margin-bottom:32px !important}
|
2174 |
+
.optinmonster-content img.om-feature-image{margin-top:30px;margin-bottom:60px;width:100%}
|
2175 |
+
.optinmonster-content p.om-feature-text{max-width:740px;margin-left:auto !important;margin-right:auto !important}
|
2176 |
+
.optinmonster-content h1{margin-top:84px;font-size:40px;font-weight:900;line-height:1.2;margin-bottom:9px;color:#41495b !important}
|
2177 |
+
.optinmonster-content h2{font-size:34px;font-weight:800;color:#41495b !important;margin-bottom:20px}
|
2178 |
+
.optinmonster-content h3{max-width:550px;font-size:28px;font-weight:bold;color:#41495b !important;margin-top:0;margin-bottom:10px;margin-left:auto !important;margin-right:auto !important;line-height:1.1}
|
2179 |
+
.om-cta{background-color:#71b406;padding:13px 38px;color:#fff;border-radius:4px;border:0;font-size:26px;font-weight:600;margin-top:40px;margin-bottom:35px;cursor:pointer}
|
2180 |
+
@-webkit-keyframes flickerAnimation{0%{opacity:1}
|
2181 |
+
50%{opacity:0}
|
2182 |
+
100%{opacity:1}
|
2183 |
+
}@keyframes flickerAnimation{0%{opacity:1}
|
2184 |
+
50%{opacity:0}
|
2185 |
+
100%{opacity:1}
|
2186 |
+
}.sp-fade-in-out{-webkit-animation:flickerAnimation 1.5s infinite;animation:flickerAnimation 1.5s infinite}
|
2187 |
@media(min-width:640px){.sm\:sp-sr-only{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}
|
2188 |
.sm\:sp-not-sr-only{position:static !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important;overflow:visible !important;clip:auto !important;white-space:normal !important}
|
2189 |
.sm\:focus\:sp-sr-only:focus{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border-width:0 !important}
|
public/css/tailwind-builder.min.css
CHANGED
@@ -2486,12 +2486,14 @@ to{background-position:0 0}
|
|
2486 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
2487 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
2488 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
|
|
2489 |
.sp-socialprofiles-style-1 .sp-sp-twitter{color:#1b95e0 !important}
|
2490 |
.sp-socialprofiles-style-1 .sp-sp-facebook,.sp-socialprofiles-style-1 .sp-sp-facebook-messenger{color:#1877f2 !important}
|
2491 |
.sp-socialprofiles-style-1 .sp-sp-slack{color:#4a154b !important}
|
2492 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
2493 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
2494 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
|
|
2495 |
.sp-socialprofiles-style-1 .sp-sp-imdb{color:#f5c517 !important}
|
2496 |
.sp-socialprofiles-style-1 .sp-sp-linkedin{color:#0073b1 !important}
|
2497 |
.sp-socialprofiles-style-1 .sp-sp-pinterest{color:#e60023 !important}
|
@@ -2514,6 +2516,7 @@ to{background-position:0 0}
|
|
2514 |
.sp-sp-vimeo{background:#2fb1e3;text-decoration:none}
|
2515 |
.sp-sp-weibo{background:#ce282b;text-decoration:none}
|
2516 |
.sp-sp-whatsapp{background:#38af48;text-decoration:none}
|
|
|
2517 |
.sp-sp-linkedin{background:#0073b1;text-decoration:none}
|
2518 |
.sp-sp-pinterest{background:#e60023;text-decoration:none}
|
2519 |
.sp-sp-youtube{background:red;text-decoration:none}
|
@@ -2893,6 +2896,10 @@ to{opacity:0;-webkit-filter:blur(10px);filter:blur(10px)}
|
|
2893 |
.sp-mobile-view .sp-w-full{width:100% !important}
|
2894 |
.sp-mobile-view .sp-optinform-field,.sp-mobile-view .sp-optinform-btn{display:block !important;width:100% !important}
|
2895 |
.sp-mobile-view .sp-wccustomproductsgrid-wrapper li.product{float:none !important;width:100% !important}
|
|
|
|
|
|
|
|
|
2896 |
.sp-postcontent p:not(:last-child){margin-bottom:20px}
|
2897 |
.sp-postcontent dl{margin:0;padding:0;margin-left:1rem;margin-bottom:20px}
|
2898 |
.sp-postcontent ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
@@ -3107,7 +3114,7 @@ to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);tran
|
|
3107 |
.sp-postcomments-wrapper #comments .edit-link{text-decoration:underline}
|
3108 |
.sp-postcomments-wrapper .comments-area .comment-form label{display:block;font-size:13px}
|
3109 |
.sp-postcomments-wrapper .comments-area .comment-form textarea{height:130px;max-width:100%}
|
3110 |
-
.sp-postcomments-wrapper .comments-area .comment-form input:not:[type="submit"],.sp-postcomments-wrapper .comments-area .comment-form textarea
|
3111 |
.sp-postcomments-wrapper .comments-area .comment-form .form-submit .submit{margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:15px;line-height:1.8;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all .2s ease;display:inline-block;width:auto;height:auto}
|
3112 |
.sp-postcomments-wrapper .comment-form .commentpolicy{font-size:13px;margin-bottom:10px}
|
3113 |
#reply-title{margin-bottom:20px}
|
@@ -3132,7 +3139,6 @@ to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);tran
|
|
3132 |
.sp-widget-control .media-widget-control .widefat{border-color:#d3ced2 !important;padding:5px;border:1px solid;border-radius:3px;width:100%;margin-bottom:10px}
|
3133 |
.widget{margin-bottom:0}
|
3134 |
.gallery{display:flex;flex-wrap:wrap}
|
3135 |
-
.gallery-item{margin-right:10px;margin-bottom:10px}
|
3136 |
.sp-notification-alt-button{border:1px solid #af9ca6 !important;color:#4f394d !important;background:transparent !important}
|
3137 |
.sp-alt-notification-button-y{padding-top:.18rem !important;padding-bottom:.18rem !important}
|
3138 |
.sp-custom-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
|
@@ -3265,8 +3271,6 @@ ul.seedprod-menu-list{display:inline-block;width:100%;text-align:left}
|
|
3265 |
.sp-add-to-cart-wrapper form.variations_form div.single_variation_wrap .quantity{float:left;margin-right:.5rem}
|
3266 |
.sp-add-to-cart-wrapper form.variations_form table td{border:1px solid;padding:10px}
|
3267 |
.sp-add-to-cart-wrapper form.variations_form table{border-collapse:collapse;background-color:inherit;margin:10px 0;min-width:240px;width:100%}
|
3268 |
-
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li{display:inline-flex !important;display:-webkit-inline-box !important}
|
3269 |
-
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li a{padding:10px 10px}
|
3270 |
.sp-layoutnav-current-section{background:#7036bb !important;color:#fff !important}
|
3271 |
.sp-layoutnav-current-row{background:#3f5fd1 !important;color:#fff !important}
|
3272 |
.sp-layoutnav-current-col{background:#3f5fd1 !important;color:#fff !important}
|
@@ -3284,10 +3288,53 @@ ul.seedprod-menu-list{display:inline-block;width:100%;text-align:left}
|
|
3284 |
.sp-upsells-wrapper .up-sells ul.products,.sp-product-related-wrapper .related ul.products{list-style:none;pointer-events:none}
|
3285 |
.sp-upsells-wrapper .up-sells .onsale,.sp-product-related-wrapper .related .onsale{min-width:50px !important;min-height:50px !important;font-size:13px}
|
3286 |
.sp-product-rating-wrapper .woocommerce.woocommerce-product-rating{margin:0;align-items:center;display:flex}
|
|
|
|
|
3287 |
.wc-tabs li{background:#f8f8f8;padding:6px;border-radius-bottom-right:0 !important;border-radius-bottom-left:0 !important}
|
3288 |
.wc-tabs li.active{background:#f7f6f7}
|
3289 |
.wc-tabs{margin-bottom:10px}
|
3290 |
.sp-nav-wrapper a,.sp-socialprofiles-wrapper a{pointer-events:none}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3291 |
@media(min-width:640px){.sm\:sp-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|
3292 |
.sm\:sp-not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}
|
3293 |
.sm\:focus\:sp-sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|
2486 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
2487 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
2488 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
2489 |
+
.sp-socialprofiles-style-1 .sp-sp-tiktok{color:#fe2c55 !important}
|
2490 |
.sp-socialprofiles-style-1 .sp-sp-twitter{color:#1b95e0 !important}
|
2491 |
.sp-socialprofiles-style-1 .sp-sp-facebook,.sp-socialprofiles-style-1 .sp-sp-facebook-messenger{color:#1877f2 !important}
|
2492 |
.sp-socialprofiles-style-1 .sp-sp-slack{color:#4a154b !important}
|
2493 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
2494 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
2495 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
2496 |
+
.sp-socialprofiles-style-1 .sp-sp-tiktok{color:#fe2c55 !important}
|
2497 |
.sp-socialprofiles-style-1 .sp-sp-imdb{color:#f5c517 !important}
|
2498 |
.sp-socialprofiles-style-1 .sp-sp-linkedin{color:#0073b1 !important}
|
2499 |
.sp-socialprofiles-style-1 .sp-sp-pinterest{color:#e60023 !important}
|
2516 |
.sp-sp-vimeo{background:#2fb1e3;text-decoration:none}
|
2517 |
.sp-sp-weibo{background:#ce282b;text-decoration:none}
|
2518 |
.sp-sp-whatsapp{background:#38af48;text-decoration:none}
|
2519 |
+
.sp-sp-tiktok{background:#fe2c55;text-decoration:none}
|
2520 |
.sp-sp-linkedin{background:#0073b1;text-decoration:none}
|
2521 |
.sp-sp-pinterest{background:#e60023;text-decoration:none}
|
2522 |
.sp-sp-youtube{background:red;text-decoration:none}
|
2896 |
.sp-mobile-view .sp-w-full{width:100% !important}
|
2897 |
.sp-mobile-view .sp-optinform-field,.sp-mobile-view .sp-optinform-btn{display:block !important;width:100% !important}
|
2898 |
.sp-mobile-view .sp-wccustomproductsgrid-wrapper li.product{float:none !important;width:100% !important}
|
2899 |
+
.sp-text-block-style p:not(:last-child){margin-bottom:20px}
|
2900 |
+
.sp-text-block-style ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
2901 |
+
.sp-text-block-style ol{display:block;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
2902 |
+
.sp-text-block-style li{padding-left:.5rem;padding-right:.5rem}
|
2903 |
.sp-postcontent p:not(:last-child){margin-bottom:20px}
|
2904 |
.sp-postcontent dl{margin:0;padding:0;margin-left:1rem;margin-bottom:20px}
|
2905 |
.sp-postcontent ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
3114 |
.sp-postcomments-wrapper #comments .edit-link{text-decoration:underline}
|
3115 |
.sp-postcomments-wrapper .comments-area .comment-form label{display:block;font-size:13px}
|
3116 |
.sp-postcomments-wrapper .comments-area .comment-form textarea{height:130px;max-width:100%}
|
3117 |
+
.sp-postcomments-wrapper .comments-area .comment-form input:not:[type="submit"],.sp-postcomments-wrapper .comments-area .comment-form textarea{font-size:16px;padding:12px 15px;width:100%;border-radius:3px;margin-bottom:16px}
|
3118 |
.sp-postcomments-wrapper .comments-area .comment-form .form-submit .submit{margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:15px;line-height:1.8;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all .2s ease;display:inline-block;width:auto;height:auto}
|
3119 |
.sp-postcomments-wrapper .comment-form .commentpolicy{font-size:13px;margin-bottom:10px}
|
3120 |
#reply-title{margin-bottom:20px}
|
3139 |
.sp-widget-control .media-widget-control .widefat{border-color:#d3ced2 !important;padding:5px;border:1px solid;border-radius:3px;width:100%;margin-bottom:10px}
|
3140 |
.widget{margin-bottom:0}
|
3141 |
.gallery{display:flex;flex-wrap:wrap}
|
|
|
3142 |
.sp-notification-alt-button{border:1px solid #af9ca6 !important;color:#4f394d !important;background:transparent !important}
|
3143 |
.sp-alt-notification-button-y{padding-top:.18rem !important;padding-bottom:.18rem !important}
|
3144 |
.sp-custom-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
|
3271 |
.sp-add-to-cart-wrapper form.variations_form div.single_variation_wrap .quantity{float:left;margin-right:.5rem}
|
3272 |
.sp-add-to-cart-wrapper form.variations_form table td{border:1px solid;padding:10px}
|
3273 |
.sp-add-to-cart-wrapper form.variations_form table{border-collapse:collapse;background-color:inherit;margin:10px 0;min-width:240px;width:100%}
|
|
|
|
|
3274 |
.sp-layoutnav-current-section{background:#7036bb !important;color:#fff !important}
|
3275 |
.sp-layoutnav-current-row{background:#3f5fd1 !important;color:#fff !important}
|
3276 |
.sp-layoutnav-current-col{background:#3f5fd1 !important;color:#fff !important}
|
3288 |
.sp-upsells-wrapper .up-sells ul.products,.sp-product-related-wrapper .related ul.products{list-style:none;pointer-events:none}
|
3289 |
.sp-upsells-wrapper .up-sells .onsale,.sp-product-related-wrapper .related .onsale{min-width:50px !important;min-height:50px !important;font-size:13px}
|
3290 |
.sp-product-rating-wrapper .woocommerce.woocommerce-product-rating{margin:0;align-items:center;display:flex}
|
3291 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li{display:inline-flex !important;display:-webkit-inline-box !important}
|
3292 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li a{padding:10px 10px}
|
3293 |
.wc-tabs li{background:#f8f8f8;padding:6px;border-radius-bottom-right:0 !important;border-radius-bottom-left:0 !important}
|
3294 |
.wc-tabs li.active{background:#f7f6f7}
|
3295 |
.wc-tabs{margin-bottom:10px}
|
3296 |
.sp-nav-wrapper a,.sp-socialprofiles-wrapper a{pointer-events:none}
|
3297 |
+
.sp-gallery-block{grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns),1fr)}
|
3298 |
+
.sp-basic-gallery-block .gallery{display:grid;grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns),1fr)}
|
3299 |
+
.sp-gallery-item{padding-bottom:var(--aspect-ratio)}
|
3300 |
+
.sp-gallery-items{position:relative}
|
3301 |
+
.sp-gallery-items .sp-gallery-item-img{padding-bottom:var(--aspect-ratio);background-position:center center;background-size:cover;width:100%;-webkit-transform-origin:center top;transform-origin:center top}
|
3302 |
+
.sp-gallery-bg-overlay,.sp-gallery-item-block{height:100%;width:100%;position:absolute;top:0;left:0}
|
3303 |
+
.sp-gallery-item-block{display:flex;flex-direction:column;align-content:center;justify-content:center;opacity:0}
|
3304 |
+
.sp-gallery-items.sp-hidden-items{opacity:0;position:absolute}
|
3305 |
+
.sp-gallery-items:hover .sp-gallery-bg-overlay{background-color:rgba(0,0,0,0.7);z-index:999}
|
3306 |
+
.sp-gallery-items:hover .sp-gallery-item-block{z-index:999;opacity:1}
|
3307 |
+
.sp-gallery-tabs{display:flex;flex-wrap:wrap;margin-bottom:20px;justify-content:center;align-content:flex-start;align-items:center;flex-direction:row;line-height:34px}
|
3308 |
+
.sp-gallery-tabs a.sp-gallery-tab-title{padding:4px 10px;border-bottom:2px solid transparent;cursor:pointer;text-decoration:none}
|
3309 |
+
.sp-gallery-tabs a.sp-gallery-tab-title.sp-tab-active{border-bottom:2px solid}
|
3310 |
+
.sp-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}
|
3311 |
+
.sp-image-gallery .gallery{display:block;text-align:left}
|
3312 |
+
.sp-basic-gallery-wrapper .sp-basic-gallery-shortcode{display:none}
|
3313 |
+
.sp-gallery-item-block .sp-gallery-overlay-title{color:#fff}
|
3314 |
+
.sp-gallery-item-block .sp-gallery-overlay-desc{color:#fff}
|
3315 |
+
@media(min-width:768px){.sp-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}
|
3316 |
+
.sp-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}
|
3317 |
+
.sp-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}
|
3318 |
+
.sp-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}
|
3319 |
+
.sp-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}
|
3320 |
+
.sp-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}
|
3321 |
+
.sp-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}
|
3322 |
+
.sp-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}
|
3323 |
+
.sp-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}
|
3324 |
+
}.sp-hidden-radius .sp-form-group label{display:none}
|
3325 |
+
.sp-tabbedlayout-horizontal{display:flex;flex-direction:column}
|
3326 |
+
.sp-tabbedlayout-horizontal ul li a{border-width:1px;border-color:rgb(222 226 230 / 60%);border-bottom-style:none;cursor:pointer;padding:3px 16px;border-bottom:0}
|
3327 |
+
.sp-tabbedlayout-horizontal ul li a.sp-active-tab{border-width:1px;border-color:#dee2e6;border-bottom-style:none;background:#dee2e6}
|
3328 |
+
.sp-tabbedlayout-horizontal .tab-content-area{border:1px solid rgb(222 226 230 / 60%);padding:5px 10px}
|
3329 |
+
.sp-tabbedlayout-vertical{display:flex;flex-direction:row}
|
3330 |
+
.sp-tabbedlayout-vertical ul li a{border-width:1px;border-color:rgb(222 226 230 / 60%);cursor:pointer;padding:3px 16px;width:100%;border-right:0}
|
3331 |
+
.sp-tabbedlayout-vertical ul li a.sp-active-tab{border-width:1px;border-color:#dee2e6;background:#eee}
|
3332 |
+
.sp-tabbedlayout-vertical .tab-content-area{border:1px solid rgb(222 226 230 / 60%);padding:5px 10px;flex-grow:1}
|
3333 |
+
.sp-divider-wrapper .sp-divider.sp-divider-with-icon{display:flex}
|
3334 |
+
.sp-divider-wrapper .sp-divider .sp-divider-separator{display:flex;align-items:center;flex-direction:row;width:100%}
|
3335 |
+
.sp-divider-wrapper .sp-divider .sp-divider-separator::after,.sp-divider-wrapper .sp-divider .sp-divider-separator::before{flex-grow:1;-webkit-box-flex:1}
|
3336 |
+
.sp-divider-wrapper .sp-divider .sp-divider-text-block{padding:0 10px}
|
3337 |
+
.sp-divider-wrapper .sp-divider .sp-divider-text-block .sp-divider-text{font-size:15px}
|
3338 |
@media(min-width:640px){.sm\:sp-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|
3339 |
.sm\:sp-not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}
|
3340 |
.sm\:focus\:sp-sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
|
public/css/tailwind.min.css
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}
|
2 |
body{margin:0}
|
3 |
main{display:block}
|
|
|
4 |
hr{box-sizing:content-box;height:0;overflow:visible}
|
5 |
pre{font-family:monospace,monospace;font-size:1em}
|
6 |
a{background-color:transparent}
|
@@ -25,7 +26,7 @@ legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:
|
|
25 |
summary{display:list-item}
|
26 |
template{display:none}
|
27 |
[hidden]{display:none}
|
28 |
-
h2,h3,hr,figure,p,pre{margin:0}
|
29 |
button{background-color:transparent;background-image:none;padding:0}
|
30 |
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
|
31 |
ul{list-style:none;margin:0;padding:0}
|
@@ -38,7 +39,7 @@ input:-ms-input-placeholder{color:#a0aec0}
|
|
38 |
input::-ms-input-placeholder{color:#a0aec0}
|
39 |
input::placeholder{color:#a0aec0}
|
40 |
button,[role="button"]{cursor:pointer}
|
41 |
-
h2,h3{font-size:inherit;font-weight:inherit}
|
42 |
a{color:inherit;text-decoration:inherit}
|
43 |
button,input,select{padding:0;line-height:inherit;color:inherit}
|
44 |
pre,code{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
|
@@ -298,6 +299,7 @@ to{background-position:0 0}
|
|
298 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
299 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
300 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
|
|
301 |
.sp-socialprofiles-style-1 .sp-sp-imdb{color:#f5c517 !important}
|
302 |
.sp-socialprofiles-style-1 .sp-sp-linkedin{color:#0073b1 !important}
|
303 |
.sp-socialprofiles-style-1 .sp-sp-pinterest{color:#e60023 !important}
|
@@ -320,6 +322,7 @@ to{background-position:0 0}
|
|
320 |
.sp-sp-vimeo{background:#2fb1e3;text-decoration:none}
|
321 |
.sp-sp-weibo{background:#ce282b;text-decoration:none}
|
322 |
.sp-sp-whatsapp{background:#38af48;text-decoration:none}
|
|
|
323 |
.sp-sp-linkedin{background:#0073b1;text-decoration:none}
|
324 |
.sp-sp-pinterest{background:#e60023;text-decoration:none}
|
325 |
.sp-sp-youtube{background:red;text-decoration:none}
|
@@ -537,6 +540,10 @@ input[type="password"]{-webkit-appearance:none;-moz-appearance:none;appearance:n
|
|
537 |
.sp-postinfo-wrapper .sp-postinfo-item .sp-postinfo-author-avatar .avatar{border-radius:9999px;width:24px;height:24px}
|
538 |
.sp-postinfo-wrapper .sp-postinfo-term-name a{color:inherit !important}
|
539 |
.sp-postnavigation-shortcodes a,.sp-postnavigation-shortcodes a:hover{text-decoration:none}
|
|
|
|
|
|
|
|
|
540 |
.sp-postcontent p:not(:last-child){margin-bottom:20px}
|
541 |
.sp-postcontent dl{margin:0;padding:0;margin-left:1rem;margin-bottom:20px}
|
542 |
.sp-postcontent ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
@@ -546,6 +553,10 @@ input[type="password"]{-webkit-appearance:none;-moz-appearance:none;appearance:n
|
|
546 |
.sp-postcontent h1,.sp-postcontent h2,.sp-postcontent h3,.sp-postcontent h4,.sp-postcontent h5,.sp-postcontent h6{margin-bottom:10px}
|
547 |
.sp-postcontent table{background-color:#f8f8f8}
|
548 |
.sp-postcontent table td,.sp-postcontent table th{padding:10px}
|
|
|
|
|
|
|
|
|
549 |
.sp-menu-cart-wrapper .sp-menu-cart-item-count{top:-.4em;right:-.9em;position:absolute;padding-left:.5em;padding-right:.5em;padding-top:.25em;padding-bottom:.25em;line-height:1;font-weight:600;justify-content:center;align-items:center;display:inline-flex;border-radius:9999px}
|
550 |
.sp-posts-single-block a,.sp-posts-single-block a:hover{text-decoration:none}
|
551 |
.sp-posts-single-block{overflow:hidden}
|
@@ -567,19 +578,32 @@ input[type="password"]{-webkit-appearance:none;-moz-appearance:none;appearance:n
|
|
567 |
.sp-add-to-cart-wrapper form.variations_form table{border-collapse:collapse;background-color:inherit;margin:10px 0;min-width:240px;width:100%}
|
568 |
.sp-not-found{text-align:center;margin:80px 20px;font-size:32px}
|
569 |
.sp-mobile-view .sp-nav-wrapper li .sp-navmenu-list-items-divider{display:none}
|
570 |
-
.sp-
|
571 |
-
.sp-
|
572 |
-
.sp-
|
573 |
-
.sp-
|
|
|
|
|
|
|
|
|
574 |
.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes{width:100%;border-collapse:collapse;background-color:unset}
|
575 |
.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes th,.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes td{border:1px solid #000;padding:10px}
|
576 |
.sp-upsells-wrapper .up-sells ul.products,.sp-product-related-wrapper .related ul.products{list-style:none}
|
577 |
.sp-upsells-wrapper .up-sells .onsale,.sp-product-related-wrapper .related .onsale{min-width:50px !important;min-height:50px !important;font-size:13px}
|
578 |
.sp-product-rating-wrapper .woocommerce.woocommerce-product-rating{margin:0;align-items:center;display:flex}
|
|
|
|
|
|
|
|
|
579 |
.wc-tabs li{background:#f8f8f8;padding:6px}
|
580 |
.wc-tabs li.active{background:#f7f6f7}
|
581 |
.wc-tabs{margin-bottom:10px}
|
582 |
.woocommerce-order-details h2,.woocommerce-customer-details h2{margin-bottom:10px}
|
583 |
.nav-menu-bar li.separator:last-child{display:none}
|
|
|
|
|
|
|
|
|
|
|
584 |
@media(min-width:640px){.sm\:sp-flex{display:flex}
|
585 |
}
|
1 |
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}
|
2 |
body{margin:0}
|
3 |
main{display:block}
|
4 |
+
h1{font-size:2em;margin:.67em 0}
|
5 |
hr{box-sizing:content-box;height:0;overflow:visible}
|
6 |
pre{font-family:monospace,monospace;font-size:1em}
|
7 |
a{background-color:transparent}
|
26 |
summary{display:list-item}
|
27 |
template{display:none}
|
28 |
[hidden]{display:none}
|
29 |
+
h1,h2,h3,hr,figure,p,pre{margin:0}
|
30 |
button{background-color:transparent;background-image:none;padding:0}
|
31 |
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}
|
32 |
ul{list-style:none;margin:0;padding:0}
|
39 |
input::-ms-input-placeholder{color:#a0aec0}
|
40 |
input::placeholder{color:#a0aec0}
|
41 |
button,[role="button"]{cursor:pointer}
|
42 |
+
h1,h2,h3{font-size:inherit;font-weight:inherit}
|
43 |
a{color:inherit;text-decoration:inherit}
|
44 |
button,input,select{padding:0;line-height:inherit;color:inherit}
|
45 |
pre,code{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
|
299 |
.sp-socialprofiles-style-1 .sp-sp-vimeo{color:#2fb1e3 !important}
|
300 |
.sp-socialprofiles-style-1 .sp-sp-weibo{color:#ce282b !important}
|
301 |
.sp-socialprofiles-style-1 .sp-sp-whatsapp{color:#38af48 !important}
|
302 |
+
.sp-socialprofiles-style-1 .sp-sp-tiktok{color:#fe2c55 !important}
|
303 |
.sp-socialprofiles-style-1 .sp-sp-imdb{color:#f5c517 !important}
|
304 |
.sp-socialprofiles-style-1 .sp-sp-linkedin{color:#0073b1 !important}
|
305 |
.sp-socialprofiles-style-1 .sp-sp-pinterest{color:#e60023 !important}
|
322 |
.sp-sp-vimeo{background:#2fb1e3;text-decoration:none}
|
323 |
.sp-sp-weibo{background:#ce282b;text-decoration:none}
|
324 |
.sp-sp-whatsapp{background:#38af48;text-decoration:none}
|
325 |
+
.sp-sp-tiktok{background:#fe2c55;text-decoration:none}
|
326 |
.sp-sp-linkedin{background:#0073b1;text-decoration:none}
|
327 |
.sp-sp-pinterest{background:#e60023;text-decoration:none}
|
328 |
.sp-sp-youtube{background:red;text-decoration:none}
|
540 |
.sp-postinfo-wrapper .sp-postinfo-item .sp-postinfo-author-avatar .avatar{border-radius:9999px;width:24px;height:24px}
|
541 |
.sp-postinfo-wrapper .sp-postinfo-term-name a{color:inherit !important}
|
542 |
.sp-postnavigation-shortcodes a,.sp-postnavigation-shortcodes a:hover{text-decoration:none}
|
543 |
+
.sp-text-block-style p:not(:last-child){margin-bottom:20px}
|
544 |
+
.sp-text-block-style ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
545 |
+
.sp-text-block-style ol{display:block;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
546 |
+
.sp-text-block-style li{padding-left:.5rem;padding-right:.5rem}
|
547 |
.sp-postcontent p:not(:last-child){margin-bottom:20px}
|
548 |
.sp-postcontent dl{margin:0;padding:0;margin-left:1rem;margin-bottom:20px}
|
549 |
.sp-postcontent ul{display:block;list-style-type:disc;list-style-position:outside;margin:0;padding:0;margin-left:2rem;margin-bottom:20px}
|
553 |
.sp-postcontent h1,.sp-postcontent h2,.sp-postcontent h3,.sp-postcontent h4,.sp-postcontent h5,.sp-postcontent h6{margin-bottom:10px}
|
554 |
.sp-postcontent table{background-color:#f8f8f8}
|
555 |
.sp-postcontent table td,.sp-postcontent table th{padding:10px}
|
556 |
+
.sp-postcontent{clear:both}
|
557 |
+
.sp-postcontent .alignright{float:right;padding:0 0 0 15px}
|
558 |
+
.sp-postcontent .alignleft{float:left;padding:0 15px 0 0}
|
559 |
+
.sp-postcontent .aligncenter{display:block;margin-left:auto;margin-right:auto}
|
560 |
.sp-menu-cart-wrapper .sp-menu-cart-item-count{top:-.4em;right:-.9em;position:absolute;padding-left:.5em;padding-right:.5em;padding-top:.25em;padding-bottom:.25em;line-height:1;font-weight:600;justify-content:center;align-items:center;display:inline-flex;border-radius:9999px}
|
561 |
.sp-posts-single-block a,.sp-posts-single-block a:hover{text-decoration:none}
|
562 |
.sp-posts-single-block{overflow:hidden}
|
578 |
.sp-add-to-cart-wrapper form.variations_form table{border-collapse:collapse;background-color:inherit;margin:10px 0;min-width:240px;width:100%}
|
579 |
.sp-not-found{text-align:center;margin:80px 20px;font-size:32px}
|
580 |
.sp-mobile-view .sp-nav-wrapper li .sp-navmenu-list-items-divider{display:none}
|
581 |
+
.sp-tabbedlayout-horizontal{display:flex;flex-direction:column}
|
582 |
+
.sp-tabbedlayout-horizontal ul li a{border-width:1px;border-color:rgb(222 226 230 / 60%);border-bottom-style:none;cursor:pointer;padding:3px 16px;border-bottom:0}
|
583 |
+
.sp-tabbedlayout-horizontal ul li a.sp-active-tab{border-width:1px;border-color:#dee2e6;border-bottom-style:none;background:#dee2e6}
|
584 |
+
.sp-tabbedlayout-horizontal .tab-content-area{border:1px solid rgb(222 226 230 / 60%);padding:5px 10px}
|
585 |
+
.sp-tabbedlayout-vertical{display:flex;flex-direction:row}
|
586 |
+
.sp-tabbedlayout-vertical ul li a{border-width:1px;border-color:rgb(222 226 230 / 60%);cursor:pointer;padding:3px 16px;border-right:0}
|
587 |
+
.sp-tabbedlayout-vertical ul li a.sp-active-tab{border-width:1px;border-color:#dee2e6;background:#eee}
|
588 |
+
.sp-tabbedlayout-vertical .tab-content-area{border:1px solid rgb(222 226 230 / 60%);padding:5px 10px;flex-grow:1}
|
589 |
.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes{width:100%;border-collapse:collapse;background-color:unset}
|
590 |
.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes th,.sp-additional-information-wrapper .woocommerce-product-attributes.shop_attributes td{border:1px solid #000;padding:10px}
|
591 |
.sp-upsells-wrapper .up-sells ul.products,.sp-product-related-wrapper .related ul.products{list-style:none}
|
592 |
.sp-upsells-wrapper .up-sells .onsale,.sp-product-related-wrapper .related .onsale{min-width:50px !important;min-height:50px !important;font-size:13px}
|
593 |
.sp-product-rating-wrapper .woocommerce.woocommerce-product-rating{margin:0;align-items:center;display:flex}
|
594 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li{display:inline-flex !important;display:-webkit-inline-box !important;margin:0}
|
595 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs ul.tabs li a{padding:10px 10px}
|
596 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs ul li.active a{box-shadow:none}
|
597 |
+
.sp-product-data-tabs-wrapper .woocommerce-tabs #tab-reviews #submit{float:none}
|
598 |
.wc-tabs li{background:#f8f8f8;padding:6px}
|
599 |
.wc-tabs li.active{background:#f7f6f7}
|
600 |
.wc-tabs{margin-bottom:10px}
|
601 |
.woocommerce-order-details h2,.woocommerce-customer-details h2{margin-bottom:10px}
|
602 |
.nav-menu-bar li.separator:last-child{display:none}
|
603 |
+
.sp-divider-wrapper .sp-divider.sp-divider-with-icon{display:flex}
|
604 |
+
.sp-divider-wrapper .sp-divider .sp-divider-separator{display:flex;align-items:center;flex-direction:row;width:100%}
|
605 |
+
.sp-divider-wrapper .sp-divider .sp-divider-separator::after,.sp-divider-wrapper .sp-divider .sp-divider-separator::before{flex-grow:1;-webkit-box-flex:1}
|
606 |
+
.sp-divider-wrapper .sp-divider .sp-divider-text-block{padding:0 10px}
|
607 |
+
.sp-divider-wrapper .sp-divider .sp-divider-text-block .sp-divider-text{font-size:15px}
|
608 |
@media(min-width:640px){.sm\:sp-flex{display:flex}
|
609 |
}
|
public/fontawesome/css/all.min.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*!
|
2 |
-
* Font Awesome Free 5.
|
3 |
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4 |
*/
|
5 |
-
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\f907"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\f913"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\f91a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\f91e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\f941"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
|
1 |
/*!
|
2 |
+
* Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
|
3 |
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4 |
*/
|
5 |
+
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
|
public/fontawesome/webfonts/fa-brands-400.eot
CHANGED
Binary file
|
public/fontawesome/webfonts/fa-brands-400.svg
CHANGED
@@ -1,16 +1,12 @@
|
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!--
|
3 |
-
Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
|
4 |
-
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
5 |
-
-->
|
6 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
7 |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
8 |
<metadata>
|
9 |
-
Created by FontForge
|
10 |
By Robert Madole
|
11 |
Copyright (c) Font Awesome
|
12 |
</metadata>
|
13 |
-
|
14 |
<font id="FontAwesome5Brands-Regular" horiz-adv-x="448" >
|
15 |
<font-face
|
16 |
font-family="Font Awesome 5 Brands Regular"
|
@@ -23,18 +19,225 @@ Copyright (c) Font Awesome
|
|
23 |
bbox="-0.200195 -66.9505 641.5 448.3"
|
24 |
underline-thickness="25"
|
25 |
underline-position="-50"
|
26 |
-
unicode-range="U+0020-
|
27 |
/>
|
28 |
<missing-glyph />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
<glyph glyph-name="twitter-square" unicode=""
|
30 |
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM351.1 257.2c12.8008 9.2998 24 20.8994 32.9004 34c-11.7998 -5.10059 -24.5996 -8.7998 -37.7998 -10.2002
|
31 |
c13.5996 8.09961 23.8994 20.9004 28.7998 36.0996c-12.5996 -7.5 -26.7998 -13 -41.5996 -15.7998c-12 12.7998 -29 20.7002 -47.9004 20.7002c-40 0 -73.2998 -36.0996 -64 -80.5996c-54.4004 2.7998 -102.9 28.7998 -135.2 68.5996
|
32 |
-
c-5.7002 -9.7002 -8.89941 -20.9004 -8.89941 -33.
|
33 |
c-10.4004 -2.7002 -19.5 -2.7002 -29.5996 -1.2002c8.2998 -26 32.5 -44.9004 61.2998 -45.5c-22.5 -17.6006 -50.7002 -28 -81.4004 -28c-5.39941 0 -10.5 0.200195 -15.7998 0.799805c29 -18.5996 63.5 -29.4004 100.7 -29.4004c120.6 0 186.6 99.9004 186.6 186.601
|
34 |
c0 2.7998 0 5.7002 -0.200195 8.5z" />
|
35 |
<glyph glyph-name="facebook-square" unicode=""
|
36 |
-
d="M400 416c26.
|
37 |
-
c-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63v-152.31h-137.25c-26.
|
38 |
<glyph glyph-name="linkedin" unicode=""
|
39 |
d="M416 416c17.5996 0 32 -14.5 32 -32.2998v-383.4c0 -17.7998 -14.4004 -32.2998 -32 -32.2998h-384.1c-17.6006 0 -31.9004 14.5 -31.9004 32.2998v383.4c0 17.7998 14.2998 32.2998 31.9004 32.2998h384.1zM135.4 32h0.0996094v213.8h-66.5v-213.8h66.4004zM102.2 275
|
40 |
c21.2998 0 38.5 17.2002 38.5 38.5c0 21.2002 -17.2998 38.5 -38.5 38.5c-21.2998 0 -38.5 -17.2998 -38.5 -38.5s17.2002 -38.5 38.5 -38.5zM384.3 32v117.2c0 57.5996 -12.5 101.899 -79.7002 101.899c-32.2998 0 -54 -17.6992 -62.8994 -34.5h-0.900391v29.2002h-63.7002
|
@@ -92,7 +295,7 @@ d="M386.061 219.504c1.83398 -9.69238 3.14355 -19.3838 3.14355 -31.9561c0 -109.75
|
|
92 |
c-14.1455 13.6211 -39.0283 29.5996 -76.4854 29.5996c-65.4834 0 -118.92 -54.2217 -118.92 -121.277s53.4365 -121.277 118.92 -121.277c75.9609 0 104.514 54.7451 108.965 82.7734h-108.965v66.0088h181.261v-0.000976562zM571.467 213.067h55.7334v-56.001h-55.7334
|
93 |
v-55.7334h-56.001v55.7334h-55.7324v56.001h55.7324v55.7324h56.001v-55.7324z" />
|
94 |
<glyph glyph-name="linkedin-in" unicode=""
|
95 |
-
d="M100.28 0h-92.8799v299.1h92.8799v-299.1zM53.79 339.9c-29.7002 0 -53.79 24.5996 -53.79 54.2998c0 29.
|
96 |
c0 34.7002 -0.700195 79.2002 -48.29 79.2002c-48.29 0 -55.6895 -37.7002 -55.6895 -76.7002v-148.1h-92.7803v299.1h89.0801v-40.7998h1.2998c12.4004 23.5 42.6904 48.2998 87.8799 48.2998c94 0 111.28 -61.8994 111.28 -142.3v-164.3h-0.0996094z" />
|
97 |
<glyph glyph-name="github-alt" unicode="" horiz-adv-x="480"
|
98 |
d="M186.1 119.3c0 -20.8994 -10.8994 -55.0996 -36.6992 -55.0996c-25.8008 0 -36.7002 34.2002 -36.7002 55.0996c0 20.9004 10.8994 55.1006 36.7002 55.1006c25.7998 0 36.6992 -34.2002 36.6992 -55.1006zM480 169.8c0 -31.8994 -3.2002 -65.7002 -17.5 -95
|
@@ -147,9 +350,9 @@ M303.5 129c35.0996 0 63.5 28.4004 63.5 63.5s-28.4004 63.5 -63.5 63.5s-63.5 -28.4
|
|
147 |
<glyph glyph-name="adn" unicode="" horiz-adv-x="496"
|
148 |
d="M248 280.5l64.9004 -98.7998h-129.801zM496 192c0 -136.9 -111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248s248 -111.1 248 -248zM396.2 109.3l-148.2 223.2l-148.2 -223.2h30.4004l33.5996 51.7002h168.601l33.5996 -51.7002h30.2002z" />
|
149 |
<glyph glyph-name="bitbucket" unicode="" horiz-adv-x="512"
|
150 |
-
d="M22.2002 416l466.8 -0.200195c0.
|
151 |
-
c-
|
152 |
-
c0.
|
153 |
<glyph glyph-name="tumblr" unicode="" horiz-adv-x="320"
|
154 |
d="M309.8 -32.2998c-13.5996 -14.5 -50 -31.7002 -97.3994 -31.7002c-120.801 0 -147 88.7998 -147 140.6v144h-47.5c-5.5 0 -10 4.5 -10 10v68c0 7.2002 4.5 13.6006 11.2998 16c62 21.8008 81.5 76 84.2998 117.101c0.799805 11 6.5 16.2998 16.0996 16.2998h70.9004
|
155 |
c5.5 0 10 -4.5 10 -10v-115.2h83c5.5 0 10 -4.39941 10 -9.89941v-81.7002c0 -5.5 -4.5 -10 -10 -10h-83.4004v-133.2c0 -34.2002 23.7002 -53.5996 68 -35.7998c4.80078 1.89941 9 3.2002 12.7002 2.2002c3.5 -0.900391 5.7998 -3.40039 7.40039 -7.90039l22 -64.2998
|
@@ -166,9 +369,9 @@ M262.1 343.5c-19.5996 -22.9004 -43.3994 -36.2998 -69.5 -34.2998c-2.19922 27.5996
|
|
166 |
<glyph glyph-name="windows" unicode=""
|
167 |
d="M0 354.3l183.6 25.2998v-177.399h-183.6v152.1zM0 29.7002v149.899h183.6v-175.199zM203.8 1.7002v177.899h244.2v-211.6zM203.8 382.3l244.2 33.7002v-213.8h-244.2v180.1z" />
|
168 |
<glyph glyph-name="android" unicode="" horiz-adv-x="576"
|
169 |
-
d="M420.55 146.07c-13.
|
170 |
-
|
171 |
-
c-1.
|
172 |
<glyph glyph-name="linux" unicode=""
|
173 |
d="M220.8 324.7c-1.09961 0.599609 -3.09961 0.399414 -3.39941 1.7002c-0.200195 0.399414 0.199219 0.899414 0.599609 1.09961c1.59961 0.900391 3.7998 0.599609 5.5 -0.0996094c1.2998 -0.600586 3.40039 -1.5 3.2002 -2.90039
|
174 |
c-0.100586 -1.09961 -1.7998 -1.5 -2.90039 -1.5c-1.2002 0 -2 1.2002 -3 1.7002zM198.9 323c-1 -0.0996094 -2.7002 0.400391 -2.80078 1.40039c-0.199219 1.39941 1.90039 2.2998 3.2002 2.89941c1.7002 0.700195 3.90039 1 5.5 0.100586
|
@@ -268,9 +471,9 @@ s106.199 -236.6 236.6 -236.6c130.5 0 236.6 106.1 236.6 236.6z" />
|
|
268 |
<glyph glyph-name="openid" unicode=""
|
269 |
d="M271.5 16l-68 -32c-115 10.2998 -203.5 71.5 -203.5 145.8c0 71.5 82.5 131 191.7 144.3v-43c-71.5 -12.5 -124 -53 -124 -101.3c0 -51 58.5 -93.2998 135.7 -103v340l68 33.2002v-384h0.0996094zM448 157l-131.3 28.5l36.7998 20.7002c-19.5 11.5 -43.5 20 -70 24.7998
|
270 |
v43c46.2002 -5.5 87.7002 -19.5 120.3 -39.2998l35 19.7998z" />
|
271 |
-
<glyph glyph-name="yahoo" unicode=""
|
272 |
-
d="
|
273 |
-
|
274 |
<glyph glyph-name="google" unicode="" horiz-adv-x="488"
|
275 |
d="M488 186.2c0 -141.5 -96.9004 -242.2 -240 -242.2c-137.2 0 -248 110.8 -248 248s110.8 248 248 248c66.7998 0 123 -24.5 166.3 -64.9004l-67.5 -64.8994c-88.2998 85.2002 -252.5 21.2002 -252.5 -118.2c0 -86.5 69.1006 -156.6 153.7 -156.6
|
276 |
c98.2002 0 135 70.3994 140.8 106.899h-140.8v85.2998h236.1c2.30078 -12.6992 3.90039 -24.8994 3.90039 -41.3994z" />
|
@@ -355,7 +558,7 @@ c-22.3994 0 -34.0996 13.0996 -34.0996 35.2998h100.2c0.0996094 2.2998 0.299805 4.
|
|
355 |
d="M496 192c0 -137 -111.2 -248 -248.4 -248c-113.8 0 -209.6 76.2998 -239 180.4l95.2002 -39.3008c6.40039 -32.0996 34.9004 -56.3994 68.9004 -56.3994c39.2002 0 71.8994 32.3994 70.2002 73.5l84.5 60.2002c52.0996 -1.30078 95.7998 40.8994 95.7998 93.5
|
356 |
c0 51.5996 -42 93.5 -93.7002 93.5s-93.7002 -42 -93.7002 -93.5v-1.2002l-59.2002 -85.7002c-15.5 0.900391 -30.6992 -3.40039 -43.5 -12.0996l-133.1 55c10.2002 127.699 117.1 228.1 247.6 228.1c137.2 0 248.4 -111 248.4 -248zM155.7 63.7002
|
357 |
c19.7998 -8.2002 42.5 1.09961 50.7998 21c8.2998 19.7998 -1.09961 42.5 -20.9004 50.7002l-31.5 13c12.2002 4.59961 26 4.7998 38.9004 -0.600586c13 -5.39941 23.0996 -15.5996 28.5 -28.5996s5.2998 -27.2998 -0.0996094 -40.2998
|
358 |
-
c-11.2002 -26.8008 -42.1006 -39.6006 -69 -28.4004c-
|
359 |
c0 -34.3008 -27.9004 -62.3008 -62.4004 -62.3008zM329.6 209.2c25.9004 0 46.9004 21 46.9004 46.7998c0 25.9004 -21 46.7998 -46.9004 46.7998c-25.8994 0 -46.8994 -21 -46.8994 -46.7998c0.0996094 -25.7998 21.0996 -46.7998 46.8994 -46.7998z" />
|
360 |
<glyph glyph-name="steam-square" unicode=""
|
361 |
d="M185.2 91.5c7.7002 18.5 -1 39.7002 -19.6006 47.4004l-29.5 12.1992c11.4004 4.30078 24.3008 4.5 36.4004 -0.5c12.2002 -5.09961 21.5996 -14.5996 26.7002 -26.6992c5 -12.2002 5 -25.6006 -0.100586 -37.7002c-10.5 -25.1006 -39.3994 -37 -64.5996 -26.5
|
@@ -430,7 +633,7 @@ c16.2998 -3.30078 30.5 -11.9004 40.7002 -23.8008l51.2002 44.8008c11.8994 -13.600
|
|
430 |
c-5.7998 -17.5 -15.2002 -33.2002 -27.0996 -46.8008l-51.2002 44.8008c-10.2998 -11.9004 -24.4004 -20.2002 -40.7002 -23.5z" />
|
431 |
<glyph glyph-name="git-square" unicode=""
|
432 |
d="M100.59 113.76c48.5703 -3.30957 58.9502 -2.10938 58.9502 -11.9395c0 -20 -65.5498 -20.0605 -65.5498 -1.52051c0.00976562 5.08984 3.29004 9.40039 6.59961 13.46zM128.54 230.4c30.96 0 31.7598 -44.4707 -0.75 -44.4707c-33 0 -31.54 44.4707 0.75 44.4707z
|
433 |
-
M448 368v-352c0 -26.
|
434 |
c0 14.4893 -8.37012 22.3096 -23.1104 22.3096c-14.4795 0 -22.8799 -7.83984 -22.8799 -22.3096zM199.18 253h-49.5498c-25 6.5498 -81.5596 4.84961 -81.5596 -46.75c0 -18.7998 9.39941 -32 21.8496 -38.1104c-15.6895 -14.3701 -23.1201 -21.1396 -23.1201 -30.7393
|
435 |
c0 -6.87012 2.79004 -13.2207 11.1807 -16.7607c-8.90039 -8.39941 -14 -14.4795 -14 -25.9199c0.0195312 -20.0693 17.5498 -31.7197 63.5391 -31.7197c44.2207 0 69.8701 16.5098 69.8701 45.7305c0 36.6699 -28.2295 35.3193 -94.7695 39.3799l8.37988 13.4297
|
436 |
c17 -4.74023 74.1904 -6.23047 74.1904 42.4297c0 11.6904 -4.83008 19.8203 -9.40039 25.6699l23.3799 1.78027zM283.52 143.16l-13 1.78027c-3.81934 0.509766 -4.06934 1 -4.06934 5.08984v105.45h-52.6006l-2.79004 -20.5703c15.75 -5.5498 17 -4.86035 17 -10.1699
|
@@ -474,14 +677,14 @@ c1.09961 15.7998 10 25.7998 33.6992 24.9004c32.3008 -1.40039 91.7002 -7.7002 160
|
|
474 |
<glyph glyph-name="twitch" unicode="" horiz-adv-x="512"
|
475 |
d="M391.17 344.53v-109.7h-38.6299v109.7h38.6299zM285 345v-109.75h-38.6299v109.75h38.6299zM120.83 448h366.86v-256l-173.771 -164.58h-77.25l-96.5303 -91.4199v91.4199h-115.83v329.16zM449.07 210.25v201.17h-308.931v-274.29h86.8701v-64l67.6006 64h77.2393z" />
|
476 |
<glyph glyph-name="yelp" unicode="" horiz-adv-x="384"
|
477 |
-
d="M42.9004 207.68l99.6191 -48.6094c19.2002 -9.40039 16.2002 -37.5107 -4.5 -42.71l-107.52 -26.8105c-1.
|
478 |
-
c0
|
479 |
-
|
480 |
-
c-11.2998 18.1104 6.2002 40.4102 26.5098 33.9102l105.42 -34.
|
481 |
-
c-3.
|
482 |
-
c-20.5 -5.90039 -37.1006 17.0098 -25.2002 34.71l62 91.
|
483 |
-
|
484 |
-
c0 -23.2998 -30.9102 -31.6006 -42.6104 -11.4004l-104.12 180.44c-1.
|
485 |
<glyph glyph-name="paypal" unicode="" horiz-adv-x="384"
|
486 |
d="M111.4 152.1c-3.5 -19.1992 -17.4004 -108.699 -21.5 -134c-0.300781 -1.7998 -1 -2.5 -3 -2.5h-74.6006c-7.59961 0 -13.0996 6.60059 -12.0996 13.9004l58.5996 371.9c1.5 9.59961 10.1006 16.8994 20 16.8994c152.3 0 165.101 3.7002 204 -11.3994
|
487 |
c60.1006 -23.3008 65.6006 -79.5 44 -140.301c-21.5 -62.5996 -72.5 -89.5 -140.1 -90.2998c-43.4004 -0.700195 -69.5 7 -75.2998 -24.2002zM357.1 296c28.4004 -21.2002 30.3008 -57.7998 23.8008 -92.5996c-16.5 -83.5 -71.9004 -112.301 -142.9 -112.301
|
@@ -616,7 +819,7 @@ l-51.9648 -90c0.268555 -1.07227 0.268555 -2.14258 0.268555 -3.48242c0 -1.33887 0
|
|
616 |
c0 -0.267578 0.267578 -0.803711 0.267578 -1.07227c0 -2.94531 -0.803711 -5.62402 -2.14258 -7.7666zM153.535 326.465v59.7324l-43.6602 -75.5361zM480.054 287.357l-0.267578 0.267578l-98.0361 -101.518l63.75 -67.2324l35.3584 167.143zM291.75 92.8926
|
617 |
l-11.25 -11.7852h22.7676zM291.482 104.143l79.2852 82.2324l-83.0352 87.5889l-79.5537 -84.375zM296.839 98.25l16.875 -17.1426h124.02l5.8916 28.125l-67.5 71.25zM410.411 403.607l-117.053 -124.019l83.0342 -87.5889l97.5 101.25
|
618 |
c-1.33984 2.14258 -2.14258 4.82129 -2.14258 7.7666v0.536133l-57.8574 100.714c-1.33984 0.268555 -2.41016 0.804688 -3.48145 1.34082zM401.304 405.75h-4.28711l-166.339 -60l57.0547 -60.2676zM277.821 405.75h-103.929l50.8936 -53.5713l148.393 53.5713h-75
|
619 |
-
c-2.67871 -2.67773 -6.16016 -4.28516 -10.1787 -4.28516s-7.50098 1.60742 -10.1787 4.28516zM161.572 400.125v-70.7148l54.9111 19.8213l-51.1611 53.8398c-0.
|
620 |
l79.5537 84.1064l-59.7324 63.2139zM161.572 228.161v-76.0723l36.4277 38.3037zM161.572 140.303v-59.1953h107.678l17.1426 17.6777l-82.7676 85.9814zM168.536 -21.75h1.33887l91.6074 94.8213h-99.9102v-89.7324l1.07031 -1.60645
|
621 |
c2.41113 -0.804688 4.28613 -1.875 5.89355 -3.48242zM298.447 -21.75h104.194l-91.6064 94.8213h-38.3037l-91.6074 -94.8213h96.4287c2.68066 2.41016 6.42871 4.28516 10.4473 4.28516s7.76758 -1.875 10.4473 -4.28516zM418.447 -9.96387l17.4121 83.0361h-114.376
|
622 |
l89.1953 -91.875c1.07227 0.536133 2.14355 1.07031 3.48242 1.33887zM431.303 12.2676l34.8223 60.8037h-21.9639zM466.125 81.1074c0.267578 1.07129 0.803711 2.14258 1.33887 2.94531l-17.1426 18.2139l-4.55371 -21.1592h20.3574zM532.286 188.518
|
@@ -754,19 +957,6 @@ l19.2002 -19.2002l128 128l-128 128l-51.5 -51.5l77.1006 -76.5l-25.6006 -25.5996l-
|
|
754 |
<glyph glyph-name="gg-circle" unicode="" horiz-adv-x="512"
|
755 |
d="M257 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM207.5 65.2002l75 75.2002l-77.2002 77.1992l-24.3994 -24.3994l53.0996 -52.9004l-26.5996 -26.5996l-77.2002 77.2002l77.2002 77.1992l11.0996 -11.0996l24.2002 24.2002
|
756 |
l-35.2002 35.3994l-125.7 -125.699zM306.5 67.4004l125.7 125.6l-125.7 125.7l-75 -75l77.2002 -77.2002l24.3994 24.4004l-53.0996 52.8994l26.5 26.5l77.2002 -77.2002l-77.2002 -77.1992l-11.0996 11.0996l-24.1006 -24.4004z" />
|
757 |
-
<glyph glyph-name="tripadvisor" unicode="" horiz-adv-x="576"
|
758 |
-
d="M166.4 167.479c0 -13.2354 -10.7305 -23.9658 -23.9668 -23.9658c-13.2354 0 -23.9658 10.7305 -23.9658 23.9658c0 13.2363 10.7305 23.9668 23.9658 23.9668c13.2363 0 23.9668 -10.7295 23.9668 -23.9668zM431.362 191.435
|
759 |
-
c13.2295 0 23.9551 -10.7246 23.9561 -23.9561c0 -13.2305 -10.7266 -23.9551 -23.9561 -23.9551c-13.2314 0 -23.9561 10.7256 -23.9561 23.9551c0 13.2314 10.7256 23.9561 23.9561 23.9561zM520.75 51.9453c-62.667 -49.1045 -153.276 -38.1094 -202.379 24.5586
|
760 |
-
l-30.9795 -46.3252l-30.6826 45.9395c-48.2773 -60.3906 -135.622 -71.8916 -197.885 -26.0547c-64.0586 47.1572 -77.7588 137.315 -30.6016 201.373c-5.05762 17.1221 -17.7021 42.7236 -28.2227 57.1475l90.2861 0.0498047
|
761 |
-
c48.0039 29.8701 132.851 54.1123 189.389 54.1123c2.11914 0 5.55762 -0.0371094 7.67578 -0.0820312c1.72363 0.0302734 4.52246 0.0556641 6.24609 0.0556641c55.5518 0 138.851 -23.9258 185.936 -53.4043l96.2178 -0.0742188
|
762 |
-
c-10.6191 -14.5371 -23.3213 -40.3643 -28.3516 -57.6494c46.793 -62.7471 34.9639 -151.37 -26.6484 -199.646zM259.366 166.239c-0.00683594 63.5566 -51.5352 115.075 -115.092 115.067c-63.5576 -0.00683594 -115.074 -51.5342 -115.068 -115.092
|
763 |
-
c0.00683594 -63.5566 51.5352 -115.075 115.092 -115.067c63.5127 0.0742188 114.984 51.5381 115.068 115.052v0.0400391zM287.957 176.694c5.43262 73.4395 65.5098 130.884 139.12 133.021c-35.5576 15.374 -95.8555 27.8506 -134.594 27.8506
|
764 |
-
c-1.41699 0 -3.7168 -0.0166016 -5.13379 -0.0380859c-0.953125 0.00878906 -2.50098 0.0166016 -3.45508 0.0166016c-39.2324 0 -100.479 -12.2168 -136.709 -27.2695c74.3447 -1.58203 135.3 -59.4248 140.771 -133.581zM539.663 205.461
|
765 |
-
c-21.9922 59.6338 -88.1621 90.1484 -147.795 68.1572c-59.6338 -21.9922 -90.1484 -88.1621 -68.1572 -147.795v-0.0322266c22.0381 -59.6074 88.1982 -90.0908 147.827 -68.1133c59.6152 22.0039 90.1133 88.1621 68.125 147.783zM213.624 167.486v-0.115234
|
766 |
-
c-0.0566406 -39.3281 -31.9863 -71.1631 -71.3145 -71.1064c-39.3271 0.0576172 -71.1621 31.9863 -71.1055 71.3145s31.9863 71.1631 71.3135 71.1055c39.2598 -0.115234 71.042 -31.9395 71.1064 -71.1982zM189.112 167.486v0.0839844
|
767 |
-
c-0.0517578 25.7832 -20.9941 46.6445 -46.7783 46.5938s-46.6445 -20.9941 -46.5938 -46.7773c0.0507812 -25.7842 20.9941 -46.6445 46.7764 -46.5938c25.7266 0.113281 46.5371 20.9678 46.5957 46.6934zM502.535 167.486
|
768 |
-
c-0.0205078 -39.3281 -31.918 -71.2422 -71.2471 -71.2217c-39.3291 0.0214844 -71.1943 31.918 -71.1729 71.2471c0.0195312 39.3281 31.918 71.1943 71.2471 71.1729c39.29 -0.0654297 71.1211 -31.9082 71.1729 -71.1982zM478.031 167.494
|
769 |
-
c-0.00878906 25.7842 -20.918 46.6787 -46.7021 46.6699s-46.6787 -20.918 -46.6699 -46.7021s20.918 -46.6777 46.7021 -46.6699c25.7646 0.0458984 46.6357 20.9277 46.6699 46.6934v0.00878906z" />
|
770 |
<glyph glyph-name="odnoklassniki" unicode="" horiz-adv-x="320"
|
771 |
d="M275.1 114c-27.3994 -17.4004 -65.0996 -24.2998 -90 -26.9004l20.9004 -20.5996l76.2998 -76.2998c27.9004 -28.6006 -17.5 -73.2998 -45.7002 -45.7002c-19.0996 19.4004 -47.0996 47.4004 -76.2998 76.5996l-76.2998 -76.5
|
772 |
c-28.2002 -27.5 -73.5996 17.6006 -45.4004 45.7002c19.4004 19.4004 47.1006 47.4004 76.3008 76.2998l20.5996 20.6006c-24.5996 2.59961 -62.9004 9.09961 -90.5996 26.8994c-32.6006 21 -46.9004 33.3008 -34.3008 59c7.40039 14.6006 27.7002 26.9004 54.6006 5.7002
|
@@ -789,27 +979,27 @@ c15 29.7002 57.8008 109.2 75.3008 142.8c-13.9004 28.3008 -58.6006 133.9 -72.8008
|
|
789 |
c18.8994 -40 30.5996 -68.1006 48.0996 -104.7c5.59961 10.7998 34.7002 69.4004 48.0996 100.8c8.90039 20.6006 -3.89941 28.6006 -38.5996 29.4004c0.299805 3.59961 0 10.2998 0.299805 13.5996c44.4004 0.299805 111.101 0.299805 123.101 0.600586v-13.6006
|
790 |
c-22.5 -0.799805 -45.8008 -12.7998 -58.1006 -31.7002l-59.2002 -122.8c6.40039 -16.0996 63.3008 -142.8 69.2002 -156.7l122.4 282.601c-8.60059 23.0996 -36.4004 28.0996 -47.2002 28.2998v13.9004l127.8 -1.10059z" />
|
791 |
<glyph glyph-name="safari" unicode="" horiz-adv-x="512"
|
792 |
-
d="M274.69 173.31l-108.69 -71.3096l71.3096 108.69zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM411.85 265.21c-2.
|
793 |
-
|
794 |
-
c-1.
|
795 |
-
|
796 |
-
c-
|
797 |
-
|
798 |
-
c-1.
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
c0
|
805 |
-
c-
|
806 |
-
|
807 |
-
c-1.
|
808 |
-
c1.
|
809 |
-
c-1.
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
<glyph glyph-name="chrome" unicode="" horiz-adv-x="496"
|
814 |
d="M131.5 230.5l-76.4004 117.4c47.6006 59.1992 119 91.7998 192 92.0996c42.3008 0.299805 85.5 -10.5 124.801 -33.2002c43.3994 -25.2002 76.3994 -61.3994 97.3994 -103l-205.3 10.7998c-58.0996 3.40039 -113.4 -29.2998 -132.5 -84.0996zM164.4 192
|
815 |
c0 46.2998 37.3994 83.5996 83.5996 83.5996s83.5996 -37.3994 83.5996 -83.5996s-37.3994 -83.5996 -83.5996 -83.5996s-83.5996 37.3994 -83.5996 83.5996zM479.3 281.2c43.5 -111.9 0 -241.9 -107.399 -303.9c-43.4004 -25.2002 -91.3008 -35.3994 -137.801 -32.8994
|
@@ -817,21 +1007,21 @@ l112.101 172.399c31.8994 49 31.2998 112.9 -6.60059 157.2zM133.7 144.4c26.2998 -5
|
|
817 |
<glyph glyph-name="firefox" unicode="" horiz-adv-x="512"
|
818 |
d="M503.52 206.52c0.240234 -4.43945 0.360352 -9 0.480469 -13.5195c0 -137.19 -111.23 -248.42 -248.32 -248.42c-122.779 0 -224.859 89.2695 -244.779 206.38c-0.360352 3.24023 -0.720703 6.36035 -1.08008 9.59961c-4.91992 42.6006 0.479492 87.3604 16.0801 124.79
|
819 |
c10.7998 25.8809 32.6396 54 49.7998 62.8809c-16.2002 -31.8008 -24.1201 -63 -25.7998 -83.8809c11.2793 37.2002 32.6299 68.3604 62.5098 90.3604c51.2402 37.6699 120.229 39.3604 147.71 15.3604c-51 -17.5107 -106.55 -87.96 -94.3105 -170.511
|
820 |
-
|
821 |
-
c0 -0.
|
822 |
c-47.6602 45.4707 -116.06 64.6699 -180.24 52.9902c-0.240234 0 -0.599609 -0.120117 -0.839844 -0.120117c-1.7998 -0.359375 -3.47949 -0.719727 -5.16016 -1.08008c-0.359375 -0.120117 -0.839844 -0.120117 -1.2002 -0.239258l-5.87988 -1.44043
|
823 |
-
c-14.5195 -3.55957 -34.7998 -10.7998 -49.4395 -19.5596c-0.
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
c0.480469 -0.720703 0.959961 -1.56055 1.32031 -2.16016c0.359375 -0.600586 0.839844 -1.24023 1.2002 -1.91992c0.359375 -0.680664 0.839844 -1.32031 1.19922 -2c0.360352 -0.680664 0.84082 -1.28027 1.2002 -2c0.
|
829 |
c0.360352 -0.720703 0.839844 -1.56055 1.2002 -2.16016c0.359375 -0.599609 0.719727 -1.32031 1.08008 -1.91992c0.359375 -0.839844 0.799805 -1.67969 1.2002 -2.28027c0.399414 -0.599609 0.639648 -1.2002 1 -1.7998
|
830 |
c0.359375 -0.839844 0.839844 -1.56055 1.19922 -2.40039c0.240234 -0.479492 0.480469 -1.08008 0.720703 -1.55957c0.479492 -0.839844 0.839844 -1.63965 1.31934 -2.63965l0.360352 -0.720703c1.75977 -3.71973 3.44043 -7.55957 5 -11.3994
|
831 |
c0 -0.120117 0.120117 -0.240234 0.120117 -0.360352c0.439453 -1.2002 0.959961 -2.28027 1.43945 -3.48047c0.120117 -0.239258 0.240234 -0.599609 0.360352 -0.839844c0.480469 -1.08008 0.839844 -2.2793 1.32031 -3.35938
|
832 |
-
c0.
|
833 |
c0.360352 -1.08008 0.720703 -2.28027 1.08008 -3.48047c0.120117 -0.240234 0.120117 -0.599609 0.240234 -0.839844c0.360352 -1.2002 0.719727 -2.52051 1.08008 -3.71973c0.120117 -0.120117 0.120117 -0.360352 0.240234 -0.600586l1.08008 -4
|
834 |
-
c0.119141 -0.120117 0.119141 -0.120117 0.119141 -0.
|
835 |
<glyph glyph-name="opera" unicode="" horiz-adv-x="496"
|
836 |
d="M313.9 415.3c-170.2 0 -252.601 -223.8 -147.5 -355.1c36.5 -45.4004 88.5996 -75.6006 147.5 -75.6006c36.2998 0 70.2998 11.1006 99.3994 30.4004c-43.7998 -39.2002 -101.899 -63 -165.3 -63c-3.90039 0 -8 0 -11.9004 0.299805
|
837 |
c-131.5 6.10059 -236.1 114.601 -236.1 247.7c0 137 111 248 248 248h0.799805c63.1006 -0.299805 120.7 -24.0996 164.4 -63.0996c-29 19.3994 -63.1006 30.3994 -99.2998 30.3994zM415.7 17.5996c-40.9004 -24.6992 -90.7002 -23.5996 -132 5.80078
|
@@ -883,9 +1073,14 @@ c9.69922 9.7002 22.8994 15.9004 37.8994 15.9004zM129.4 139.1c0 -21.5996 17.6992
|
|
883 |
c4 3.5 4 9.7002 -0.100586 13.7002c-3.5 3.5 -9.69922 3.5 -13.1992 0c-29 -29 -121.2 -28.5 -149 0c-3.5 3.5 -9.7002 3.5 -13.2002 0c-4 -4 -4 -10.2002 0 -13.7002c36.3994 -36.3994 139.1 -36.3994 175.5 0zM342.9 99.7998c22 0 39.5996 17.7002 39.6992 39.2002
|
884 |
c0 22.0996 -17.6992 39.7002 -39.6992 39.7002c-21.6006 0 -39.2002 -17.7002 -39.2002 -39.7002c0 -21.5996 17.5996 -39.2002 39.2002 -39.2002z" />
|
885 |
<glyph glyph-name="edge" unicode="" horiz-adv-x="512"
|
886 |
-
d="
|
887 |
-
c-
|
888 |
-
|
|
|
|
|
|
|
|
|
|
|
889 |
<glyph glyph-name="codiepie" unicode="" horiz-adv-x="472"
|
890 |
d="M422.5 245.1c30.7002 0 33.5 -53.0996 -0.299805 -53.0996h-10.7998v-44.2998h-26.6006v97.3994h37.7002zM472 95.4004c-42.0996 -91.9004 -121.6 -151.4 -224 -151.4c-137 0 -248 111 -248 248s111 248 248 248c97.4004 0 172.8 -53.7002 218.2 -138.4l-186 -108.8z
|
891 |
M433.5 82.9004l-60.2998 30.6992c-27.1006 -44.2998 -70.4004 -71.3994 -122.4 -71.3994c-82.5 0 -149.2 66.7002 -149.2 148.899c0 82.5 66.7002 149.2 149.2 149.2c48.4004 0 88.9004 -23.5 116.9 -63.3994l59.5 34.5996c-40.7002 62.5996 -104.7 100 -179.2 100
|
@@ -981,7 +1176,7 @@ c13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90
|
|
981 |
<glyph glyph-name="snapchat-ghost" unicode="" horiz-adv-x="512"
|
982 |
d="M510.846 55.3271c-5.21094 -12.1572 -27.2383 -21.0889 -67.3594 -27.3184c-2.06445 -2.78613 -3.77539 -14.6855 -6.50781 -23.9561c-1.625 -5.56543 -5.62207 -8.86914 -12.1279 -8.86914l-0.296875 0.00585938c-9.39453 0 -19.2031 4.32227 -38.8516 4.32227
|
983 |
c-26.5215 0 -35.6621 -6.04297 -56.2539 -20.5879c-21.832 -15.4375 -42.7715 -28.7637 -74.0273 -27.3984c-31.6455 -2.33398 -58.0244 16.9072 -72.8711 27.4033c-20.7139 14.6436 -29.8281 20.582 -56.2412 20.582c-18.8633 0 -30.7354 -4.71973 -38.8516 -4.71973
|
984 |
-
c-8.07324 0 -11.2129 4.92188 -12.4219 9.04004c-2.70312 9.18848 -4.4043 21.2627 -6.52344 24.1299c-20.6787 3.20898 -67.3096 11.3438 -68.498 32.1504c-0.
|
985 |
c69.583 11.4551 100.925 82.9014 102.228 85.9346c0.0742188 0.175781 0.155273 0.34375 0.237305 0.514648c3.71289 7.53711 4.54395 13.8486 2.46289 18.7529c-5.05078 11.8965 -26.8721 16.1641 -36.0537 19.7959c-23.7148 9.36621 -27.0146 20.1279 -25.6113 27.5039
|
986 |
c2.43652 12.8359 21.7246 20.7354 33.002 15.4531c8.91895 -4.18066 16.8428 -6.29688 23.5469 -6.29688c5.02148 0 8.21191 1.2041 9.95996 2.1709c-2.04297 35.9365 -7.10156 87.29 5.68652 115.969c33.7734 75.7188 105.356 81.6025 126.478 81.6025
|
987 |
c0.943359 0 9.14062 0.0888672 10.1094 0.0888672c52.1484 0 102.255 -26.7803 126.724 -81.6426c12.7764 -28.6504 7.74902 -79.792 5.69434 -116.01c1.58203 -0.87207 4.35742 -1.94141 8.59961 -2.13867c6.39648 0.286133 13.8145 2.38867 22.0693 6.25684
|
@@ -998,10 +1193,10 @@ c-0.0996094 -0.0996094 -0.200195 -0.199219 -0.200195 -0.299805c-0.899414 -2 -21.
|
|
998 |
c0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002
|
999 |
c13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z" />
|
1000 |
<glyph glyph-name="pied-piper" unicode="" horiz-adv-x="480"
|
1001 |
-
d="M455.93 424.8c9.41992 2.40039 15.0703 -10.25 6.99023 -15.6797c-98.2295 -65.9199 -120.439 -127.561 -126.229 -160.18c-33.5205 -188.881 -101.37 -119.32 -184.311 -226.
|
1002 |
-
c97.6504 0 177.09 79.4502 177.09 177.11c-0.
|
1003 |
-
s93.1299 208 208
|
1004 |
-
c-97.6504 0 -177.1 -79.4395 -177.1 -177.1c0.
|
1005 |
<glyph glyph-name="first-order" unicode=""
|
1006 |
d="M12.9004 218.8c0.0996094 0.100586 0.199219 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.100586 -0.400391h-0.199219zM224 351.4c7.40039 0 14.5996 -0.5 21.7002 -1.7002l-4 -67.7002l22.2998 64.2998c14.2998 -3.7998 27.7002 -9.5 40 -16.8994
|
1007 |
l-29.4004 -61.1006l45.1006 50.9004c11.5 -8.90039 21.7002 -19.2002 30.5996 -30.9004l-50.5996 -45.3994l60.8994 29.6992c7.5 -12.2998 12.9004 -26 16.6006 -40.2998l-64 -22.2998l67.7002 4c1.09961 -7.09961 1.39941 -14.5996 1.39941 -22
|
@@ -1020,7 +1215,7 @@ d="M208 359.714c0 10 6.28613 21.7139 17.7148 21.7139c11.1426 0 17.7139 -11.7139
|
|
1020 |
c-22.8574 -24.8584 -87.4277 -61.1426 -120.856 -70.5723l-1.14355 -0.286133v-32.5703c0 -16.2861 -12.5723 -30.5713 -29.1426 -30.5713c-10 0 -19.4297 5.71387 -24.5723 14.2861c-5.42676 -8.57227 -14.8564 -14.2861 -24.8564 -14.2861
|
1021 |
s-19.4287 5.71387 -24.8574 14.2861c-5.14258 -8.57227 -14.5713 -14.2861 -24.5703 -14.2861c-10.2861 0 -19.4287 5.71387 -24.8574 14.2861c-5.14355 -8.57227 -14.5713 -14.2861 -24.5713 -14.2861c-18.8574 0 -29.4287 15.7139 -29.4287 32.8574
|
1022 |
c-16.2861 -12.2852 -35.7158 -19.4287 -56.5713 -19.4287c-22 0 -43.4287 8.28516 -60.2861 22.8574c10.2852 0.286133 20.5713 2.28613 30.2852 5.71387c-20.8574 5.71387 -39.4277 18.8574 -52 36.2861c21.3701 -4.64551 46.209 -1.67285 67.1426 11.1426
|
1023 |
-
c-22 22 -56.5703 58.8574 -68.5713 87.4287c-5.71387 13.4287 -6.85645 31.4287 -6.85645 45.7139c0 49.7139 20.2861 160 86.2861 160c10.5713 0 18.8564 -4.8584 23.1426 -14.8574c3.
|
1024 |
c7.99902 12.5713 11.7139 21.1426 21.7139 34c32.2852 41.1445 81.7139 69.4297 134.856 69.4297c6 0 12 -0.285156 17.7148 -1.14355c10.8564 11.7148 26 18.2861 41.7148 18.2861c14.5703 0 29.7139 -6 40 -16.2861c0.856445 -0.857422 1.42773 -2.28613 1.42773 -3.42773
|
1025 |
c0 -3.71387 -10.2852 -13.4287 -12.8574 -16.2861c4.28613 -1.42871 15.7148 -6.8584 15.7148 -12c0 -2.85742 -2.85742 -5.14258 -4.57129 -7.14258c31.4287 -27.7148 49.4287 -67.1436 56.2861 -108c4.28613 5.14258 10.2852 8.57129 17.1426 8.57129
|
1026 |
c10.5713 0 20.8574 -7.14355 28.5713 -14.001c20.8564 -18.5703 25.7139 -53.1416 25.7139 -79.7139zM188 358.572c0 -18.2861 12.5713 -37.1436 32.2861 -37.1436c19.7139 0 32.2852 18.8574 32.2852 37.1436c0 18 -12.5713 36.8564 -32.2852 36.8564
|
@@ -1033,16 +1228,15 @@ c-96.5703 0 -160.57 84.5723 -160.57 176.572c0 16.8574 2 33.4287 6 49.7139c-20 -3
|
|
1033 |
c5.42871 8.57129 14.5703 14.2861 24.8574 14.2861c10 0 19.4277 -5.71387 24.5713 -14.2861c5.42871 8.57129 14.8564 14.2861 24.8574 14.2861c10 0 19.4287 -5.71387 24.8574 -14.2861c5.14258 8.57129 14.5713 14.2861 24.5723 14.2861
|
1034 |
c10.8564 0 20.8564 -6.57227 25.7139 -16c43.4268 36.2861 68.5693 92 71.4258 148.286zM432.286 261.714c0 53.7139 -34.5713 105.714 -92.5723 105.714c-30.2852 0 -58.5713 -15.1426 -78.8564 -36.8564c-19.9951 -66.3828 -27.4473 -136.571 41.4287 -136.571
|
1035 |
c28.8047 0 97.3564 28.5381 84.2861 -36.8574c28.8564 26 45.7139 65.7148 45.7139 104.571z" />
|
1036 |
-
<glyph glyph-name="google-plus" unicode="" horiz-adv-x="
|
1037 |
-
d="
|
1038 |
-
|
1039 |
-
c-68.
|
1040 |
<glyph glyph-name="font-awesome" unicode=""
|
1041 |
-
d="
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
c19.2002 0 37.1006 6.5 53.7998 13.7002c4.2002 1.7998 7.80078 3.59961 7.80078 7.7998z" />
|
1046 |
<glyph glyph-name="linode" unicode=""
|
1047 |
d="M437.4 221.7c0.599609 -2 -8.80078 -66.2998 -9.7002 -72.7998c0 -0.900391 -0.5 -1.7002 -1.10059 -2l-54.5996 -43.7002c-1.09961 -0.900391 -2.59961 -0.900391 -3.7002 0l-20.2998 14l-2.2998 -33.4004c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998
|
1048 |
l-66.8994 -53.4004c-1.10059 -0.899414 -2.90039 -0.899414 -4 0l-28 23.7002l2 -46c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998l-83.6992 -66.9004c-0.600586 -0.299805 -1.10059 -0.599609 -1.7002 -0.599609c-0.900391 0.299805 -1.7002 0.299805 -2.2998 0.900391
|
@@ -1059,18 +1253,18 @@ c14.2002 -21.5996 29 -35.7998 49.5 -35.7998c22.5 0 31.5 17.2998 33 30.7998h29.29
|
|
1059 |
c12 0 22.7002 1.19922 32.7002 4.19922c-15.5 30.5 -33.7002 61.3008 -69.2002 61.3008c-6.7998 0 -13.5996 -1 -19.7998 -4l-12.2002 24.2998c14.7002 12.7998 38.5 22.7998 69 22.7998c47.7998 0 72 -23 91.5 -52.2002z" />
|
1060 |
<glyph glyph-name="free-code-camp" unicode="" horiz-adv-x="576"
|
1061 |
d="M97.2197 351.79c-43.2197 -41.6201 -64.9697 -92.5898 -64.8193 -154.021c0.15918 -68 23.0293 -122.67 67.4795 -165c9.33984 -8.34961 13.2002 -14.9199 13.2002 -20.5498c0 -2.75 -1.90039 -5.62012 -3.81055 -8.37988
|
1062 |
-
c-
|
1063 |
-
|
1064 |
c-0.189453 -0.129883 -0.259766 -0.179688 -0.169922 -0.129883zM336.39 185.56c16.2305 -4.14941 24.04 24.04 30.0303 30.0508c84.71 -110.101 -27.5098 -184.45 -33 -188.101c3.86035 3.04004 44.3301 49.7705 21.5801 76.5498
|
1065 |
c-1 1.03027 -67.2998 -20.0596 -54.8398 53.54c8.30957 48.6807 -7.60059 71.1309 -7.60059 71.1309c-17.9697 -37.29 -32.5 -53.8604 -43.5 -72.1602c-56.9492 -92.9404 -16.2793 -124.29 -9.5498 -128.641c-10.54 6.5 -108.27 70.8799 -34 175.23
|
1066 |
c78.3701 110.189 62.8301 159.57 62.8301 159.57c118.46 -94.2803 51.8105 -173.021 68.0498 -177.171zM510.88 358.31c41.4404 -47.3096 62.6699 -93.1592 61.75 -160.649s-17.4697 -117.021 -54.0596 -161.87c-18.79 -23.6602 -33.1904 -35.79 -43.4707 -35.79
|
1067 |
-
c-
|
1068 |
-
c-10.4004 10.6406 -16 17.1201 -16 21.9004c0 2.75977 1.91992 5.50977 3.83008 7.41992c2.
|
1069 |
<glyph glyph-name="telegram" unicode="" horiz-adv-x="496"
|
1070 |
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM369.8 270.1c3.60059 16.8008 -6.09961 23.5 -17.2002 19.5l-239.1 -92.1992c-16.4004 -6.40039 -16.0996 -15.5 -2.7998 -19.7002l61.2002 -19.1006l142 89.4004
|
1071 |
c6.59961 4.40039 12.6992 1.90039 7.69922 -2.5l-114.899 -103.8l-4.40039 -63.1006c6.40039 0 9.2002 2.80078 12.5 6.10059l29.9004 28.7998l62 -45.7002c11.2998 -6.39941 19.3994 -3.09961 22.3994 10.5z" />
|
1072 |
-
<glyph glyph-name="bandcamp" unicode="" horiz-adv-x="
|
1073 |
-
d="
|
1074 |
<glyph glyph-name="grav" unicode="" horiz-adv-x="512"
|
1075 |
d="M301.1 236c4.40039 -4.40039 4.40039 -11.9004 0 -16.2998l-9.69922 -9.7002c-4.40039 -4.7002 -11.9004 -4.7002 -16.6006 0l-10.5 10.5c-4.39941 4.7002 -4.39941 11.9004 0 16.5996l9.7002 9.7002c4.40039 4.40039 11.9004 4.40039 16.5996 0zM270.9 255.7
|
1076 |
c-2.7002 -2.7998 -7.40039 -2.7998 -10.5 0c-2.80078 3 -2.80078 7.7002 0 10.5c3 3 7.69922 3 10.5 0c3 -2.7002 3 -7.5 0 -10.5zM244.9 250.4c2.7998 3 7.5 3 10.5 0c2.7998 -2.7002 2.7998 -7.40039 0 -10.2002c-3 -3 -7.7002 -3 -10.5 0c-3 2.7002 -3 7.39941 0 10.2002
|
@@ -1094,15 +1288,17 @@ c-4.2998 22.5 -31.4004 20.9004 -49 20.9004h-24.6006v-127.8zM382.5 157.4v36c0 17.
|
|
1094 |
c5.69922 -6.7998 11.8994 -9.7998 20.8994 -9.7998c19.7998 0 22.2002 15.2002 22.2002 30.9004zM265 218.1v-49.2998c0 -9.7002 1.90039 -18.7002 -10.2998 -18.3994v83.6992c11.8994 0 10.2998 -6.2998 10.2998 -16zM350.5 192v-32.7002
|
1095 |
c0 -5.39941 1.59961 -14.3994 -6.2002 -14.3994c-1.59961 0 -3 0.799805 -3.7998 2.39941c-2.2002 5.10059 -1.09961 44.1006 -1.09961 44.7002c0 3.7998 -1.10059 12.7002 4.89941 12.7002c7.2998 0 6.2002 -7.2998 6.2002 -12.7002z" />
|
1096 |
<glyph glyph-name="ravelry" unicode="" horiz-adv-x="512"
|
1097 |
-
d="
|
1098 |
-
c-
|
1099 |
-
c-
|
1100 |
-
|
1101 |
-
c-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
|
|
|
|
1106 |
<glyph glyph-name="sellcast" unicode=""
|
1107 |
d="M353.4 416c52.0996 0 94.6992 -42.5996 94.6992 -94.5996v-258.801c0 -52 -42.5996 -94.5996 -94.6992 -94.5996h-258.7c-52.1006 0 -94.7002 42.5996 -94.7002 94.7002v258.7c0 52 42.5996 94.5996 94.7002 94.5996h258.7zM303.4 99.5996
|
1108 |
c27.8994 48.2002 11.1992 110.5 -37.2002 138.5c-18.6006 10.8008 0.0996094 -0.0996094 -18.5 10.7002c-25 14.4004 -46.2002 -23.2998 -21.6006 -37.5c18 -10.2002 0.800781 -0.399414 18.6006 -10.5996c27.5996 -16 37.2002 -51.7998 21.2998 -79.4004
|
@@ -1135,12 +1331,11 @@ c5.7002 -3.09961 6.90039 -9.40039 6 -15.0996c-1.09961 -9.7002 -28 -70.9004 -28.8
|
|
1135 |
c3.10059 0 8.30078 -0.900391 7.10059 -10.9004c-1.40039 -9.39941 -35.1006 -72.2998 -38.9004 -87.6992c-4.59961 -20.6006 6.60059 -41.4004 24.9004 -50.6006c11.3994 -5.7002 62.5 -15.7002 58.5 11.1006zM376.4 3.09961c10.5996 7.5 24.8994 4.60059 32.2998 -6
|
1136 |
c7.09961 -10.5996 4.59961 -25.1992 -6 -32.5996c-10.6006 -7.09961 -24.9004 -4.59961 -32 6c-7.2002 10.5996 -4.60059 25.2002 5.7002 32.5996z" />
|
1137 |
<glyph glyph-name="font-awesome-alt" unicode=""
|
1138 |
-
d="
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
c0 -7.7002 6.5 -14.2998 14.2998 -14.2998h347.6c7.7002 0 14.2998 6.5 14.2998 14.2998z" />
|
1144 |
<glyph glyph-name="accessible-icon" unicode=""
|
1145 |
d="M423.9 192.2l-12.9004 -157.3c-3.2998 -40.7002 -63.9004 -35.1006 -60.5996 4.89941l10 122.5l-41.1006 -2.2998c10.1006 -20.7002 15.7998 -43.9004 15.7998 -68.5c0 -41.2002 -16.0996 -78.7002 -42.2998 -106.5l-39.2998 39.2998
|
1146 |
c57.9004 63.7002 13.0996 167.2 -74 167.2c-25.9004 0 -49.5 -9.90039 -67.2002 -26l-39.2998 39.2998c22 20.7002 50.0996 35.1006 81.4004 40.2002l75.2998 85.7002l-42.6006 24.7998l-51.5996 -46c-30 -26.7998 -70.5996 18.5 -40.5 45.4004l68 60.6992
|
@@ -1234,23 +1429,23 @@ l6.2998 7.89941l-94.9004 119.4l-4.5 7.2998c19.7998 14.2002 33.5 24.2998 35.2998
|
|
1234 |
l-8.90039 -4.7998l-18.7998 -28.8994l68.7998 -99.8008l20.5 -29.5996c-12 -12.2998 -23.5 -24.4004 -32.7998 -34.9004l-58 31.1006l-15.7002 -15.4004l52.4004 -48.0996l40.5996 -61l17.9004 12.7002l-22.1006 64.1992c12.5 7.60059 27 17.1006 41.7002 27.1006
|
1235 |
l115.4 -110z" />
|
1236 |
<glyph glyph-name="aws" unicode="" horiz-adv-x="640"
|
1237 |
-
d="M180.41 244.99c-0.719727 -22.6504 10.5996 -32.6807 10.8799 -39.0498c-0.
|
1238 |
-
c-
|
1239 |
c7.10059 -0.0195312 21.6006 -0.370117 46.9902 -6.26953v15.6191c2.69043 26.46 -14.7002 46.9902 -44.8096 43.9102c-2.40039 -0.00976562 -19.4004 0.5 -45.8408 -10.1094c-7.35938 -3.37988 -8.2998 -2.82031 -10.75 -2.82031
|
1240 |
-
c-7.40918 0 -4.35938 21.4795 -2.93945 24.2002c5.20996 6.39941 35.8604 18.3496 65.9395 18.
|
1241 |
-
c0 -1.
|
1242 |
c-15.1494 1.14062 -42.8193 -5.62988 -41.7393 -32.2598c-1.24023 -16.79 11.1201 -31.4004 29.96 -30.4805zM264.91 189.55c-7.86035 -0.719727 -11.5205 4.86035 -12.6797 10.3701l-49.8008 164.65c-0.969727 2.7793 -1.60938 5.64941 -1.91992 8.58008
|
1243 |
-
c-0.
|
1244 |
-
|
1245 |
-
c-1.14941 -5.50977 -4.82031 -11.0898 -12.6797 -10.3701h-18.6904c-10.9395 -1.15039 -12.5098 9.66016 -12.6797 10.75l-33.1602 137.13l-32.7803 -136.99c-0.15918 -1.08984 -1.72949 -11.8994 -12.6797 -10.
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
c-6.88965 0.360352 -39.8896 -0.910156 -38.4092 -24.9697c-0.430664 -18.96 26.6094 -26.0703 29.6992 -26.8896c36.46 -10.9707 48.6504 -12.79 63.1201 -29.5801c17.1406 -22.25 7.90039 -48.2998 4.35059 -55.4404
|
1250 |
-
c-19.0801 -37.4902 -68.4199 -34.4395 -69.2607 -34.4199zM578.59 79.0596c-70.0303 -51.7197 -171.689 -79.25 -258.49 -79.25c-
|
1251 |
-
c-6.53027 5.88965 -0.770508 13.96 7.16992 9.
|
1252 |
-
|
1253 |
-
|
1254 |
<glyph glyph-name="bimobject" unicode=""
|
1255 |
d="M416 416c17.5996 0 32 -14.4004 32 -32v-384c0 -17.5996 -14.4004 -32 -32 -32h-384c-17.5996 0 -32 14.4004 -32 32v384c0 17.5996 14.4004 32 32 32h384zM352 158.6h-0.0996094v35c0 49.4004 -11.4004 82.5 -103.801 82.5h-17.2998
|
1256 |
c-30 0 -65.0996 -8.2998 -69.7002 -38.7998h-1.09961v74.7002h-64v-232h64v34.7998h0.900391c8 -23.8994 26.2998 -38.7998 70.3994 -38.7998h16.9004c92.3994 0 103.8 33.2002 103.8 82.5996zM288 187.5v-22.9004c0 -21.6992 -3.40039 -33.7998 -38.4004 -33.7998h-45.2998
|
@@ -1259,7 +1454,7 @@ c-28.8994 0 -44.0996 6.5 -44.0996 35.7002v19c0 29.2998 15.2002 35.7002 44.0996 3
|
|
1259 |
d="M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM362.349 227.33c4.9375 32.999 -20.1904 50.7393 -54.5498 62.5732l11.1465 44.7021l-27.2129 6.78027l-10.8516 -43.5234
|
1260 |
c-7.1543 1.78223 -14.502 3.46387 -21.8027 5.12988l10.9287 43.8096l-27.1982 6.78125l-11.1523 -44.6855c-5.92188 1.34863 -11.7354 2.68164 -17.377 4.08398l0.0302734 0.139648l-37.5293 9.37012l-7.23926 -29.0625s20.1914 -4.62695 19.7646 -4.91309
|
1261 |
c11.0225 -2.75098 13.0146 -10.0439 12.6807 -15.8242l-12.6963 -50.9258c0.759766 -0.193359 1.74414 -0.472656 2.8291 -0.90625c-0.907227 0.224609 -1.87598 0.472656 -2.87598 0.712891l-17.7959 -71.3379c-1.34961 -3.34863 -4.76758 -8.37012 -12.4717 -6.46484
|
1262 |
-
c0.271484 -0.394531 -19.7793 4.9375 -19.7793 4.9375l-13.5107 -31.1475l35.4141 -8.82617c6.58887 -1.65137 13.0449 -3.37988 19.4004 -5.00684l-11.2617 -45.2129l27.1816 -6.78027l11.1533 44.
|
1263 |
l-11.1152 -44.5225l27.2139 -6.78125l11.2617 45.1279c46.4043 -8.78125 81.2988 -5.23926 95.9863 36.7266c11.8359 33.79 -0.589844 53.2812 -25.0049 65.9912c17.7803 4.09766 31.1748 15.792 34.7471 39.9492zM300.172 140.151
|
1264 |
c-8.41016 -33.79 -65.3076 -15.5234 -83.7549 -10.9434l14.9443 59.8994c18.4453 -4.60352 77.5996 -13.7178 68.8105 -48.9561zM308.589 227.818c-7.67285 -30.7363 -55.0312 -15.1201 -70.3926 -11.292l13.5479 54.3262
|
1265 |
c15.3633 -3.82715 64.8359 -10.9727 56.8447 -43.0342z" />
|
@@ -1385,14 +1580,18 @@ c13.2998 45.5 -42.2002 71.7002 -64 29.2998z" />
|
|
1385 |
d="M87 -33.7998v73.5996h73.7002v-73.5996h-73.7002zM25.4004 101.4h61.5996v-61.6006h-61.5996v61.6006zM491.6 271.1c53.2002 -170.3 -73 -327.1 -235.6 -327.1v95.7998h0.299805v0.299805c101.7 0.200195 180.5 101 141.4 208
|
1386 |
c-14.2998 39.6006 -46.1006 71.4004 -85.7998 85.7002c-107.101 38.7998 -208.101 -39.8994 -208.101 -141.7h-95.7998c0 162.2 156.9 288.7 327 235.601c74.2002 -23.2998 133.6 -82.4004 156.6 -156.601zM256.3 40.0996h-0.299805v-0.299805h-95.2998v95.6006h95.5996
|
1387 |
v-95.3008z" />
|
1388 |
-
<glyph glyph-name="discord" unicode=""
|
1389 |
-
d="
|
1390 |
-
|
1391 |
-
|
1392 |
-
c-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
|
|
|
|
|
|
|
|
1396 |
<glyph glyph-name="discourse" unicode=""
|
1397 |
d="M225.9 416c122.699 0 222.1 -102.3 222.1 -223.9c0 -121.6 -99.4004 -223.899 -222.1 -223.899l-225.801 -0.200195s-0.0996094 224 -0.0996094 227.9c0 121.6 103.3 220.1 225.9 220.1zM224 64c70.7002 0 128 57.2998 128 128s-57.2998 128 -128 128
|
1398 |
s-128 -57.2998 -128 -128c0 -22.0996 5.59961 -42.9004 15.4004 -61l-22.9004 -75l81.0996 20.0996c16.5 -7.7998 35 -12.0996 54.4004 -12.0996z" />
|
@@ -1441,10 +1640,11 @@ c0.5 12.4004 0.5 18.1006 0 24.1006c2.5 65.2002 -14.7998 120 -46.1992 162.7z" />
|
|
1441 |
<glyph glyph-name="facebook-f" unicode="" horiz-adv-x="320"
|
1442 |
d="M279.14 160h-74.6895v-224h-100.17v224h-81.3906v92.6602h81.3906v70.6201c0 80.3398 47.8594 124.72 121.08 124.72c35.0693 0 71.75 -6.25977 71.75 -6.25977v-78.8906h-40.4199c-39.8203 0 -52.2402 -24.71 -52.2402 -50.0596v-60.1299h88.9102z" />
|
1443 |
<glyph glyph-name="facebook-messenger" unicode="" horiz-adv-x="512"
|
1444 |
-
d="M256.55 440c140.04 0 247.45 -102.34 247.45 -240.57c0 -175.13 -166.15 -273.229 -319.44 -231.04c-8.96973 2.44043 -9.64941 0.600586 -62.5596 -22.6992c-2.
|
1445 |
c-1.41992 46.3701 0.299805 50.7207 -8.0498 58.2305c-48.3604 43.1602 -78.0703 105.64 -78.0703 177.939c0 138.23 108.52 240.57 248.55 240.57zM405.79 254.87c7.0498 11.0801 -6.65039 23.5996 -17.0898 15.6201l-78.4102 -59.3799
|
1446 |
-
c-2.
|
1447 |
-
|
|
|
1448 |
<glyph glyph-name="firstdraft" unicode="" horiz-adv-x="384"
|
1449 |
d="M384 256h-64v-128h-128v-128h-192v25.5996h166.4v128h128v128h89.5996v-25.5996zM358.4 217.6h25.5996v-153.6h-128v-128h-192v25.5996h166.4v128h128v128zM384 25.5996v-25.5996h-64v-64h-25.5996v89.5996h89.5996zM0 448h384v-128h-128v-128h-128v-128h-128v384z" />
|
1450 |
<glyph glyph-name="fonticons-fi" unicode="" horiz-adv-x="384"
|
@@ -1700,23 +1900,23 @@ c-16.3994 15.8994 -44.5996 17.2998 -61.3994 -7l-44.8008 -64.7002v38.7998z" />
|
|
1700 |
d="M147.3 333.6v-70.5996l82.7998 118.2c31.2002 44.3994 83.3008 41.7998 113.601 12.7998c27.8994 -26.7002 27.7998 -65.0996 10.3994 -89.7998l-74.8994 -107.4l90.7998 -114.8c19.9004 -24.7998 19.5996 -64.5996 -7.40039 -92.2002
|
1701 |
c-31.0996 -30.7002 -80.5 -27.2002 -103.199 0l-112.101 138.3v-76.5c0 -57.7998 -32.5996 -83.3994 -72.3994 -83.3994c-49.6006 0 -74.9004 36.0996 -74.9004 83.3994v283c0 45.2002 26.2002 81.4004 73.9004 81.4004c40.8994 0 73.3994 -26.2002 73.3994 -82.4004z" />
|
1702 |
<glyph glyph-name="laravel" unicode="" horiz-adv-x="512"
|
1703 |
-
d="M504.4 332.17c0.
|
1704 |
-
l-92.2393 -53.1104v-105.
|
1705 |
-
c-0.
|
1706 |
-
c-2.
|
1707 |
-
c0.
|
1708 |
-
|
1709 |
-
c0.
|
1710 |
-
c0.
|
1711 |
-
c0.
|
1712 |
-
c0.
|
1713 |
-
c0.
|
1714 |
-
c0.
|
1715 |
-
|
1716 |
-
c-0.
|
1717 |
-
c-0.
|
1718 |
-
l-130.72 -74.5996v-92.3105zM392.37 178.67v91.3301l-46.5303 26.8096l-33.6895 19.4004v-91.4199l46.5293 -26.79zM400.37 283.95l80.1797 46.1797l-80.1797 46.1504l-80.2002 -46.1602zM408.37 178.
|
1719 |
-
|
1720 |
<glyph glyph-name="line" unicode=""
|
1721 |
d="M272.1 243.8v-71.0996c0 -1.7998 -1.39941 -3.2002 -3.19922 -3.2002h-11.4004c-1.09961 0 -2.09961 0.599609 -2.59961 1.2998l-32.6006 44v-42.2002c0 -1.7998 -1.39941 -3.19922 -3.2002 -3.19922h-11.3994c-1.7998 0 -3.2002 1.39941 -3.2002 3.19922v71.1006
|
1722 |
c0 1.7998 1.40039 3.2002 3.2002 3.2002h11.2998c1 0 2.09961 -0.5 2.59961 -1.40039l32.6006 -44v42.2002c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0.0996094 3.2998 -1.40039 3.2998 -3.10059zM190.1 247c1.80078 0 3.2002 -1.5 3.2002 -3.2002v-71.0996
|
@@ -1782,13 +1982,21 @@ c-42.5 0 -47.3994 -14.8008 -47.3994 -25.9004c0 -13.4004 5.7998 -17.2998 63.2002
|
|
1782 |
<glyph glyph-name="npm" unicode="" horiz-adv-x="576"
|
1783 |
d="M288 160h-32v64h32v-64zM576 288v-192h-288v-32h-128v32h-160v192h576zM160 256h-128v-128h64v96h32v-96h32v128zM320 256h-128v-160h64v32h64v128zM544 256h-192v-128h64v96h32v-96h32v96h32v-96h32v128z" />
|
1784 |
<glyph glyph-name="ns8" unicode="" horiz-adv-x="640"
|
1785 |
-
d="
|
1786 |
-
c-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
c-
|
1791 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
<glyph glyph-name="nutritionix" unicode="" horiz-adv-x="400"
|
1793 |
d="M88 439.9c0 0 133.4 8.19922 121 -104.4c0 0 19.0996 74.9004 103 40.5996c0 0 -17.7002 -74 -88 -56c0 0 14.5996 54.6006 66.0996 56.6006c0 0 -39.8994 10.2998 -82.0996 -48.7998c0 0 -19.7998 94.5 -93.5996 99.6992c0 0 75.1992 -19.3994 77.5996 -107.5
|
1794 |
c0 -0.0996094 -106.4 -7 -104 119.801zM400 124.3c0 -48.5 -9.7002 -95.2998 -32 -132.3c-42.2002 -30.9004 -105 -48 -168 -48c-62.9004 0 -125.8 17.0996 -168 48c-22.2998 37 -32 83.7998 -32 132.3c0 48.4004 17.7002 94.7002 40 131.7
|
@@ -1890,13 +2098,16 @@ d="M281.2 169.8l-197.9 -57.2002l-28.5996 98.6006l188.2 54.0996c52.6992 15.2998 6
|
|
1890 |
c-46 0 -89.5 12.7002 -126.3 34.7002l-23 80.2002l286.8 -37.3008l48.0996 13.3008l-9.69922 34.1992l-220.4 27.1006l92.5996 26.5996c30.2002 8.7002 42 15.7998 61.4004 33.2002c24.5 23 31.7002 45.5 23.5 73.5996l-10.7002 37.8008
|
1891 |
c-8.7002 30.1992 -25.0996 49.0996 -61.3994 55.1992c-25.1006 3.5 -44.5 2 -79.3008 -8.19922l-221.899 -63.9004c26 108.8 124.2 189.5 241.3 189.5zM38.2998 59.4004c-24 38.3994 -38.2998 83.2998 -38.2998 131.8z" />
|
1892 |
<glyph glyph-name="rocketchat" unicode="" horiz-adv-x="576"
|
1893 |
-
d="
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
c-
|
1898 |
-
c-
|
1899 |
-
|
|
|
|
|
|
|
1900 |
<glyph glyph-name="rockrms" unicode="" horiz-adv-x="496"
|
1901 |
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM405.4 20.5l-101.5 118.9s73.5996 0.199219 74.1992 0.199219c29.6006 -1.09961 46.6006 33.3008 27.6006 56.1006l-157.7 185.1c-13.2002 17.2998 -40.0996 18.4004 -54.5 0
|
1902 |
l-147.1 -172.5h90l84.2998 98.9004l84.5996 -99.2998h-75.2998c-30.5 0 -44.5 -35.7002 -26.5996 -56.1006l112 -131.3h90z" />
|
@@ -2141,11 +2352,11 @@ c-0.5 -2 -1.7998 -3.7002 -3.59961 -4.7002l-61 -35.1992c-2.2002 -1.30078 -5 -1.40
|
|
2141 |
c2.39941 1.40039 5.2998 1.2002 7.39941 0l61.1006 -35.2002c2.2998 -1.2998 3.89941 -3.7998 3.89941 -6.39941v-70.4004zM230.5 310.4l-0.799805 -0.5h1.09961zM306.7 180.2l-0.400391 0.700195v-0.900391z" />
|
2142 |
<glyph glyph-name="osi" unicode="" horiz-adv-x="512"
|
2143 |
d="M8 181.56c2.2998 135.801 97.3994 232.441 213.799 248.102c138.8 18.5996 255.601 -75.7998 278 -201.101c21.2998 -118.8 -44 -230 -151.6 -274c-9.2998 -3.7998 -14.4004 -1.69922 -18 7.7002c-17.7998 46.2998 -35.5996 92.6328 -53.3994 138.999
|
2144 |
-
c-3.09961 8.10059 -1 13.2002 7 16.7998c24.2002 11 39.2998 29.4004 43.2998 55.8008c0.
|
2145 |
c-5.19922 -33 11.1006 -63.7002 41.9004 -77.7002c9.59961 -4.40039 11.5 -8.60059 7.7998 -18.4004c-17.8994 -46.5996 -35.7998 -93.2324 -53.7002 -139.899c-2.59961 -6.90039 -8.2998 -9.30078 -15.5 -6.5c-52.5996 20.2998 -101.399 61 -130.8 119
|
2146 |
c-24.8994 49.1992 -25.2002 87.6992 -26.7998 108.699zM28.8994 183.461c0.399414 -6.59961 0.599609 -14.3008 1.2998 -22.1006c6.2998 -71.9004 49.5996 -143.5 131 -183.101c3.2002 -1.5 4.39941 -0.799805 5.59961 2.2998c14.9004 39.1006 29.9004 78.2012 45 117.302
|
2147 |
-
c1.2998 3.2998 0.600586 4.7998 -2.39941 6.69922c-31.6006 19.9004 -47.3008 48.5 -45.6006 86c1 21.6006 9.2998 40.5 23.7998 56.3008c30 32.6992 77 39.7998 115.5 17.
|
2148 |
-
c0 -3.
|
2149 |
c35.5 16.6006 65.2002 40.2998 88.1006 72c34.7998 48.2002 49.0996 101.9 42.2998 161c-13.7002 117.5 -119.4 214.8 -255.5 198c-106.1 -13 -195.3 -102.5 -197.1 -225.8z" />
|
2150 |
<glyph glyph-name="react" unicode="" horiz-adv-x="512"
|
2151 |
d="M418.2 270.8c54.3994 -18.7002 93.7998 -48.0996 93.7998 -78.3994c0 -31.7002 -41.7998 -62.6006 -99.5 -81.7002c-3.09961 -1 -6.2002 -2 -9.40039 -2.90039c1.10059 -4.59961 2.10059 -9.09961 3 -13.5c11.4004 -57.5996 2.60059 -104.899 -24.3994 -120.5
|
@@ -2186,10 +2397,10 @@ c-1 50.4004 35.7002 82.5 74.1006 82.5zM194.9 199.6h56.7998c0 17.9004 -7.40039 31
|
|
2186 |
<glyph glyph-name="sass" unicode="" horiz-adv-x="640"
|
2187 |
d="M301.84 69.0801c-0.299805 -0.599609 -0.599609 -1.08008 0 0zM550.97 156.08c57.9092 0.300781 90.5703 -37.0801 88.9707 -71.0801c-1.10059 -26.9004 -25.6904 -37.9004 -30.29 -38.7002c-3.30078 -0.599609 -5.10059 -0.700195 -5.60059 1.90039
|
2188 |
c-0.299805 1.7998 0.900391 2.7002 4.7998 5.09961c3.90039 2.40039 15.6006 10.5 17.7002 25c2.10059 14.5 -8.7998 49.2998 -64.4795 55.7998c-26 3 -46.3906 -0.599609 -62.0898 -7.19922c2.89941 -7.60059 5.09961 -15.5 5.39941 -23.4004
|
2189 |
-
c0.799805 -17.5 -11.29 -30.4004 -23.79 -39.5996c-
|
2190 |
-
c-4.30078 8.7002 -8.99023 17.5996 -11.3906 25.7002c-2.
|
2191 |
-
c0.700195 -17.3994 -6.90039 -30.5996 -19.4004 -39.7998c-
|
2192 |
-
c2 5 17.21 22.4004 30 37.5996c3.5 4.2002 6.90039 8.5 9.90039 12.5c-0.
|
2193 |
c0 0 -15.4902 -39.7002 -31.6895 -71.5c-12.4902 -24.5996 -20.79 -39.5 -24.5908 -46v-0.299805s-0.5 -0.900391 -1.5 -2.40039c-0.5 -0.799805 -0.699219 -1.19922 -0.699219 -1.19922v0.0996094c-4.20996 -6.2002 -13.6104 -18.2998 -23 -18.2998
|
2194 |
c-25.7002 0 -16.3008 52.2002 -16.3008 52.2002s-7.5 -19.3008 -16 -35.9004c-6.88965 -13.5996 -13.0898 -25 -26.8896 -25c-3.90039 0 -10.1904 0.0996094 -15.3896 5c-11.8008 11.2002 -20.9004 39.7002 -19.1006 61.7002c1.5 18.7998 4.40039 31.7998 8.40039 42.5996
|
2195 |
c-7.10059 -3.89941 -15.2002 -8.39941 -23.4902 -13.2998c-4.2998 -2.5 -8.59961 -5 -12.7998 -7.5c0.0996094 -0.299805 0.299805 -0.5 0.400391 -0.799805c10.5996 -20.4004 13.3896 -65.2002 -9.60059 -99.5s-65.7803 -55.2002 -107.57 -43.6006
|
@@ -2200,13 +2411,13 @@ c-119.569 -59.5996 -126.069 -108.7 -127.069 -127.399c-2.7998 -51.3008 63.2793 -7
|
|
2200 |
c12.5801 18.2998 38.1797 38.5 56.5801 38.5c29.4893 0 19.3896 -42.3994 19.3896 -42.3994s0.599609 2 1.40039 2c0.799805 0 4.09961 5.5 13.1992 2.19922c9.40039 -3.5 7.2002 -10 7.30078 -10.6992c0.0996094 -1.30078 -11 -38.9004 -15.7002 -63.1006
|
2201 |
c-2.2002 -11.5 -0.900391 -19.8994 -0.299805 -19.8994c0.899414 0 2.7998 2.89941 4.5 6.09961v0.0996094s1.2998 2.40039 3.5 6.7002c0 0.200195 -0.200195 -0.299805 -0.5 -0.799805c0.199219 0.400391 0.5 0.900391 0.899414 1.7002
|
2202 |
c2.60059 5 6.2002 12.3994 10.4004 21.5996c8.18945 18.1006 39.4795 87.7002 42.0801 95.4004c2.59961 7.7002 4 15.7002 5.2998 19.0996c1.2998 3.40039 12.4102 6 25.2998 5.90039c12.8906 -0.100586 14.1904 -5.60059 14.29 -6.7002
|
2203 |
-
c0.100586 -1.09961 -6.2002 -16.4004 -7.59961 -27.2002c-1.40039 -10.7998 -0.100586 -16.2002 1.09961 -25.2998c0.799805 -6 4.5 -13.5 8.90039 -22c13.2998 21.7998 36.79 63.5996 39.0898 75.2998c1.
|
2204 |
c1.29004 3.39941 12.3896 6 25.29 5.89941c12.9004 -0.0996094 14.2002 -5.59961 14.2998 -6.7002c0.100586 -1.09961 -6.2002 -16.3994 -7.59961 -27.1992c-1.40039 -10.8008 -0.100586 -16.2002 1.09961 -25.3008c1 -7.7998 7.10059 -18.1992 13 -30.0996
|
2205 |
-
|
2206 |
c-11.7998 -7.40039 -29.5898 -19.4004 -43.3896 -32.4004c-22.6904 -21.4199 -27.3896 -51 -15.4902 -57.9199c11.0898 -6.40039 36.8906 1.2002 55.2803 21.2998zM256.15 102.78c4 9.7998 19.6992 53.2998 16.1992 59.2002c-2.59961 4.5 -13.6992 0.899414 -23.79 -10.4004
|
2207 |
c-6.2998 -7 -16.8994 -25 -21.8994 -40.0996c-9.90039 -30 -5.60059 -60.5 1.39941 -62.3008c8.2002 -2.09961 21.6904 37.9004 28.0908 53.6006zM367.15 49.7803c7.7998 4.7998 24.96 16.8994 25.0898 34.7998c0 0.599609 -0.100586 1.09961 -0.100586 1.59961
|
2208 |
c-3.98926 -5.19922 -7.68945 -9.89941 -10.8896 -13.8994c-5.5 -6.7998 -19.4004 -21.7002 -19.4004 -21.7002s-2 -1.90039 -1.09961 -2.40039c1.2002 -0.699219 3.7002 0.200195 6.40039 1.60059zM452.73 69.2803c9.68945 3.5 25.7998 11.8994 25.8994 34.3994
|
2209 |
-
c-0.
|
2210 |
<glyph glyph-name="vuejs" unicode=""
|
2211 |
d="M356.9 383.7h91.0996l-224 -383.7l-224 383.7h176l48 -88.6006l56 88.6006h76.9004zM55.7002 351.7l168.3 -288.2l168.2 288.2h-53.7998l-114.4 -198.2l-114.5 198.2h-53.7998z" />
|
2212 |
<glyph glyph-name="angular" unicode=""
|
@@ -2244,10 +2455,11 @@ c13.7002 9.39941 16.4004 24.3994 9.10059 31.3994c-7.2002 6.90039 -28.2002 -7 -29
|
|
2244 |
c12.5996 33.0996 -3.59961 45.5 -3.59961 45.5s-23.4004 12.9004 -33.3008 -20.2002c-9.89941 -33.0996 -6.39941 -44.8994 -6.39941 -44.8994s30.7002 -13.4004 43.2998 19.5996zM442.1 188.1c0 0 15.7002 -1.09961 26.4004 14.2002s1.2998 25.5 1.2998 25.5
|
2245 |
s-8.59961 11.1006 -19.5996 -9.09961c-11.1006 -20.1006 -8.10059 -30.6006 -8.10059 -30.6006z" />
|
2246 |
<glyph glyph-name="font-awesome-flag" unicode=""
|
2247 |
-
d="
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
|
|
2251 |
<glyph glyph-name="gitter" unicode="" horiz-adv-x="384"
|
2252 |
d="M66.4004 125.5h-50.4004v322.5h50.4004v-322.5zM166.9 371.9v-435.9h-50.4004v435.9h50.4004zM267.5 371.9v-435.9h-50.4004v435.9h50.4004zM368 372v-247h-50.4004v247h50.4004z" />
|
2253 |
<glyph glyph-name="hooli" unicode="" horiz-adv-x="640"
|
@@ -2273,43 +2485,43 @@ M552.1 203.2h45.9004c0 20 -11.5996 28.3994 -22.5 28.3994c-11.0996 0 -23.4004 -8.
|
|
2273 |
l-44.4004 -9.40039v204.801h39.0996l2.30078 -11c6.19922 5.69922 17.3994 13.8994 34.7998 13.8994zM428.6 145.3c16.5 0 27.5 17.9004 27.4004 41.7998c0 23.2002 -11.2002 41.4004 -27.4004 41.4004c-10.1992 0 -16.5996 -3.7002 -21.1992 -8.7998l0.299805 -66
|
2274 |
c4.2998 -4.60059 10.5 -8.40039 20.8994 -8.40039zM301.9 111.6v153.2h44.5996v-153.2h-44.5996z" />
|
2275 |
<glyph glyph-name="stripe-s" unicode="" horiz-adv-x="384"
|
2276 |
-
d="M155.3 293.4c0 -64.2002 218 -33.7002 218 -203.9c0 -102.6 -81.7002 -153.6 -200.3 -153.6c-
|
2277 |
c0 101 77.0996 161.4 192.8 161.4c47.2998 0 94.5 -7.2002 141.8 -26.0996v-134.301c-43.3994 23.4004 -98.5 36.7002 -141.899 36.7002c-29.7998 0 -48.4004 -8.59961 -48.4004 -30.8994z" />
|
2278 |
<glyph glyph-name="typo3" unicode=""
|
2279 |
d="M178.7 369.6c0 -66.3994 83.3994 -264.899 140.6 -264.899c6.90039 0 11.5 0 18.5 2.2998c-49.3994 -79.5 -110.399 -139 -146.7 -139c-77.2998 0 -184.1 234 -184.1 337.5c0 16.2998 3.90039 29.4004 9.2998 37.0996c27 32.4004 106.8 57.9004 176.3 66.4004
|
2280 |
c-8.5 -7 -13.8994 -14.7002 -13.8994 -39.4004zM301.5 416c71.7998 0 138.8 -11.5996 138.8 -52.5c0 -82.5996 -52.5 -182.3 -78.7998 -182.3c-47.9004 0 -101.7 132.1 -101.7 198.5c0 30.8994 11.6006 36.2998 41.7002 36.2998z" />
|
2281 |
<glyph glyph-name="amazon-pay" unicode="" horiz-adv-x="640"
|
2282 |
-
d="M14 122.7c2.2998 4.2002 5.2002 4.89941 9.7002 2.5c10.3994 -5.60059 20.5996 -11.4004 31.2002 -16.
|
2283 |
-
|
2284 |
-
|
2285 |
-
c-0.
|
2286 |
-
c-
|
2287 |
c21.3008 -4.39941 35.4004 -17.2998 43.9004 -36.8994c6.90039 -15.9004 8.59961 -32.7002 8.09961 -49.8008c-0.399414 -15.3994 -3.2998 -30.1992 -10.2998 -44.0996c-9.2002 -18.4004 -23.3994 -30.9004 -43.7998 -34.9004c-22.5 -4.39941 -43.0996 0.5 -61 15.4004
|
2288 |
c-0.5 0.5 -1.09961 1 -2.2002 1.90039v-72.4004c0 -1 0 -2 -0.0996094 -3c-0.299805 -3 -2.10059 -5 -5 -5c-7 -0.0996094 -14.1006 -0.0996094 -21.1006 0c-2.89941 0.0996094 -4.69922 2 -4.89941 5c-0.100586 1 -0.100586 2 -0.100586 3v209.3
|
2289 |
-
c0 6.90039 1.30078 8.2002 8.2002 8.2002h11.5c4.60059 0 6.90039 -2 7.60059 -6.59961c0.5 -2.7002 0.899414 -5.5 1.2998 -8.2002c0.
|
2290 |
-
|
2291 |
c11.2002 -7.90039 23.4004 -13.3008 37.4004 -13.9004c20.2002 -0.900391 35.7998 7.2002 42.5996 28.5c3.2002 10 4 20.2002 4 30.5996c0 11.2002 -1 22.3008 -4.89941 33c-6.40039 17.5 -18.6006 24.8008 -33.5 25.9004
|
2292 |
-
c-16.8008 1.2998 -31.9004 -3.7002 -45.6006 -13.2002c-
|
2293 |
-
c7.7002 -1.10059 15.0996 -3.10059 21.7998 -7.10059c11.6006 -6.89941 17.1006 -17.5 19 -30.3994c0.
|
2294 |
-
c0.
|
2295 |
-
c-2.90039 0.100586 -4.7998 2.10059 -5.40039 5.2002c-0.699219 3.59961 -1.19922 7.2002 -1.7998 11c-0.
|
2296 |
-
c-12.4004 6.89941 -19.4004 17.6992 -21.4004 31.6992c-1.5 10.5 -0.799805 20.9004 3.90039 30.7002c6.09961 12.6006 16.5 20.4004 29.4004 24.9004c10.7998 3.7998 22 4.5 33.2998 3.
|
2297 |
-
c0.399414 -0.100586 0.799805 0 1.2998 -0.100586c0.
|
2298 |
c-12.5 1.89941 -24.8994 0.899414 -37.2002 -1.40039c-7.89941 -1.5 -15.6992 -3.7002 -23.5 -5.7002c-4.69922 -1.19922 -6.69922 0.100586 -6.7998 4.90039c-0.0996094 3.2998 0.100586 6.59961 0 9.90039c-0.0996094 3.89941 1.7002 6.5 5.2998 7.69922
|
2299 |
-
c5.90039 2 11.8008 4.2002 17.9004 5.
|
2300 |
-
c0 1.60059 -0.5 2.40039 -2.10059 2.60059c-8.39941 1.09961 -16.5996 2.7002 -25 3.39941c-
|
2301 |
-
c-0.
|
2302 |
-
c0.
|
2303 |
-
c-3.
|
2304 |
-
c2.10059 7.60059 3.90039 15.2998 3.5 23.2998c-0.199219 5.2002 -2.5 9 -7.59961 10.4004c-
|
2305 |
-
c-0.
|
2306 |
-
c0 0.
|
2307 |
-
|
2308 |
-
c0.5 1.40039 1.09961 2.7002 1.59961 4.10059c0.
|
2309 |
-
c-0.
|
2310 |
-
c-5.39941 0.900391 -7.2998 3.40039 -7.39941 8.90039c-0.100586 3.2666 -0.100586 6.56641 0 9.89941c0.0996094 3.5 1.7998 5 5.2002 4.80078c2.5 -0.200195 5 -0.800781 7.5 -1c1.
|
2311 |
-
|
2312 |
-
c-0.
|
2313 |
c12.8994 -35.7666 25.7988 -71.5 38.6982 -107.2z" />
|
2314 |
<glyph glyph-name="cc-amazon-pay" unicode="" horiz-adv-x="576"
|
2315 |
d="M124.7 246.2c0.0996094 11.7998 0 23.5 0 35.2998v35.2998c0 1.2998 0.399414 2 1.39941 2.7002c11.5 8 24.1006 12.0996 38.2002 11.0996c12.5 -0.899414 22.7002 -7 28.1006 -21.6992c3.2998 -8.90039 4.09961 -18.2002 4.09961 -27.7002
|
@@ -2372,9 +2584,9 @@ c-23.5996 -22.0996 -49.0996 -19.0996 -90.2002 -19.0996l-8.7002 -44.7998h-36.6992
|
|
2372 |
c-5.39941 5.7998 -17.6992 4.59961 -47.3994 4.59961l-18.7998 -96.5996h-36.5zM505 205.5c7.40039 38.4004 -18.2002 34.2998 -56.4004 34.2998l-13.6992 -70.5996c33.3994 0 62.0996 -4.7998 70.0996 36.2998zM384.2 97.7002l32.7998 168.7h70.7002
|
2373 |
c21.2002 0 36.7998 -5.5 46.5 -16.7002c18.5996 -21.4004 11.7998 -64.1006 -14.2998 -88.1006c-23.1006 -21.5996 -47 -19.0996 -90.2002 -19.0996l-8.7002 -44.7998h-36.7998z" />
|
2374 |
<glyph glyph-name="quinscape" unicode="" horiz-adv-x="512"
|
2375 |
-
d="M313.6 -26.5996c4.40039 -4.40039 8.10059 -9 13.3008 -12.5c-
|
2376 |
-
s244.6 -109.5 244.6 -244.6c0 -35.3008 -6.89941 -67.4004 -20.2998 -97.7002c-3 5.7002 -7.2002 10.2002 -11.2002 15.2998c11.2002 93.5 -62.0996 176.6 -157 176.6c-87.
|
2377 |
-
l0.400391 -0.0996094zM391.9 142.4c54.
|
2378 |
<glyph glyph-name="readme" unicode="" horiz-adv-x="576"
|
2379 |
d="M528.3 401.5c26.4004 -0.200195 47.7002 -21.7002 47.7002 -48.0996v-245.7c0 -26.5 -21.5 -48 -48 -48h-89.7002c-102.1 0 -132.6 -24.4004 -147.3 -75c-0.799805 -2.7998 -5.2998 -2.7998 -6 0c-14.5996 50.5996 -45.0996 75 -147.3 75h-89.7002
|
2380 |
c-26.5 0 -48 21.5 -48 48v245.8c0 26.5 21.5 48 48 48h139.7c48.0996 0 89.7998 -33.2998 100.399 -80.2998c10.5 47 52.3008 80.2998 100.4 80.2998h139.8zM242 136.1h0.0996094v22.9004c0 2 -1.59961 3.5 -3.5 3.5h-160.399c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.9004
|
@@ -2385,11 +2597,11 @@ c0 2 -1.60059 3.5 -3.5 3.5h-160.4c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.7998c0 -2 1.5
|
|
2385 |
<glyph glyph-name="java" unicode="" horiz-adv-x="384"
|
2386 |
d="M277.74 135.1c-94.5 -24.8994 -277 -13.2998 -224.5 12.1006c44.5 21.3994 80.5996 19 80.5996 19s-93.0996 -22.1006 -33 -30.1006c25.4004 -3.39941 76 -2.59961 123.101 1.30078c38.5 3.19922 77.1992 10.1992 77.1992 10.1992s-13.5996 -5.7998 -23.3994 -12.5z
|
2387 |
M192.34 167.2c-48.5 43.7998 -84.0996 82.2998 -60.2002 118.2c35.1006 52.5 132.2 78.0996 110.7 162.6c0 0 53.1602 -53.2002 -50.5 -135c-83.0996 -65.5996 -19 -103.1 0 -145.8zM306.94 343.4c-111.601 -64.7002 -91 -83.5 -64.1006 -121.301
|
2388 |
-
c28.7998 -40.5 -33.8994 -72.8994 -33.8994 -72.8994s31.1992 25.5996 6.5 54c-83.7002 96.3994 91.5996 140.2 91.5 140.2zM300.84 72.9004c96.1006 49.8994 51.6006 97.8994 20.6006 91.3994c-3.
|
2389 |
-
|
2390 |
c0 0 -6.5 0.400391 -17.7002 -2c-10.7998 -2.2998 -45.0996 -13.4004 -26.7998 -21.2998c50.7998 -22.1006 233.7 -16.7998 291.6 0.700195c30.4004 9.2998 15.9004 21.1992 15.9004 21.1992zM124.44 52c0 0 -19.6006 -11.4004 13.8994 -15.2002
|
2391 |
-
c40.6006 -4.59961 61.2998 -4 106 4.
|
2392 |
-
c-60.5996 3.90039 -72.3994 13.7002 -72.3994 13.6006c57.5 -9.5 154.6 -11.2002 233.3 3.59961zM260.64
|
2393 |
c43.2998 -4.5 77.6006 -4.80078 136.8 6.59961z" />
|
2394 |
<glyph glyph-name="pied-piper-hat" unicode="" horiz-adv-x="640"
|
2395 |
d="M640 423.1c-80.7998 -53.5996 -89.4004 -92.5 -96.4004 -104.399c-6.69922 -12.2002 -11.6992 -60.2998 -23.2998 -83.6006c-11.7002 -23.5996 -54.2002 -42.1992 -66.0996 -50c-11.7002 -7.7998 -28.2998 -38.0996 -41.9004 -64.1992
|
@@ -2476,25 +2688,24 @@ l-10.9004 20.5996h37.5l54.9004 -109.9zM243.7 134.2c29.7998 0 50.2002 21.5 50.200
|
|
2476 |
c-11.7998 0 -26.2998 -0.0996094 -39.3994 -0.599609c-29.1006 -0.900391 -47.2002 -6.2002 -47.2002 -25.2998c0 -12.4004 9.90039 -25.8008 35 -25.8008c33.7002 0 51.5996 18.4004 51.5996 48.4004zM32.7002 179.9c3.5 -58.3008 79.2002 -57.4004 91.2002 -21.6006
|
2477 |
h33.0996c-6.40039 -34.3994 -43 -46.0996 -74.4004 -46.0996c-57.1992 0 -82.5 31.5 -82.5 74c0 46.7998 26.2002 77.5996 83 77.5996c45.3008 0 78.4004 -23.7002 78.4004 -75.3994v-8.5h-128.8zM127.7 201.3c-2.2998 54.7002 -87.5 56.6006 -94.4004 0h94.4004z" />
|
2478 |
<glyph glyph-name="keybase" unicode=""
|
2479 |
-
d="M286.17 29c9.
|
2480 |
-
c-3.04004 -8.0498 -10.9502 -12.7197 -18.3701 -11.1504c-6.83984 1.24023 -11.1201 9.28027 -8.60059 15.7402c11.1904 28.71 14.8799 58.3398 14.8799 81.6396c-0.
|
2481 |
-
c-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
c-
|
2489 |
-
|
2490 |
-
|
2491 |
-
c1.
|
2492 |
-
s8.06348 18 18 18z" />
|
2493 |
<glyph glyph-name="mastodon" unicode=""
|
2494 |
-
d="M433 268.89c0 0 0.799805 -71.6992 -9 -121.5c-6.23047 -31.5996 -55.1104 -66.1992 -111.23 -72.8994c-20.0996 -2.40039 -93.1191 -14.2002 -178.75 6.
|
2495 |
-
|
2496 |
-
|
2497 |
-
c-23.6094 -27.1006 -18.4092 -52.9004 -18.4092 -175h46.7295v114.2c0 49.6992 64 51.5996 64 -6.90039v-62.5098h46.3301v62.5c0 58.5 64 56.5996 64 6.89941v-114.199h46.6299z" />
|
2498 |
<glyph glyph-name="r-project" unicode="" horiz-adv-x="581"
|
2499 |
d="M581 221.4c0 -54.8008 -33.9004 -104.301 -88.4004 -139.7l67.4004 -113.7h-112l-40.0996 75.4004c-21.8008 -6.5 -45.1006 -11.2002 -69.4004 -13.9004v-61.5h-99.0996v61.9004c-136.101 16.0996 -239.4 95.6992 -239.4 191.5c0 107.5 130.1 194.6 290.5 194.6
|
2500 |
s290.5 -87.0996 290.5 -194.6zM114.2 206.9c0 -52.8008 51.0996 -98.4004 125.2 -119.9v208.3h199s90.5996 -1.59961 90.5996 -87.8994c0 -86.3008 -86.5996 -92.7002 -86.5996 -92.7002s17.5996 -5.2998 27.7998 -10.5c1.7002 -0.799805 4 -2.10059 6.39941 -3.7002
|
@@ -2510,32 +2721,32 @@ c0 -21.9004 -15 -36.5996 -39.7002 -36.5996z" />
|
|
2510 |
<glyph glyph-name="teamspeak" unicode="" horiz-adv-x="512"
|
2511 |
d="M244.2 101.21c-2.40039 -12.5 -10.6006 -20 -22.5 -24.2998c-9.2002 -3.2002 -50.1006 -1.60059 -61.7002 -1c-18 1.2998 -33.2002 8.5 -43.4004 24c-14.5 22.5 -19.5 47.7002 -14.5 73.8994c4.60059 24.5 24.6006 34.7002 46.3008 22.7002
|
2512 |
c15.1992 -7.5 42.5 -27.3994 63.3994 -46.5996c20.4004 -18.7002 34.7998 -36.4004 32.4004 -48.7002zM449.2 80.4102c6.7002 -5.41016 11.2002 -22 11.5996 -32.1006c1 -50.3994 -23.8994 -68 -46.5996 -85.3994c-65.1006 -50 -295.101 -16.9004 -145.4 -6.40039
|
2513 |
-
c127.4 9 164.101 96.1006 172.101 121.5c0.
|
2514 |
c-7.2002 1.7002 -9.40039 7.2002 -9.40039 14.2002c0 28.0996 0.800781 56.3994 0 84.5996c-1.89941 75.79 -36.1992 132.79 -102.3 169.4c-111 60.3896 -253.2 -7 -277.8 -131.5c-6.09961 -30.4004 -1.7002 -48.3008 -3.7002 -125.801
|
2515 |
c-0.299805 -7.19922 -4.2998 -11.1992 -12 -11.5c-30.7998 -1.39941 -51.7998 18.2002 -51.7998 49v20.9004l0.799805 26.4902c2.40039 15.5 10.7002 27 24.9004 34c3.5 1.7998 5.7002 3.5 6.39941 7.7998c6.10059 33.4102 19.5 64 39.3008 91.71
|
2516 |
c2.2998 3.09961 4 5.2998 1 9.2998c-3.7002 5.40039 -1 10.2002 3 14.5c28.0996 31.7998 61.8994 55.1006 102 67.4004c96 29.4668 180.1 9.29688 252.3 -60.5098c6.7002 -6.40039 15.5 -12.9004 7 -24.4004c-1.2998 -1.7998 1.09961 -3.5 2.2002 -5
|
2517 |
-
|
2518 |
c21.5996 8.5 85.7002 37.2002 87.7998 -8c0.900391 -32 -21.9004 -63.2998 -58.4004 -60.5z" />
|
2519 |
<glyph glyph-name="first-order-alt" unicode="" horiz-adv-x="496"
|
2520 |
d="M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -48.21c132.66 0 240.21 107.55 240.21 240.21s-107.55 240.21 -240.21 240.21s-240.21 -107.55 -240.21 -240.21s107.55 -240.21 240.21 -240.21z
|
2521 |
M248 411.71c121.34 0 219.71 -98.3701 219.71 -219.71s-98.3701 -219.71 -219.71 -219.71s-219.71 98.3701 -219.71 219.71s98.3701 219.71 219.71 219.71zM248 -19.5098c116.81 0 211.51 94.7002 211.51 211.51s-94.7002 211.51 -211.51 211.51
|
2522 |
-
s-211.51 -94.6895 -211.51 -211.51s94.7002 -211.51 211.51 -211.51zM434.23 143.47c-
|
2523 |
-
c-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
<glyph glyph-name="fulcrum" unicode="" horiz-adv-x="320"
|
2530 |
d="M95.75 283.86l-35.3799 -43.5508l-35.3701 43.5508l35.3799 43.5498zM144.23 448v-211.11l-41.0801 -44.8896l41.0801 -44.8896v-211.11l-20.5107 198.18l-51 57.8203l50.9707 57.8203zM223.9 283.86l35.3799 43.5498l35.3799 -43.5498l-35.3799 -43.5508zM175.42 236.86
|
2531 |
v211.14l20.5801 -198.18l51 -57.8203l-51 -57.8203l-20.5801 -198.18v211.11l41.0801 44.8896z" />
|
2532 |
<glyph glyph-name="galactic-republic" unicode="" horiz-adv-x="496"
|
2533 |
d="M248 -56c-136.75 0 -248 111.25 -248 248s111.25 248 248 248s248 -111.25 248 -248s-111.25 -248 -248 -248zM248 423.47c-127.63 0 -231.47 -103.84 -231.47 -231.47s103.84 -231.47 231.47 -231.47s231.47 103.84 231.47 231.47s-103.84 231.47 -231.47 231.47z
|
2534 |
-
M275.62 401.66c37.6602 -4.91016 72.21 -19.7402 100.96 -41.7998l-17.3896 -17.3604c-
|
2535 |
c28.7197 22.0498 63.2402 36.9102 100.88 41.8496zM232.5 351.42h31v-82.8604c10.0498 -2.0293 19.3701 -6.00977 27.6201 -11.5l58.6699 58.6709l21.9297 -21.9307l-58.6699 -58.6699c5.46973 -8.24023 9.48047 -17.5996 11.5 -27.6201h82.8701v-31h-82.8701
|
2536 |
-
c-2.03027 -10.0195 -6.04004 -19.3096 -11.5 -27.54l58.6699 -58.6895l-21.9297 -21.9307l-58.6699 58.6904c-8.25 -5.49023 -17.5703 -9.52051 -27.6201 -11.5498v-82.9004h-31v82.9004c-
|
2537 |
l-21.9297 21.9297l58.6699 58.6904c-5.45996 8.23047 -9.4502 17.5205 -11.4697 27.54h-82.9004v31h82.9004c2.01953 10.0303 6 19.3896 11.4697 27.6201l-58.6699 58.6699l21.9297 21.9297l58.6201 -58.5898c8.25 5.48047 17.6299 9.38965 27.6699 11.4199v82.8701z
|
2538 |
-
M415.74 320.7c22.0996 -28.7402 36.9795 -63.3398 41.9297 -101.03h-24.6201c-
|
2539 |
c4.94043 37.6494 19.79 72.1895 41.8506 100.91zM38.3398 164.33l24.6504 0.00976562c4.58984 -30.9502 16.7002 -59.4502 34.5098 -83.5195l-17.3604 -17.3906c-22.0498 28.7207 -36.8799 63.2607 -41.7998 100.9zM433.04 164.33h24.6201
|
2540 |
c-4.9502 -37.6699 -19.8506 -72.2197 -41.9297 -100.96l-17.3604 17.3604c17.8701 24.0996 30.0596 52.6094 34.6699 83.5996zM136.66 41.6201c24.0703 -17.8604 52.6094 -30.0205 83.5996 -34.6504v-24.6396c-37.6602 4.9502 -72.2295 19.8398 -100.96 41.9297z
|
2541 |
M359.19 41.5703h0.0791016l17.3105 -17.3906c-28.75 -22.0596 -63.29 -36.9297 -100.96 -41.8496v24.5703c30.9902 4.58984 59.4795 16.8301 83.5703 34.6699z" />
|
@@ -2545,7 +2756,7 @@ c-1.23047 1.73926 -3.44043 3.79004 -6.68066 3.79004c-3.25 0 -5.4502 -2.04004 -6.
|
|
2545 |
c0 -14.9102 -7.38965 -32.6201 -19.1299 -48.2402c0.610352 106.761 10.8906 194.73 24.4707 215.351v26.0693zM223.52 266.75c-1.59961 -22.4004 -2.75 -46.5195 -3.47949 -72.0703c-23.2998 -11.2793 -40.7705 -33.1602 -46.3203 -59.5098
|
2546 |
c-7.71973 -2.25977 -22.71 -3.91992 -40.4893 -4.21973c-7.51074 3.66016 -16.5 5.85938 -26.1807 6.04004c1.90039 14.9102 5.87012 29.1699 11.6504 42.4199c15.4395 -8.10059 30.9297 -8.66016 35.4697 -0.959961c4.57031 7.74023 -3.58984 21.04 -18.3203 30.6602
|
2547 |
c8.68066 11.7695 18.9805 22.2998 30.5605 31.0898c9.50977 -15.5898 23.3594 -24.4404 31.3594 -19.8203c8.05078 4.65039 7.19043 21.1699 -1.70996 37.29c8.76074 3.88965 17.9404 6.92969 27.46 9.08008zM288.48 266.75
|
2548 |
-
|
2549 |
c4.54004 -7.7002 20.0293 -7.14062 35.4697 0.959961c5.79004 -13.25 9.75 -27.5098 11.6504 -42.4199c-9.68066 -0.19043 -18.6709 -2.37988 -26.1807 -6.04004c-17.7793 0.299805 -32.7695 1.95996 -40.4902 4.21973c-5.5498 26.3496 -23.0293 48.2305 -46.3193 59.5098
|
2550 |
c-0.719727 25.5508 -1.87988 49.6699 -3.46973 72.0703zM256 258.15c3.23047 0 5.86035 -8.81055 6.08984 -19.9307h0.0498047v-16.8799c0 -41.4199 49.0107 -95.04 93.4902 -95.04c52 0 122.76 1.4502 156.37 -29.1699v-2.50977
|
2551 |
c-9.41992 -17.1104 -20.5801 -33.1699 -33.1797 -47.9697c-12.5303 21.0898 -51.5898 40.96 -108.021 41.3496c-45.6797 -1.01953 -79.0195 -20.3301 -90.7598 -40.8701c-0.00976562 -0.00976562 0.00976562 -0.0400391 0 -0.0498047
|
@@ -2565,47 +2776,48 @@ l-62.5996 9.10059l62.5996 9.09961l-20.2002 55.5l31.4004 -45.8994c2.2998 87.8994
|
|
2565 |
l24.2002 -47.3994s-30.2002 31.7002 -34.5 36.2002c1.7998 -68.8008 2.19922 -85.7002 2.19922 -85.7002s154.4 71.7002 68.6006 230.1c0 0 107 118 10.0996 190.7c0 0 165.5 -100 60.5 -271.5c0 0 86.7998 84.7002 41.4004 170.5c0 0 78.7002 -111 -17.2002 -233.1z" />
|
2566 |
<glyph glyph-name="mandalorian" unicode=""
|
2567 |
d="M232.27 -63.8896c-1 3.25977 -1.68945 15.8301 -1.38965 24.5801c0.549805 15.8896 1 24.7197 1.40039 28.7598c0.639648 6.2002 2.87012 20.7197 3.2793 21.3799c0.600586 1 0.400391 27.8701 -0.239258 33.1299c-0.310547 2.58008 -0.629883 11.9004 -0.69043 20.7305
|
2568 |
-
c-0.129883 16.4697 -0.530273 20.1191 -2.72949 24.7598c-1.10059 2.31934 -1.23047 3.83984 -1 11.4297c0.
|
2569 |
-
s0.430664 7.14941 2.06055 9.66992c3.0498 4.70996 6.50977 14 8.62012 23.2695c2.25977 9.86035 3.87988 17.1807 4.58984 20.
|
2570 |
c-0.299805 0 -1.37988 -1.2207 -2.41016 -2.70996c-1.03027 -1.49023 -4.75977 -4.80078 -8.29004 -7.36035c-8.37012 -6.08008 -11.7002 -9.38965 -12.6602 -12.5801s-1 -7.22949 -0.160156 -7.75977c0.34082 -0.209961 1.29004 -2.40039 2.11035 -4.87988
|
2571 |
-
c0.
|
2572 |
-
c-1 -1 -1.13965 -0.910156 -2.0498 0.530273c-0.
|
2573 |
c0 2.38965 -2.19922 5.31934 -7.40918 9.88965c-7 6.17969 -8.62988 7.91992 -10.2305 11.2998c-1.70996 3.60059 -3.05957 4.06055 -4.54004 1.54004c-1.78027 -3 -2.59961 -9.10938 -3 -22l-0.339844 -12.1895l2 -2.25c3.20996 -3.7002 12.0703 -16.4502 13.7803 -19.8301
|
2574 |
-
c3.41016 -6.74023 4.33984 -11.6904 4.41016 -23.5605c0.0693359 -11.8701 0.949219 -22.75 2 -24.71c0.359375 -0.660156 0.509766 -1.34961 0.339844 -1.51953s0.410156 -2.08984 1.29004 -4.
|
2575 |
-
c0.
|
2576 |
c-0.360352 -16.3008 -1.30078 -27.3701 -2.41992 -28.6504c-0.640625 -0.729492 -8.07031 4.91016 -12.5205 9.49023c-3.75 3.87012 -4 4.79004 -2.83008 9.9502c0.700195 3 2.25977 18.29 3.33008 32.6191c0.360352 4.78027 0.80957 10.5 1 12.7109
|
2577 |
c0.830078 9.36914 1.66016 20.3496 2.61035 34.7793c0.55957 8.45996 1.33008 16.4404 1.71973 17.7305s0.889648 9.88965 1.12988 19.1094l0.429688 16.7705l-2.25977 4.2998c-1.71973 3.28027 -4.87012 6.94043 -13.2197 15.3398
|
2578 |
c-6 6.07031 -11.8398 12.2998 -12.9102 13.8506l-1.9502 2.80957l0.75 10.9004c1.08984 15.71 1.10059 48.5693 0 59.0596l-0.889648 8.7002l-3.28027 4.51953c-5.85938 8.08008 -5.7998 7.75 -6.21973 33.2705c-0.100586 6.07031 -0.379883 11.5 -0.629883 12.0596
|
2579 |
-
c-0.830078 1.87012 -3.0498 2.66016 -8.54004 3.05078c-8.86035 0.619141 -11 1.89941 -23.8506 14.5498c-6.14941 6 -12.3398 12 -13.75 13.1895c-2.80957 2.41992 -2.79004 2 -0.55957 9.62988l1.34961 4.65039l-1.68945
|
2580 |
-
c-1.33008 1.50977 -5.5 10.8896 -6 13.4893c-0.
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
c-1.5498 2 -4.08008 10.2002 -4.92969 15.9209c-1.64062 11.1094 -4 14.2295 -12.9102 17.3896c-4.
|
2585 |
-
c-0.
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
c0.30957 -4.33008 0 -5.30078 -2.41016 -6.91992c-2.16992 -1.4707 -7 -7.91016 -7 -9.34082c-0.
|
2592 |
-
c-
|
2593 |
-
c-0.
|
2594 |
-
c-1.31055 -1.38965 -1.49023 -2.10938 -1.13965 -4.59961c0.
|
2595 |
-
c-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
|
|
2607 |
c0 0.740234 -0.339844 4.0498 -0.700195 7.36035c-0.669922 6.20996 -0.839844 27.6699 -0.219727 28.29c1 1 6.62988 -2.76074 11.3301 -7.43066l5.28027 -5.25l-0.450195 -6.46973c-0.25 -3.55957 -0.599609 -10.2295 -0.780273 -14.8301
|
2608 |
-
c-0.179688 -4.59961 -0.490234 -9.87012 -0.669922 -11.71s-0.610352 -9.36035 -0.939453 -16.7197c-0.790039 -17.4102 -1.94043 -31.29 -2.65039 -32c-0.
|
2609 |
h0.00976562zM103.62 285.39c21.0703 -12.79 17.8398 -14.1494 28.4902 -17.6592c13 -4.29004 18.8701 -7.13086 23.1494 -16.8701c-43.6602 -36.1406 -69.0098 -57.8604 -76.71 -70.8604c-31 -52 -6 -101.59 62.75 -87.21c-14.1797 -29.2305 -78 -28.6299 -98.6797 4.90039
|
2610 |
c-24.6797 39.9492 -22.0898 118.3 61 187.659v0.0400391zM314.41 106.39c56.6602 -6.87988 82.3203 37.7402 46.54 89.2305c0 0 -26.8701 29.3398 -64.2803 68c3 15.4502 9.49023 32.1201 30.5703 53.8203c89.2002 -63.5107 92 -141.61 92.46 -149.36
|
2611 |
c4.2998 -70.6396 -78.7002 -91.1797 -105.29 -61.71v0.0195312z" />
|
@@ -2614,7 +2826,7 @@ d="M235.76 437.77c7.5 0.310547 15 0.280273 22.5 0.0908203c3.61035 -0.140625 7.20
|
|
2614 |
c7.90039 -1.33008 15.6699 -3.28027 23.3906 -5.39941c12.2393 -3.4707 24.1895 -7.91992 35.7598 -13.21c26.5596 -12.2402 50.9395 -29.21 71.6299 -49.8809c20.0303 -20.0898 36.7197 -43.5498 48.8896 -69.1895c1.12988 -2.58984 2.44043 -5.10059 3.4707 -7.74023
|
2615 |
c2.80957 -6.42969 5.38965 -12.9697 7.58008 -19.6299c4.13965 -12.3301 7.33984 -24.9902 9.41992 -37.8301c0.569336 -3.13965 1.04004 -6.2998 1.39941 -9.46973c0.549805 -3.83008 0.94043 -7.69043 1.18066 -11.5605
|
2616 |
c0.829102 -8.33984 0.839844 -16.7295 0.769531 -25.0996c-0.0703125 -4.96973 -0.259766 -9.94043 -0.75 -14.8896c-0.240234 -3.38086 -0.509766 -6.76074 -0.979492 -10.1201c-0.390625 -2.7207 -0.630859 -5.45996 -1.11035 -8.16992
|
2617 |
-
c-0.900391 -5.15039 -1.7002 -10.3105 -2.87012 -15.4102c-4.09961 -18.5 -10.2998 -36.5498 -18.5098 -53.6299c-15.7705 -32.8301 -38.8301 -62.1699 -67.1201 -85.1201c-
|
2618 |
c-6.20996 -2.67969 -12.46 -5.25 -18.8701 -7.41016c-3.50977 -1.16016 -7.00977 -2.37988 -10.5703 -3.38965c-6.61914 -1.87988 -13.2891 -3.63965 -20.0391 -5c-4.66016 -0.910156 -9.34082 -1.73047 -14.0303 -2.48047c-5.25 -0.65918 -10.5 -1.43945 -15.79 -1.73926
|
2619 |
c-6.69043 -0.660156 -13.4102 -0.839844 -20.1201 -0.810547c-6.82031 -0.0292969 -13.6504 0.120117 -20.4502 0.790039c-3.29004 0.230469 -6.57031 0.5 -9.83008 0.950195c-2.71973 0.389648 -5.45996 0.629883 -8.16992 1.11035
|
2620 |
c-4.12012 0.719727 -8.25 1.37012 -12.3496 2.21973c-4.25 0.939453 -8.49023 1.88965 -12.6904 3.01953c-8.62988 2.16992 -17.0801 5.01074 -25.4102 8.13086c-10.4893 4.11914 -20.79 8.75 -30.6396 14.25c-2.13965 1.14941 -4.28027 2.28906 -6.34961 3.56934
|
@@ -2698,21 +2910,21 @@ c-0.730469 7.99023 -1.87012 15.96 -3.70996 23.7803z" />
|
|
2698 |
<glyph glyph-name="phoenix-squadron" unicode="" horiz-adv-x="512"
|
2699 |
d="M96 384.62c46.4902 36.1299 105.55 56.0703 164.51 54.5703c29.5801 0.379883 59.1104 -5.37012 86.9102 -15.3301c-24.1299 4.62988 -49 6.33984 -73.3799 2.44922c-42.8701 -5.30957 -83.04 -27.1494 -111.83 -59.1797c5.66992 1 10.7803 3.66992 16 5.86035
|
2700 |
c18.1396 7.87012 37.4902 13.2598 57.2305 14.8301c19.7393 2.12988 39.6396 0.429688 59.2793 -1.91992c-14.4199 -2.79004 -29.1201 -4.57031 -43 -9.59082c-34.4297 -11.0693 -65.2695 -33.1592 -86.2998 -62.6299c-13.7998 -19.71 -23.6299 -42.8594 -24.6699 -67.1299
|
2701 |
-
c-0.349609 -16.4902 5.21973 -34.8096 19.8301 -
|
2702 |
-
c3.79004 3.2207 2.53027 8.4502 2.62012 12.79c-2.12012 0.339844 -4.37988 1.11035 -6.30078 -0.299805c-
|
2703 |
-
c20.2305 9.71973 36.8105 25.2002 54.4404 38.
|
2704 |
-
c-3.52051 -4.59961 -8.9502 -6.93945 -13.5801 -10.1592c-
|
2705 |
c32.7998 7.4502 61.4297 28.8906 81 55.8408c20.4404 27.5195 30.5195 62.1992 29.1602 96.3496c-0.520508 7.5 -1.57031 15 -1.66016 22.4902c8 -19.4805 14.8203 -39.71 16.6504 -60.8301c2 -14.2803 0.75 -28.7598 -1.62012 -42.9004
|
2706 |
-
c-1.91016 -11 -5.66992 -21.5098 -7.78027 -32.
|
2707 |
-
c0.490234 -12.7295 0.490234 -25.5098 0 -38.2295c-2.
|
2708 |
-
c-
|
2709 |
" />
|
2710 |
<glyph glyph-name="sith" unicode=""
|
2711 |
d="M0 416l118.75 -69.71l-11.5195 58.9004l91.0596 -69.8701c8.5 1.50977 17.0996 2.29004 25.71 2.29004s17.21 -0.770508 25.71 -2.29004l91.0596 69.8701l-11.5195 -58.9004l118.75 69.71l-69.71 -118.75l58.8604 11.5195l-69.8408 -91.0293
|
2712 |
c3.04004 -17.0098 3.03027 -34.4404 0 -51.4502l69.8408 -91.0303l-58.8604 11.5205l69.71 -118.78l-118.75 69.71l11.5195 -58.8604l-91.0293 69.8408c-17.0098 -3.04004 -34.46 -3.04004 -51.4805 0l-91.0293 -69.8408l11.5195 58.8604l-118.75 -69.71l69.71 118.78
|
2713 |
-
l-58.8604 -11.5205l69.8408 91.0303c-1.
|
2714 |
-
|
2715 |
-
|
2716 |
<glyph glyph-name="trade-federation" unicode="" horiz-adv-x="496"
|
2717 |
d="M248 439.2c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -43.5996c129.7 0 234.8 105.1 234.8 234.8s-105.1 234.8 -234.8 234.8s-234.8 -105.1 -234.8 -234.8s105.1 -234.8 234.8 -234.8zM403.1 284.9v-0.100586h-145.699
|
2718 |
v-34.7998h83.2998v-47h-83.2998v-195.8h-48.8008v196.8h-117.699l-36.7002 46h155.1v81.7002h193.8v-46.7998zM329.8 239.8h-82.8994v56.2002h145v24.4004h-171.801v-80.6006h-143.899l20.0996 -23.8994h123.8v-197.4h26.8008v197.4h82.8994v23.8994zM168.5 308.8l22 9.2998
|
@@ -2733,50 +2945,50 @@ c31.6396 -1.70996 61.1396 -33.4297 61.5801 -58.5l-22.4307 9.68066c5.54004 -17.53
|
|
2733 |
l-26.3906 21.1104l19.3506 -7l8.7998 33.3896l18.4697 -7l6.16016 33.4307l27.2803 -7.05078c3.7998 25.3809 -2.0498 49.1406 -13.2002 72.1406l30.3496 8.35938c-9.42969 43.5205 -35.4297 50.7305 -63.3398 54.1006
|
2734 |
c-9.35938 -30.6201 -6.24023 -56.4404 2.64062 -80.0498c-82.25 -56.3008 -76.75 -117.221 -81.3701 -149.11c-4.40039 -30.3496 -4.4502 -89.29 -25.5107 -97.21v29.9502l-5.2793 7l-5.28027 -12.3203zM346.9 71.4697l-15.8408 10.5303
|
2735 |
c7.4707 4.36035 13.7607 8.41992 19.3506 12.3203c-0.600586 -7.2207 -0.270508 -13.8398 -3.50977 -22.8398v-0.0107422zM375.05 120.73c-0.399414 -10.9404 -0.899414 -21.6602 -1.75977 -31.6709c-7.84961 1.86035 -15.5703 3.80078 -21.1104 7
|
2736 |
-
c8.24023 7.94043 15.5508 16.3203 22.8701 24.6807v-0.00976562zM399.68 115.45l-23.75 6.
|
2737 |
c-12.3203 4.53027 -24.6299 9.31055 -36.9502 10.5605c5.05957 12 6.64941 28.1396 7 45.7393h0.0400391zM401.44 242.13c18.5596 -2.62988 35.1494 -9.18945 45.7598 -28.1494c-14.2197 -4.36035 -24.7803 -5.9707 -44 -14.0801
|
2738 |
c0.0800781 13.4092 -0.950195 27.9297 -1.75977 42.2295zM165.68 71.4805c-3.23926 9 -2.91016 15.5791 -3.50977 22.8398c5.58984 -3.90039 11.8799 -7.95996 19.3496 -12.3203zM137.53 120.74c7.31934 -8.36035 14.6299 -16.7402 22.8701 -24.6699
|
2739 |
-
c-5.54004 -3.2002 -13.2607 -5.14062 -21.1104 -7c-0.860352 10.0098 -1.36035 20.7295 -1.75977 31.6699zM112.89 115.46c0 13.4297 2 24.21 5.28027 33.
|
2740 |
c0.349609 -17.6006 2 -33.7402 7 -45.7402c-12.3701 -1.25 -24.6797 -6.03027 -37 -10.5605c2.11035 22.6406 10.4697 43.4902 29.9102 56.3008zM111.13 242.14c-0.80957 -14.2998 -1.83984 -28.8193 -1.75977 -42.2295c-19.2197 8.10938 -29.7803 9.71973 -44 14.0801
|
2741 |
c10.6299 18.9502 27.2295 25.5195 45.7598 28.1494z" />
|
2742 |
<glyph glyph-name="hornbill" unicode="" horiz-adv-x="512"
|
2743 |
-
d="M76.3799 77.7002c0.
|
2744 |
-
c-78.2793 111.35 52 190.53 52 190.53c-5.85938 -43 -8.23926 -91.1602 -8.23926 -91.1602c-67.3105 -41.4902 0.929688 -64.0605 39.8096 -72.
|
2745 |
c-99.2207 -1.38965 -158.7 29.1406 -188.94 51.6006zM184.38 405.4c109.75 73.9395 187.601 -54.0605 187.601 -54.0605c-43.04 5.86035 -91.1807 8.24023 -91.1807 8.24023c-43.0996 70.0098 -65.7998 -6.58008 -73.7998 -44.29
|
2746 |
-
c-
|
2747 |
-
c-20.
|
2748 |
-
c-4.
|
2749 |
-
c-
|
2750 |
-
c20.
|
2751 |
-
|
2752 |
-
c41.3301 -67.1709 63.9199 0.540039 72.7695 39.
|
2753 |
<glyph glyph-name="mailchimp" unicode=""
|
2754 |
d="M330.61 204.48c-2.50977 3.17969 -4.70996 8.31934 -5.9707 14.3193c-2.22949 10.6807 -1.98926 18.4102 4.24023 19.4199c6.23047 1.01074 9.25 -5.45996 11.4805 -16.1299c1.5 -7.17969 1.20996 -13.7803 -0.450195 -17.6094
|
2755 |
-
c-1.
|
2756 |
-
c-0.400391 1.83984 2.40918 4.87988 5.40918 7.
|
2757 |
-
M268.05 190.87c9.68066 1.14941 16.8604 -4.62988 15.4004 -6.85059c-0.629883 -1.00977 -2.02051 -0.829102 -4.94043 -0.489258c-1.
|
2758 |
c-4.04004 -1.62012 -4.30957 -1.15039 -5.20996 -0.810547c-1.53027 3.57031 4.40039 8.68066 13.4697 10.1006zM322.22 173.77c-3.40039 -6.91016 -17.7002 0.0703125 -14.2998 7c3.40039 6.93066 17.6797 -0.129883 14.2998 -7zM337.88 194.24
|
2759 |
-
c7.69922 -0.149414 7.42969 -16.0605 -0.259766 -15.9307c-7.69043 0.130859 -7.40039 16.0605 0.259766 15.9307zM119.09 115.34c4.0293 0.910156 3.40039 -1.25 3.37012 -0.359375c0.
|
2760 |
-
c0 -0.
|
2761 |
c-3.2998 -5.16016 -3.11035 -12.2002 -7.37988 -11.6299c-3.7207 0.540039 -3.70996 14.4805 5 24.0801c7.22949 8 25.9492 11.9297 35.0498 -5.54004c8.11035 -15.3896 -8.2002 -27.7695 -3 -35.7695c2.46973 -3.80078 7.14941 -2.66016 8.46973 -2.35059zM418.81 132.41
|
2762 |
-
c6.44043 0 16.5605 -7.5 16.5605 -25.2705c0 -17.7695 -7.37012 -37.9092 -9.11035 -42.3799c-54.3896 -130.279 -264.56 -130.06 -322.29 3c-31.5293 -0.0400391 -64.1699 26.9805 -67.5293 60.3799c-0.
|
2763 |
-
c0
|
2764 |
c0.0292969 -20.3604 -12.9404 -44.1006 -33.7305 -65.6504c26.1699 -24.2998 20.0205 -71.6094 21.5205 -83c7.19922 -2 30.6992 -7.62012 41.0996 -18.54c18.3604 -19.25 5.52051 -39.5801 3.07031 -43.25c4.20996 -11.2998 3.42969 -8.79004 6.7793 -20.5195z
|
2765 |
M102.81 84.25c29.4502 -0.680664 38.6309 28.2002 34.0908 57.8398c-9.74023 62.9404 -90.1699 48.9805 -84 -12.3301c2.44922 -24.3594 27.0898 -44.8994 49.9092 -45.5098zM84.2998 198.45c19.3105 51.8096 51.54 99.5498 94.2002 132.399
|
2766 |
c31.6504 26.4102 65.7998 45.3506 65.7998 45.3506s-18.3896 21.3193 -23.9395 22.8896c-34.1699 9.23047 -107.94 -41.6494 -155.051 -108.88c-19.0596 -27.21 -46.3096 -75.3604 -33.2998 -100.21c1.58984 -3 10.71 -10.9297 15.5898 -15
|
2767 |
c8.18066 11.9102 21.54 20.5 36.7002 23.4502zM323.18 97.2998c2.58984 0.259766 0.560547 -2.53027 0.560547 -2.53027s-27.4004 -12.75 -71 0.740234c1.20996 -10.2295 11.1699 -14.8193 15.9395 -16.6699c31.4004 -12.21 86.6904 -2.58008 128.46 26
|
2768 |
c0.850586 0.589844 1.41992 0 0.730469 -1c-28.9697 -41.3496 -128.73 -54.7598 -151.37 -21.3496c-12.0801 17.8301 -0.599609 43.8594 19.5498 41.1494c6.7998 -0.769531 53.7705 -8 100.48 13.6807c27.4893 12.7598 37.8701 26.79 36.3096 38.1602
|
2769 |
-
c-0.
|
2770 |
-
c-0.519531 11.7607 -1.91992 27.8506 -11.9199 34.4902c-2.
|
2771 |
c-12.4404 -10.3701 -22.9502 -12.0605 -34.6406 -11.5605c-6.98926 0.290039 -14.3994 1.37988 -22.8799 1.87988l-5 0.290039c-19.5801 1 -40.5693 -15.9092 -44.0693 -39.9092c-4.86035 -33.4307 19.3291 -50.7002 26.3291 -60.8301
|
2772 |
-
|
2773 |
-
|
2774 |
-
c-15.6299 -12.3506 -35.71 -20.9707 -51 -25.3506c-69.4004 -19.9102 -90.1904 6.35059 -96.4004 -13.8096c33.7705 -12.3701 69.5098 -7.07031 69.5098 -7.07031zM171.31 290.5l0.0605469 0.00976562c-0.
|
2775 |
-
c0 -0.
|
2776 |
-
c-0.
|
2777 |
-
|
2778 |
-
|
2779 |
-
c-0.
|
2780 |
<glyph glyph-name="megaport" unicode="" horiz-adv-x="496"
|
2781 |
d="M214.5 238.4l33.4004 33.3994l33.3994 -33.3994v-66.4004l-33.2998 -33.2998l-33.5 33.5v66.2002zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM393.1 25.5996h0.100586v87.1006l-59.7002 59.7002v87.5996l-59.5 59.5
|
2782 |
v75.5996l-26.0996 19.2002l-26.1006 -19.2002v-75.5996l-59.5 -59.5v-87.9004l-59.5 -59.5v-87l26.1006 -19.1992l26.0996 19.1992v65.5l33.5 33.4004l33.4004 -33.4004v-65.5l26.0996 -19.1992l26.2002 19.1992v65.5l33.3994 33.4004l33.4004 -33.4004v-65.5l26 -19.1992z
|
@@ -2786,16 +2998,15 @@ d="M246.6 148.71c15.5703 0 27.1504 -11.46 27.1504 -27s-11.6201 -27 -27.1504 -27c
|
|
2786 |
c-15.4404 0 -27.1504 11.3096 -27.1504 27zM191.76 289c98.3701 0 177.76 -78.9102 177.76 -176.48c0 -97.5693 -79.6094 -176.52 -177.76 -176.52c-98.1494 0 -177.76 78.8701 -177.76 176.52v335.48l45.25 -227c30.2002 48.2305 97.75 68 132.51 68zM191.76 -19.1201
|
2787 |
c73.2402 0 132.51 58.96 132.51 131.64c0 72.6807 -59.2393 131.54 -132.51 131.54c-73.2695 0 -132.51 -58.8994 -132.51 -131.59c0 -72.6895 59.2402 -131.59 132.51 -131.59z" />
|
2788 |
<glyph glyph-name="rev" unicode=""
|
2789 |
-
d="M289.67 173.11c0 -36.
|
2790 |
c-110.939 2.70996 -200.06 93.4092 -200.06 205c0 108.569 84.2998 197.319 191 204.569v38.3203l108.77 -62.7803l-108.77 -62.79v39.1201c-80 -7.16016 -143 -74.5498 -143 -156.43c0 -86.6201 70.4902 -157.12 157.11 -157.12s157.09 70.5 157.09 157.12
|
2791 |
-
c-0.
|
2792 |
<glyph glyph-name="shopware" unicode="" horiz-adv-x="512"
|
2793 |
-
d="M403.5 -7.41016c-
|
2794 |
-
c0.
|
2795 |
-
c-
|
2796 |
-
c0 -
|
2797 |
-
c-
|
2798 |
-
c0.625 -0.530273 1.19336 -1.62305 1.26953 -2.43945z" />
|
2799 |
<glyph glyph-name="squarespace" unicode="" horiz-adv-x="512"
|
2800 |
d="M186.12 104.66l157.22 157.2c38.5703 38.5898 101.13 38.5898 139.72 0c38.5908 -38.5801 38.5908 -101.13 0 -139.721l-119.25 -119.239l-0.0400391 -0.0400391c-19.2891 -19.2705 -50.5498 -19.25 -69.8193 0.0400391l154.149 154.14
|
2801 |
c19.29 19.29 19.29 50.5703 0 69.8604s-50.5693 19.29 -69.8594 0l-157.181 -157.181c-9.64941 -9.64941 -25.29 -9.64941 -34.9395 0c-9.65039 9.65039 -9.65039 25.29 0 34.9404zM430.65 209.46c9.63965 -9.63965 9.63965 -25.2803 -0.0107422 -34.9297l-157.199 -157.2
|
@@ -2861,104 +3072,105 @@ v-31.2402h-92.0801v-16.7002h178.2s-9.91992 -30.25 -26.4502 -60.3398c-47.7793 14.
|
|
2861 |
c61.0098 -28.0996 125.64 -62.8203 171.6 -88.4404c-0.5 -38.5195 -31.7402 -69.5996 -70.2598 -69.5996h-307.48c-38.8496 0 -70.2598 31.4102 -70.2598 70.2598v307.48c0 38.8496 31.4102 70.2598 70.2598 70.2598h307.48zM47.2803 125.05
|
2862 |
c-0.990234 17.5205 10.9102 50.5801 78.3594 50.5801c24.96 0 64.8105 -12.7295 109.44 -31.4102c-25.29 -33.2197 -65.7998 -72.8994 -117.87 -72.8994c-59.6797 0 -68.9404 33.5596 -69.9297 53.7295z" />
|
2863 |
<glyph glyph-name="the-red-yeti" unicode="" horiz-adv-x="512"
|
2864 |
-
d="M488.23 206.3c2.
|
2865 |
c-61.5 0 -113.9 20.2002 -157.5 60.2002c-64.5 60.8994 -64.9004 125 -64.9004 150.5c-0.5 1.7998 -0.700195 3.5 -1.2002 5.2002l-20.1992 -22.4004c-6.80078 43 25.6992 74.2998 33 80.7002c0.5 1 0.699219 2.2002 1.19922 3.2002l-28.7998 1l-3 3.39941
|
2866 |
-
c8.5 3.5 25.2998 13.2998 40.2998 14.
|
2867 |
-
c20.9004 4.90039 33.2002 3.2998 49.2002 0c-2.5 4.10059 -5.40039 10.5 -8.40039 18.9004c-1.
|
2868 |
c0.700195 3.59961 2.10059 21.2998 33.7002 45.5l1.83008 -0.5l-12 -44.2002c30 17.7002 63 21.9004 97.9004 11.7998c-12.7002 -12.1992 -24.3008 -28.8994 -42.5 -33c7.39941 -2.2998 28.6992 -9.69922 34.1992 -15.1992l-24.7998 7.09961
|
2869 |
-
c6.5 -6 19.6006 -16.4004 25.1006 -25.
|
2870 |
c13 6.40039 23.0996 4.7002 30.6992 -5.89941c11.8008 0 17.8008 -15.7002 18.4004 -27c14.7998 -2.90039 2.7002 -30.7002 2.5 -30.7002l-7.09961 -18.2002c7.7998 -7.7998 22.0996 -20.9004 31.6992 -44.7998zM398 336.8c-13.0996 8.90039 -22.7002 11.9004 -28.2998 8.5
|
2871 |
-
c8.09961 -7.2002 13 -14.2998 13.5 -20.7002c1.2002 -7.59961 -2.2002 -14.7998 -10.6006 -21.8994l-4.19922 -3.
|
2872 |
c21.7998 10.1006 29.5 12.7002 54.7998 20.9004l-18.2002 -16c11.4004 0 25.6006 0.299805 46.5 -8.40039c7 24.3008 7.10059 20.7002 2.5 20.7002l-4.69922 -11.2998c-1.7002 10.5 -2.90039 18.9004 -3.40039 25.2998c-0.5 6.7002 -3.90039 9.60059 -9.2998 10.1006
|
2873 |
-
c-0.
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
c-
|
2881 |
-
|
2882 |
-
|
2883 |
-
c-4.7002 -6.40039 -8.39941 -13 -10.0996 -19.4004c-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
c-1.7998 -12.5 -6.90039 -12.7998 -12.2998 -10.5996zM175.9 315c-2.
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
|
|
2911 |
<glyph glyph-name="acquisitions-incorporated" unicode="" horiz-adv-x="384"
|
2912 |
-
d="M357.45 -20.2002c2.2002 -14.2998 4.09961 -28.7002 6.59961 -43.
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
c-18.6992 -0.400391 -37.5996 -0.299805 -56.1992 -2c-13.4004 -1.2002 -23.3008 -12.6006 -18.9004 -26.6006c8.59961 -27.0996 27.7002 -69.0996 36.5 -89.1992c65.7002 -154.2 61.4004 -157 84 -158.
|
2918 |
-
|
2919 |
-
c-12.3994 -3.60059 -24.7998 -6.7002 -37.2998 -9.7002c-4.2998 -1.10059 -6 -2.7998 -5.89941 -7.5c0.799805 -57.5 0.899414 -127.5 1 -129.101c0.399414 -12.5996 8.69922 -21.3994 21 -23.
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
<glyph glyph-name="critical-role" unicode=""
|
2924 |
-
d="M225.82 448c0.259766 -0.150391 216.569 -124.51 217.12 -124.72c3 -1.18066 3.69922 -3.45996 3.69922 -6.56055c-0.0732422 -83.4463 -0.0732422 -166.899 0 -250.359c0.
|
2925 |
-
c0 -2.
|
2926 |
-
c0 0.870117 0 225.94 -0.0498047 253.101c-0.
|
2927 |
c-64.7471 -36.8604 -129.474 -73.7305 -194.18 -110.61c0 -0.120117 0.0800781 -0.229492 0.129883 -0.349609l30.8604 -11.6406c-7.70996 -6 -8.32031 -6 -10.6504 -5.12988c-0.0996094 0 -24.1699 9.28027 -26.7998 10v-230.43
|
2928 |
c0.879883 1.41016 64.0703 110.91 64.1299 111c1.62012 2.82031 3 1.91992 9.12012 1.51953c1.40039 -0.0898438 1.47949 -0.219727 0.780273 -1.41992c-41.1904 -71.3301 -36.4004 -63 -67.4805 -116.939c-0.80957 -1.40039 -0.609375 -1.12988 1.25 -1.12988h186.5
|
2929 |
c1.44043 0 1.69043 0.229492 1.7002 1.63965v8.87988c0 1.33984 2.36035 0.810547 -18.3701 1c-7.45996 0.0703125 -14.1396 3.21973 -21.3799 12.7002c-7.37988 9.66016 -14.6201 19.4297 -21.8496 29.21c-2.28027 3.08008 -3.4502 2.37988 -16.7607 2.37988
|
2930 |
c-1.75 0 -1.7793 0 -1.75977 -1.82031c0.290039 -26.21 0.150391 -25.2695 1 -32.6592c0.520508 -4.37012 2.16016 -4.2002 9.69043 -4.81055c3.13965 -0.259766 3.87988 -4.08008 0.519531 -4.91992c-1.57031 -0.389648 -31.5996 -0.509766 -33.6699 0.0996094
|
2931 |
-
c-
|
2932 |
c-1.21973 0.240234 -3.54004 0.160156 -4.69043 0.549805c-2.87988 1 -2 4.83984 1.77051 4.84961c33.6699 0 46.0801 1.07031 56.0596 -4.85938c7.74023 -4.61035 12 -11.4805 12.5098 -20.4004c0.880859 -14.5898 -6.50977 -22.3496 -15 -32.5898
|
2933 |
-
c-0.
|
2934 |
-
c0 1 0.320312 1.42969 1.41016 1.
|
2935 |
c-0.0498047 -1.51953 0.669922 -1.62012 1.89062 -1.62012h186.71c-27.1533 47.0342 -54.2334 93.9746 -81.2402 140.821c2.25977 0.660156 -0.400391 0 6.69043 1.38965c2 0.390625 2.0498 0.410156 3.10938 -1.43945c7.31055 -12.6396 77.3105 -134 77.3701 -134.061
|
2936 |
v230.44c-1.71973 -0.5 -103.3 -38.7197 -105.76 -39.6797c-1.08008 -0.419922 -1.5498 -0.200195 -1.91016 0.879883c-0.629883 1.89941 -1.33984 3.75977 -2.08984 5.62012c-0.320312 0.790039 -0.0898438 1.12988 0.649414 1.38965
|
2937 |
c0.100586 0 95.5303 35.8496 103 38.7705c-65.4199 37.5693 -130.56 75 -196 112.6l86.8203 -150.39l-0.280273 -0.330078c-9.56934 0.899414 -10.46 1.59961 -11.7998 3.93945c-1 1.69043 -73.5 127.71 -82 142.16c-9.09961 -14.6699 -83.5596 -146.21 -85.3701 -146.32
|
2938 |
-
c-2.92969 -0.169922 -5.87988 -0.0800781 -9.25 -0.0800781c28.833 49.8271 57.5596 99.4941 86.1797 149.001zM267.331 297.658c1.
|
2939 |
c0 -0.109375 0.0703125 -19.0596 -0.859375 -20.4502c-0.930664 -1.38965 -1.87988 -1.21973 -2.60059 0.19043c-5 9.68945 6.2207 9.66016 -39.1201 12c-0.699219 0 -1 -0.230469 -1 -0.929688c0 -0.130859 3.7207 -122 3.73047 -122.11
|
2940 |
-
c0 -0.889648 0.519531 -1.2002 1.20996 -1.50977c2.
|
2941 |
-
c-4.66016 19.2598 8.25977 32.7002 19.8906 36.3994c1.
|
2942 |
c-32.3496 -0.519531 -36.75 0.339844 -40.2197 -8.51953c-2.41992 -6.18066 -4.13965 -1.32031 -3.9502 -0.230469c1.05957 6 2.16309 12 3.31055 18c0.399414 2.11035 1.42969 2.61035 3.42969 1.86035c5.58984 -2.11035 6.71973 -1.7002 37.25 -1.91992
|
2943 |
-
c1.72949 0 1.78027 0.0800781 1.82031 1.84961c0.679688 27.4902 0.579102 22.5898 1 29.5498c0.
|
2944 |
-
c-0.350586 14.8105 17.7197 21.6699 27.3799 11.5107c6.83984 -7.19043 5.7998 -18.9102 -2.4502 -24.1504c-1.
|
2945 |
c0 -0.900391 0.429688 -1.12012 1.24023 -1.11035c0.0996094 0 23 0.0898438 34.4697 0.370117zM68.2705 306.298c19.8408 4.50977 32.6807 0.560547 52.4902 -1.68945c2.75977 -0.310547 3.74023 -1.2207 3.62012 -4c-0.209961 -5 -1.16016 -22.3301 -1.24023 -23.1504
|
2946 |
-
c-0.
|
2947 |
-
c0.
|
2948 |
-
c-1.54004 -9.16992 -86.6992 -22.0898 -93.3496 42.0605c-2.70996 25.8496 10.4404 53.3691 40.2695 60.1494zM148.271 218.628h-19.4893c-0.
|
2949 |
c2.37988 3.75 5.88965 -0.919922 5.86035 6.13965c-0.0800781 25.75 0.209961 38 0.229492 40.1006c0 3.41992 -0.530273 4.64941 -3.32031 4.93945c-7 0.720703 -3.10938 3.37012 -1.10938 3.38086c11.8398 0.0996094 22.6201 0.179688 30.0498 -0.720703
|
2950 |
-
c8.76953 -1.06934 16.71 -12.6299 7.92969 -22.6201c-2 -2.25 -4 -4.41992 -6.13965 -6.72949c0.950195 -1.15039 6.89941 -8.82031 17.2803 -19.6797c2.65918 -2.78027 6.14941 -3.51074 9.87988 -3.13086h0.0214844c1.
|
2951 |
c0.299805 3.41992 0.259766 -4.72949 0.450195 40.5801c0 5.65039 -0.339844 6.58008 -3.22949 6.83008c-3.9502 0.350586 -4 2.25977 -0.69043 3.37012l19.0898 0.0898438c0.320312 0 4.49023 -0.530273 1 -3.37988c0 -0.0498047 -0.160156 0 -0.240234 0
|
2952 |
c-3.60938 -0.259766 -3.93945 -1 -4 -4.62012c-0.269531 -43.9297 0.0703125 -40.2295 0.410156 -42.8203c0.110352 -0.839844 0.270508 -2.22949 5.10059 -2.13965c2.48926 0 3.85938 -3.37012 0 -3.39941c-10.3701 -0.0800781 -20.7402 0 -31.1104 -0.0703125
|
2953 |
c-10.6699 0 -13.4697 6.2002 -24.21 20.8203c-1.59961 2.17969 -8.31055 2.35938 -8.2002 0.369141c0.879883 -16.4697 0 -17.7793 4 -17.6699c4.75 0.100586 4.73047 -3.56934 0.830078 -3.5498h0.0595703zM423.271 228.778
|
2954 |
-
c-1.20996 -7.12988 0.170898 -10.3799 -5.2998 -10.3398c-61.5498 0.419922 -47.8193 0.219727 -50.7197 0.30957c-1.
|
2955 |
-
c-1.43066 3.37012 -2.78027 6.78027 -4.11035 10.1895c-0.
|
2956 |
-
c-2.
|
2957 |
-
h-26.3691c-2.91992 0 -3.09082 3.14941 -0.740234 3.20996c0.
|
2958 |
-
c0.
|
2959 |
c0.0898438 1.86914 0.0800781 -1.1709 0.0703125 41.2393c0 4.45996 -2.36035 3.74023 -5.5498 4.27051c-0.259766 0 -2.56055 0.629883 -0.0800781 3.05957c0.209961 0.200195 -0.890625 0.240234 21.7002 0.150391c2.31934 0 5.31934 -2.75 -1.20996 -3.4502
|
2960 |
-
c-0.
|
2961 |
-
c0.
|
2962 |
c-4.24023 0 -4.41992 3.38965 -0.609375 3.41016c35.9092 0.160156 28.1094 -0.379883 37.1895 0.649414c1.67969 0.19043 2.37988 -0.239258 2.25 -1.88965c-0.259766 -3.38965 -0.639648 -6.78027 -1 -10.1602c-0.25 -2.16016 -3.2002 -2.61035 -3.39941 0.150391
|
2963 |
c-0.380859 5.30957 -2.15039 4.44922 -15.6309 5.08008c-1.58008 0.0693359 -1.63965 0 -1.63965 -1.52051v-16.1299c0 -1.65039 0 -1.59961 1.62012 -1.46973c3.12012 0.25 10.3096 -0.339844 15.6895 1.51953c0.470703 0.160156 3.30078 1.79004 3.07031 -1.75977
|
2964 |
c0 -0.209961 -0.759766 -10.3496 -1.17969 -11.3896c-0.530273 -1.29004 -1.87988 -1.51074 -2.58008 -0.320312c-1.16992 2 0 5.08008 -3.70996 5.2998c-15.4199 0.900391 -12.9102 2.5498 -12.9102 -6c0 -12.25 -0.759766 -16.1104 3.88965 -16.2402
|
@@ -2971,12 +3183,12 @@ c22 -1.20996 14.9502 1.64941 18.79 6.33984c1.83008 2.24023 2.75977 -0.839844 2.7
|
|
2971 |
c1 15.8701 0.570312 44.6504 0.339844 47.8105c-0.269531 3.76953 -2.7998 3.26953 -5.67969 3.70996c-2.46973 0.379883 -2 3.21973 0.339844 3.21973c1.4502 0.0205078 17.9697 0.0302734 23.0898 0.0205078zM258.171 225.648
|
2972 |
c0.0703125 -4.08008 2.86035 -3.45996 6 -3.58008c2.61035 -0.100586 2.53027 -3.41016 -0.0703125 -3.43066c-6.47949 0 -13.6992 0 -21.6094 0.0605469c-3.83984 0 -3.37988 3.34961 0 3.37012c4.49023 0 3.24023 -1.61035 3.41016 45.54
|
2973 |
c0 5.08008 -3.27051 3.54004 -4.7207 4.22949c-2.58008 1.23047 -1.35938 3.08984 0.410156 3.15039c1.29004 0 20.1904 0.410156 21.1699 -0.209961c0.980469 -0.620117 1.87012 -1.65039 -0.419922 -2.86035c-1 -0.519531 -3.85938 0.280273 -4.14941 -2.46973
|
2974 |
-
c0 -0.209961 -0.820312 -1.62988 -0.0703125 -43.7998h0.0498047zM221.261 -48.6221c0.
|
2975 |
-
c-0.140625 0.430664 11.2598 0.180664 -181.521 0.270508c-1.21973 0 -1.57031 -0.370117 -1.53027 -1.56055c0 -0.0996094 1.25 -44.5098 1.2207 -50.3799c-0.
|
2976 |
-
c-0.730469 -1.7207 -1 -2.20996 -2 0.0800781c-4.19043 10.3398 -8.28027 20.7197 -12.5703 31c-1.
|
2977 |
-
|
2978 |
c0.0498047 -8.04004 0.00976562 -11.6104 0.0205078 -41.6504zM236.111 155.178c0 -2.12988 1.06934 -38.6797 1.08984 -39.1299c0.339844 -9.93945 -25.5801 -5.76953 -25.2305 2.58984c0.0800781 2 1.37012 37.4199 1.10059 39.4307
|
2979 |
-
c-14.1006 -7.44043 -14.4199 -40.21 6.43945 -48.
|
2980 |
v-0.0400391zM223.831 353.178c-9.83008 0 -9.73047 -14.75 -0.0703125 -14.8701c9.66016 -0.119141 10.1006 14.8809 0.0703125 14.9102v-0.0400391zM143.681 249.348c0 -1.7998 0.410156 -2.39941 2.16992 -2.58008c13.6201 -1.38965 12.5107 11 12.1602 13.3604
|
2981 |
c-1.68945 11.2197 -14.3799 10.2002 -14.3496 7.81055c0.0498047 -4.5 -0.0302734 -13.6807 0.0195312 -18.5908zM356.001 242.948l-6.09961 15.8398c-2.16016 -5.48047 -4.16016 -10.5703 -6.23047 -15.8398h12.3301z" />
|
2982 |
<glyph glyph-name="d-and-d-beyond" unicode="" horiz-adv-x="640"
|
@@ -3019,7 +3231,7 @@ l-0.00976562 70.9307c-0.0107422 18.8193 -11.9307 47.2793 -47.3701 47.2793h-47.37
|
|
3019 |
c0.279297 -11.1602 9.55957 -19.9805 20.7197 -19.6904h62.1797v29.5703h-53.29v38.4102h32.5703v29.5693h-32.5703v38.4199h53.2803zM358.52 130.18l38.4609 144.801h-32.5801l-29.5703 -113.721l-29.71 113.721h-32.5703l38.5303 -144.801
|
3020 |
c10.5898 -24.6299 34.2402 -30.75 47.4395 0z" />
|
3021 |
<glyph glyph-name="fantasy-flight-games" unicode="" horiz-adv-x="512"
|
3022 |
-
d="M256 415.14l223.14 -223.14l-223.14 -223.14l-223.14 223.14zM88.3398 192.
|
3023 |
c12.0293 11.6895 23.7393 23.0596 35.6895 34.6602c-6.99023 7.4502 -32.1494 32.8301 -35.0898 35.7793c-1.91016 1.9209 -2.29004 3.2207 -0.120117 5.35059c15.5801 15.2295 39.21 17.79 56.9805 5.09961c7.98926 -5.70996 14.2998 -11.6396 48.5098 -43.9502
|
3024 |
c10.8203 11.1504 22.2295 22.8506 33.5 34.6904c0.490234 0.520508 0.0996094 2.63965 -0.580078 3.37988c-0.0898438 0.100586 -37.5195 40.6006 -62.1504 59c-33.5801 25.0801 -78.3193 23.0605 -119.77 -18.6895c-84.5703 -85.1807 -94.5303 -95.4805 -96.4902 -97.4805z
|
3025 |
M323.16 90.5703c18.8203 18.79 80.3301 80.6396 100.5 101.5c-13.7305 13.4492 -27.1797 26.6299 -40.8604 40.0293c-20.0098 -19.7393 -40.2402 -39.6895 -61.25 -60.4199c-12.3301 12.8301 -24.8799 25.8799 -37.25 38.75
|
@@ -3029,9 +3241,9 @@ c33.5498 -34.7607 50.8496 -53.3408 72.9297 -66.8408c28.9004 -17.6699 71.5 -14.96
|
|
3029 |
<glyph glyph-name="penny-arcade" unicode="" horiz-adv-x="640"
|
3030 |
d="M421.91 283.73c7.33984 -16.2705 2.29004 -5.07031 24.6299 -54.6807l-39.7305 -10.6094c13.7002 59.2295 10.6104 45.8398 15.1006 65.29zM215.82 232.62c32.5 8.99023 41.9492 -37.6396 -0.350586 -47.4297c-14.2002 -3.77051 -6.64941 -1.75 -34.8193 -9.34082
|
3031 |
l-4.45996 46.1904c28.3193 7.5498 19.4395 5.17969 39.6299 10.5801zM541.98 258.81c75.7998 -37.9092 98 -76.3193 97.9893 -104.47c2.10059 -78.8496 -183.3 -130.33 -399.89 -84.8301c0.540039 -13 -8.00977 -24.6494 -20.5801 -28.0195
|
3032 |
-
c-125.54 -33.54 -117.35 -31.75 -122.53 -31.7598c-14.3701 -0.0107422 -26.4102 10.8896 -27.7998 25.1992l-4.2998 44.4805c-0.
|
3033 |
-
c-50.2305 28.2598 -80.9004 61.8701 -80.9004 95.3701c0 72.9199 144.26 113.4 309.41 98.
|
3034 |
-
|
3035 |
l-4.50977 44.5098l-20.5303 -5.50977l-2.45996 23.5498l48.4404 12.9102zM454.32 133.08l108.55 28.96l-4.2998 44.4795l-20.79 -5.55957l-66.6699 145.47c-70.5801 -18.8301 -42.2305 -11.25 -135.591 -36.2393l4.2002 -44.4805l17.1504 4.55957l-33.0801 -126.47
|
3036 |
l-20.9902 -5.58984l4.45996 -44.4297l112.851 30.0693l-4.05078 39.54l-19.1992 -5.12012l4.09961 17.54l57.7598 15.4209l6.61035 -14.6807l-14.9004 -3.97949z" />
|
3037 |
<glyph glyph-name="wizards-of-the-coast" unicode="" horiz-adv-x="640"
|
@@ -3100,62 +3312,60 @@ c0 9.90039 6.7002 14.1006 16.7998 14.1006h0.200195c10.0996 0 16.7998 -4.2002 16.
|
|
3100 |
s-5.7998 -1.40039 -5.7998 -6.10059v-36.5996c0 -4.7002 2.2998 -6.10059 5.7998 -6.10059s5.7998 1.40039 5.7998 6.10059c0 8.09961 -1 12.0996 3.7998 12.0996h3.40039zM142.3 168.36c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961
|
3101 |
c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-21.8994c-2.5 0 -3.80078 1.2998 -3.80078 3.7998v59.0996c0 2.5 1.30078 3.90039 3.7002 3.80078h21.7002c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-14.4004v-18.2998h11.4004
|
3102 |
c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-11.4004v-19.2998h14.7002zM100.3 186.86l8.10059 -23.9004c0.799805 -2.59961 -0.400391 -4.40039 -3.2002 -4.40039h-3.2998
|
3103 |
-
c-0.
|
3104 |
c0 2.5 1.30078 3.7998 3.80078 3.7998h13.3994c10.1006 0 16.7998 -4 16.7998 -14.0996v-11.9004c0 -6.39941 -2.69922 -10.3994 -7.2998 -12.3994zM96.5 200.86v8.69922c0 4.80078 -2.5 6.10059 -6.09961 6.10059h-5.80078v-20.9004h5.80078
|
3105 |
-
c3.59961 0 6.09961 1.2998 6.09961 6.10059zM176 222l11.2002 -59.2002c0.5 -2.7002 -0.799805 -4.09961 -3.40039 -4.09961h-3.5c-0.100586 -0.00976562 -0.264648 -0.0185547 -0.366211 -0.0185547c-1.94531 0 -3.61816 1.57617 -3.7334 3.51855l-1.7998 11.2998h-12.2002
|
3106 |
-
l-1.7998 -11.2998c-0.116211 -1.94238 -1.78809 -3.51855 -3.7334 -3.51855c-0.101562 0 -0.265625 0.00878906 -0.367188 0.0185547h-3c-2.5 0 -3.89941 1.39941
|
1 |
<?xml version="1.0" standalone="no"?>
|
|
|
|
|
|
|
|
|
2 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4 |
<metadata>
|
5 |
+
Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
|
6 |
By Robert Madole
|
7 |
Copyright (c) Font Awesome
|
8 |
</metadata>
|
9 |
+
<!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><defs>
|
10 |
<font id="FontAwesome5Brands-Regular" horiz-adv-x="448" >
|
11 |
<font-face
|
12 |
font-family="Font Awesome 5 Brands Regular"
|
19 |
bbox="-0.200195 -66.9505 641.5 448.3"
|
20 |
underline-thickness="25"
|
21 |
underline-position="-50"
|
22 |
+
unicode-range="U+0020-F8E8"
|
23 |
/>
|
24 |
<missing-glyph />
|
25 |
+
<glyph glyph-name="firefox-browser" unicode="" horiz-adv-x="512"
|
26 |
+
d="M130.63 324.51c0.160156 -0.00976562 0.0800781 -0.00976562 0 0zM482.05 279.16c15.2803 -36.7598 20.6709 -80.748 15.8213 -122.578c-0.370117 -3.15039 -0.700195 -6.29004 -1.11035 -9.41016c-19.6094 -115.04 -119.79 -202.62 -240.43 -202.62
|
27 |
+
c-134.71 0 -243.92 109.19 -243.92 243.891v1.23926c0.149414 2.70996 0.30957 5.41016 0.490234 8.12012c0.0498047 0.240234 0.0498047 0.480469 0.0498047 0.719727c0.439453 6.29004 0.870117 10.3105 1.43945 14c0.240234 1.91309 0.5 3.82617 0.780273 5.73926
|
28 |
+
c1.66992 12.2705 3.94043 22.21 4 22.4805c5.99219 26.8799 17.3516 52.1084 32.7305 73.8994v0c6.86816 9.79785 14.3965 18.8301 22.7695 27.3301c7.36719 7.53418 15.2451 14.2881 23.8398 20.4307c0.930664 0.629883 8.03027 4.83984 8.15039 4.30957
|
29 |
+
c-0.570312 -8.42969 -1.24023 -48.8301 8.42969 -61.0801h0.120117c14.1602 15.9199 33.6504 33.96 58.71 45.3701c-2.38477 -9.13379 -3.64844 -18.6562 -3.64844 -28.5332c0 -10.7832 1.51367 -21.2158 4.33887 -31.0967
|
30 |
+
c2.20508 -1.47852 4.29199 -3.05566 6.30957 -4.77051c3.71973 -3.14941 7.91992 -7.34961 16.7705 -16.0596c16.5498 -16.3096 59 -33.1797 59.0898 -35.1797c-0.400391 -6.08008 -21.8301 -27 -29.3301 -27c-69.3701 0 -80.6201 -41.9502 -80.6201 -41.9502
|
31 |
+
c3.07031 -35.3301 27.6699 -64.4102 57.5098 -79.75c1.36035 -0.730469 2.74023 -1.37012 4.12012 -2c2.36035 -1.04004 4.74023 -2.02051 7.16016 -2.92969c9.95996 -3.52539 20.6885 -5.66895 31.7402 -6.12012c121.569 -5.7002 145.13 145.34 57.3896 189.199
|
32 |
+
c22.4697 3.91016 45.8203 -5.12988 58.8203 -14.2793c-10.374 18.1104 -24.9414 33.167 -42.6602 44.1299c-0.993164 0.620117 -1.99316 1.21973 -3 1.7998c-1.55957 0.913086 -3.13965 1.79004 -4.74023 2.62988c-0.75 0.390625 -1.5 0.759766 -2.25 1.12988
|
33 |
+
c-1.65332 0.813477 -3.32031 1.59668 -5.00098 2.34961c-1.07031 0.469727 -2.16016 0.910156 -3.25 1.34961c-1.33984 0.580078 -2.68945 1.08008 -4.0498 1.58008c-1.86035 0.669922 -3.73047 1.2998 -5.62012 1.87012c-0.679688 0.209961 -1.33008 0.429688 -2 0.629883
|
34 |
+
c-10.8193 3.12793 -22.2139 4.82422 -34.0352 4.82422c-0.338867 0 -0.676758 -0.00195312 -1.01465 -0.00390625c-2 -0.0205078 -4 -0.100586 -6 -0.220703l-1.41992 -0.0996094c-14.8984 -1.04102 -29.2461 -4.92383 -42.1104 -11l-0.519531 -0.209961
|
35 |
+
c-0.625977 -0.21582 -1.29688 -0.335938 -1.99609 -0.335938c-2.68164 0 -4.96289 1.72559 -5.79395 4.12598c-0.246094 0.669922 -0.388672 1.39258 -0.388672 2.14746c0 2.4541 1.41797 4.58008 3.47852 5.60254c14.7295 6.98535 31.1982 11.3564 48.3301 12.3301
|
36 |
+
c5.7793 35.3994 28.2695 91.0098 82.5 122.78l-0.100586 -0.140625l0.180664 0.100586l0.120117 0.0693359c0.0732422 0.0195312 0.149414 0.0302734 0.229492 0.0302734c0.0791016 0 0.15625 -0.0107422 0.230469 -0.0302734
|
37 |
+
c0.30957 -0.0390625 0.550781 -0.303711 0.550781 -0.624023c0 -0.0117188 -0.000976562 -0.0244141 -0.000976562 -0.0361328c0.84375 -3.34961 2.08887 -6.61523 3.63965 -9.61914c0.830078 -1.70996 1.69043 -3.40039 2.69043 -5.05078
|
38 |
+
c1.87988 -3.21973 3.80957 -6.2793 5.73926 -9.33008c38.2002 -60.3594 84.9707 -88.0791 112.551 -156.829c-0.0507812 0.269531 -0.0507812 0.40918 -0.0507812 0.40918c-3.0293 20.1201 -10.9795 47.1104 -24.6992 74
|
39 |
+
c16.8594 -8.72949 38.3301 -36.2295 48.9395 -61.7295z" />
|
40 |
+
<glyph glyph-name="ideal" unicode="" horiz-adv-x="576"
|
41 |
+
d="M125.61 282.52c27.0713 -0.0107422 49.0488 -21.9873 49.0596 -49.0596v-0.00976562c0 -27.083 -21.9873 -49.0703 -49.0703 -49.0703c-27.082 0 -49.0693 21.9873 -49.0693 49.0703c0 27.082 21.9873 49.0693 49.0693 49.0693h0.0107422zM86.1504 22.1602v140.52
|
42 |
+
h78.9395v-140.52h-78.9395zM237.61 233.76c0 -20.4502 -8.99023 -23.2598 -18.7402 -23.2598h-14.0498v45.79h14.0498c8.74023 0 18.7402 -2.53027 18.7402 -22.5303zM439.3 187.76h57.0898c-1.7793 -98.4795 -52.1094 -165.64 -196.72 -165.64h-94.8301v165.62h14
|
43 |
+
c25.9805 0 41.5 17.1895 41.5 46c0 27.9102 -15.8994 45.2598 -41.5 45.2598h-14v82.8096h94.8301c88.9404 0 186.83 -26.8896 196.07 -151.31h-33.6904v68.5703h-22.75v-91.3105zM329.55 187.76l-0.0400391 22.7402h-33.5098v12.5h30v22.6904h-30v10.5791h31.7305v22.7305
|
44 |
+
h-54.4307v-91.2402h56.25zM404.21 187.76l23.6699 -0.0195312l-27.5303 91.3398h-32.3496l-27.5303 -91.3203h23.6602l5.17969 17.6699h29.7402zM299.65 416c218.35 0 250.97 -140 251 -223.48c0 -144.789 -89.1504 -224.52 -251 -224.52h-267.65v448h267.65z
|
45 |
+
M299.65 -10.9199c148.899 0 229.899 69.3496 229.899 203.439c0 137.801 -87.7998 202.41 -229.899 202.41h-246.58v-405.85h246.58zM383.51 253.93h1.37012l7.52051 -25.8096h-16.4004z" />
|
46 |
+
<glyph glyph-name="microblog" unicode=""
|
47 |
+
d="M399.36 85.7695l0.149414 0.0605469c-13.5439 -15.3408 -21.7432 -35.5967 -21.7432 -57.6494c0 -19.957 6.73438 -38.3545 18.0537 -53.041c0.589844 -0.745117 0.944336 -1.68652 0.944336 -2.71094c0 -0.311523 -0.0322266 -0.615234 -0.0947266 -0.90918
|
48 |
+
c-0.416992 -2.00684 -2.19434 -3.52051 -4.32422 -3.52051c-0.306641 0 -0.606445 0.03125 -0.895508 0.0908203c-32.2803 7.17969 -61.3105 24.8301 -79.8906 49.9199c-1.30566 1.78906 -3.41699 2.94434 -5.7998 2.94434
|
49 |
+
c-0.811523 0 -1.5918 -0.135742 -2.31934 -0.383789c-24.7363 -8.66016 -51.3818 -13.4404 -79.0586 -13.4404h-0.381836c-122.86 0 -222.46 91.4805 -222.46 204.43c0 112.95 99.5996 204.44 222.46 204.44s222.46 -91.4902 222.46 -204.44
|
50 |
+
c0 -47.4492 -17.6104 -91.0996 -47.0996 -125.79zM329.52 235.6c1.56738 1.18652 2.57324 3.03516 2.57324 5.15039c0 3.57227 -2.88672 6.47461 -6.45312 6.5l-71.8799 1.50977l-23.6602 67.9199c-0.882812 2.54199 -3.29688 4.36914 -6.1377 4.36914
|
51 |
+
s-5.25879 -1.82715 -6.1416 -4.36914l-23.6602 -67.9199l-71.8799 -1.50977c-3.5293 -0.0673828 -6.38086 -2.95117 -6.38086 -6.49609c0 -2.11523 1.01367 -3.99707 2.58105 -5.18359l57.2998 -43.4902l-20.79 -68.8604
|
52 |
+
c-0.178711 -0.59375 -0.269531 -1.21875 -0.269531 -1.87109c0 -3.59277 2.91699 -6.50977 6.50977 -6.50977c1.37793 0 2.65723 0.429688 3.70996 1.16113l59.0596 41.0801l59.0596 -41.0498c1.05371 -0.735352 2.33984 -1.1709 3.71973 -1.1709
|
53 |
+
c3.58789 0 6.5 2.91211 6.5 6.5c0 0.657227 -0.0976562 1.29199 -0.279297 1.89062l-20.7803 68.8604z" />
|
54 |
+
<glyph glyph-name="pied-piper-square" unicode=""
|
55 |
+
d="M32 29l-32 -60.2002l0.799805 328c0 65.9004 53.2002 119.2 119.2 119.2h327.2c-93 -28.9004 -189.9 -94.2002 -253.9 -168.6c-70.5996 -81.4004 -110.7 -137.4 -161.3 -218.4zM448 416c0 0 0 -328.8 0.0996094 -328.8c0 -65.9004 -53.2998 -119.2 -119.3 -119.2
|
56 |
+
h-328.399c18.5 25.5 61.6992 54 84.8994 66c35.5 18.0996 76.4004 28.5 105.3 56.2998c42.1006 40.5 47.8008 105 71 158.601c43.6006 100.3 186.4 167.1 186.4 167.1z" />
|
57 |
+
<glyph glyph-name="unity" unicode="" horiz-adv-x="576"
|
58 |
+
d="M498.11 241.6l-30 -49.5996l30 -49.6299l-52.8008 -191.62l-197.079 51.3604l-29.2402 50l-59.1699 -0.430664l-144.28 140.32l144.26 140.29l59.2002 -0.429688l29.2002 50.0596l197.109 51.3604zM223.77 323.8l-108.899 -108.13h173.13l86.5498 145.82zM223.77 60.1699
|
59 |
+
l150.78 -37.6895l-86.5498 145.81h-173.13zM416.77 46.1699l41.79 145.83l-41.8096 145.84l-86.5801 -145.84z" />
|
60 |
+
<glyph glyph-name="dailymotion" unicode=""
|
61 |
+
d="M298.93 181c7.14062 -4 12.9844 -9.85254 16.9727 -17c3.86426 -6.83691 6.10059 -14.7783 6.10059 -23.1865c0 -0.0947266 0 -0.188477 -0.000976562 -0.283203c-0.0332031 -13.6602 -4.58691 -25.084 -13.6602 -34.2705s-20.4434 -13.7793 -34.1104 -13.7793
|
62 |
+
c-13.4336 0 -24.5771 4.47949 -33.4307 13.4395s-13.2803 20.4932 -13.2803 34.5996c0 13.4336 4.53711 24.5742 13.6104 33.4209s20.2197 13.2695 33.4395 13.2695c0.214844 0.00292969 0.469727 -0.0263672 0.685547 -0.0263672
|
63 |
+
c8.59668 0 16.6738 -2.24609 23.6738 -6.18359zM0.00195312 416h448v-448h-448v448zM374.712 42.7402l-0.0302734 264.349l-55.79 -12.0898v-77.9199c-7.81348 7.86035 -16.1465 13.5273 -25 17.001c-8.87695 3.35352 -18.5127 5.21875 -28.5576 5.21875
|
64 |
+
c-0.394531 0 -0.789062 -0.00292969 -1.18164 -0.00878906c-17.6934 -0.00683594 -33.6006 -4.37305 -47.7207 -13.0996c-14.0625 -8.68066 -25.4102 -20.9805 -32.9297 -35.7803c-7.83984 -15.1064 -11.7598 -31.8467 -11.7598 -50.2197
|
65 |
+
c-0.00683594 -18.8066 3.85645 -35.7705 11.5898 -50.8906c7.45215 -14.8447 18.8232 -27.1611 32.9395 -35.7695c14.2197 -8.7334 30.5166 -13.1006 48.8906 -13.1006c26.6602 0 45.2539 8.7334 55.7803 26.2002h0.669922v-23.8896h53.0996z" />
|
66 |
+
<glyph glyph-name="instagram-square" unicode=""
|
67 |
+
d="M224 245.34c29.4385 -0.0107422 53.3379 -23.9043 53.3604 -53.3398c0 -29.4395 -23.9004 -53.3398 -53.3398 -53.3398s-53.3398 23.9004 -53.3398 53.3398c0 29.4326 23.8896 53.3291 53.3193 53.3398zM348.71 286.34
|
68 |
+
c8.34961 -21.0703 6.46973 -71.0596 6.46973 -94.3398s1.91992 -73.3301 -6.42969 -94.3301c-5.4834 -13.8955 -16.5146 -24.9268 -30.4102 -30.4102c-21.0596 -8.35938 -70.9902 -6.42969 -94.2998 -6.42969s-73.3096 -1.86035 -94.3096 6.42969
|
69 |
+
c-13.8955 5.4834 -24.9277 16.5146 -30.4102 30.4102c-8.32031 21.0703 -6.4707 71.0605 -6.4707 94.3398c0 23.2803 -1.84961 73.3301 6.43066 94.3301c5.48242 13.8955 16.5146 24.9268 30.4102 30.4102c21.0596 8.36035 71.0098 6.42969 94.3096 6.42969
|
70 |
+
s73.2998 1.86035 94.2998 -6.42969c13.8955 -5.4834 24.9268 -16.5146 30.4102 -30.4102zM224 110c0.0341797 0 0.0664062 -0.00195312 0.0996094 -0.00195312c45.2021 0 81.9004 36.6982 81.9004 81.9004v0.101562c0 45.2568 -36.7432 82 -82 82s-82 -36.7432 -82 -82
|
71 |
+
s36.7432 -82 82 -82zM309.38 258.3c10.5371 0.00585938 19.1299 8.52051 19.1299 19.0586v0.0820312c0 10.5635 -8.57617 19.1396 -19.1396 19.1396c-10.5645 0 -19.1406 -8.57617 -19.1406 -19.1396c0 -10.5645 8.57617 -19.1406 19.1406 -19.1406h0.00976562zM400 416
|
72 |
+
c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352zM382.88 126c1.49023 26.4404 1.49023 105.56 0 131.88c-1.21973 25.6299 -7.17969 48.3506 -25.8496 67.0498
|
73 |
+
c-18.6699 18.7002 -41.3701 24.5605 -67 25.8506c-26.4102 1.48926 -105.59 1.48926 -132 0c-25.5303 -1.2207 -48.2207 -7.12012 -67 -25.7803c-18.7803 -18.6602 -24.5605 -41.3701 -25.8506 -67c-1.48926 -26.3896 -1.48926 -105.58 0 -132
|
74 |
+
c1.2207 -25.5801 7.11035 -48.2998 25.8506 -67c18.7393 -18.7002 41.3701 -24.5596 67 -25.8496c26.4102 -1.49023 105.59 -1.49023 132 0c25.5996 1.21973 48.29 7.18945 67 25.8496s24.5596 41.3701 25.8496 67z" />
|
75 |
+
<glyph glyph-name="mixer" unicode="" horiz-adv-x="512"
|
76 |
+
d="M114.57 371.93l128.319 -172.399c1.44531 -1.99805 2.29785 -4.47461 2.29785 -7.12598c0 -2.65234 -0.852539 -5.10645 -2.29785 -7.10449l-128.89 -173.24c-8.33594 -11.1826 -21.6582 -18.3877 -36.666 -18.3877c-11.877 0 -22.7031 4.54004 -30.834 11.9785
|
77 |
+
c-17.8496 16.1797 -18.9697 43.5195 -4.74023 62.7695l92.3301 124.15l-91.7803 123c-14.25 19.25 -12.8291 46.5898 4.75 62.7695c8.13281 7.44141 18.9551 12.0264 30.8359 12.0264c15.0088 0 28.3389 -7.25 36.6748 -18.4365zM470.24 68.4199
|
78 |
+
c14.2295 -19.25 13.1094 -46.5898 -4.73047 -62.7695c-8.13184 -7.44141 -18.9551 -12.0264 -30.835 -12.0264c-15.0098 0 -28.3389 7.25 -36.6748 18.4355l-128.57 173.5c-1.44434 1.99805 -2.29688 4.47461 -2.29688 7.12598c0 2.65234 0.852539 5.10645 2.29688 7.10449
|
79 |
+
l128 172.12c8.33594 11.1855 21.6602 18.3926 36.6699 18.3926c11.8809 0 22.708 -4.54199 30.8408 -11.9824c17.5791 -16.1807 18.9697 -43.5205 4.75 -62.7705l-91.7803 -123z" />
|
80 |
+
<glyph glyph-name="shopify" unicode=""
|
81 |
+
d="M388.32 343.9c0.399414 -2.40039 54.4395 -367.9 54.4395 -367.9l-125.689 -31.2002v432.73c8.00977 -8.01074 29.6201 -28.8301 29.6201 -28.8301s35.2295 -0.799805 37.2295 -0.799805c2.25 -0.103516 4.08887 -1.81055 4.40039 -4zM288.65 377.53
|
82 |
+
c9.20996 2.7998 13.3604 4.18945 14.8096 4.39941c1.4502 0.209961 2.90625 0.34375 4.40039 0.400391v-438.33l-302.58 52.4805s36.7998 281.819 38 291.819c1.58984 13.2002 2 13.6006 16 18c0.399414 0.400391 19.6094 6.41016 47.2295 14.8105
|
83 |
+
c2.82031 21.2197 13.21 48.4395 26.8203 70.0596c19.25 30.8301 43.25 48.0303 67.25 48.8301c12.4199 0.370117 22.8203 -3.62988 30.8203 -12.4004c0.399414 -0.799805 1.19922 -1.19922 1.59961 -2c1.11914 0.267578 2.27051 0.40918 3.4707 0.40918
|
84 |
+
c0.176758 0 0.353516 -0.00292969 0.529297 -0.00878906c18.4199 0 34 -10.8496 44.4404 -30.8604c2.84082 -5.58887 5.28809 -11.5479 7.20996 -17.6094zM233.41 360.31c0.399414 13.21 -1.2002 32.8301 -8.00977 47.2002
|
85 |
+
c-6.80078 -3.2002 -12.8105 -8.41016 -17.21 -12.8096c-11.21 -12.3701 -20.8203 -31.1807 -25.6201 -50c17.21 5.20996 34.8398 10.8096 50.8398 15.6094zM200.58 423.56c-36.8301 -0.799805 -69.25 -58.8398 -78.0098 -97.2295c13.1699 4 27.5801 8.40039 42 12.8096
|
86 |
+
c4.7998 24.4502 16.4102 50.0303 31.6201 66.4502c6 6 12.4092 11.21 18.8096 14.4102c-3.99414 2.26367 -8.625 3.57422 -13.54 3.57422c-0.293945 0 -0.587891 -0.00488281 -0.879883 -0.0146484zM154.15 203.39c-0.400391 4.81055 0 23.6104 29.6191 25.6201
|
87 |
+
c20.4209 1.60059 37.6309 -6.39941 37.6309 -6.39941l15.21 57.5996s-13.2305 6.41016 -39.2305 4.80957c-67.25 -4.40918 -97.6699 -51.2393 -94.4697 -97.6797c3.59961 -55.2402 58.8398 -53.2402 60.8398 -86.8594
|
88 |
+
c0.410156 -8.01074 -4.80957 -19.6201 -18.8096 -20.4209c-21.6201 -1.59961 -48.4404 18.8203 -48.4404 18.8203l-10.4004 -44s26.8203 -28.8203 75.6504 -25.6201c40.4297 2.41016 68.4502 34.8301 65.6504 82.4707c-4 60.4395 -71.6504 66.0498 -73.25 91.6592z
|
89 |
+
M249.42 365.12c8.80664 2.7998 16.8135 5.2002 24.0205 7.2002c-4.01074 12.4297 -12.8105 32.8301 -31.2305 36.4297c5.61035 -14.4102 7.20996 -31.6299 7.20996 -43.6299z" />
|
90 |
+
<glyph glyph-name="deezer" unicode="" horiz-adv-x="576"
|
91 |
+
d="M451.46 203.29v72.71h124.54v-72.71h-124.54zM451.46 377.18h124.54v-72.6699h-124.54v72.6699zM451.46 102.12v72.6797h124.54v-72.6797h-124.54zM0 0.910156v72.6699h124.54v-72.6699h-124.54zM150.47 0.910156v72.6699h124.53v-72.6699h-124.53zM300.99 0.910156
|
92 |
+
l0.00976562 72.6699h124.53v-72.6699h-124.54zM451.46 0.910156v72.6699h124.54v-72.6699h-124.54zM301 102.12v72.6797h124.53v-72.6797h-124.53zM150.48 102.12l-0.0107422 72.6797h124.53v-72.6797h-124.52zM150.48 203.29l-0.0107422 72.71h124.53v-72.71h-124.52z" />
|
93 |
+
<glyph glyph-name="edge-legacy" unicode="" horiz-adv-x="512"
|
94 |
+
d="M25.71 219.84l0.349609 0.480469c0 -0.160156 0 -0.320312 -0.0693359 -0.480469h-0.280273zM486.29 204.33v-52.0703h-314.08c1.38965 -128.49 191.39 -124.06 272.26 -67.5693v-104.431c-47.3594 -28.5293 -156.779 -53.1699 -240.13 -21.3301
|
95 |
+
c-70.6201 27.1602 -119.92 100.551 -120.75 172c-1.09961 92.2207 45.7002 153.42 120.75 188.32c-15.79 -19.9297 -27.9697 -41.54 -34.3398 -78.9297h175.85c10.25 105 -99.4199 105 -99.4199 105c-103.3 -3.62012 -177.949 -63.6904 -220.37 -125
|
96 |
+
c14.5605 114.47 92.9404 219.96 232.83 219.68c85.0205 0 157.61 -39.8799 198.591 -113.27c21.0498 -37.9404 28.8096 -78.4004 28.8096 -122.4z" />
|
97 |
+
<glyph glyph-name="google-pay" unicode="" horiz-adv-x="640"
|
98 |
+
d="M105.72 233h99.6602c1.1543 -7.06152 1.75 -14.1768 1.75 -21.5635v-0.216797c0 -32.7598 -11.4102 -60.2998 -31.4102 -78.9102c-17.4502 -16.3799 -41.5293 -25.9092 -70 -25.9092c-41.4531 0.103516 -77.2598 24.0869 -94.3799 59v0.149414
|
99 |
+
c-7.21582 14.4512 -11.2773 30.957 -11.2773 48.1943c0 17.2383 4.06152 33.5352 11.2773 47.9863c17.1172 34.9355 52.9199 58.9502 94.3799 59.1094c0.344727 0.00390625 0.699219 0.00585938 1.04492 0.00585938c27 0 51.5469 -10.5928 69.7051 -27.8457
|
100 |
+
l-30.2793 -30.6201c-10.1777 9.95508 -24.0938 16.0898 -39.4404 16.0898c-0.357422 0 -0.713867 -0.00292969 -1.07031 -0.00976562c-27.5996 0 -50.9297 -18.9102 -59.2998 -44.3701v0c-2.12109 -6.44824 -3.26855 -13.3545 -3.26855 -20.5088
|
101 |
+
s1.14746 -14.043 3.26855 -20.4912c8.37012 -25.3096 31.7002 -44.2197 59.2998 -44.2197c14.2803 0 26.46 3.72949 36 10.2803c10.9629 7.39648 18.7705 19.0664 21.1406 32.5996h-57.1006v41.25zM495.13 237c10.1299 -9.33984 15.1201 -22.4502 15.0498 -39v-78.7002
|
102 |
+
h-22.6094v17.7197h-1c-9.79004 -14.5898 -22.71 -21.8896 -39 -21.8896c-13.79 0 -25.54 4.16992 -34.79 12.5098c-8.55078 7.29199 -13.9541 18.1143 -13.9541 30.2207c0 0.350586 0.00488281 0.701172 0.0136719 1.0498c0 13.25 4.98047 23.6699 14.8203 31.5596
|
103 |
+
c9.83984 7.89062 23.0498 11.7705 39.4902 11.7705c14.0898 0 25.54 -2.68066 34.6396 -7.75v5.50977c-0.00488281 8.47461 -3.75098 16.0723 -9.69043 21.2305c-6.02051 5.44141 -14.0078 8.76855 -22.75 8.78906c-13.2061 0 -23.626 -5.66699 -31.2598 -17
|
104 |
+
l-20.8496 13.2607c11.1602 16.5195 28.04 24.8594 50.5 24.8594c17.46 0 31.2598 -4.75977 41.3896 -14.1396zM475.9 147.7c7.7793 7.4502 11.7393 16.2295 11.7393 26.3594c-7.33984 5.94043 -17.6396 8.94043 -30.7998 8.78027c-9.54004 0 -17.75 -2.38965 -24.0703 -7
|
105 |
+
c-6.31934 -4.60938 -9.53906 -10.4199 -9.53906 -17.4199c-0.000976562 -0.0332031 -0.0166016 -0.0546875 -0.0166016 -0.0878906c0 -6.35449 3.05957 -12 7.78613 -15.542c4.8916 -3.90625 11.1035 -6.25391 17.8447 -6.25391
|
106 |
+
c0.162109 0 0.324219 0.000976562 0.485352 0.00390625c10.3965 0.0126953 19.8076 4.2793 26.5703 11.1602zM382.25 289.7c10.4268 -9.92188 16.9102 -23.9102 16.9102 -39.4248c0 -14.166 -5.4209 -27.0752 -14.2998 -36.7656
|
107 |
+
c-0.890625 -0.889648 -1.77051 -1.79004 -2.65039 -2.67969c-11.0098 -10.5703 -24.5098 -15.9297 -40.5098 -15.9297h-39v-75.6406h-23.6299v186.74h62.6699c0.379883 0.0078125 0.749023 0.0185547 1.13086 0.0185547c15.3701 0 29.2949 -6.23828 39.3789 -16.3184z
|
108 |
+
M365.67 227.47c5.5957 5.94141 9.03223 13.9971 9.03223 22.7939c0 9.18164 -3.7373 17.4961 -9.77246 23.5059c-5.78027 5.70801 -13.7236 9.23047 -22.4814 9.23047h-0.118164h-39.6299v-65.21h39.6299c0.328125 -0.0107422 0.640625 -0.0253906 0.970703 -0.0253906
|
109 |
+
c8.82031 0 16.7754 3.7334 22.3691 9.70508zM614.31 247h25.6904l-79 -183.87h-24.3496l29.3496 64.3203l-51.79 119.55h25.6904l37.4199 -91.7002h0.449219z" />
|
110 |
+
<glyph glyph-name="rust" unicode="" horiz-adv-x="512"
|
111 |
+
d="M508.52 198.25c2.09375 -1.2959 3.44043 -3.60449 3.44043 -6.24512c0 -2.6416 -1.39648 -4.95898 -3.49023 -6.25488l-21.8193 -13.5098c-0.169922 -1.95996 -0.34082 -3.91992 -0.550781 -5.87012l18.7207 -17.5c1.43457 -1.3418 2.33203 -3.24805 2.33203 -5.36523
|
112 |
+
c0 -3.15039 -1.98535 -5.83984 -4.77246 -6.88477l-24 -9c-0.540039 -1.88965 -1.08008 -3.78027 -1.66992 -5.65039l15 -20.8301c0.865234 -1.20508 1.37207 -2.68945 1.37207 -4.28516c0 -3.65234 -2.66992 -6.68555 -6.16211 -7.25488l-25.4199 -4.14941
|
113 |
+
c-0.900391 -1.71973 -1.79004 -3.4502 -2.73047 -5.15039l10.6807 -23.4199c0.420898 -0.925781 0.655273 -1.96875 0.655273 -3.05176c0 -1.50781 -0.455078 -2.91113 -1.23535 -4.07812c-1.29199 -1.97168 -3.51172 -3.26758 -6.04297 -3.26758
|
114 |
+
c-0.109375 0 -0.21875 0.00292969 -0.327148 0.0078125l-25.8203 0.910156c-1.18652 -1.4873 -2.38965 -2.9541 -3.60938 -4.40039l5.92969 -25.1602c0.125977 -0.538086 0.196289 -1.0957 0.196289 -1.67188c0 -4.0625 -3.29785 -7.36035 -7.35938 -7.36035
|
115 |
+
c-0.577148 0 -1.13867 0.0664062 -1.67676 0.192383l-25.1504 5.92969c-1.45312 -1.21289 -2.91992 -2.41602 -4.39941 -3.60938l0.90918 -25.8203c0.00390625 -0.0878906 -0.000976562 -0.167969 -0.000976562 -0.256836c0 -4.05664 -3.29395 -7.34961 -7.34961 -7.34961
|
116 |
+
c-1.08398 0 -2.1123 0.235352 -3.03906 0.65625l-23.4199 10.6807c-1.7002 -0.94043 -3.42969 -1.83008 -5.15039 -2.73047l-4.14941 -25.4199c-0.56543 -3.49121 -3.60254 -6.16309 -7.25293 -6.16309c-1.59961 0 -3.08105 0.512695 -4.28711 1.38281l-20.8203 15
|
117 |
+
c-1.87012 -0.599609 -3.75977 -1.12988 -5.64941 -1.67969l-9 -24c-1.05078 -2.7832 -3.7373 -4.7627 -6.88574 -4.7627c-2.11426 0 -4.02148 0.892578 -5.36426 2.32227l-17.5 18.7305c-1.9502 -0.219727 -3.88086 -0.390625 -5.88086 -0.560547l-13.5098 -21.8193
|
118 |
+
c-1.2959 -2.09375 -3.60352 -3.49023 -6.24512 -3.49023s-4.95898 1.39648 -6.25488 3.49023l-13.5098 21.8193c-1.95996 0.169922 -3.92969 0.34082 -5.87988 0.550781l-17.5 -18.7207c-1.34277 -1.42969 -3.24707 -2.32422 -5.36133 -2.32422
|
119 |
+
c-3.14844 0 -5.83789 1.98145 -6.88867 4.76465l-9 24c-1.88965 0.549805 -3.79004 1.08008 -5.65039 1.67969l-20.8301 -15c-1.20605 -0.870117 -2.69434 -1.37988 -4.29395 -1.37988c-3.64941 0 -6.68066 2.66895 -7.24609 6.16016l-4.14941 25.4199
|
120 |
+
c-1.71973 0.900391 -3.4502 1.79004 -5.14062 2.73047l-23.4297 -10.6807c-0.925781 -0.420898 -1.96094 -0.664062 -3.04492 -0.664062c-4.05664 0 -7.34961 3.29297 -7.34961 7.34961c0 0.0888672 0.00195312 0.176758 0.00488281 0.264648l0.919922 25.8203
|
121 |
+
c-1.4873 1.18652 -2.95703 2.38965 -4.41016 3.60938l-25.1602 -5.92969c-0.538086 -0.125977 -1.0957 -0.196289 -1.67188 -0.196289c-4.0625 0 -7.36035 3.29785 -7.36035 7.35938c0 0.577148 0.0664062 1.13867 0.192383 1.67676l5.92969 25.1602
|
122 |
+
c-1.21973 1.45312 -2.41992 2.91992 -3.59961 4.40039l-25.8301 -0.910156c-0.125977 -0.00683594 -0.243164 -0.0175781 -0.371094 -0.0175781c-2.5166 0 -4.72949 1.30664 -5.99902 3.27734c-0.776367 1.16504 -1.23047 2.57812 -1.23047 4.08301
|
123 |
+
c0 1.08691 0.236328 2.11816 0.660156 3.04688l10.6309 23.4297c-0.94043 1.69043 -1.83008 3.4209 -2.73047 5.14062l-25.4199 4.14941c-3.49219 0.569336 -6.16504 3.60938 -6.16504 7.26172c0 1.5957 0.509766 3.07324 1.375 4.27832l15 20.8301
|
124 |
+
c-0.599609 1.87012 -1.12988 3.76074 -1.67969 5.65039l-24 9c-2.78711 1.04492 -4.77148 3.73145 -4.77148 6.88184c0 2.11719 0.896484 4.02637 2.33105 5.36816l18.7197 17.5c-0.209961 1.9502 -0.379883 3.87012 -0.549805 5.87012l-21.8193 13.5098
|
125 |
+
c-2.09473 1.2959 -3.49023 3.60449 -3.49023 6.24512c0 2.6416 1.39551 4.95898 3.49023 6.25488l21.8594 13.5c0.169922 1.96973 0.339844 3.92969 0.549805 5.87988l-18.7197 17.5c-1.43457 1.3418 -2.33203 3.24805 -2.33203 5.36523
|
126 |
+
c0 3.15039 1.98535 5.83984 4.77246 6.88477l24 9c0.549805 1.88965 1.08984 3.79004 1.67969 5.66016l-15 20.8203c-0.865234 1.20508 -1.37207 2.68945 -1.37207 4.28516c0 3.65234 2.66992 6.68555 6.16211 7.25488l25.4102 4.13965
|
127 |
+
c0.899414 1.72949 1.79004 3.45996 2.72949 5.16016l-10.6602 23.4102c-0.423828 0.927734 -0.65918 1.97363 -0.65918 3.06055c0 1.50391 0.453125 2.90332 1.22949 4.06934c1.33398 1.97266 3.58398 3.26367 6.14258 3.26367
|
128 |
+
c0.0761719 0 0.152344 -0.00195312 0.227539 -0.00390625l25.8096 -0.910156c1.19043 1.48047 2.39062 2.95996 3.62012 4.41016l-5.92969 25.1602c-0.125977 0.538086 -0.196289 1.0957 -0.196289 1.67188c0 4.0625 3.29785 7.36035 7.35938 7.36035
|
129 |
+
c0.577148 0 1.13867 -0.0664062 1.67676 -0.192383l25.1504 -5.96973c1.41992 1.21973 2.92969 2.41992 4.41992 3.60938l-0.919922 25.8105c-0.00488281 0.104492 -0.000976562 0.201172 -0.000976562 0.307617c0 4.05566 3.29395 7.34961 7.35059 7.34961
|
130 |
+
c1.08398 0 2.11328 -0.235352 3.04004 -0.657227l23.4004 -10.6299c1.70996 0.939453 3.42969 1.83008 5.16016 2.72949l4.14941 25.4102c0.569336 3.49219 3.60938 6.16504 7.26172 6.16504c1.5957 0 3.07324 -0.509766 4.27832 -1.375l20.8203 -15
|
131 |
+
c1.87012 0.599609 3.76953 1.12988 5.66016 1.67969l9 24c1.04492 2.78711 3.73145 4.77148 6.88184 4.77148c2.11719 0 4.02637 -0.896484 5.36816 -2.33105l17.5 -18.7197c1.94922 0.209961 3.87988 0.379883 5.87988 0.549805l13.5098 21.8193
|
132 |
+
c1.2959 2.09473 3.60449 3.49023 6.24512 3.49023c2.6416 0 4.95898 -1.39551 6.25488 -3.49023l13.4805 -21.8398c1.96973 -0.169922 3.92969 -0.339844 5.87988 -0.549805l17.5 18.7197c1.3418 1.43457 3.24805 2.33301 5.36523 2.33301
|
133 |
+
c3.14941 0 5.83984 -1.98535 6.88477 -4.77246l9 -24c1.88965 -0.540039 3.7793 -1.08008 5.63965 -1.66992l20.8604 14.9697c1.20508 0.865234 2.68945 1.37207 4.28516 1.37207c3.65234 0 6.68555 -2.66992 7.25488 -6.16211l4.14941 -25.4199
|
134 |
+
c1.71973 -0.889648 3.4502 -1.79004 5.15039 -2.73047l23.4199 10.7305c0.926758 0.421875 1.96289 0.666016 3.04688 0.666016c4.05664 0 7.34961 -3.29395 7.34961 -7.35059c0 -0.105469 -0.00195312 -0.210938 -0.00683594 -0.31543l-0.910156 -25.8203
|
135 |
+
c1.4873 -1.18652 2.9541 -2.38965 4.40039 -3.60938l25.1602 5.92969c0.538086 0.125977 1.0957 0.196289 1.67188 0.196289c4.0625 0 7.36035 -3.29785 7.36035 -7.35938c0 -0.577148 -0.0664062 -1.13867 -0.192383 -1.67676l-5.87988 -25.1602
|
136 |
+
c1.21387 -1.45312 2.41699 -2.91992 3.61035 -4.40039l25.8193 0.910156c0.0878906 0.00292969 0.167969 -0.000976562 0.256836 -0.000976562c4.05664 0 7.34961 -3.29395 7.34961 -7.35059c0 -1.08301 -0.234375 -2.1123 -0.65625 -3.03809l-10.6797 -23.4199
|
137 |
+
c0.939453 -1.7002 1.83008 -3.41992 2.72949 -5.15039l25.4199 -4.14941c3.49219 -0.569336 6.16504 -3.60938 6.16504 -7.26172c0 -1.5957 -0.509766 -3.07324 -1.375 -4.27832l-15 -20.8301c0.589844 -1.86035 1.12988 -3.76074 1.66992 -5.64062l24 -9
|
138 |
+
c2.78711 -1.04492 4.77148 -3.73145 4.77148 -6.88184c0 -2.11719 -0.896484 -4.02637 -2.33105 -5.36816l-18.7197 -17.5c0.209961 -1.94922 0.379883 -3.87988 0.549805 -5.87988zM357.52 69.1699l32.1406 -6.87988c6.28125 6.3125 12.0029 12.9395 17.3398 20.0898
|
139 |
+
h-79.0498c-12.5 0 -24.21 17.6396 -27.1006 26.46c-2.88965 7.86035 -7.14941 32.4502 -9.05957 40c-6.12988 24.5898 -25.3799 25.8701 -29.79 25.8701h-48.4805l-0.0498047 -34.3496h44.8301c1.71973 0 2.89062 -0.34082 2.89062 -1.91016v-54.1904
|
140 |
+
c0 -1.62012 -1.1709 -1.91016 -2.89062 -1.91016h-153.17c5.01953 -6.80957 10.3848 -13.1465 16.2598 -19.21l31.5107 6.76074c0.935547 0.199219 1.89746 0.294922 2.89258 0.294922c6.66211 0 12.2344 -4.70801 13.5674 -10.9756l7.63965 -35.6602
|
141 |
+
c23.9688 -11.1318 50.9941 -17.3506 79.1416 -17.3506c27.5205 0 53.665 5.94141 77.2188 16.6113l7.63965 35.6699c1.34668 6.27246 6.91797 10.9893 13.5908 10.9893c1.00488 0 1.98438 -0.106445 2.92871 -0.30957zM383.29 34.6797
|
142 |
+
c0 0.00585938 -0.0576172 0.0107422 -0.0576172 0.0166016c0 8.25977 -6.58887 14.9922 -14.792 15.2236h-0.44043c-8.3877 -0.0273438 -15.1904 -6.8457 -15.1904 -15.2402c0 -8.41113 6.8291 -15.2393 15.2402 -15.2393s15.2402 6.82812 15.2402 15.2393zM157.67 35.3604
|
143 |
+
c0 0.00195312 -0.0576172 0.00488281 -0.0576172 0.0078125c0 8.24707 -6.56055 14.9736 -14.7422 15.2422h-0.450195c-8.40625 -0.00585938 -15.2295 -6.83203 -15.2295 -15.2402c0 -8.41113 6.82812 -15.2402 15.2393 -15.2402c8.4082 0 15.2344 6.82324 15.2402 15.2305z
|
144 |
+
M69.5703 213.85c-0.725586 -6.69922 -1.0625 -13.2754 -1.0625 -20.167c0 -17.8242 2.49023 -35.0713 7.14258 -51.4131h53.5996v119.73h-26.5596l6.76953 -15.2197c0.765625 -1.7207 1.20801 -3.62988 1.20801 -5.63281c0 -5.66406 -3.39941 -10.54 -8.26758 -12.6973z
|
145 |
+
M58.3096 249.91c0.00292969 -8.4082 6.84375 -15.2236 15.2529 -15.2236c8.41113 0 15.2402 6.82812 15.2402 15.2393c0 8.26562 -6.59375 15.0029 -14.8027 15.2344h-0.459961c-8.40625 -0.00585938 -15.2305 -6.83203 -15.2305 -15.2402v-0.00976562zM213.47 225.42
|
146 |
+
h58.7002c12.4902 0 27.6797 4.41016 27.6797 16.7002c0 14.8496 -19.79 18.6201 -23.0693 18.6201h-63.2607zM399 141.29c10.3096 1.12988 22 5.70996 22.0195 26.46v8.82031c0 1.85938 0.780273 3.12988 2.69043 3.12988h19.2803
|
147 |
+
c0.349609 4.6709 0.529297 9.02832 0.529297 13.7891c0 6.32812 -0.314453 12.583 -0.929688 18.751l-34.5898 15.3301c-4.86621 2.19434 -8.23828 7.0918 -8.23828 12.7725c0 1.97363 0.410156 3.85352 1.14844 5.55762l18 40.5693
|
148 |
+
c-26.8047 47.0127 -73.3965 81.1328 -128.37 91.4307l-26.2598 -25c-2.48535 -2.39062 -5.86523 -3.86523 -9.58203 -3.86523c-3.94141 0 -7.5 1.6543 -10.0186 4.30469l-23.4697 24.6006c-41.29 -7.80371 -77.9434 -29.083 -104.89 -59.1904h198.899
|
149 |
+
c4.99023 0 23.5107 -2.23047 40.2705 -13.2305c11.9102 -7.88965 29.3994 -23.96 29.3994 -49.4795c0 -23.6201 -19.5996 -41.3096 -38.46 -53.2598c15.1807 -12 24.79 -18.9102 30.5703 -51.4004c1.37012 -5.96973 12.2002 -11.2197 22 -10.0898zM240 387.79
|
150 |
+
c0 -0.0078125 -0.00683594 -0.015625 -0.00683594 -0.0244141c0 -8.41113 6.82812 -15.2393 15.2402 -15.2393c8.41113 0 15.2393 6.82812 15.2393 15.2393c0 8.26855 -6.59863 15.0078 -14.8125 15.2344h-0.450195c-8.38672 -0.0166016 -15.1934 -6.82324 -15.21 -15.21z
|
151 |
+
M436.84 234c0.0742188 -0.000976562 0.141602 -0.00195312 0.21582 -0.00195312c8.41211 0 15.2422 6.83008 15.2422 15.2422c0 8.33691 -6.70898 15.1201 -15.0176 15.2402h-0.44043c-8.41113 0 -15.2402 -6.8291 -15.2402 -15.2402s6.8291 -15.2402 15.2402 -15.2402z" />
|
152 |
+
<glyph glyph-name="tiktok" unicode=""
|
153 |
+
d="M448 238.09h-0.512695c-45.5098 0 -87.8428 14.6162 -122.257 39.25v-178.72c-0.0332031 -89.6855 -72.8574 -162.489 -162.551 -162.489c-89.7139 0 -162.55 72.8359 -162.55 162.55s72.8359 162.55 162.55 162.55c7.62891 0 14.9697 -0.521484 22.3203 -1.54004
|
154 |
+
v-89.8906c-7.06836 2.22363 -14.5889 3.42285 -22.3877 3.42285c-41.1836 0 -74.6201 -33.4365 -74.6201 -74.6201c0 -41.1846 33.4365 -74.6201 74.6201 -74.6201c41.1846 0 74.6182 33.4541 74.6182 74.6377v349.38h88
|
155 |
+
c-0.00292969 -0.337891 -0.00488281 -0.676758 -0.00488281 -1.01562c0 -7.25977 0.638672 -14.2441 1.86426 -21.1543v0c6.28613 -33.5771 26.1982 -62.3613 53.9102 -80.2197c19.1787 -12.6816 42.1592 -20.0674 66.8506 -20.0674
|
156 |
+
c0.00878906 0 0.140625 -0.0732422 0.149414 -0.0732422v-87.3799z" />
|
157 |
+
<glyph glyph-name="unsplash" unicode=""
|
158 |
+
d="M448 217.83v-249.83h-448v249.83h141.13v-124.92h165.74v124.92h141.13zM306.87 416v-124.91h-165.74v124.91h165.74z" />
|
159 |
+
<glyph glyph-name="cloudflare" unicode="" horiz-adv-x="640"
|
160 |
+
d="M407.906 128.087c12.1836 -0.574219 22.2178 -5.50977 28.2334 -13.9023c6.54883 -9.09961 8 -21.5 4.10059 -34.8994l-3.27344 -11.2656c-0.681641 -2.28125 -2.7793 -3.95508 -5.27051 -4c-0.0419922 -0.000976562 -0.0791016 -0.0195312 -0.12207 -0.0195312
|
161 |
+
l-426.101 0.0507812c-2.26172 0.00878906 -4.13379 1.69238 -4.44434 3.87109c-0.676758 4.58691 -1.02637 9.18457 -1.0293 13.958c0 52.3926 41.9238 95.0137 94.2002 96.5303c-1.37402 5.39062 -2.05469 10.9785 -2.05469 16.7939
|
162 |
+
c0 37.5967 30.5234 68.1201 68.1201 68.1201c15.3838 0 29.583 -5.11035 40.9912 -13.7246c20.542 59.582 77.085 102.308 143.607 102.308c72.1562 0 132.629 -50.417 148.085 -117.914c0.107422 -0.513672 0.164062 -1.03906 0.164062 -1.58398v-0.046875
|
163 |
+
c0 -0.0332031 -0.00292969 -0.0683594 -0.00292969 -0.101562c0 -0.998047 -0.18457 -1.9541 -0.521484 -2.83496l-13.2861 -34.542c-10.4756 -27.21 -40.3906 -49.5234 -68.0215 -50.7842l-232.94 -2.93555c-2.48145 -0.173828 -4.5625 -1.82227 -5.36035 -4.07617
|
164 |
+
c-0.178711 -0.493164 -0.275391 -1.03223 -0.275391 -1.58691c0 -0.945312 0.283203 -1.8252 0.768555 -2.55957c0.8125 -1.14258 2.13379 -1.89355 3.63281 -1.92676zM513.856 226.9c69.668 0 126.144 -56.2002 126.147 -125.533
|
165 |
+
c0 -0.0458984 -0.0175781 -0.0644531 -0.0175781 -0.110352c0 -11.7441 -1.62598 -23.1123 -4.66406 -33.8896c-0.571289 -1.94629 -2.37012 -3.37012 -4.5 -3.37012h-0.0390625h-175.91c-0.0478516 0 -0.0898438 0.0166016 -0.135742 0.0166016
|
166 |
+
c-1.44727 0.0595703 -2.60449 1.25391 -2.60449 2.71484c0 0.339844 0.0634766 0.666016 0.176758 0.96582l3.69531 9.60547c10.4766 27.21 40.3916 49.5146 68.1455 50.7842l51.125 2.93945c2.47559 0.179688 4.55078 1.82617 5.35059 4.07422
|
167 |
+
c0.177734 0.492188 0.274414 1.03027 0.274414 1.58301c0 0.957031 -0.291016 1.84766 -0.788086 2.58594c-0.785156 1.11035 -2.06152 1.84375 -3.51074 1.89453l-49.1992 2.93848c-12.1846 0.577148 -22.2188 5.5 -28.2383 13.9004
|
168 |
+
c-6.54883 9.10352 -8 21.4902 -4.09961 34.8896l9.07617 31.1934c0.447266 1.45508 1.75391 2.53613 3.32422 2.65332c2.12012 0.101562 4.25 0.164062 6.3916 0.164062z" />
|
169 |
+
<glyph glyph-name="guilded" unicode=""
|
170 |
+
d="M443.427 384c0.00195312 -0.518555 0.0253906 -0.367188 0.0253906 -0.885742c0 -29.1934 -2.00293 -57.9229 -5.87891 -86.0576h-336.147s0.366211 -52.0498 27.0918 -105.883c27.458 -51.8174 65.3164 -85.1025 96.5488 -98.3623
|
171 |
+
c32.2695 15.082 63.4434 41.2695 80.4561 69.4824h-88.5898c-22.9229 18.998 -40.96 50.5146 -45.0996 86.9443h259.889c-12.8154 -58.5713 -40.0088 -111.838 -65.916 -145.762c-35.8154 -46.7773 -84.2695 -82.8105 -140.55 -103.477
|
172 |
+
c-1.25586 0 -113.21 33.8652 -177.267 161.642c-21.2266 42.2988 -43.418 119.099 -43.418 222.358h438.855z" />
|
173 |
+
<glyph glyph-name="hive" unicode="" horiz-adv-x="512"
|
174 |
+
d="M260.353 193.122c0.191406 -0.329102 0.300781 -0.716797 0.300781 -1.12402c0 -0.404297 -0.107422 -0.783203 -0.294922 -1.11133l-127.412 -221.777c-0.380859 -0.666992 -1.09473 -1.11621 -1.91602 -1.11621c-0.818359 0 -1.53223 0.445312 -1.91406 1.10645
|
175 |
+
l-128.816 221.778c-0.189453 0.328125 -0.297852 0.713867 -0.297852 1.12012s0.108398 0.787109 0.297852 1.11523l127.409 221.777c0.380859 0.666016 1.09473 1.11523 1.91602 1.11523c0.817383 0 1.53125 -0.445312 1.91309 -1.10547zM299.431 218.835l-110.624 193.824
|
176 |
+
c-0.189453 0.327148 -0.298828 0.709961 -0.298828 1.11523c0 1.21973 0.983398 2.21094 2.19922 2.22559h66.5078c0.81543 -0.00195312 1.52539 -0.447266 1.90039 -1.11133l110.625 -193.823c0.189453 -0.328125 0.298828 -0.709961 0.298828 -1.11523
|
177 |
+
c0 -1.21973 -0.983398 -2.21191 -2.19922 -2.22656h-66.5088c-0.81543 0.00292969 -1.52441 0.448242 -1.90039 1.11133zM511.7 193.114c0.1875 -0.328125 0.294922 -0.711914 0.294922 -1.11621c0 -0.405273 -0.107422 -0.78418 -0.294922 -1.1123l-126.808 -221.773
|
178 |
+
c-0.376953 -0.664062 -1.08887 -1.11035 -1.90527 -1.1123h-66.6006c-1.21875 0.0117188 -2.20312 1.00684 -2.20312 2.22852c0 0.404297 0.108398 0.78418 0.297852 1.11133l126.171 220.66l-126.168 220.66c-0.189453 0.327148 -0.298828 0.708984 -0.298828 1.11426
|
179 |
+
c0 1.2207 0.985352 2.21387 2.2041 2.22559h66.6006c0.818359 -0.000976562 1.53125 -0.447266 1.91016 -1.1123zM366.016 163.083c1.2168 -0.0136719 2.19922 -1.00879 2.19922 -2.22852c0 -0.405273 -0.108398 -0.785156 -0.297852 -1.1123l-108.8 -190.631
|
180 |
+
c-0.375 -0.664062 -1.08496 -1.10938 -1.90039 -1.11133h-66.5088c-1.21582 0.0146484 -2.19824 1.00879 -2.19824 2.22852c0 0.405273 0.108398 0.785156 0.297852 1.1123l108.801 190.631c0.374023 0.664062 1.08398 1.10938 1.89941 1.11133h66.5078z" />
|
181 |
+
<glyph glyph-name="innosoft" unicode=""
|
182 |
+
d="M422.559 288.29l0.00292969 -190.955c0.0253906 -12.4102 -5.87793 -22.8965 -16.623 -29.5283l-164.527 -94.9951c-5.08008 -3.04102 -11.0938 -4.79004 -17.4404 -4.79004c-6.11523 0 -11.8545 1.62402 -16.8096 4.46387l-118.794 68.583l247.049 142.627v-56
|
183 |
+
l-150.051 -86.627l32.7227 -18.9004c1.74805 -0.97168 3.78613 -1.52441 5.92676 -1.52441c2.18457 0 4.23633 0.576172 6.01074 1.58691l138.111 79.7441c3.54883 2.08008 5.91992 5.92578 5.91992 10.332v0.0361328v138.281l-308.407 -178.066
|
184 |
+
c-3.94629 -2.25293 -8.57129 -3.54102 -13.4365 -3.54102c-4.83301 0 -9.37207 1.27051 -13.2998 3.49609c-8.39453 4.75586 -13.3037 13.293 -13.4736 23.4287v191.5c0.518555 12.7334 6.65527 23.0039 17.2891 29.124l164.601 95.0254
|
185 |
+
c11.5 5.98535 22.8076 5.85938 33.7998 -0.269531l118.513 -68.4072l-247.061 -142.637v56l150.062 86.6367l-32.6553 18.8525c-1.76367 0.998047 -3.82715 1.56738 -5.99609 1.56738c-2.15137 0 -4.17285 -0.55957 -5.92578 -1.54199l-138.076 -79.7129
|
186 |
+
c-3.60352 -2.04785 -6.02734 -5.90723 -6.04688 -10.3398v-138.387l308.539 178.142c3.88281 2.24414 8.44531 3.5293 13.25 3.5293c4.70801 0 9.13086 -1.23438 12.9609 -3.39648c8.16406 -4.63184 13.6914 -13.3291 13.8652 -23.3369z" />
|
187 |
+
<glyph glyph-name="instalod" unicode="" horiz-adv-x="512"
|
188 |
+
d="M153.384 -32l50.8447 146.789l298.325 57.4463l-115.44 -204.235h-233.729zM504.726 207.922l-144.495 -27.8223l-204.562 235.9h231.444zM124.386 399.191l101.241 -116.752l-102.391 -295.594l-115.962 205.154z" />
|
189 |
+
<glyph glyph-name="octopus-deploy" unicode="" horiz-adv-x="512"
|
190 |
+
d="M455.6 98.7998c12.4395 -10.5996 42.6348 -26.4775 42.5244 -45.2666c-0.15332 -24.6084 -48.4248 5.24121 -53.8184 9.51953c6.13965 -10.7275 66.998 -74.1787 28.2627 -78.6943c-35.6562 -4.1582 -67.1406 45.6416 -88.5615 67.0225
|
191 |
+
c-36 35.9082 -29.7373 -43.5332 -29.8994 -59.9443c-0.257812 -25.9082 -18.5586 -78.4209 -51.4121 -44.2207c-27.1387 28.2314 -16.873 73.2607 -35.7383 104.622c-20.6641 34.3535 -55.0361 -34.3535 -63.627 -46.9258
|
192 |
+
c-9.59668 -14.042 -57.6094 -82.041 -76.709 -45.8125c-15.499 29.4004 9.2793 75.5127 21.4629 102.103c-4.44336 -9.65723 -35.9297 -23.9414 -45.1299 -28.5879c-20.7871 -10.4971 -41.8867 -16.7256 -65.2646 -15.0449
|
193 |
+
c-27.8916 2.00098 -38.3789 11.6572 8.42773 41.8574c38.5615 24.8389 83.8613 67.4209 66.6621 117.582c-9.37305 27.3301 -22.3574 50.7568 -24.0898 80.2998c-0.209961 3.56152 -0.25 7.08008 -0.25 10.6924c0 22.0957 3.9707 43.2715 11.2373 62.8516
|
194 |
+
c34.5752 92.8066 137.363 136.747 230.253 108.848c86.0371 -25.8398 145.23 -125.74 109.575 -212.79c-20.5752 -50.2334 -29.7959 -89.0205 16.0947 -128.11z" />
|
195 |
+
<glyph glyph-name="perbyte" unicode=""
|
196 |
+
d="M305.314 163.422c15.9307 0.000976562 28.5732 -4.5 37.9277 -13.5059s14.0322 -20.7842 14.0322 -35.335c0 -14.8936 -4.58984 -26.9307 -13.7705 -36.1113c-9.17969 -9.17969 -21.9111 -13.7695 -38.1934 -13.7695h-58.7109v98.7217h58.7148zM149.435 319.301
|
197 |
+
c15.9346 0.00488281 28.5791 -4.49609 37.9316 -13.5039s14.0283 -20.7871 14.0283 -35.3379c0 -14.8896 -4.58984 -26.9258 -13.7695 -36.1084c-9.17969 -9.18164 -21.9102 -13.7725 -38.1904 -13.7725h-58.7109v98.7227h58.7109zM366.648 416.002
|
198 |
+
c22.4385 -0.0253906 41.5996 -7.98145 57.4854 -23.8672s23.8418 -35.0479 23.8672 -57.4854v-285.296c-0.0253906 -22.4375 -7.98145 -41.5996 -23.8672 -57.4854s-35.0479 -23.8418 -57.4854 -23.8672h-285.295c-22.4385 0.0253906 -41.6006 7.98145 -57.4863 23.8672
|
199 |
+
s-23.8418 35.0479 -23.8672 57.4863v285.296c0.0253906 22.4375 7.98145 41.5996 23.8672 57.4854s35.0479 23.8408 57.4863 23.8662h285.295zM430.282 49.3535l-0.000976562 285.296c-0.0195312 17.5518 -6.24219 32.54 -18.668 44.9658s-27.4141 18.6484 -44.9648 18.668
|
200 |
+
h-285.295c-17.5508 -0.0195312 -32.5391 -6.24219 -44.9648 -18.668s-18.6484 -27.4141 -18.668 -44.9658v-285.296c0.0195312 -17.5508 6.24219 -32.5391 18.668 -44.9648s27.4141 -18.6484 44.9648 -18.668h285.295c17.5518 0.0195312 32.54 6.24219 44.9658 18.668
|
201 |
+
s18.6484 27.4141 18.668 44.9648zM305.313 319.301c15.9307 0.00488281 28.5732 -4.49609 37.9277 -13.5039s14.0322 -20.7871 14.0322 -35.3379c0 -14.8896 -4.58984 -26.9258 -13.7705 -36.1084c-9.17969 -9.18164 -21.9111 -13.7725 -38.1934 -13.7725h-58.7109v98.7227
|
202 |
+
h58.7148z" />
|
203 |
+
<glyph glyph-name="uncharted" unicode=""
|
204 |
+
d="M171.73 215.187c-0.0605469 -0.00195312 -0.12207 -0.000976562 -0.183594 -0.000976562c-0.673828 0 -1.3125 0.148438 -1.88672 0.414062l-115.933 67.9004v-85.2891c-0.0830078 -2.71289 -1.16895 -5.18555 -2.89941 -7.03906
|
205 |
+
c-1.6748 -1.54297 -3.91113 -2.4873 -6.36621 -2.4873c-0.0859375 0 -0.172852 0.000976562 -0.258789 0.00390625c-0.146484 -0.0078125 -0.296875 -0.00585938 -0.444336 -0.00585938c-1.65332 0 -3.2002 0.455078 -4.52344 1.24707l-22.3584 12.835
|
206 |
+
c-2.9541 1.50684 -4.9707 4.57031 -4.9707 8.1123c0 0.0566406 0.000976562 0.112305 0.00195312 0.168945v115.107c0.118164 3.54102 2.08105 6.61523 4.96875 8.28027l100.2 57.9668c1.40625 0.787109 3.04688 1.23535 4.77148 1.23535s3.3457 -0.448242 4.75098 -1.23535
|
207 |
+
l22.3584 -12.8389c2.9541 -1.50586 4.96973 -4.56934 4.96973 -8.11035c0 -0.0566406 -0.000976562 -0.113281 -0.00195312 -0.169922c-0.117188 -3.54199 -2.08008 -6.61523 -4.96777 -8.28125l-74.5293 -43.4727l116.757 -68.3184
|
208 |
+
c1.16016 -0.680664 1.96191 -1.89941 2.07129 -3.31152c0 -1.65723 -0.414062 -3.31348 -1.65723 -4.1416c-7.34473 -6.5459 -12.6475 -15.3301 -14.8994 -25.2559c-0.810547 -1.94629 -2.72949 -3.31348 -4.96777 -3.31348h-0.00195312zM323.272 70.2695
|
209 |
+
c4.96777 0 9.52734 -4.55469 10.3506 -9.1084v-26.085c-0.117188 -3.54199 -2.08105 -6.61523 -4.96777 -8.28125l-100.2 -57.5527c-1.48633 -0.772461 -3.18359 -1.22363 -4.96875 -1.24219c-0.146484 -0.00683594 -0.296875 -0.00488281 -0.444336 -0.00488281
|
210 |
+
c-1.65332 0 -3.2002 0.455078 -4.52441 1.24707l-100.199 57.5527c-2.95508 1.50586 -4.9707 4.56934 -4.9707 8.11035c0 0.0576172 0 0.114258 0.000976562 0.170898v26.085c0.0585938 5.22852 4.29492 9.46484 9.52344 9.52246
|
211 |
+
c0.146484 0.0078125 0.296875 0.00585938 0.444336 0.00585938c1.65332 0 3.20117 -0.456055 4.52441 -1.24707l74.5293 -43.0615v133.323c0.0615234 2.62891 2.21387 4.74609 4.85742 4.74609c0.469727 0 0.922852 -0.0673828 1.35254 -0.191406
|
212 |
+
c4.39453 -1.18066 8.99414 -1.80664 13.7588 -1.80664c5.29102 0 10.4023 0.776367 15.2256 2.2207c3.31055 1.24512 6.21094 -1.65527 6.21094 -4.55469v-134.152l74.5273 43.0625c1.50684 0.730469 3.2002 1.17383 4.96973 1.24121zM286.007 370
|
213 |
+
c-12.6943 0 -23 10.3057 -23 23s10.3057 23 23 23s23 -10.3057 23 -23s-10.3057 -23 -23 -23zM349.634 380.086c12.6943 0 23 -10.3057 23 -23s-10.3057 -23 -23 -23c-12.6934 0 -23 10.3057 -23 23s10.3066 23 23 23zM412.816 296.4c-12.6943 0 -23 10.3057 -23 23
|
214 |
+
c0 12.6934 10.3057 23 23 23c12.6934 0 23 -10.3066 23 -23c0 -12.6943 -10.3066 -23 -23 -23zM349.634 305.6c12.6943 0 23 -10.3057 23 -23c0 -12.6934 -10.3057 -23 -23 -23c-12.6934 0 -23 10.3066 -23 23c0 12.6943 10.3066 23 23 23zM286.007 222.356
|
215 |
+
c-12.6943 0 -23 10.3018 -23 22.9951v0.00488281c0 12.6934 10.3057 23 23 23s23 -10.3066 23 -23c0 -12.6943 -10.3057 -23 -23 -23zM223.933 185.998c-12.6934 0 -23 10.3018 -23 22.9961v0.00390625c0 12.6943 10.3066 23 23 23c12.6943 0 23 -10.3057 23 -23
|
216 |
+
s-10.3057 -23 -23 -23zM412.816 268.356c12.6924 0 22.9971 -10.3086 23 -23c0 -12.6943 -10.3066 -23 -23 -23c-12.6943 0 -23 10.3057 -23 23c0 12.6934 10.3057 23 23 23zM412.816 196.084c12.6924 0 22.9971 -10.3076 23 -23c0 -12.6943 -10.3066 -23 -23 -23
|
217 |
+
c-12.6943 0 -23 10.3057 -23 23s10.3057 23 23 23z" />
|
218 |
+
<glyph glyph-name="watchman-monitoring" unicode="" horiz-adv-x="512"
|
219 |
+
d="M256 432c132.548 0 240 -107.452 240 -240s-107.452 -240 -240 -240s-240 107.452 -240 240s107.452 240 240 240zM121.69 18.8779l27.6846 204.861l-9.46777 7.39941c-2.98242 2.34082 -4.89062 5.9668 -4.89062 10.0479
|
220 |
+
c0 0.100586 0.000976562 0.201172 0.00292969 0.301758c0 7.04883 0.144531 19.5488 0.144531 19.5488l13.9434 2.0127l0.120117 10.9668l-102.899 -17.8945c-6.20508 -20.251 -9.58691 -41.7412 -9.58691 -64.0137v-0.108398c0 -70.3223 33.3145 -132.972 84.9492 -173.122
|
221 |
+
zM227.382 302.148l0.0400391 -3.61816l193.512 37.7002c-40.1152 46.0273 -99.1426 75.0244 -164.934 75.0244c-74.4863 0 -140.374 -37.3623 -180.018 -94.2998l73.5068 -19.1758l0.0478516 4.36914l-8.48145 7.61719s-6.93359 5.38086 0.144531 9.34473
|
222 |
+
c7.18652 4.02539 39.5283 34.5 39.5283 34.5c7.20312 7.34668 10.1123 5.47656 15.4609 0c0 0 32.3418 -30.4766 39.5293 -34.5c7.07715 -3.96387 0.143555 -9.34473 0.143555 -9.34473zM261.445 -27.1211c118.386 2.90918 213.813 100.047 213.813 219.121
|
223 |
+
c-0.0107422 17.2881 -2.04297 33.9951 -5.85059 50.1299l-241.711 31.3916l0.116211 -10.4746l13.9424 -2.0127s0.144531 -12.5049 0.144531 -19.5488c0.00195312 -0.100586 0.0126953 -0.19043 0.0126953 -0.290039c0 -4.08203 -1.91797 -7.71973 -4.90137 -10.0596
|
224 |
+
l-9.4668 -7.39941z" />
|
225 |
+
<glyph glyph-name="wodu" unicode="" horiz-adv-x="640"
|
226 |
+
d="M178.414 108.294h-37.3145l-28.9336 116.231h-0.477539l-28.4609 -116.231h-38.0273l-45.2002 170.76h37.5479l27.0264 -116.23h0.477539l29.6553 116.23h35.1572l29.1777 -117.667h0.479492l27.9785 117.667h36.8311zM271.4 235.287
|
227 |
+
c38.9834 0 64.0996 -25.8281 64.0996 -65.291c0 -39.2217 -25.1113 -65.0498 -64.0996 -65.0498c-38.7432 0 -63.8555 25.8281 -63.8555 65.0498c0.00195312 39.4629 25.1143 65.291 63.8555 65.291zM271.4 130.534c23.1992 0 30.1328 19.8516 30.1328 39.4619
|
228 |
+
c0 19.8516 -6.93457 39.7002 -30.1328 39.7002c-27.7002 0 -29.8945 -19.8506 -29.8945 -39.7002c0.00195312 -19.6104 6.9375 -39.4619 29.8945 -39.4619zM435.084 124.078h-0.477539c-7.89355 -13.3926 -21.7656 -19.1318 -37.5488 -19.1318
|
229 |
+
c-37.3096 0 -55.4844 32.0449 -55.4844 66.2461c0 33.2422 18.415 64.0947 54.7666 64.0947c14.5889 0 28.9385 -6.21777 36.8311 -18.416h0.240234v62.1826h33.96v-170.76h-32.2871v15.7842zM405.428 209.7c-22.2393 0 -29.8936 -19.1338 -29.8936 -39.4629
|
230 |
+
c0 -19.3711 8.84766 -39.7002 29.8936 -39.7002c22.4824 0 29.1787 19.6133 29.1787 39.9395c0 20.0879 -7.1748 39.2236 -29.1787 39.2236zM592.96 108.294h-32.2871v17.2188h-0.717773c-8.60938 -13.8701 -23.4365 -20.5664 -37.7861 -20.5664
|
231 |
+
c-36.1133 0 -45.2002 20.3281 -45.2002 50.9404v76.0527h33.959v-69.8398c0 -20.3281 5.97949 -30.3721 21.7656 -30.3721c18.415 0 26.3057 10.2832 26.3057 35.3936v64.8184h33.9609v-123.646zM602.453 145.124h37.5469v-36.8301h-37.5469v36.8301z" />
|
232 |
<glyph glyph-name="twitter-square" unicode=""
|
233 |
d="M400 416c26.5 0 48 -21.5 48 -48v-352c0 -26.5 -21.5 -48 -48 -48h-352c-26.5 0 -48 21.5 -48 48v352c0 26.5 21.5 48 48 48h352zM351.1 257.2c12.8008 9.2998 24 20.8994 32.9004 34c-11.7998 -5.10059 -24.5996 -8.7998 -37.7998 -10.2002
|
234 |
c13.5996 8.09961 23.8994 20.9004 28.7998 36.0996c-12.5996 -7.5 -26.7998 -13 -41.5996 -15.7998c-12 12.7998 -29 20.7002 -47.9004 20.7002c-40 0 -73.2998 -36.0996 -64 -80.5996c-54.4004 2.7998 -102.9 28.7998 -135.2 68.5996
|
235 |
+
c-5.7002 -9.7002 -8.89941 -20.9004 -8.89941 -33.0996c0 -0.0371094 -0.0664062 -0.0322266 -0.0664062 -0.0683594c0 -22.749 11.6309 -42.8018 29.2656 -54.5322c-10.6992 0.400391 -20.8994 3.40039 -29.5996 8.2998v-0.799805c0 -31.8994 22.5 -58.2998 52.5 -64.3994
|
236 |
c-10.4004 -2.7002 -19.5 -2.7002 -29.5996 -1.2002c8.2998 -26 32.5 -44.9004 61.2998 -45.5c-22.5 -17.6006 -50.7002 -28 -81.4004 -28c-5.39941 0 -10.5 0.200195 -15.7998 0.799805c29 -18.5996 63.5 -29.4004 100.7 -29.4004c120.6 0 186.6 99.9004 186.6 186.601
|
237 |
c0 2.7998 0 5.7002 -0.200195 8.5z" />
|
238 |
<glyph glyph-name="facebook-square" unicode=""
|
239 |
+
d="M400 416c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-137.25v152.31h57.7803l11 71.6904h-68.7803v46.5498c0 19.6104 9.61035 38.7305 40.4199 38.7305h31.2705v61s-28.3809 4.83984 -55.5205 4.83984
|
240 |
+
c-56.6699 0 -93.6699 -34.3301 -93.6699 -96.4805v-54.6396h-63v-71.6904h63v-152.31h-137.25c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352z" />
|
241 |
<glyph glyph-name="linkedin" unicode=""
|
242 |
d="M416 416c17.5996 0 32 -14.5 32 -32.2998v-383.4c0 -17.7998 -14.4004 -32.2998 -32 -32.2998h-384.1c-17.6006 0 -31.9004 14.5 -31.9004 32.2998v383.4c0 17.7998 14.2998 32.2998 31.9004 32.2998h384.1zM135.4 32h0.0996094v213.8h-66.5v-213.8h66.4004zM102.2 275
|
243 |
c21.2998 0 38.5 17.2002 38.5 38.5c0 21.2002 -17.2998 38.5 -38.5 38.5c-21.2998 0 -38.5 -17.2998 -38.5 -38.5s17.2002 -38.5 38.5 -38.5zM384.3 32v117.2c0 57.5996 -12.5 101.899 -79.7002 101.899c-32.2998 0 -54 -17.6992 -62.8994 -34.5h-0.900391v29.2002h-63.7002
|
295 |
c-14.1455 13.6211 -39.0283 29.5996 -76.4854 29.5996c-65.4834 0 -118.92 -54.2217 -118.92 -121.277s53.4365 -121.277 118.92 -121.277c75.9609 0 104.514 54.7451 108.965 82.7734h-108.965v66.0088h181.261v-0.000976562zM571.467 213.067h55.7334v-56.001h-55.7334
|
296 |
v-55.7334h-56.001v55.7334h-55.7324v56.001h55.7324v55.7324h56.001v-55.7324z" />
|
297 |
<glyph glyph-name="linkedin-in" unicode=""
|
298 |
+
d="M100.28 0h-92.8799v299.1h92.8799v-299.1zM53.79 339.9c-29.7002 0 -53.79 24.5996 -53.79 54.2998c0 29.6875 24.1025 53.79 53.79 53.79s53.79 -24.1025 53.79 -53.79c0 -29.7002 -24.0996 -54.2998 -53.79 -54.2998zM447.9 0h-92.6807v145.6
|
299 |
c0 34.7002 -0.700195 79.2002 -48.29 79.2002c-48.29 0 -55.6895 -37.7002 -55.6895 -76.7002v-148.1h-92.7803v299.1h89.0801v-40.7998h1.2998c12.4004 23.5 42.6904 48.2998 87.8799 48.2998c94 0 111.28 -61.8994 111.28 -142.3v-164.3h-0.0996094z" />
|
300 |
<glyph glyph-name="github-alt" unicode="" horiz-adv-x="480"
|
301 |
d="M186.1 119.3c0 -20.8994 -10.8994 -55.0996 -36.6992 -55.0996c-25.8008 0 -36.7002 34.2002 -36.7002 55.0996c0 20.9004 10.8994 55.1006 36.7002 55.1006c25.7998 0 36.6992 -34.2002 36.6992 -55.1006zM480 169.8c0 -31.8994 -3.2002 -65.7002 -17.5 -95
|
350 |
<glyph glyph-name="adn" unicode="" horiz-adv-x="496"
|
351 |
d="M248 280.5l64.9004 -98.7998h-129.801zM496 192c0 -136.9 -111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248s248 -111.1 248 -248zM396.2 109.3l-148.2 223.2l-148.2 -223.2h30.4004l33.5996 51.7002h168.601l33.5996 -51.7002h30.2002z" />
|
352 |
<glyph glyph-name="bitbucket" unicode="" horiz-adv-x="512"
|
353 |
+
d="M22.2002 416l466.8 -0.200195c0.954102 -0.0136719 1.875 -0.0800781 2.7998 -0.200195c7.58789 -1.25 13.3994 -7.83203 13.3994 -15.7715c0 -0.860352 -0.0683594 -1.7041 -0.199219 -2.52832l-67.9004 -416.8c-1.24902 -7.58887 -7.84277 -13.4014 -15.7832 -13.4014
|
354 |
+
c-0.0722656 0 -0.144531 0 -0.216797 0.000976562h-325.699c-10.7129 0.0869141 -19.5967 7.94727 -21.3008 18.2002l-67.8994 412.101c-0.116211 0.924805 -0.182617 1.84668 -0.200195 2.7998c0.108398 8.7373 7.23242 15.8008 15.9951 15.8008
|
355 |
+
c0.0683594 0 0.136719 0 0.205078 -0.000976562zM308.1 118.2l25.2002 147h-157.3l28.0996 -147h104z" />
|
356 |
<glyph glyph-name="tumblr" unicode="" horiz-adv-x="320"
|
357 |
d="M309.8 -32.2998c-13.5996 -14.5 -50 -31.7002 -97.3994 -31.7002c-120.801 0 -147 88.7998 -147 140.6v144h-47.5c-5.5 0 -10 4.5 -10 10v68c0 7.2002 4.5 13.6006 11.2998 16c62 21.8008 81.5 76 84.2998 117.101c0.799805 11 6.5 16.2998 16.0996 16.2998h70.9004
|
358 |
c5.5 0 10 -4.5 10 -10v-115.2h83c5.5 0 10 -4.39941 10 -9.89941v-81.7002c0 -5.5 -4.5 -10 -10 -10h-83.4004v-133.2c0 -34.2002 23.7002 -53.5996 68 -35.7998c4.80078 1.89941 9 3.2002 12.7002 2.2002c3.5 -0.900391 5.7998 -3.40039 7.40039 -7.90039l22 -64.2998
|
369 |
<glyph glyph-name="windows" unicode=""
|
370 |
d="M0 354.3l183.6 25.2998v-177.399h-183.6v152.1zM0 29.7002v149.899h183.6v-175.199zM203.8 1.7002v177.899h244.2v-211.6zM203.8 382.3l244.2 33.7002v-213.8h-244.2v180.1z" />
|
371 |
<glyph glyph-name="android" unicode="" horiz-adv-x="576"
|
372 |
+
d="M420.55 146.07c-13.2461 0 -24 10.7539 -24 24s10.7539 24 24 24s24 -10.7539 24 -24s-10.7539 -24 -24 -24zM155.45 146.07c-13.2461 0 -24 10.7539 -24 24s10.7539 24 24 24s24 -10.7539 24 -24s-10.7539 -24 -24 -24zM429.15 290.55l47.9395 83
|
373 |
+
c1.06738 1.59082 1.69043 3.50391 1.69043 5.5625c0 5.51855 -4.48047 10 -10 10c-3.93359 0 -7.32812 -2.25684 -8.95996 -5.5625v0l-48.54 -84.0693c-37.5742 16.8516 -79.2197 26.2266 -123.037 26.2266c-43.8164 0 -85.9492 -9.375 -123.523 -26.2266l-48.54 84.0693
|
374 |
+
c-1.63184 3.30566 -5.03809 5.58203 -8.97168 5.58203c-5.51953 0 -10 -4.48145 -10 -10c0 -2.05859 0.634766 -3.99121 1.70215 -5.58203v0l47.9395 -83c-82.3193 -44.7695 -138.609 -128.1 -146.85 -226.55h576c-8.24023 98.4502 -64.54 181.78 -146.85 226.55z" />
|
375 |
<glyph glyph-name="linux" unicode=""
|
376 |
d="M220.8 324.7c-1.09961 0.599609 -3.09961 0.399414 -3.39941 1.7002c-0.200195 0.399414 0.199219 0.899414 0.599609 1.09961c1.59961 0.900391 3.7998 0.599609 5.5 -0.0996094c1.2998 -0.600586 3.40039 -1.5 3.2002 -2.90039
|
377 |
c-0.100586 -1.09961 -1.7998 -1.5 -2.90039 -1.5c-1.2002 0 -2 1.2002 -3 1.7002zM198.9 323c-1 -0.0996094 -2.7002 0.400391 -2.80078 1.40039c-0.199219 1.39941 1.90039 2.2998 3.2002 2.89941c1.7002 0.700195 3.90039 1 5.5 0.100586
|
471 |
<glyph glyph-name="openid" unicode=""
|
472 |
d="M271.5 16l-68 -32c-115 10.2998 -203.5 71.5 -203.5 145.8c0 71.5 82.5 131 191.7 144.3v-43c-71.5 -12.5 -124 -53 -124 -101.3c0 -51 58.5 -93.2998 135.7 -103v340l68 33.2002v-384h0.0996094zM448 157l-131.3 28.5l36.7998 20.7002c-19.5 11.5 -43.5 20 -70 24.7998
|
473 |
v43c46.2002 -5.5 87.7002 -19.5 120.3 -39.2998l35 19.7998z" />
|
474 |
+
<glyph glyph-name="yahoo" unicode="" horiz-adv-x="512"
|
475 |
+
d="M223.69 306.94h93.5791l-140.909 -338.94h-94.1699l38.5693 89.8096l-105.83 249.131h96.0703l56 -143.171zM329.09 171.15c32.1328 0 58.2197 -26.0879 58.2197 -58.2207c0 -32.1318 -26.0869 -58.2197 -58.2197 -58.2197s-58.2197 26.0879 -58.2197 58.2197
|
476 |
+
c0 32.1328 26.0869 58.2207 58.2197 58.2207zM394.65 416h104.42l-92.6299 -223.47h-104.79z" />
|
477 |
<glyph glyph-name="google" unicode="" horiz-adv-x="488"
|
478 |
d="M488 186.2c0 -141.5 -96.9004 -242.2 -240 -242.2c-137.2 0 -248 110.8 -248 248s110.8 248 248 248c66.7998 0 123 -24.5 166.3 -64.9004l-67.5 -64.8994c-88.2998 85.2002 -252.5 21.2002 -252.5 -118.2c0 -86.5 69.1006 -156.6 153.7 -156.6
|
479 |
c98.2002 0 135 70.3994 140.8 106.899h-140.8v85.2998h236.1c2.30078 -12.6992 3.90039 -24.8994 3.90039 -41.3994z" />
|
558 |
d="M496 192c0 -137 -111.2 -248 -248.4 -248c-113.8 0 -209.6 76.2998 -239 180.4l95.2002 -39.3008c6.40039 -32.0996 34.9004 -56.3994 68.9004 -56.3994c39.2002 0 71.8994 32.3994 70.2002 73.5l84.5 60.2002c52.0996 -1.30078 95.7998 40.8994 95.7998 93.5
|
559 |
c0 51.5996 -42 93.5 -93.7002 93.5s-93.7002 -42 -93.7002 -93.5v-1.2002l-59.2002 -85.7002c-15.5 0.900391 -30.6992 -3.40039 -43.5 -12.0996l-133.1 55c10.2002 127.699 117.1 228.1 247.6 228.1c137.2 0 248.4 -111 248.4 -248zM155.7 63.7002
|
560 |
c19.7998 -8.2002 42.5 1.09961 50.7998 21c8.2998 19.7998 -1.09961 42.5 -20.9004 50.7002l-31.5 13c12.2002 4.59961 26 4.7998 38.9004 -0.600586c13 -5.39941 23.0996 -15.5996 28.5 -28.5996s5.2998 -27.2998 -0.0996094 -40.2998
|
561 |
+
c-11.2002 -26.8008 -42.1006 -39.6006 -69 -28.4004c-11.9453 4.99414 -21.6055 14.1826 -27.2002 25.7998zM329.5 193.6c-34.4004 0 -62.4004 28 -62.4004 62.3008c0 34.2998 28 62.2998 62.4004 62.2998s62.4004 -28 62.4004 -62.2998
|
562 |
c0 -34.3008 -27.9004 -62.3008 -62.4004 -62.3008zM329.6 209.2c25.9004 0 46.9004 21 46.9004 46.7998c0 25.9004 -21 46.7998 -46.9004 46.7998c-25.8994 0 -46.8994 -21 -46.8994 -46.7998c0.0996094 -25.7998 21.0996 -46.7998 46.8994 -46.7998z" />
|
563 |
<glyph glyph-name="steam-square" unicode=""
|
564 |
d="M185.2 91.5c7.7002 18.5 -1 39.7002 -19.6006 47.4004l-29.5 12.1992c11.4004 4.30078 24.3008 4.5 36.4004 -0.5c12.2002 -5.09961 21.5996 -14.5996 26.7002 -26.6992c5 -12.2002 5 -25.6006 -0.100586 -37.7002c-10.5 -25.1006 -39.3994 -37 -64.5996 -26.5
|
633 |
c-5.7998 -17.5 -15.2002 -33.2002 -27.0996 -46.8008l-51.2002 44.8008c-10.2998 -11.9004 -24.4004 -20.2002 -40.7002 -23.5z" />
|
634 |
<glyph glyph-name="git-square" unicode=""
|
635 |
d="M100.59 113.76c48.5703 -3.30957 58.9502 -2.10938 58.9502 -11.9395c0 -20 -65.5498 -20.0605 -65.5498 -1.52051c0.00976562 5.08984 3.29004 9.40039 6.59961 13.46zM128.54 230.4c30.96 0 31.7598 -44.4707 -0.75 -44.4707c-33 0 -31.54 44.4707 0.75 44.4707z
|
636 |
+
M448 368v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352c26.4922 0 48 -21.5078 48 -48zM221 298.69c0 -14.4902 8.37988 -22.8809 22.8604 -22.8809c14.7393 0 23.1299 8.39062 23.1299 22.8809
|
637 |
c0 14.4893 -8.37012 22.3096 -23.1104 22.3096c-14.4795 0 -22.8799 -7.83984 -22.8799 -22.3096zM199.18 253h-49.5498c-25 6.5498 -81.5596 4.84961 -81.5596 -46.75c0 -18.7998 9.39941 -32 21.8496 -38.1104c-15.6895 -14.3701 -23.1201 -21.1396 -23.1201 -30.7393
|
638 |
c0 -6.87012 2.79004 -13.2207 11.1807 -16.7607c-8.90039 -8.39941 -14 -14.4795 -14 -25.9199c0.0195312 -20.0693 17.5498 -31.7197 63.5391 -31.7197c44.2207 0 69.8701 16.5098 69.8701 45.7305c0 36.6699 -28.2295 35.3193 -94.7695 39.3799l8.37988 13.4297
|
639 |
c17 -4.74023 74.1904 -6.23047 74.1904 42.4297c0 11.6904 -4.83008 19.8203 -9.40039 25.6699l23.3799 1.78027zM283.52 143.16l-13 1.78027c-3.81934 0.509766 -4.06934 1 -4.06934 5.08984v105.45h-52.6006l-2.79004 -20.5703c15.75 -5.5498 17 -4.86035 17 -10.1699
|
677 |
<glyph glyph-name="twitch" unicode="" horiz-adv-x="512"
|
678 |
d="M391.17 344.53v-109.7h-38.6299v109.7h38.6299zM285 345v-109.75h-38.6299v109.75h38.6299zM120.83 448h366.86v-256l-173.771 -164.58h-77.25l-96.5303 -91.4199v91.4199h-115.83v329.16zM449.07 210.25v201.17h-308.931v-274.29h86.8701v-64l67.6006 64h77.2393z" />
|
679 |
<glyph glyph-name="yelp" unicode="" horiz-adv-x="384"
|
680 |
+
d="M42.9004 207.68l99.6191 -48.6094c19.2002 -9.40039 16.2002 -37.5107 -4.5 -42.71l-107.52 -26.8105c-1.78223 -0.448242 -3.64746 -0.685547 -5.56738 -0.685547c-11.7246 0 -21.3848 8.89453 -22.6426 20.2861c-0.853516 7.44141 -1.29297 15.0078 -1.29297 22.6768
|
681 |
+
c0 21.9561 3.65723 42.9111 10.293 62.6426c3.03906 9.02148 11.5723 15.5264 21.6133 15.5264c3.5791 0 6.98145 -0.84375 9.99707 -2.31641zM86.9004 -31.5703c-6.01172 4.1123 -9.9248 11.0195 -9.9248 18.8457c0 5.85742 2.21191 11.2021 5.84473 15.2441l74.21 82.4004
|
682 |
+
c14.3096 15.8105 40.5098 5.2002 39.8096 -16.0996l-3.89941 -110.82c-0.414062 -12.21 -10.4365 -22.0088 -22.7461 -22.0088c-1.32129 0 -2.61523 0.112305 -3.87402 0.329102c-28.9365 4.90039 -56.1416 16.1621 -79.4199 32.1094zM232.24 78.3496
|
683 |
+
c-11.2998 18.1104 6.2002 40.4102 26.5098 33.9102l105.42 -34.2598c9.14453 -3.04102 15.7305 -11.6855 15.7305 -21.8447c0 -3.46289 -0.767578 -6.74805 -2.14062 -9.69531c-12.5361 -26.3281 -30.4697 -49.2246 -52.71 -67.6104
|
684 |
+
c-3.96191 -3.26465 -9.03809 -5.25781 -14.5674 -5.25781c-8.18555 0 -15.375 4.29785 -19.4326 10.7578zM380.57 210.58c1.21289 -2.79883 1.93359 -5.89941 1.93359 -9.1416c0 -10.4385 -6.96875 -19.2627 -16.5039 -22.0684l-106.64 -30.5098
|
685 |
+
c-20.5 -5.90039 -37.1006 17.0098 -25.2002 34.71l62 91.9199c4.10742 6.08398 11.0635 10.0615 18.9502 10.0615c5.76172 0 11.0283 -2.1377 15.0498 -5.66211c21.5781 -19.0479 38.7783 -42.5518 50.4102 -69.3096zM62.1104 417.82
|
686 |
+
c34.3301 16.3438 72.6104 26.9434 112.33 30.0996c0.610352 0.0498047 1.20703 0.078125 1.83008 0.078125c12.5127 0 22.6709 -10.1582 22.6709 -22.6699c0 -0.0693359 -0.000976562 -0.138672 -0.000976562 -0.208008v-208.34
|
687 |
+
c0 -23.2998 -30.9102 -31.6006 -42.6104 -11.4004l-104.12 180.44c-1.92871 3.35059 -3.06738 7.24805 -3.06738 11.3887c0 9.07422 5.29883 16.9199 12.9678 20.6113z" />
|
688 |
<glyph glyph-name="paypal" unicode="" horiz-adv-x="384"
|
689 |
d="M111.4 152.1c-3.5 -19.1992 -17.4004 -108.699 -21.5 -134c-0.300781 -1.7998 -1 -2.5 -3 -2.5h-74.6006c-7.59961 0 -13.0996 6.60059 -12.0996 13.9004l58.5996 371.9c1.5 9.59961 10.1006 16.8994 20 16.8994c152.3 0 165.101 3.7002 204 -11.3994
|
690 |
c60.1006 -23.3008 65.6006 -79.5 44 -140.301c-21.5 -62.5996 -72.5 -89.5 -140.1 -90.2998c-43.4004 -0.700195 -69.5 7 -75.2998 -24.2002zM357.1 296c28.4004 -21.2002 30.3008 -57.7998 23.8008 -92.5996c-16.5 -83.5 -71.9004 -112.301 -142.9 -112.301
|
819 |
c0 -0.267578 0.267578 -0.803711 0.267578 -1.07227c0 -2.94531 -0.803711 -5.62402 -2.14258 -7.7666zM153.535 326.465v59.7324l-43.6602 -75.5361zM480.054 287.357l-0.267578 0.267578l-98.0361 -101.518l63.75 -67.2324l35.3584 167.143zM291.75 92.8926
|
820 |
l-11.25 -11.7852h22.7676zM291.482 104.143l79.2852 82.2324l-83.0352 87.5889l-79.5537 -84.375zM296.839 98.25l16.875 -17.1426h124.02l5.8916 28.125l-67.5 71.25zM410.411 403.607l-117.053 -124.019l83.0342 -87.5889l97.5 101.25
|
821 |
c-1.33984 2.14258 -2.14258 4.82129 -2.14258 7.7666v0.536133l-57.8574 100.714c-1.33984 0.268555 -2.41016 0.804688 -3.48145 1.34082zM401.304 405.75h-4.28711l-166.339 -60l57.0547 -60.2676zM277.821 405.75h-103.929l50.8936 -53.5713l148.393 53.5713h-75
|
822 |
+
c-2.67871 -2.67773 -6.16016 -4.28516 -10.1787 -4.28516s-7.50098 1.60742 -10.1787 4.28516zM161.572 400.125v-70.7148l54.9111 19.8213l-51.1611 53.8398c-0.870117 -0.300781 -1.77832 -0.574219 -2.67969 -0.804688zM161.572 320.839v-83.3037l40.9814 -42.0527
|
823 |
l79.5537 84.1064l-59.7324 63.2139zM161.572 228.161v-76.0723l36.4277 38.3037zM161.572 140.303v-59.1953h107.678l17.1426 17.6777l-82.7676 85.9814zM168.536 -21.75h1.33887l91.6074 94.8213h-99.9102v-89.7324l1.07031 -1.60645
|
824 |
c2.41113 -0.804688 4.28613 -1.875 5.89355 -3.48242zM298.447 -21.75h104.194l-91.6064 94.8213h-38.3037l-91.6074 -94.8213h96.4287c2.68066 2.41016 6.42871 4.28516 10.4473 4.28516s7.76758 -1.875 10.4473 -4.28516zM418.447 -9.96387l17.4121 83.0361h-114.376
|
825 |
l89.1953 -91.875c1.07227 0.536133 2.14355 1.07031 3.48242 1.33887zM431.303 12.2676l34.8223 60.8037h-21.9639zM466.125 81.1074c0.267578 1.07129 0.803711 2.14258 1.33887 2.94531l-17.1426 18.2139l-4.55371 -21.1592h20.3574zM532.286 188.518
|
957 |
<glyph glyph-name="gg-circle" unicode="" horiz-adv-x="512"
|
958 |
d="M257 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM207.5 65.2002l75 75.2002l-77.2002 77.1992l-24.3994 -24.3994l53.0996 -52.9004l-26.5996 -26.5996l-77.2002 77.2002l77.2002 77.1992l11.0996 -11.0996l24.2002 24.2002
|
959 |
l-35.2002 35.3994l-125.7 -125.699zM306.5 67.4004l125.7 125.6l-125.7 125.7l-75 -75l77.2002 -77.2002l24.3994 24.4004l-53.0996 52.8994l26.5 26.5l77.2002 -77.2002l-77.2002 -77.1992l-11.0996 11.0996l-24.1006 -24.4004z" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
960 |
<glyph glyph-name="odnoklassniki" unicode="" horiz-adv-x="320"
|
961 |
d="M275.1 114c-27.3994 -17.4004 -65.0996 -24.2998 -90 -26.9004l20.9004 -20.5996l76.2998 -76.2998c27.9004 -28.6006 -17.5 -73.2998 -45.7002 -45.7002c-19.0996 19.4004 -47.0996 47.4004 -76.2998 76.5996l-76.2998 -76.5
|
962 |
c-28.2002 -27.5 -73.5996 17.6006 -45.4004 45.7002c19.4004 19.4004 47.1006 47.4004 76.3008 76.2998l20.5996 20.6006c-24.5996 2.59961 -62.9004 9.09961 -90.5996 26.8994c-32.6006 21 -46.9004 33.3008 -34.3008 59c7.40039 14.6006 27.7002 26.9004 54.6006 5.7002
|
979 |
c18.8994 -40 30.5996 -68.1006 48.0996 -104.7c5.59961 10.7998 34.7002 69.4004 48.0996 100.8c8.90039 20.6006 -3.89941 28.6006 -38.5996 29.4004c0.299805 3.59961 0 10.2998 0.299805 13.5996c44.4004 0.299805 111.101 0.299805 123.101 0.600586v-13.6006
|
980 |
c-22.5 -0.799805 -45.8008 -12.7998 -58.1006 -31.7002l-59.2002 -122.8c6.40039 -16.0996 63.3008 -142.8 69.2002 -156.7l122.4 282.601c-8.60059 23.0996 -36.4004 28.0996 -47.2002 28.2998v13.9004l127.8 -1.10059z" />
|
981 |
<glyph glyph-name="safari" unicode="" horiz-adv-x="512"
|
982 |
+
d="M274.69 173.31l-108.69 -71.3096l71.3096 108.69zM256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM411.85 265.21c-2.88672 -1.20801 -4.9082 -4.0625 -4.9082 -7.38574c0 -1.08496 0.21582 -2.12012 0.608398 -3.06445v0
|
983 |
+
c1.20215 -2.90039 4.06348 -4.93457 7.39648 -4.93457c1.08105 0 2.1123 0.214844 3.05371 0.604492l14.75 6.11035c2.90234 1.20117 4.93848 4.06348 4.93848 7.39746c0 1.08496 -0.216797 2.11914 -0.608398 3.0625v0c-1.2002 2.90527 -4.06348 4.94336 -7.39941 4.94336
|
984 |
+
c-1.08008 0 -2.11035 -0.214844 -3.05078 -0.603516zM314.43 354c-0.396484 -0.949219 -0.625 -1.99219 -0.625 -3.08496c0 -3.33398 2.04395 -6.19336 4.94531 -7.39551v0c0.941406 -0.388672 1.97461 -0.613281 3.05566 -0.613281
|
985 |
+
c3.33301 0 6.19238 2.04297 7.39453 4.94336l6.12988 14.7803c0.389648 0.941406 0.613281 1.97461 0.613281 3.05566c0 3.33301 -2.04297 6.19238 -4.94336 7.39453v0c-0.944336 0.392578 -1.98047 0.618164 -3.06641 0.618164
|
986 |
+
c-3.32324 0 -6.17578 -2.03125 -7.38379 -4.91797zM256 388c-4.41504 0 -8 -3.58496 -8 -8v-16c0 -4.41504 3.58496 -8 8 -8v0c4.41504 0 8 3.58496 8 8v16c0 4.41504 -3.58496 8 -8 8v0zM181 373.08c-2.89941 -1.20215 -4.93262 -4.0625 -4.93262 -7.39551
|
987 |
+
c0 -1.06934 0.210938 -2.09082 0.592773 -3.02441l6.12988 -14.7803c1.16504 -2.97754 4.05762 -5.07812 7.44531 -5.07812c4.41602 0 8 3.58496 8 8c0 1.13672 -0.237305 2.21875 -0.665039 3.19824l-6.11035 14.75c-1.20117 2.90234 -4.06348 4.93848 -7.39746 4.93848
|
988 |
+
c-1.08496 0 -2.11914 -0.216797 -3.0625 -0.608398zM117.42 330.59c-1.44727 -1.44824 -2.35254 -3.44922 -2.35254 -5.65625c0 -2.19141 0.883789 -4.17773 2.3125 -5.62402l11.3105 -11.3096c1.44727 -1.44727 3.44922 -2.34277 5.65527 -2.34277
|
989 |
+
c2.20703 0 4.20605 0.895508 5.6543 2.34277v0c1.43848 1.44629 2.32715 3.44238 2.32715 5.6416c0 2.19824 -0.888672 4.19141 -2.32715 5.63867l-11.2695 11.3096c-1.44824 1.44727 -3.4502 2.34277 -5.65625 2.34277c-2.20703 0 -4.20605 -0.895508 -5.6543 -2.34277v0z
|
990 |
+
M60 192c0 -4.41504 3.58496 -8 8 -8h16c4.41504 0 8 3.58496 8 8v0c0 4.41504 -3.58496 8 -8 8h-16c-4.41504 0 -8 -3.58496 -8 -8v0zM100.15 118.79c2.88672 1.20801 4.9082 4.0625 4.9082 7.38574c0 1.08496 -0.21582 2.12012 -0.608398 3.06445v0
|
991 |
+
c-1.20215 2.90039 -4.06348 4.93457 -7.39648 4.93457c-1.08105 0 -2.1123 -0.214844 -3.05371 -0.604492l-14.75 -6.11035c-2.90234 -1.20117 -4.93848 -4.06348 -4.93848 -7.39746c0 -1.08496 0.216797 -2.11914 0.608398 -3.0625v0
|
992 |
+
c1.2002 -2.90527 4.06348 -4.94336 7.39941 -4.94336c1.08008 0 2.11035 0.214844 3.05078 0.603516zM104.48 254.79c0.386719 0.939453 0.609375 1.93945 0.609375 3.0166c0 3.33203 -2.04102 6.19043 -4.93945 7.39355l-14.7803 6.12988
|
993 |
+
c-0.941406 0.389648 -1.97461 0.613281 -3.05566 0.613281c-3.33301 0 -6.19238 -2.04297 -7.39453 -4.94336v0c-0.392578 -0.944336 -0.618164 -1.98047 -0.618164 -3.06641c0 -3.32324 2.03125 -6.17578 4.91797 -7.38379l14.7803 -6.12012
|
994 |
+
c0.945312 -0.393555 1.9834 -0.619141 3.07129 -0.619141c3.34668 0 6.21582 2.05957 7.40918 4.97949v0zM197.57 30c0.427734 0.979492 0.672852 2.07129 0.672852 3.20801c0 4.41602 -3.58496 8 -8 8c-3.38867 0 -6.28809 -2.11035 -7.45312 -5.08789l-6.12988 -14.7803
|
995 |
+
c-0.389648 -0.941406 -0.611328 -1.9834 -0.611328 -3.06543c0 -4.41699 3.58594 -8.00293 8.00293 -8.00293c3.33496 0 6.19727 2.04492 7.39844 4.94824zM264 4v16c0 4.41504 -3.58496 8 -8 8v0c-4.41504 0 -8 -3.58496 -8 -8v-16c0 -4.41504 3.58496 -8 8 -8v0
|
996 |
+
c4.41504 0 8 3.58496 8 8zM331 10.9199c2.89941 1.20215 4.93262 4.0625 4.93262 7.39551c0 1.06934 -0.210938 2.09082 -0.592773 3.02441l-6.12988 14.7803c-1.20215 2.90039 -4.06348 4.93457 -7.39648 4.93457c-1.08105 0 -2.1123 -0.214844 -3.05371 -0.604492v0
|
997 |
+
c-2.90039 -1.20215 -4.93457 -4.06348 -4.93457 -7.39648c0 -1.08105 0.214844 -2.1123 0.604492 -3.05371l6.11035 -14.75c1.20117 -2.90234 4.06348 -4.93848 7.39746 -4.93848c1.08496 0 2.11914 0.216797 3.0625 0.608398v0zM394.58 53.4102
|
998 |
+
c1.44727 1.44824 2.35254 3.44922 2.35254 5.65625c0 2.19141 -0.883789 4.17773 -2.3125 5.62402l-11.3105 11.3096c-1.44727 1.44727 -3.44922 2.34277 -5.65527 2.34277c-2.20703 0 -4.20605 -0.895508 -5.6543 -2.34277v0
|
999 |
+
c-1.43848 -1.44629 -2.32715 -3.44238 -2.32715 -5.6416c0 -2.19824 0.888672 -4.19141 2.32715 -5.63867l11.2695 -11.3096c1.44824 -1.44727 3.4502 -2.34277 5.65625 -2.34277c2.20703 0 4.20605 0.895508 5.6543 2.34277v0zM286.25 161.75l115.41 175.91
|
1000 |
+
l-175.91 -115.41l-115.41 -175.91zM437.08 117c0.392578 0.944336 0.618164 1.98047 0.618164 3.06641c0 3.32324 -2.03125 6.17578 -4.91797 7.38379l-14.7803 6.12012c-0.949219 0.396484 -1.99219 0.625 -3.08496 0.625c-3.33398 0 -6.19336 -2.04395 -7.39551 -4.94531
|
1001 |
+
v0c-0.388672 -0.941406 -0.613281 -1.97461 -0.613281 -3.05566c0 -3.33301 2.04297 -6.19238 4.94336 -7.39453l14.7803 -6.12988c0.941406 -0.389648 1.97461 -0.613281 3.05566 -0.613281c3.33301 0 6.19238 2.04297 7.39453 4.94336v0zM444 184c4.41504 0 8 3.58496 8 8
|
1002 |
+
v0c0 4.41504 -3.58496 8 -8 8h-16c-4.41504 0 -8 -3.58496 -8 -8v0c0 -4.41504 3.58496 -8 8 -8h16z" />
|
1003 |
<glyph glyph-name="chrome" unicode="" horiz-adv-x="496"
|
1004 |
d="M131.5 230.5l-76.4004 117.4c47.6006 59.1992 119 91.7998 192 92.0996c42.3008 0.299805 85.5 -10.5 124.801 -33.2002c43.3994 -25.2002 76.3994 -61.3994 97.3994 -103l-205.3 10.7998c-58.0996 3.40039 -113.4 -29.2998 -132.5 -84.0996zM164.4 192
|
1005 |
c0 46.2998 37.3994 83.5996 83.5996 83.5996s83.5996 -37.3994 83.5996 -83.5996s-37.3994 -83.5996 -83.5996 -83.5996s-83.5996 37.3994 -83.5996 83.5996zM479.3 281.2c43.5 -111.9 0 -241.9 -107.399 -303.9c-43.4004 -25.2002 -91.3008 -35.3994 -137.801 -32.8994
|
1007 |
<glyph glyph-name="firefox" unicode="" horiz-adv-x="512"
|
1008 |
d="M503.52 206.52c0.240234 -4.43945 0.360352 -9 0.480469 -13.5195c0 -137.19 -111.23 -248.42 -248.32 -248.42c-122.779 0 -224.859 89.2695 -244.779 206.38c-0.360352 3.24023 -0.720703 6.36035 -1.08008 9.59961c-4.91992 42.6006 0.479492 87.3604 16.0801 124.79
|
1009 |
c10.7998 25.8809 32.6396 54 49.7998 62.8809c-16.2002 -31.8008 -24.1201 -63 -25.7998 -83.8809c11.2793 37.2002 32.6299 68.3604 62.5098 90.3604c51.2402 37.6699 120.229 39.3604 147.71 15.3604c-51 -17.5107 -106.55 -87.96 -94.3105 -170.511
|
1010 |
+
c2.00586 -13.791 6.21289 -27.1582 12.1201 -39.2393c-9.51953 25.0801 -10.3594 60.3594 5 83.2793c17.1602 25.5508 41.6299 30.9502 54.71 28.1904c-5.15918 1.08008 -16.5596 -20.75 -18.2393 -24.5898c-3.99609 -9.09863 -6.25098 -19.1865 -6.25098 -29.7539
|
1011 |
+
c0 -0.416016 0.00390625 -0.832031 0.0107422 -1.24609c0.392578 -23.1182 10.1045 -44.0088 25.5596 -59c47.6504 -46.4307 124.561 -28.1602 159 24.8398c23.6406 36.4795 26.5205 98.3896 -3.83984 147.59c-7.62891 12.0801 -16.5693 22.9639 -26.8799 32.7598
|
1012 |
c-47.6602 45.4707 -116.06 64.6699 -180.24 52.9902c-0.240234 0 -0.599609 -0.120117 -0.839844 -0.120117c-1.7998 -0.359375 -3.47949 -0.719727 -5.16016 -1.08008c-0.359375 -0.120117 -0.839844 -0.120117 -1.2002 -0.239258l-5.87988 -1.44043
|
1013 |
+
c-14.5195 -3.55957 -34.7998 -10.7998 -49.4395 -19.5596c-0.09375 -0.0136719 -0.176758 -0.0566406 -0.240234 -0.120117l0.120117 0.120117c0 -0.0664062 -0.0537109 -0.120117 -0.120117 -0.120117l-0.120117 -0.120117l0.120117 0.120117h-0.129883l0.479492 0.479492
|
1014 |
+
c0.480469 0.480469 1.32031 1.16016 2.40039 2.16016c19.6797 17.7598 49.3203 31.9199 82.9102 39c14.7383 3.09766 29.8691 4.81543 45.4795 5h10.6299c12.9863 -0.311523 25.6123 -1.67188 38 -4c0.960938 -0.120117 1.76074 -0.360352 2.76074 -0.479492h0.120117
|
1015 |
+
c1.7998 -0.360352 3.71973 -0.84082 5.63965 -1.2002c19.2676 -4.375 38.0977 -11.0762 55.4297 -19.5605c2.40039 -1.2002 4.7998 -2.39941 7.2002 -3.71973c8.6748 -4.32129 16.8906 -9.37891 24.5996 -15.1201c4.32031 -3.12012 8.48047 -6.36035 12.4805 -9.83984
|
1016 |
+
c6.50781 -5.19434 12.5332 -10.6973 18.29 -16.7002c8.51074 -8.35645 16.2646 -17.1406 23.5098 -26.6396c0.959961 -1.2002 1.75977 -2.40039 2.75977 -3.71973c0.400391 -0.480469 0.640625 -0.84082 1 -1.32031l1.80078 -2.52051
|
1017 |
+
c0.359375 -0.479492 0.719727 -1.08008 1.08008 -1.55957c0.479492 -0.719727 1.0791 -1.56055 1.55957 -2.28027c0.441406 -0.571289 0.839844 -1.16992 1.2002 -1.7998l1.43945 -2.12988c0.441406 -0.571289 0.84082 -1.16992 1.2002 -1.7998
|
1018 |
+
c0.480469 -0.720703 0.959961 -1.56055 1.32031 -2.16016c0.359375 -0.600586 0.839844 -1.24023 1.2002 -1.91992c0.359375 -0.680664 0.839844 -1.32031 1.19922 -2c0.360352 -0.680664 0.84082 -1.28027 1.2002 -2c0.441406 -0.638672 0.842773 -1.30566 1.2002 -2
|
1019 |
c0.360352 -0.720703 0.839844 -1.56055 1.2002 -2.16016c0.359375 -0.599609 0.719727 -1.32031 1.08008 -1.91992c0.359375 -0.839844 0.799805 -1.67969 1.2002 -2.28027c0.399414 -0.599609 0.639648 -1.2002 1 -1.7998
|
1020 |
c0.359375 -0.839844 0.839844 -1.56055 1.19922 -2.40039c0.240234 -0.479492 0.480469 -1.08008 0.720703 -1.55957c0.479492 -0.839844 0.839844 -1.63965 1.31934 -2.63965l0.360352 -0.720703c1.75977 -3.71973 3.44043 -7.55957 5 -11.3994
|
1021 |
c0 -0.120117 0.120117 -0.240234 0.120117 -0.360352c0.439453 -1.2002 0.959961 -2.28027 1.43945 -3.48047c0.120117 -0.239258 0.240234 -0.599609 0.360352 -0.839844c0.480469 -1.08008 0.839844 -2.2793 1.32031 -3.35938
|
1022 |
+
c0.138672 -0.321289 0.261719 -0.660156 0.359375 -1c0.360352 -1.08008 0.84082 -2.28027 1.2002 -3.36035l0.360352 -1.08008c0.479492 -1.2002 0.839844 -2.28027 1.2002 -3.47949c0.119141 -0.400391 0.239258 -0.640625 0.359375 -1
|
1023 |
c0.360352 -1.08008 0.720703 -2.28027 1.08008 -3.48047c0.120117 -0.240234 0.120117 -0.599609 0.240234 -0.839844c0.360352 -1.2002 0.719727 -2.52051 1.08008 -3.71973c0.120117 -0.120117 0.120117 -0.360352 0.240234 -0.600586l1.08008 -4
|
1024 |
+
c0.119141 -0.120117 0.119141 -0.120117 0.119141 -0.240234c3.54297 -13.2549 6.04102 -27.1152 7.32031 -41.1494v-0.120117l0.360352 -4.67969v-0.120117c0 -1.56055 0.120117 -3.12012 0.239258 -4.68066z" />
|
1025 |
<glyph glyph-name="opera" unicode="" horiz-adv-x="496"
|
1026 |
d="M313.9 415.3c-170.2 0 -252.601 -223.8 -147.5 -355.1c36.5 -45.4004 88.5996 -75.6006 147.5 -75.6006c36.2998 0 70.2998 11.1006 99.3994 30.4004c-43.7998 -39.2002 -101.899 -63 -165.3 -63c-3.90039 0 -8 0 -11.9004 0.299805
|
1027 |
c-131.5 6.10059 -236.1 114.601 -236.1 247.7c0 137 111 248 248 248h0.799805c63.1006 -0.299805 120.7 -24.0996 164.4 -63.0996c-29 19.3994 -63.1006 30.3994 -99.2998 30.3994zM415.7 17.5996c-40.9004 -24.6992 -90.7002 -23.5996 -132 5.80078
|
1073 |
c4 3.5 4 9.7002 -0.100586 13.7002c-3.5 3.5 -9.69922 3.5 -13.1992 0c-29 -29 -121.2 -28.5 -149 0c-3.5 3.5 -9.7002 3.5 -13.2002 0c-4 -4 -4 -10.2002 0 -13.7002c36.3994 -36.3994 139.1 -36.3994 175.5 0zM342.9 99.7998c22 0 39.5996 17.7002 39.6992 39.2002
|
1074 |
c0 22.0996 -17.6992 39.7002 -39.6992 39.7002c-21.6006 0 -39.2002 -17.7002 -39.2002 -39.7002c0 -21.5996 17.5996 -39.2002 39.2002 -39.2002z" />
|
1075 |
<glyph glyph-name="edge" unicode="" horiz-adv-x="512"
|
1076 |
+
d="M481.92 313.52c6.46973 -12.7793 22.4697 -41.6494 21.9697 -85.0791c-0.0917969 -43.7148 -23.6953 -81.8525 -58.9492 -102.44c-17.1387 -10.1797 -37.2617 -16.1211 -58.6104 -16.1797c-0.139648 0 -52.6504 -2.56055 -80.5098 16.8096
|
1077 |
+
c-5.85059 4.08008 -9.14062 8.94043 -9.14062 14c0 6.16016 4.82031 9 6.39062 11c9.7998 12.75 15.1094 28.1699 15.1094 38.5703c0 32.71 -11 59.2998 -33 83.0996c-1.16016 1.25 -42.9795 50.1807 -122.25 50.1807c-63.2393 0 -123.46 -32.6504 -149.46 -79.1406
|
1078 |
+
c24.04 111.98 123.58 195.66 242.44 195.66c96.3496 0 184.96 -46.1797 226.01 -126.48zM212.77 -27.6699c1.28027 -0.570312 29.0107 -20.5898 67.1309 -27.21c-7.89551 -0.759766 -15.5156 -1.3584 -23.6084 -1.3584c-99.3408 0 -185.118 58.5361 -224.692 142.969
|
1079 |
+
c-25.75 55.4697 -24.0801 105.96 -23 118.27c4.16992 34.2803 27.0801 59.7002 46.8408 74.7998c29.6299 22.6904 68.8193 35.6904 107.529 35.6904c7.0498 0 43.9199 -0.900391 77.6406 -18.5898c32.5596 -17.1006 47.3193 -37.5801 56.5596 -53.5107
|
1080 |
+
c1.84961 -3.23242 3.49902 -6.64551 4.88965 -10.1396c-4.21973 4.65039 -40.0596 44.2002 -99.0596 -1c-26.6719 -19.334 -46.8008 -46.8369 -56.9697 -78.9199c-14.1406 -40.4004 -12.8398 -88.5801 20.0996 -136c12.2471 -18.1914 27.9951 -33.3955 46.6396 -45z
|
1081 |
+
M463.49 70.6602c2.1748 -1.37305 3.60742 -3.80176 3.60742 -6.56152c0 -1.53418 -0.447266 -2.96484 -1.21777 -4.16895c-47.5703 -75.4297 -127.86 -108.87 -163 -108.87c-22.7002 0 -48.1299 6.95996 -71.7002 19.6104c-33 17.6699 -49.4893 38.7598 -56 47.6699
|
1082 |
+
c-46.3301 63.5303 -28.25 122.29 -13.3301 151.66c9.73145 19.1172 22.8193 35.9404 38.7607 50c-4.04688 -8.04102 -6.40625 -17.168 -6.52051 -26.75c0 -80.9404 79.8506 -144 171.521 -144c0.116211 0 0.310547 0.0693359 0.426758 0.0693359
|
1083 |
+
c24.3125 0 47.6045 4.40137 69.123 12.4502c6.98145 2.61816 13.8652 5.69824 20.4102 9.12012c1.11328 0.618164 2.41113 0.970703 3.77441 0.970703c1.52344 0 2.94531 -0.44043 4.14551 -1.2002z" />
|
1084 |
<glyph glyph-name="codiepie" unicode="" horiz-adv-x="472"
|
1085 |
d="M422.5 245.1c30.7002 0 33.5 -53.0996 -0.299805 -53.0996h-10.7998v-44.2998h-26.6006v97.3994h37.7002zM472 95.4004c-42.0996 -91.9004 -121.6 -151.4 -224 -151.4c-137 0 -248 111 -248 248s111 248 248 248c97.4004 0 172.8 -53.7002 218.2 -138.4l-186 -108.8z
|
1086 |
M433.5 82.9004l-60.2998 30.6992c-27.1006 -44.2998 -70.4004 -71.3994 -122.4 -71.3994c-82.5 0 -149.2 66.7002 -149.2 148.899c0 82.5 66.7002 149.2 149.2 149.2c48.4004 0 88.9004 -23.5 116.9 -63.3994l59.5 34.5996c-40.7002 62.5996 -104.7 100 -179.2 100
|
1176 |
<glyph glyph-name="snapchat-ghost" unicode="" horiz-adv-x="512"
|
1177 |
d="M510.846 55.3271c-5.21094 -12.1572 -27.2383 -21.0889 -67.3594 -27.3184c-2.06445 -2.78613 -3.77539 -14.6855 -6.50781 -23.9561c-1.625 -5.56543 -5.62207 -8.86914 -12.1279 -8.86914l-0.296875 0.00585938c-9.39453 0 -19.2031 4.32227 -38.8516 4.32227
|
1178 |
c-26.5215 0 -35.6621 -6.04297 -56.2539 -20.5879c-21.832 -15.4375 -42.7715 -28.7637 -74.0273 -27.3984c-31.6455 -2.33398 -58.0244 16.9072 -72.8711 27.4033c-20.7139 14.6436 -29.8281 20.582 -56.2412 20.582c-18.8633 0 -30.7354 -4.71973 -38.8516 -4.71973
|
1179 |
+
c-8.07324 0 -11.2129 4.92188 -12.4219 9.04004c-2.70312 9.18848 -4.4043 21.2627 -6.52344 24.1299c-20.6787 3.20898 -67.3096 11.3438 -68.498 32.1504c-0.0107422 0.196289 -0.015625 0.393555 -0.015625 0.591797c0 5.27148 3.85645 9.64355 8.89258 10.4766
|
1180 |
c69.583 11.4551 100.925 82.9014 102.228 85.9346c0.0742188 0.175781 0.155273 0.34375 0.237305 0.514648c3.71289 7.53711 4.54395 13.8486 2.46289 18.7529c-5.05078 11.8965 -26.8721 16.1641 -36.0537 19.7959c-23.7148 9.36621 -27.0146 20.1279 -25.6113 27.5039
|
1181 |
c2.43652 12.8359 21.7246 20.7354 33.002 15.4531c8.91895 -4.18066 16.8428 -6.29688 23.5469 -6.29688c5.02148 0 8.21191 1.2041 9.95996 2.1709c-2.04297 35.9365 -7.10156 87.29 5.68652 115.969c33.7734 75.7188 105.356 81.6025 126.478 81.6025
|
1182 |
c0.943359 0 9.14062 0.0888672 10.1094 0.0888672c52.1484 0 102.255 -26.7803 126.724 -81.6426c12.7764 -28.6504 7.74902 -79.792 5.69434 -116.01c1.58203 -0.87207 4.35742 -1.94141 8.59961 -2.13867c6.39648 0.286133 13.8145 2.38867 22.0693 6.25684
|
1193 |
c0.799805 -2.7002 2.89941 -6 8.2998 -6s13.2998 3.09961 25.7998 3.09961c17.6006 0 23.6006 -4 37.4004 -13.7002c9.89941 -7 27.5 -19.7998 48.5 -18.2002c20.7998 -0.899414 34.7002 7.90039 49.2002 18.2002c13.6992 9.7002 19.7998 13.7002 37.3994 13.7002
|
1194 |
c13 0 19.6006 -2.90039 25.7998 -2.90039h0.200195c4.40039 0 7 2.2002 8.10059 5.90039c1.7998 6.09961 2.89941 14 4.2998 15.9004c26.7002 4.19922 41.2998 10.0996 44.7998 18.1992z" />
|
1195 |
<glyph glyph-name="pied-piper" unicode="" horiz-adv-x="480"
|
1196 |
+
d="M455.93 424.8c9.41992 2.40039 15.0703 -10.25 6.99023 -15.6797c-98.2295 -65.9199 -120.439 -127.561 -126.229 -160.18c-33.5205 -188.881 -101.37 -119.32 -184.311 -226.65c25.7607 -14.8125 55.8076 -23.3984 87.6299 -23.4004
|
1197 |
+
c97.6504 0 177.09 79.4502 177.09 177.11c-0.00488281 45.0508 -16.9824 86.25 -44.8496 117.41c4.72754 9.75293 10.4238 18.9131 17 27.3994c36.3574 -37.3457 58.75 -88.3779 58.75 -144.564v-0.245117c0 -114.87 -93.1299 -208 -208 -208s-208 93.1201 -208 208
|
1198 |
+
s93.1299 208 208 208c36.7422 -0.000976562 71.4697 -9.77246 101.35 -26.6602c46.4404 38.9697 87.8809 60.6602 114.58 67.46zM125 41.5996c64.7695 140.881 125.64 231.641 191.63 293.75c-23.0674 11.3037 -49.1611 17.75 -76.5615 17.75h-0.0683594
|
1199 |
+
c-97.6504 0 -177.1 -79.4395 -177.1 -177.1c0.0234375 -53.8203 24.0684 -102.002 62.0996 -134.4z" />
|
1200 |
<glyph glyph-name="first-order" unicode=""
|
1201 |
d="M12.9004 218.8c0.0996094 0.100586 0.199219 0.299805 0.299805 0.400391c0 -0.100586 0 -0.299805 -0.100586 -0.400391h-0.199219zM224 351.4c7.40039 0 14.5996 -0.5 21.7002 -1.7002l-4 -67.7002l22.2998 64.2998c14.2998 -3.7998 27.7002 -9.5 40 -16.8994
|
1202 |
l-29.4004 -61.1006l45.1006 50.9004c11.5 -8.90039 21.7002 -19.2002 30.5996 -30.9004l-50.5996 -45.3994l60.8994 29.6992c7.5 -12.2998 12.9004 -26 16.6006 -40.2998l-64 -22.2998l67.7002 4c1.09961 -7.09961 1.39941 -14.5996 1.39941 -22
|
1215 |
c-22.8574 -24.8584 -87.4277 -61.1426 -120.856 -70.5723l-1.14355 -0.286133v-32.5703c0 -16.2861 -12.5723 -30.5713 -29.1426 -30.5713c-10 0 -19.4297 5.71387 -24.5723 14.2861c-5.42676 -8.57227 -14.8564 -14.2861 -24.8564 -14.2861
|
1216 |
s-19.4287 5.71387 -24.8574 14.2861c-5.14258 -8.57227 -14.5713 -14.2861 -24.5703 -14.2861c-10.2861 0 -19.4287 5.71387 -24.8574 14.2861c-5.14355 -8.57227 -14.5713 -14.2861 -24.5713 -14.2861c-18.8574 0 -29.4287 15.7139 -29.4287 32.8574
|
1217 |
c-16.2861 -12.2852 -35.7158 -19.4287 -56.5713 -19.4287c-22 0 -43.4287 8.28516 -60.2861 22.8574c10.2852 0.286133 20.5713 2.28613 30.2852 5.71387c-20.8574 5.71387 -39.4277 18.8574 -52 36.2861c21.3701 -4.64551 46.209 -1.67285 67.1426 11.1426
|
1218 |
+
c-22 22 -56.5703 58.8574 -68.5713 87.4287c-5.71387 13.4287 -6.85645 31.4287 -6.85645 45.7139c0 49.7139 20.2861 160 86.2861 160c10.5713 0 18.8564 -4.8584 23.1426 -14.8574c3.7041 5.41992 7.6709 10.5186 12 15.4277c2 2.57227 5.71387 5.42969 7.14355 8.28613
|
1219 |
c7.99902 12.5713 11.7139 21.1426 21.7139 34c32.2852 41.1445 81.7139 69.4297 134.856 69.4297c6 0 12 -0.285156 17.7148 -1.14355c10.8564 11.7148 26 18.2861 41.7148 18.2861c14.5703 0 29.7139 -6 40 -16.2861c0.856445 -0.857422 1.42773 -2.28613 1.42773 -3.42773
|
1220 |
c0 -3.71387 -10.2852 -13.4287 -12.8574 -16.2861c4.28613 -1.42871 15.7148 -6.8584 15.7148 -12c0 -2.85742 -2.85742 -5.14258 -4.57129 -7.14258c31.4287 -27.7148 49.4287 -67.1436 56.2861 -108c4.28613 5.14258 10.2852 8.57129 17.1426 8.57129
|
1221 |
c10.5713 0 20.8574 -7.14355 28.5713 -14.001c20.8564 -18.5703 25.7139 -53.1416 25.7139 -79.7139zM188 358.572c0 -18.2861 12.5713 -37.1436 32.2861 -37.1436c19.7139 0 32.2852 18.8574 32.2852 37.1436c0 18 -12.5713 36.8564 -32.2852 36.8564
|
1228 |
c5.42871 8.57129 14.5703 14.2861 24.8574 14.2861c10 0 19.4277 -5.71387 24.5713 -14.2861c5.42871 8.57129 14.8564 14.2861 24.8574 14.2861c10 0 19.4287 -5.71387 24.8574 -14.2861c5.14258 8.57129 14.5713 14.2861 24.5723 14.2861
|
1229 |
c10.8564 0 20.8564 -6.57227 25.7139 -16c43.4268 36.2861 68.5693 92 71.4258 148.286zM432.286 261.714c0 53.7139 -34.5713 105.714 -92.5723 105.714c-30.2852 0 -58.5713 -15.1426 -78.8564 -36.8564c-19.9951 -66.3828 -27.4473 -136.571 41.4287 -136.571
|
1230 |
c28.8047 0 97.3564 28.5381 84.2861 -36.8574c28.8564 26 45.7139 65.7148 45.7139 104.571z" />
|
1231 |
+
<glyph glyph-name="google-plus" unicode="" horiz-adv-x="512"
|
1232 |
+
d="M256 440c136.9 0 248 -111.1 248 -248s-111.1 -248 -248 -248s-248 111.1 -248 248s111.1 248 248 248zM185.3 68c71.2998 0 118.8 50.4004 118.8 121.2c0.000976562 0.140625 0.00195312 0.182617 0.00195312 0.323242c0 6.96289 -0.65332 13.7744 -1.90137 20.377
|
1233 |
+
h-116.9v-42.6006h70.1006c-5.2002 -34.2002 -37.5 -53.2998 -70.1006 -53.2998c-43 0 -77.2002 35.5 -77.2002 78.0996c0 42.6006 34.3008 78.1006 77.2002 78.1006c18.1006 0 36.2002 -6.2002 49.4004 -19.1006l33.5996 32.6006
|
1234 |
+
c-22.8994 21.2998 -51.7002 32.2998 -83 32.2998c-68.4375 0 -124 -55.5625 -124 -124s55.5625 -124 124 -124zM415.5 174.2h35.2002v35.5h-35.2002v35.5h-35.5v-35.5h-35.5v-35.5h35.5v-35.5h35.5v35.5z" />
|
1235 |
<glyph glyph-name="font-awesome" unicode=""
|
1236 |
+
d="M400 416c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352zM336 136v160c-31.5996 -11.2002 -41.2002 -16 -59.7998 -16c-31.4004 0 -43.4004 16 -74.6006 16
|
1237 |
+
c-25.3994 0 -37.3994 -10.4004 -57.5996 -14.4004v6.40039c0 8.83105 -7.16895 16 -16 16s-16 -7.16895 -16 -16v-192c0 -8.83105 7.16895 -16 16 -16s16 7.16895 16 16v153.6c20.2002 4 32.2002 14.4004 57.5996 14.4004c31.4004 0 43.2002 -16 74.6006 -16
|
1238 |
+
c10.2002 0 17.7998 1.40039 27.7998 4.59961v-96c-10 -3.19922 -17.5996 -4.59961 -27.7998 -4.59961c-31.4004 0 -43.4004 16 -74.6006 16c-8.91309 -0.0322266 -17.5195 -1.44336 -25.5996 -4v-32c7.86035 2.58398 16.2559 4.00195 24.9756 4.00195
|
1239 |
+
c0.208008 0 0.416016 0 0.624023 -0.00195312c31.4004 0 43.2002 -16 74.6006 -16c18.5996 0 28.2002 4.7998 59.7998 16z" />
|
|
|
1240 |
<glyph glyph-name="linode" unicode=""
|
1241 |
d="M437.4 221.7c0.599609 -2 -8.80078 -66.2998 -9.7002 -72.7998c0 -0.900391 -0.5 -1.7002 -1.10059 -2l-54.5996 -43.7002c-1.09961 -0.900391 -2.59961 -0.900391 -3.7002 0l-20.2998 14l-2.2998 -33.4004c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998
|
1242 |
l-66.8994 -53.4004c-1.10059 -0.899414 -2.90039 -0.899414 -4 0l-28 23.7002l2 -46c0 -0.899414 -0.200195 -1.7002 -1.10059 -2.2998l-83.6992 -66.9004c-0.600586 -0.299805 -1.10059 -0.599609 -1.7002 -0.599609c-0.900391 0.299805 -1.7002 0.299805 -2.2998 0.900391
|
1253 |
c12 0 22.7002 1.19922 32.7002 4.19922c-15.5 30.5 -33.7002 61.3008 -69.2002 61.3008c-6.7998 0 -13.5996 -1 -19.7998 -4l-12.2002 24.2998c14.7002 12.7998 38.5 22.7998 69 22.7998c47.7998 0 72 -23 91.5 -52.2002z" />
|
1254 |
<glyph glyph-name="free-code-camp" unicode="" horiz-adv-x="576"
|
1255 |
d="M97.2197 351.79c-43.2197 -41.6201 -64.9697 -92.5898 -64.8193 -154.021c0.15918 -68 23.0293 -122.67 67.4795 -165c9.33984 -8.34961 13.2002 -14.9199 13.2002 -20.5498c0 -2.75 -1.90039 -5.62012 -3.81055 -8.37988
|
1256 |
+
c-2.19141 -2.1543 -5.12598 -3.56836 -8.36914 -3.83984c-10.2803 0 -24.6807 12.1396 -43.4707 35.79c-36.5898 44.8701 -53.1992 94.3398 -54.0596 161.87s20.3096 113.34 61.79 160.6c14.9199 16.9004 27.3594 25.6904 35.8398 25.6904
|
1257 |
+
c3.12402 -0.0712891 6.03027 -1.11914 8.38965 -2.83984c1.91016 -1.91016 3.83008 -4.66016 3.83008 -7.41992c0 -4.78027 -5.63965 -11.25 -16 -21.9004zM239.47 27.9297c0.580078 -0.370117 0.910156 -0.549805 0.910156 -0.549805zM333.26 27.3799l0.169922 0.129883
|
1258 |
c-0.189453 -0.129883 -0.259766 -0.179688 -0.169922 -0.129883zM336.39 185.56c16.2305 -4.14941 24.04 24.04 30.0303 30.0508c84.71 -110.101 -27.5098 -184.45 -33 -188.101c3.86035 3.04004 44.3301 49.7705 21.5801 76.5498
|
1259 |
c-1 1.03027 -67.2998 -20.0596 -54.8398 53.54c8.30957 48.6807 -7.60059 71.1309 -7.60059 71.1309c-17.9697 -37.29 -32.5 -53.8604 -43.5 -72.1602c-56.9492 -92.9404 -16.2793 -124.29 -9.5498 -128.641c-10.54 6.5 -108.27 70.8799 -34 175.23
|
1260 |
c78.3701 110.189 62.8301 159.57 62.8301 159.57c118.46 -94.2803 51.8105 -173.021 68.0498 -177.171zM510.88 358.31c41.4404 -47.3096 62.6699 -93.1592 61.75 -160.649s-17.4697 -117.021 -54.0596 -161.87c-18.79 -23.6602 -33.1904 -35.79 -43.4707 -35.79
|
1261 |
+
c-3.24219 0.279297 -6.17676 1.69629 -8.36914 3.84961c-1.91016 2.76074 -3.81055 5.63086 -3.81055 8.38086c0.0205078 5.62988 3.86035 12.1992 13.2002 20.5498c44.4795 42.3701 67.3203 97 67.4795 165c0.180664 61.4697 -21.5898 112.45 -64.8193 154.06
|
1262 |
+
c-10.4004 10.6406 -16 17.1201 -16 21.9004c0 2.75977 1.91992 5.50977 3.83008 7.41992c2.35938 1.7207 5.26562 2.76855 8.38965 2.83984c8.51953 0 21 -8.79004 35.8799 -25.6904z" />
|
1263 |
<glyph glyph-name="telegram" unicode="" horiz-adv-x="496"
|
1264 |
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM369.8 270.1c3.60059 16.8008 -6.09961 23.5 -17.2002 19.5l-239.1 -92.1992c-16.4004 -6.40039 -16.0996 -15.5 -2.7998 -19.7002l61.2002 -19.1006l142 89.4004
|
1265 |
c6.59961 4.40039 12.6992 1.90039 7.69922 -2.5l-114.899 -103.8l-4.40039 -63.1006c6.40039 0 9.2002 2.80078 12.5 6.10059l29.9004 28.7998l62 -45.7002c11.2998 -6.39941 19.3994 -3.09961 22.3994 10.5z" />
|
1266 |
+
<glyph glyph-name="bandcamp" unicode="" horiz-adv-x="512"
|
1267 |
+
d="M256 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM304.2 113.9l84.7002 156.1h-181l-84.7002 -156.1h181z" />
|
1268 |
<glyph glyph-name="grav" unicode="" horiz-adv-x="512"
|
1269 |
d="M301.1 236c4.40039 -4.40039 4.40039 -11.9004 0 -16.2998l-9.69922 -9.7002c-4.40039 -4.7002 -11.9004 -4.7002 -16.6006 0l-10.5 10.5c-4.39941 4.7002 -4.39941 11.9004 0 16.5996l9.7002 9.7002c4.40039 4.40039 11.9004 4.40039 16.5996 0zM270.9 255.7
|
1270 |
c-2.7002 -2.7998 -7.40039 -2.7998 -10.5 0c-2.80078 3 -2.80078 7.7002 0 10.5c3 3 7.69922 3 10.5 0c3 -2.7002 3 -7.5 0 -10.5zM244.9 250.4c2.7998 3 7.5 3 10.5 0c2.7998 -2.7002 2.7998 -7.40039 0 -10.2002c-3 -3 -7.7002 -3 -10.5 0c-3 2.7002 -3 7.39941 0 10.2002
|
1288 |
c5.69922 -6.7998 11.8994 -9.7998 20.8994 -9.7998c19.7998 0 22.2002 15.2002 22.2002 30.9004zM265 218.1v-49.2998c0 -9.7002 1.90039 -18.7002 -10.2998 -18.3994v83.6992c11.8994 0 10.2998 -6.2998 10.2998 -16zM350.5 192v-32.7002
|
1289 |
c0 -5.39941 1.59961 -14.3994 -6.2002 -14.3994c-1.59961 0 -3 0.799805 -3.7998 2.39941c-2.2002 5.10059 -1.09961 44.1006 -1.09961 44.7002c0 3.7998 -1.10059 12.7002 4.89941 12.7002c7.2998 0 6.2002 -7.2998 6.2002 -12.7002z" />
|
1290 |
<glyph glyph-name="ravelry" unicode="" horiz-adv-x="512"
|
1291 |
+
d="M498.252 213.777c0.129883 -0.613281 0.322266 -1.21777 0.561523 -1.78223v-37.0557c-0.194336 -0.300781 -0.516602 -0.583008 -0.552734 -0.900391c-0.619141 -5.36426 -0.837891 -10.8076 -1.87012 -16.0869c-2.06934 -10.6074 -4.15723 -21.2393 -7.0166 -31.6523
|
1292 |
+
c-4.94531 -18.0205 -12.7578 -34.8809 -22.2998 -50.9258c-8.94336 -15.126 -19.4043 -28.9668 -31.4268 -41.6387c-3.74609 -3.92188 -7.54688 -7.80078 -11.5107 -11.5c-5.31152 -4.95703 -10.5146 -10.1094 -16.2998 -14.457
|
1293 |
+
c-9.3418 -7.02344 -18.9883 -13.6533 -28.7373 -20.1006c-15.083 -9.81543 -31.6211 -17.9053 -48.9512 -23.8174c-15.3828 -5.38281 -31.1533 -9.38574 -47.4893 -10.7178c-2.52734 -0.206055 -5.02051 -0.753906 -7.52734 -1.14258h-32.2891
|
1294 |
+
c-0.358398 0.245117 -0.762695 0.436523 -1.18945 0.55957c-6.1377 0.620117 -12.3418 0.863281 -18.4121 1.87305c-13.8301 2.22949 -27.5977 5.58398 -40.6416 9.83496c-19.5498 6.43359 -38.4463 15.0176 -55.8994 25.2773
|
1295 |
+
c-15.0488 8.79004 -28.9365 18.9688 -41.7871 30.5859c-9.6875 8.70605 -18.3936 18.0898 -26.3584 28.416c-9.38184 12.1963 -17.4385 25.4316 -24 39.5283c-7.5918 16.6592 -13.3467 34.7812 -16.7295 53.2998c-2.35547 13.1611 -3.85059 26.5459 -4.4248 40.2402
|
1296 |
+
c-0.136719 3.0332 -0.209961 5.74121 -0.209961 8.80859c0 9.05566 0.599609 17.9717 1.76172 26.7119c1.52637 11.874 4.15625 23.6367 7.69043 34.7588c5.05762 15.7021 12.0283 30.7871 20.4941 44.6006c9.58203 15.9961 20.7793 30.6025 33.6484 43.9502
|
1297 |
+
c9.55469 9.83496 19.7539 19.0605 29.9268 28.2676c5.70605 5.1582 11.8066 9.9082 17.9736 14.5186c12.0029 9.04004 24.6963 17.1025 38.0801 24.1572c12.5137 6.63281 25.9795 12.1963 39.7686 16.3555c10.9453 3.41016 22.5254 5.84375 34.2559 7.09961
|
1298 |
+
c2.42773 0.225586 4.82617 0.761719 7.23633 1.15039c10.7627 -0.00195312 21.5254 0 32.2881 0.00585938c0.299805 -0.195312 0.583984 -0.516602 0.899414 -0.552734c6.87793 -0.81543 13.8467 -1.16797 20.627 -2.48242
|
1299 |
+
c11.2432 -2.18359 22.4971 -4.51465 33.5156 -7.61523c19.999 -5.78125 39.2266 -14.2031 56.7227 -24.668c17.2832 -10.0947 32.9639 -22.1357 47.1133 -36.1152c6.71973 -6.90527 12.9209 -14.0508 18.8174 -21.6895c13.4639 -16.959 24.0283 -36.4561 30.874 -57.5
|
1300 |
+
c3.88867 -11.8086 7.16211 -24.2148 9.62207 -36.5996c2.0459 -10.1748 2.53809 -20.6602 3.74609 -31zM337.135 214.927l0.00488281 67.2695c-35.2686 0 -53.1152 -9.36719 -62.04 -36.1895v31.9316h-73.5176v-190.738h73.5127v93.667
|
1301 |
+
c0 22.1396 6.37012 37.04 33.5703 37.04c11.8984 0 28.4697 -2.98047 28.4697 -2.98047z" />
|
1302 |
<glyph glyph-name="sellcast" unicode=""
|
1303 |
d="M353.4 416c52.0996 0 94.6992 -42.5996 94.6992 -94.5996v-258.801c0 -52 -42.5996 -94.5996 -94.6992 -94.5996h-258.7c-52.1006 0 -94.7002 42.5996 -94.7002 94.7002v258.7c0 52 42.5996 94.5996 94.7002 94.5996h258.7zM303.4 99.5996
|
1304 |
c27.8994 48.2002 11.1992 110.5 -37.2002 138.5c-18.6006 10.8008 0.0996094 -0.0996094 -18.5 10.7002c-25 14.4004 -46.2002 -23.2998 -21.6006 -37.5c18 -10.2002 0.800781 -0.399414 18.6006 -10.5996c27.5996 -16 37.2002 -51.7998 21.2998 -79.4004
|
1331 |
c3.10059 0 8.30078 -0.900391 7.10059 -10.9004c-1.40039 -9.39941 -35.1006 -72.2998 -38.9004 -87.6992c-4.59961 -20.6006 6.60059 -41.4004 24.9004 -50.6006c11.3994 -5.7002 62.5 -15.7002 58.5 11.1006zM376.4 3.09961c10.5996 7.5 24.8994 4.60059 32.2998 -6
|
1332 |
c7.09961 -10.5996 4.59961 -25.1992 -6 -32.5996c-10.6006 -7.09961 -24.9004 -4.59961 -32 6c-7.2002 10.5996 -4.60059 25.2002 5.7002 32.5996z" />
|
1333 |
<glyph glyph-name="font-awesome-alt" unicode=""
|
1334 |
+
d="M400 416c26.4922 0 48 -21.5078 48 -48v-352c0 -26.4922 -21.5078 -48 -48 -48h-352c-26.4922 0 -48 21.5078 -48 48v352c0 26.4922 21.5078 48 48 48h352zM416 16v352c0 8.83105 -7.16895 16 -16 16h-352c-8.83105 0 -16 -7.16895 -16 -16v-352
|
1335 |
+
c0 -8.83105 7.16895 -16 16 -16h352c8.83105 0 16 7.16895 16 16zM201.6 296c31.2002 0 43.2002 -16 74.6006 -16c18.5996 0 28.2002 4.7998 59.7998 16v-160c-31.5996 -11.2002 -41.2002 -16 -59.7998 -16c-31.4004 0 -43.2002 16 -74.6006 16
|
1336 |
+
c-0.208008 0.00195312 -0.415039 -0.0175781 -0.623047 -0.0175781c-8.7207 0 -17.1162 -1.39844 -24.9766 -3.98242v32c8.08008 2.55664 16.6865 3.96777 25.5996 4c31.2002 0 43.2002 -16 74.6006 -16c10.2002 0 17.7998 1.40039 27.7998 4.59961v96
|
1337 |
+
c-10 -3.19922 -17.5996 -4.59961 -27.7998 -4.59961c-31.4004 0 -43.2002 16 -74.6006 16c-25.3994 0 -37.3994 -10.4004 -57.5996 -14.4004v-153.6c0 -8.83105 -7.16895 -16 -16 -16s-16 7.16895 -16 16v192c0 8.83105 7.16895 16 16 16s16 -7.16895 16 -16v-6.40039
|
1338 |
+
c20.2002 4 32.2002 14.4004 57.5996 14.4004z" />
|
|
|
1339 |
<glyph glyph-name="accessible-icon" unicode=""
|
1340 |
d="M423.9 192.2l-12.9004 -157.3c-3.2998 -40.7002 -63.9004 -35.1006 -60.5996 4.89941l10 122.5l-41.1006 -2.2998c10.1006 -20.7002 15.7998 -43.9004 15.7998 -68.5c0 -41.2002 -16.0996 -78.7002 -42.2998 -106.5l-39.2998 39.2998
|
1341 |
c57.9004 63.7002 13.0996 167.2 -74 167.2c-25.9004 0 -49.5 -9.90039 -67.2002 -26l-39.2998 39.2998c22 20.7002 50.0996 35.1006 81.4004 40.2002l75.2998 85.7002l-42.6006 24.7998l-51.5996 -46c-30 -26.7998 -70.5996 18.5 -40.5 45.4004l68 60.6992
|
1429 |
l-8.90039 -4.7998l-18.7998 -28.8994l68.7998 -99.8008l20.5 -29.5996c-12 -12.2998 -23.5 -24.4004 -32.7998 -34.9004l-58 31.1006l-15.7002 -15.4004l52.4004 -48.0996l40.5996 -61l17.9004 12.7002l-22.1006 64.1992c12.5 7.60059 27 17.1006 41.7002 27.1006
|
1430 |
l115.4 -110z" />
|
1431 |
<glyph glyph-name="aws" unicode="" horiz-adv-x="640"
|
1432 |
+
d="M180.41 244.99c-0.719727 -22.6504 10.5996 -32.6807 10.8799 -39.0498c-0.276367 -2.69141 -1.85352 -4.99902 -4.09961 -6.27051l-12.8008 -8.95996c-1.60352 -1.12402 -3.54785 -1.82422 -5.62988 -1.91992c-0.429688 0.0195312 -8.18945 -1.83008 -20.4795 25.6104
|
1433 |
+
c-14.4111 -17.9883 -36.5596 -29.5156 -61.3789 -29.5156c-0.427734 0 -0.804688 0.0585938 -1.23145 0.0654297c-16.2803 -0.890625 -60.4004 9.24023 -58.1299 56.21c-1.58984 38.2803 34.0596 62.0596 70.9297 60.0498
|
1434 |
c7.10059 -0.0195312 21.6006 -0.370117 46.9902 -6.26953v15.6191c2.69043 26.46 -14.7002 46.9902 -44.8096 43.9102c-2.40039 -0.00976562 -19.4004 0.5 -45.8408 -10.1094c-7.35938 -3.37988 -8.2998 -2.82031 -10.75 -2.82031
|
1435 |
+
c-7.40918 0 -4.35938 21.4795 -2.93945 24.2002c5.20996 6.39941 35.8604 18.3496 65.9395 18.1797c2.25586 0.199219 4.53906 0.301758 6.84668 0.301758c18.5547 0 35.5566 -6.61719 48.8438 -17.582c11.1152 -12.4326 17.877 -28.8398 17.877 -46.8135
|
1436 |
+
c0 -1.87891 -0.0615234 -3.70508 -0.207031 -5.5459zM93.9902 212.6c32.4297 0.470703 46.1602 19.9707 49.29 30.4707c2.45996 10.0498 2.0498 16.4102 2.0498 27.3994c-9.66992 2.32031 -23.5898 4.85059 -39.5605 4.87012
|
1437 |
c-15.1494 1.14062 -42.8193 -5.62988 -41.7393 -32.2598c-1.24023 -16.79 11.1201 -31.4004 29.96 -30.4805zM264.91 189.55c-7.86035 -0.719727 -11.5205 4.86035 -12.6797 10.3701l-49.8008 164.65c-0.969727 2.7793 -1.60938 5.64941 -1.91992 8.58008
|
1438 |
+
c-0.0341797 0.227539 -0.0527344 0.459961 -0.0527344 0.697266c0 2.30566 1.70117 4.21387 3.91309 4.55273c0.240234 0.0400391 -2.12988 0 22.25 0c8.78027 0.879883 11.6396 -6.03027 12.5498 -10.3701l35.7197 -140.83l33.1602 140.83
|
1439 |
+
c0.530273 3.21973 2.94043 11.0693 12.7998 10.2393h17.1602c2.16992 0.180664 11.1104 0.5 12.6807 -10.3691l33.4199 -142.631l36.8701 142.631c0.479492 2.17969 2.71973 11.3691 12.6797 10.3691h19.7197c0.850586 0.130859 6.15039 0.810547 5.25 -8.5791
|
1440 |
+
c-0.429688 -1.85059 3.41016 10.6592 -52.75 -169.9c-1.14941 -5.50977 -4.82031 -11.0898 -12.6797 -10.3701h-18.6904c-10.9395 -1.15039 -12.5098 9.66016 -12.6797 10.75l-33.1602 137.13l-32.7803 -136.99c-0.15918 -1.08984 -1.72949 -11.8994 -12.6797 -10.75
|
1441 |
+
h-18.2998v-0.00976562zM538.39 183.92c-5.87988 -0.00976562 -33.9199 0.299805 -57.3594 12.29c-4.59375 1.94531 -7.81934 6.49609 -7.81934 11.7949c0 0.0410156 0.00878906 0.0742188 0.00878906 0.115234v10.75c0 8.4502 6.2002 6.89941 8.83008 5.88965
|
1442 |
+
c10.04 -4.05957 16.4805 -7.13965 28.8105 -9.59961c36.6494 -7.53027 52.7695 2.2998 56.7197 4.47949c13.1504 7.81055 14.1895 25.6807 5.25 34.9502c-10.4805 8.79004 -15.4805 9.12012 -53.1299 21c-4.64062 1.29004 -43.7002 13.6104 -43.79 52.3604
|
1443 |
+
c-0.610352 28.2402 25.0498 56.1797 69.5195 55.9502c12.6699 0.00976562 46.4307 -4.13086 55.5703 -15.6201c1.34961 -2.08984 2.01953 -4.5498 1.91992 -7.04004v-10.1104c0 -4.43945 -1.62012 -6.66016 -4.87012 -6.66016
|
1444 |
+
c-7.70996 0.860352 -21.3896 11.1699 -49.1602 10.75c-6.88965 0.360352 -39.8896 -0.910156 -38.4092 -24.9697c-0.430664 -18.96 26.6094 -26.0703 29.6992 -26.8896c36.46 -10.9707 48.6504 -12.79 63.1201 -29.5801c17.1406 -22.25 7.90039 -48.2998 4.35059 -55.4404
|
1445 |
+
c-19.0801 -37.4902 -68.4199 -34.4395 -69.2607 -34.4199zM578.59 79.0596c-70.0303 -51.7197 -171.689 -79.25 -258.49 -79.25c-1.0498 -0.00683594 -2.10059 -0.00976562 -3.15234 -0.00976562c-120.699 0 -230.949 45.7383 -314.117 120.74
|
1446 |
+
c-6.53027 5.88965 -0.770508 13.96 7.16992 9.46973c93.1143 -53.2637 200.925 -83.7148 315.791 -83.7148c0.138672 0 0.950195 -0.405273 1.08887 -0.405273c85.4404 0.458984 167.381 18.2432 241.59 49.5508c11.7803 5 21.7705 -7.80078 10.1201 -16.3809z
|
1447 |
+
M607.78 112.35c-8.95996 11.5205 -59.2803 5.38086 -81.8105 2.69043c-6.79004 -0.770508 -7.93945 5.12012 -1.79004 9.46973c40.0703 28.1699 105.88 20.1006 113.44 10.6299c7.5498 -9.46973 -2.0498 -75.4092 -39.5605 -106.909
|
1448 |
+
c-5.75977 -4.87012 -11.2695 -2.30078 -8.70996 4.09961c8.44043 21.25 27.3906 68.4902 18.4307 80.0195z" />
|
1449 |
<glyph glyph-name="bimobject" unicode=""
|
1450 |
d="M416 416c17.5996 0 32 -14.4004 32 -32v-384c0 -17.5996 -14.4004 -32 -32 -32h-384c-17.5996 0 -32 14.4004 -32 32v384c0 17.5996 14.4004 32 32 32h384zM352 158.6h-0.0996094v35c0 49.4004 -11.4004 82.5 -103.801 82.5h-17.2998
|
1451 |
c-30 0 -65.0996 -8.2998 -69.7002 -38.7998h-1.09961v74.7002h-64v-232h64v34.7998h0.900391c8 -23.8994 26.2998 -38.7998 70.3994 -38.7998h16.9004c92.3994 0 103.8 33.2002 103.8 82.5996zM288 187.5v-22.9004c0 -21.6992 -3.40039 -33.7998 -38.4004 -33.7998h-45.2998
|
1454 |
d="M504 192c0 -136.967 -111.033 -248 -248 -248s-248 111.033 -248 248s111.033 248 248 248s248 -111.033 248 -248zM362.349 227.33c4.9375 32.999 -20.1904 50.7393 -54.5498 62.5732l11.1465 44.7021l-27.2129 6.78027l-10.8516 -43.5234
|
1455 |
c-7.1543 1.78223 -14.502 3.46387 -21.8027 5.12988l10.9287 43.8096l-27.1982 6.78125l-11.1523 -44.6855c-5.92188 1.34863 -11.7354 2.68164 -17.377 4.08398l0.0302734 0.139648l-37.5293 9.37012l-7.23926 -29.0625s20.1914 -4.62695 19.7646 -4.91309
|
1456 |
c11.0225 -2.75098 13.0146 -10.0439 12.6807 -15.8242l-12.6963 -50.9258c0.759766 -0.193359 1.74414 -0.472656 2.8291 -0.90625c-0.907227 0.224609 -1.87598 0.472656 -2.87598 0.712891l-17.7959 -71.3379c-1.34961 -3.34863 -4.76758 -8.37012 -12.4717 -6.46484
|
1457 |
+
c0.271484 -0.394531 -19.7793 4.9375 -19.7793 4.9375l-13.5107 -31.1475l35.4141 -8.82617c6.58887 -1.65137 13.0449 -3.37988 19.4004 -5.00684l-11.2617 -45.2129l27.1816 -6.78027l11.1533 44.7324c7.14062 -1.93457 14.4863 -3.84082 21.6865 -5.62695
|
1458 |
l-11.1152 -44.5225l27.2139 -6.78125l11.2617 45.1279c46.4043 -8.78125 81.2988 -5.23926 95.9863 36.7266c11.8359 33.79 -0.589844 53.2812 -25.0049 65.9912c17.7803 4.09766 31.1748 15.792 34.7471 39.9492zM300.172 140.151
|
1459 |
c-8.41016 -33.79 -65.3076 -15.5234 -83.7549 -10.9434l14.9443 59.8994c18.4453 -4.60352 77.5996 -13.7178 68.8105 -48.9561zM308.589 227.818c-7.67285 -30.7363 -55.0312 -15.1201 -70.3926 -11.292l13.5479 54.3262
|
1460 |
c15.3633 -3.82715 64.8359 -10.9727 56.8447 -43.0342z" />
|
1580 |
d="M87 -33.7998v73.5996h73.7002v-73.5996h-73.7002zM25.4004 101.4h61.5996v-61.6006h-61.5996v61.6006zM491.6 271.1c53.2002 -170.3 -73 -327.1 -235.6 -327.1v95.7998h0.299805v0.299805c101.7 0.200195 180.5 101 141.4 208
|
1581 |
c-14.2998 39.6006 -46.1006 71.4004 -85.7998 85.7002c-107.101 38.7998 -208.101 -39.8994 -208.101 -141.7h-95.7998c0 162.2 156.9 288.7 327 235.601c74.2002 -23.2998 133.6 -82.4004 156.6 -156.601zM256.3 40.0996h-0.299805v-0.299805h-95.2998v95.6006h95.5996
|
1582 |
v-95.3008z" />
|
1583 |
+
<glyph glyph-name="discord" unicode="" horiz-adv-x="640"
|
1584 |
+
d="M524.531 378.164c66.4014 -97.6289 99.1973 -207.758 86.9336 -334.541c-0.0498047 -0.554688 -0.338867 -1.04102 -0.764648 -1.35156c-43.8203 -32.4541 -93.7129 -57.8623 -147.062 -74.1865c-0.171875 -0.0527344 -0.354492 -0.0830078 -0.543945 -0.0830078
|
1585 |
+
c-0.625977 0 -1.18066 0.308594 -1.51855 0.783203c-11.1562 15.4766 -21.1797 31.7598 -30.0146 48.8145c-0.131836 0.256836 -0.208984 0.549805 -0.208984 0.858398c0 0.799805 0.50293 1.48438 1.20898 1.75293c15.916 5.9834 31.3828 13.3604 45.8906 21.8301
|
1586 |
+
c0.550781 0.329102 0.918945 0.928711 0.918945 1.61621c0 0.617188 -0.297852 1.16602 -0.756836 1.50977c-3.10547 2.30859 -6.18848 4.73438 -9.13184 7.16016c-0.3125 0.254883 -0.713867 0.407227 -1.14844 0.407227
|
1587 |
+
c-0.277344 0 -0.541016 -0.0625 -0.776367 -0.174805c-95.0898 -43.917 -199.271 -43.917 -295.5 0c-0.226562 0.101562 -0.480469 0.15918 -0.744141 0.15918c-0.438477 0 -0.84082 -0.15625 -1.15527 -0.415039c-2.94336 -2.42578 -6.02734 -4.82812 -9.10938 -7.13672
|
1588 |
+
c-0.453125 -0.344727 -0.74707 -0.886719 -0.74707 -1.5c0 -0.692383 0.375 -1.29883 0.932617 -1.62598c14.5459 -8.40234 30 -15.7812 45.8672 -21.8525c0.712891 -0.261719 1.21973 -0.946289 1.21973 -1.74902c0 -0.301758 -0.0722656 -0.586914 -0.200195 -0.839844
|
1589 |
+
c-8.69238 -17.1572 -18.7334 -33.4609 -30.0371 -48.8418c-0.34668 -0.459961 -0.896484 -0.755859 -1.5166 -0.755859c-0.19043 0 -0.373047 0.0283203 -0.546875 0.0800781c-53.25 16.3789 -103.055 41.7812 -146.824 74.1895
|
1590 |
+
c-0.419922 0.327148 -0.706055 0.817383 -0.765625 1.375c-10.2441 109.663 10.6387 220.702 86.8672 334.54c0.185547 0.300781 0.459961 0.537109 0.788086 0.676758c37.3066 17.1338 78.0146 29.9219 119.688 37.1064
|
1591 |
+
c0.0957031 0.015625 0.191406 0.0253906 0.292969 0.0253906c0.694336 0 1.30176 -0.375977 1.63086 -0.935547c5.56348 -9.8418 10.6553 -20.126 15.1348 -30.5996c22.0664 3.34961 43.7744 5.08691 66.7705 5.08691c22.9951 0 45.5889 -1.7373 67.6553 -5.08691
|
1592 |
+
c4.44727 10.4414 9.46191 20.7285 14.9004 30.5996c0.308594 0.5625 0.90332 0.941406 1.58887 0.941406c0.114258 0 0.225586 -0.0107422 0.333984 -0.03125c41.666 -7.19922 82.373 -19.9863 119.686 -37.1055c0.331055 -0.135742 0.601562 -0.384766 0.764648 -0.700195z
|
1593 |
+
M222.491 110.42c29.4326 0 52.8428 26.5869 52.8428 59.2412c0.462891 32.4189 -23.1777 59.2393 -52.8428 59.2393c-29.4355 0 -52.8438 -26.5898 -52.8438 -59.2412c0 -32.6523 23.8711 -59.2393 52.8438 -59.2393zM417.871 110.42
|
1594 |
+
c29.667 0 52.8438 26.5869 52.8438 59.2412c0.462891 32.4189 -23.1768 59.2393 -52.8438 59.2393c-29.4346 0 -52.8428 -26.5898 -52.8428 -59.2412c0 -32.6523 23.8721 -59.2393 52.8428 -59.2393z" />
|
1595 |
<glyph glyph-name="discourse" unicode=""
|
1596 |
d="M225.9 416c122.699 0 222.1 -102.3 222.1 -223.9c0 -121.6 -99.4004 -223.899 -222.1 -223.899l-225.801 -0.200195s-0.0996094 224 -0.0996094 227.9c0 121.6 103.3 220.1 225.9 220.1zM224 64c70.7002 0 128 57.2998 128 128s-57.2998 128 -128 128
|
1597 |
s-128 -57.2998 -128 -128c0 -22.0996 5.59961 -42.9004 15.4004 -61l-22.9004 -75l81.0996 20.0996c16.5 -7.7998 35 -12.0996 54.4004 -12.0996z" />
|
1640 |
<glyph glyph-name="facebook-f" unicode="" horiz-adv-x="320"
|
1641 |
d="M279.14 160h-74.6895v-224h-100.17v224h-81.3906v92.6602h81.3906v70.6201c0 80.3398 47.8594 124.72 121.08 124.72c35.0693 0 71.75 -6.25977 71.75 -6.25977v-78.8906h-40.4199c-39.8203 0 -52.2402 -24.71 -52.2402 -50.0596v-60.1299h88.9102z" />
|
1642 |
<glyph glyph-name="facebook-messenger" unicode="" horiz-adv-x="512"
|
1643 |
+
d="M256.55 440c140.04 0 247.45 -102.34 247.45 -240.57c0 -175.13 -166.15 -273.229 -319.44 -231.04c-8.96973 2.44043 -9.64941 0.600586 -62.5596 -22.6992c-2.4375 -1.06445 -5.14355 -1.6543 -7.97168 -1.6543c-10.7617 0 -19.541 8.55176 -19.9082 19.2236
|
1644 |
c-1.41992 46.3701 0.299805 50.7207 -8.0498 58.2305c-48.3604 43.1602 -78.0703 105.64 -78.0703 177.939c0 138.23 108.52 240.57 248.55 240.57zM405.79 254.87c7.0498 11.0801 -6.65039 23.5996 -17.0898 15.6201l-78.4102 -59.3799
|
1645 |
+
c-2.50586 -1.87988 -5.64258 -2.99316 -9.0127 -2.99316s-6.48145 1.11328 -8.9873 2.99316l-58.0596 43.46c-6.23047 4.65234 -13.9668 7.46582 -22.333 7.46582c-13.2803 0 -24.9512 -6.94434 -31.5771 -17.3965l-73 -115.569
|
1646 |
+
c-7.05078 -11.0703 6.64941 -23.6006 17.1094 -15.6699l78.3701 59.4395c2.50586 1.87891 5.64258 2.99316 9.0127 2.99316s6.48242 -1.11426 8.9873 -2.99316l58.0801 -43.4697c6.23047 -4.65039 13.9658 -7.46191 22.3301 -7.46191
|
1647 |
+
c13.2803 0 24.9512 6.94141 31.5801 17.3916z" />
|
1648 |
<glyph glyph-name="firstdraft" unicode="" horiz-adv-x="384"
|
1649 |
d="M384 256h-64v-128h-128v-128h-192v25.5996h166.4v128h128v128h89.5996v-25.5996zM358.4 217.6h25.5996v-153.6h-128v-128h-192v25.5996h166.4v128h128v128zM384 25.5996v-25.5996h-64v-64h-25.5996v89.5996h89.5996zM0 448h384v-128h-128v-128h-128v-128h-128v384z" />
|
1650 |
<glyph glyph-name="fonticons-fi" unicode="" horiz-adv-x="384"
|
1900 |
d="M147.3 333.6v-70.5996l82.7998 118.2c31.2002 44.3994 83.3008 41.7998 113.601 12.7998c27.8994 -26.7002 27.7998 -65.0996 10.3994 -89.7998l-74.8994 -107.4l90.7998 -114.8c19.9004 -24.7998 19.5996 -64.5996 -7.40039 -92.2002
|
1901 |
c-31.0996 -30.7002 -80.5 -27.2002 -103.199 0l-112.101 138.3v-76.5c0 -57.7998 -32.5996 -83.3994 -72.3994 -83.3994c-49.6006 0 -74.9004 36.0996 -74.9004 83.3994v283c0 45.2002 26.2002 81.4004 73.9004 81.4004c40.8994 0 73.3994 -26.2002 73.3994 -82.4004z" />
|
1902 |
<glyph glyph-name="laravel" unicode="" horiz-adv-x="512"
|
1903 |
+
d="M504.4 332.17c0.15625 -0.650391 0.240234 -1.32324 0.240234 -2.02051c0 -0.0234375 0 -0.046875 -0.000976562 -0.0693359v-109.85c0.000976562 -0.0244141 0.00878906 -0.0429688 0.00878906 -0.0673828c0 -2.96191 -1.61328 -5.5498 -4.00879 -6.93262
|
1904 |
+
l-92.2393 -53.1104v-105.26c0 -0.0078125 0.0078125 -0.00976562 0.0078125 -0.0166016c0 -2.96289 -1.61328 -5.55078 -4.00781 -6.93359l-192.561 -110.84c-0.442383 -0.231445 -0.916016 -0.428711 -1.39941 -0.580078
|
1905 |
+
c-0.180664 -0.0605469 -0.350586 -0.169922 -0.550781 -0.220703c-0.654297 -0.174805 -1.33789 -0.268555 -2.04688 -0.268555c-0.709961 0 -1.39844 0.09375 -2.05273 0.268555c-0.219727 0.0605469 -0.419922 0.180664 -0.629883 0.260742
|
1906 |
+
c-0.458008 0.143555 -0.908203 0.327148 -1.33008 0.540039l-192.5 110.84c-2.39551 1.38281 -4 3.96582 -4 6.92773v0.0224609v329.699c0.00195312 0.727539 0.0996094 1.42969 0.280273 2.10059c0.0839844 0.228516 0.181641 0.454102 0.290039 0.669922
|
1907 |
+
c0.133789 0.427734 0.307617 0.84668 0.509766 1.24023c0.149414 0.259766 0.370117 0.469727 0.549805 0.719727c0.21582 0.329102 0.450195 0.636719 0.709961 0.929688c0.250977 0.217773 0.512695 0.416016 0.790039 0.600586
|
1908 |
+
c0.274414 0.254883 0.56543 0.483398 0.879883 0.689453v0l96.2705 55.4199c1.1748 0.678711 2.55469 1.06738 4.00781 1.06738s2.81641 -0.388672 3.99219 -1.06738l96.29 -55.4199v0c0.307617 -0.210938 0.598633 -0.435547 0.879883 -0.679688
|
1909 |
+
c0.271484 -0.1875 0.529297 -0.385742 0.779297 -0.599609c0.260742 -0.298828 0.499023 -0.610352 0.720703 -0.94043c0.169922 -0.25 0.399414 -0.459961 0.540039 -0.719727c0.203125 -0.393555 0.379883 -0.813477 0.519531 -1.24023
|
1910 |
+
c0.0800781 -0.230469 0.219727 -0.44043 0.280273 -0.679688c0.181641 -0.661133 0.280273 -1.35352 0.280273 -2.07129v-0.0195312v-205.93l80.2197 46.1904v105.239c0.00292969 0.720703 0.100586 1.41602 0.280273 2.08008
|
1911 |
+
c0.0693359 0.240234 0.199219 0.450195 0.279297 0.680664c0.144531 0.427734 0.320312 0.850586 0.520508 1.25c0.149414 0.259766 0.370117 0.469727 0.540039 0.709961c0.21875 0.329102 0.457031 0.636719 0.719727 0.929688
|
1912 |
+
c0.248047 0.216797 0.505859 0.416016 0.780273 0.599609c0.277344 0.250977 0.568359 0.479492 0.879883 0.69043v0l96.2803 55.4502c1.1748 0.677734 2.55469 1.06641 4.00781 1.06641s2.81641 -0.388672 3.99219 -1.06641l96.2598 -55.4199
|
1913 |
+
c0.316406 -0.208984 0.613281 -0.433594 0.899414 -0.680664c0.25 -0.199219 0.540039 -0.379883 0.770508 -0.599609c0.260742 -0.298828 0.499023 -0.609375 0.719727 -0.94043c0.198242 -0.223633 0.376953 -0.458008 0.540039 -0.709961
|
1914 |
+
c0.207031 -0.396484 0.386719 -0.819336 0.530273 -1.25c0.106445 -0.217773 0.201172 -0.447266 0.280273 -0.679688zM111.6 430.72l-80.1895 -46.1602l80.1797 -46.1699l80.2002 46.1807l-80.1904 46.1494v0zM199.85 370.72l-33.6895 -19.4297l-46.5303 -26.79v-201.29
|
1915 |
+
l33.6904 19.4004l46.5293 26.79v201.319zM199.85 -42.0596l-0.109375 92.3594l-92.1904 52.1807v0v0c-0.301758 0.203125 -0.585938 0.421875 -0.859375 0.65918c-0.25 0.200195 -0.540039 0.360352 -0.770508 0.580078v0
|
1916 |
+
c-0.240234 0.265625 -0.458008 0.542969 -0.660156 0.839844c-0.21582 0.25 -0.414062 0.507812 -0.599609 0.780273v0c-0.166016 0.316406 -0.308594 0.655273 -0.419922 1c-0.149414 0.285156 -0.27832 0.589844 -0.379883 0.900391v0
|
1917 |
+
c-0.0820312 0.383789 -0.135742 0.77832 -0.160156 1.17969c-0.0595703 0.293945 -0.0996094 0.594727 -0.120117 0.900391v215.18l-46.5205 26.7998l-33.6895 19.3799v-311.18zM207.85 64.1104l117.62 67.1494l58.7998 33.5605l-80.1299 46.1299l-92.2598 -53.1104
|
1918 |
+
l-84.0898 -48.4102zM392.37 59.54v91.4102l-45.7705 -26.1504l-130.72 -74.5996v-92.3105zM392.37 178.67v91.3301l-46.5303 26.8096l-33.6895 19.4004v-91.4199l46.5293 -26.79zM400.37 283.95l80.1797 46.1797l-80.1797 46.1504l-80.2002 -46.1602zM408.37 178.67
|
1919 |
+
l80.3096 46.1504v0v91.3896l-33.6797 -19.4004l-46.6299 -26.8096v-91.3301z" />
|
1920 |
<glyph glyph-name="line" unicode=""
|
1921 |
d="M272.1 243.8v-71.0996c0 -1.7998 -1.39941 -3.2002 -3.19922 -3.2002h-11.4004c-1.09961 0 -2.09961 0.599609 -2.59961 1.2998l-32.6006 44v-42.2002c0 -1.7998 -1.39941 -3.19922 -3.2002 -3.19922h-11.3994c-1.7998 0 -3.2002 1.39941 -3.2002 3.19922v71.1006
|
1922 |
c0 1.7998 1.40039 3.2002 3.2002 3.2002h11.2998c1 0 2.09961 -0.5 2.59961 -1.40039l32.6006 -44v42.2002c0 1.7998 1.39941 3.2002 3.2002 3.2002h11.3994c1.7998 0.0996094 3.2998 -1.40039 3.2998 -3.10059zM190.1 247c1.80078 0 3.2002 -1.5 3.2002 -3.2002v-71.0996
|
1982 |
<glyph glyph-name="npm" unicode="" horiz-adv-x="576"
|
1983 |
d="M288 160h-32v64h32v-64zM576 288v-192h-288v-32h-128v32h-160v192h576zM160 256h-128v-128h64v96h32v-96h32v128zM320 256h-128v-160h64v32h64v128zM544 256h-192v-128h64v96h32v-96h32v96h32v-96h32v128z" />
|
1984 |
<glyph glyph-name="ns8" unicode="" horiz-adv-x="640"
|
1985 |
+
d="M104.324 178.828v26.1777h26.0664v-26.1777h-26.0664zM156.79 205.006h-26.3428v26.1777c-0.124023 7.05762 -5.8916 12.748 -12.9785 12.748c-7.08594 0 -12.8535 -5.69043 -12.9775 -12.748v-0.166016h-26.4004v0.166016
|
1986 |
+
c-0.000976562 0.119141 -0.000976562 0.220703 -0.000976562 0.339844c0 21.7041 17.6211 39.3242 39.3242 39.3242c21.5039 0 38.999 -17.2959 39.3213 -38.7227v-0.941406zM209.146 179.16v26.0117h26.3438v-26.0117
|
1987 |
+
c0 -0.0371094 -0.000976562 -0.0722656 -0.000976562 -0.109375c0 -64.7373 -52.5439 -117.3 -117.274 -117.331h-0.774414c-0.0380859 0 -0.0732422 0.000976562 -0.110352 0.000976562c-64.7373 0 -117.299 52.543 -117.33 117.273v0.166016h26.3369
|
1988 |
+
c0 -50.2793 40.8203 -91.1006 91.0996 -91.1006h0.609375c50.2793 0 91.1006 40.8213 91.1006 91.1006zM51.9131 179.16v25.96h-26.291v25.3994c0 50.6445 41.1162 91.7617 91.7607 91.7617s91.7607 -41.1172 91.7607 -91.7617v-25.293h-26.3438v25.293v0.200195
|
1989 |
+
c0 36.1055 -29.3135 65.4199 -65.4199 65.4199c-35.7656 0 -64.8672 -28.7646 -65.4121 -64.4023v-26.6201h26.2891v-25.957c0.356445 -21.2305 17.7031 -38.3564 39.0176 -38.3564s38.6611 17.126 39.0176 38.3564h26.3438
|
1990 |
+
c-0.140625 -35.9551 -29.374 -65.1016 -65.3613 -65.1016s-65.2207 29.1465 -65.3613 65.1016zM470.313 250.333c-11.3467 0 -20.8633 -4.75977 -24.2402 -12.1172v-8.41211c2.21875 -4.53809 6.30859 -7.69238 12.6191 -9.62988
|
1991 |
+
c4.75879 -1.37891 9.76562 -2.3623 14.832 -2.87793c6.36426 -0.827148 13.0068 -1.71484 20.6992 -4.42676c13.7256 -4.59375 24.0742 -13.2275 28.9443 -24.2412l0.166016 -0.664062l-0.166016 -25.8994c-7.69238 -17.0479 -28.668 -28.4473 -52.2998 -28.4473
|
1992 |
+
c-25.6797 0 -47.374 12.6182 -55.2891 32.0439l-0.552734 1.43848l23.0205 11.5078l0.719727 -1.49414c5.97754 -12.1211 17.5996 -19.0391 31.9336 -19.0391c12.0098 0 22.083 4.81445 25.791 12.3418v9.85059c-2.37988 4.59473 -6.47656 7.75098 -12.8398 9.85156
|
1993 |
+
c-5.20312 1.71582 -10.3506 2.37988 -15.8291 3.09961c-6.78809 0.675781 -13.4814 2.04199 -19.8135 3.98438c-14.1123 4.87109 -23.9678 13.2275 -28.668 24.2412c-0.158203 0.949219 -0.123047 -2.02637 0 24.8496c7.36133 17.0469 27.8379 28.4473 50.9727 28.4473
|
1994 |
+
c24.9062 0 45.3818 -12.0098 53.4062 -31.2705l0.609375 -1.43848l-23.2451 -11.5117l-0.71875 1.5498c-5.47949 11.6221 -16.3818 18.2637 -30.0518 18.2637zM287.568 136.656v68.3994h26.0664v-68.3994h-26.0664zM639.834 189.956l0.166016 -0.722656l-0.166016 -28.8906
|
1995 |
+
c-7.52734 -15.9941 -27.8916 -26.7305 -50.584 -26.7305s-43.0029 10.7363 -50.585 26.7305l-0.166016 0.720703l0.166016 28.8887c2.93262 6.25391 8.24121 12.0137 15.4414 16.7139c-5.57422 3.90332 -10.0391 9.14453 -13.0068 15.3311l-0.166016 0.664062
|
1996 |
+
l0.166016 25.3467c7.36133 15.9922 26.7334 26.7324 48.1504 26.7324s40.7881 -10.7402 48.1504 -26.7295l0.166016 -0.664062l-0.166016 -25.3467c-2.90137 -6.22852 -7.38379 -11.4873 -13.0078 -15.3301c7.1416 -4.7041 12.5088 -10.46 15.4414 -16.7139z
|
1997 |
+
M566.614 240.762v-13.7246c3.48535 -6.19922 12.5068 -10.3486 22.5801 -10.3486c10.0723 0 19.0938 4.14844 22.6357 10.3486v13.7246c-3.59766 6.31055 -12.6191 10.5166 -22.6357 10.5166c-10.0176 0 -18.9805 -4.20605 -22.5801 -10.5166zM613.933 168.593v16.1572
|
1998 |
+
c-3.76367 6.36523 -13.3379 10.5146 -24.6826 10.5146c-11.1836 0 -20.9756 -4.20605 -24.6836 -10.5146v-16.1572c3.70801 -6.52734 13.5586 -10.8994 24.6836 -10.8994c11.3447 0 20.9189 4.25879 24.6826 10.8994zM376.4 182.038v89.7129h25.8994v-135.095h-25.6777
|
1999 |
+
l-62.5391 94.085v0.386719h-26.5098v40.623h29z" />
|
2000 |
<glyph glyph-name="nutritionix" unicode="" horiz-adv-x="400"
|
2001 |
d="M88 439.9c0 0 133.4 8.19922 121 -104.4c0 0 19.0996 74.9004 103 40.5996c0 0 -17.7002 -74 -88 -56c0 0 14.5996 54.6006 66.0996 56.6006c0 0 -39.8994 10.2998 -82.0996 -48.7998c0 0 -19.7998 94.5 -93.5996 99.6992c0 0 75.1992 -19.3994 77.5996 -107.5
|
2002 |
c0 -0.0996094 -106.4 -7 -104 119.801zM400 124.3c0 -48.5 -9.7002 -95.2998 -32 -132.3c-42.2002 -30.9004 -105 -48 -168 -48c-62.9004 0 -125.8 17.0996 -168 48c-22.2998 37 -32 83.7998 -32 132.3c0 48.4004 17.7002 94.7002 40 131.7
|
2098 |
c-46 0 -89.5 12.7002 -126.3 34.7002l-23 80.2002l286.8 -37.3008l48.0996 13.3008l-9.69922 34.1992l-220.4 27.1006l92.5996 26.5996c30.2002 8.7002 42 15.7998 61.4004 33.2002c24.5 23 31.7002 45.5 23.5 73.5996l-10.7002 37.8008
|
2099 |
c-8.7002 30.1992 -25.0996 49.0996 -61.3994 55.1992c-25.1006 3.5 -44.5 2 -79.3008 -8.19922l-221.899 -63.9004c26 108.8 124.2 189.5 241.3 189.5zM38.2998 59.4004c-24 38.3994 -38.2998 83.2998 -38.2998 131.8z" />
|
2100 |
<glyph glyph-name="rocketchat" unicode="" horiz-adv-x="576"
|
2101 |
+
d="M284.046 223.2c0.0341797 0 0.0664062 -0.00195312 0.100586 -0.00195312c18.8496 0 34.1592 -15.2754 34.2168 -34.1113c0 -18.8281 -15.2822 -34.1143 -34.1104 -34.1143s-34.1143 15.2861 -34.1143 34.1143c0 18.7588 15.1748 34.002 33.9072 34.1133zM173.596 223.2
|
2102 |
+
c0.0332031 0 0.0673828 -0.00195312 0.100586 -0.00195312c18.8496 0 34.1592 -15.2754 34.2168 -34.1113c0 -18.8281 -15.2822 -34.1143 -34.1104 -34.1143s-34.1143 15.2861 -34.1143 34.1143c0 18.7588 15.1748 34.002 33.9072 34.1133zM394.519 223.2
|
2103 |
+
c0.0351562 0 0.0683594 -0.00195312 0.102539 -0.00195312c18.8496 0 34.1592 -15.2754 34.2148 -34.1113c0 -18.8281 -15.2822 -34.1143 -34.1104 -34.1143s-34.1133 15.2861 -34.1133 34.1143c0 18.7588 15.1738 34.002 33.9062 34.1133zM548.326 278.519
|
2104 |
+
c17.3076 -26.9443 26.0674 -55.9189 26.0898 -86.9395c0 -30.209 -8.76074 -59.2021 -26.0703 -86.125c-15.5342 -24.1934 -37.3076 -45.5703 -64.6787 -63.6191c-52.8672 -34.8164 -122.354 -53.9746 -195.667 -53.9746
|
2105 |
+
c-0.150391 -0.000976562 0.0664062 -0.00585938 -0.0830078 -0.00585938c-24.5488 0 -48.5908 2.18359 -71.9443 6.36621c-14.8564 -14.2842 -31.3604 -26.5059 -49.5098 -36.5889c-66.7744 -33.3467 -125.6 -20.9092 -155.324 -10.2002
|
2106 |
+
c-5.54492 1.96289 -9.51758 7.25488 -9.51758 13.4697c0 3.82715 1.50879 7.30469 3.96289 9.87109c20.9619 21.6748 55.6416 64.5342 47.1162 103.49c-33.1426 33.9004 -51.1123 74.7764 -51.1123 118.148c0 42.5605 17.9697 83.4365 51.1123 117.337
|
2107 |
+
c8.52148 38.9521 -26.1582 81.7939 -47.1201 103.47c-2.45996 2.56738 -3.97656 6.0498 -3.97656 9.88281c0 6.21973 3.98047 11.5156 9.53125 13.4785c29.7246 10.71 88.5488 23.1211 155.302 -10.2109c18.1504 -10.0811 34.6553 -22.3027 49.5107 -36.5879
|
2108 |
+
c23.3457 4.18066 47.0137 6.35742 71.5547 6.35742c0.15918 0 0.318359 -0.000976562 0.476562 -0.000976562c73.293 0 142.78 -19.1826 195.666 -54c27.3711 -18.0479 49.1465 -39.4453 64.6816 -63.6182zM284.987 38.0996c128.612 0 232.866 67.376 232.866 150.487
|
2109 |
+
c0 83.0957 -104.274 150.469 -232.866 150.469c-128.593 0 -232.847 -67.3691 -232.847 -150.469c0 -36.2002 19.7861 -69.4375 52.7783 -95.4004c9.28809 -29.5986 3.84668 -62.958 -16.3252 -100.078c-0.960938 -1.79297 -1.8584 -3.58496 -2.8418 -5.35645
|
2110 |
+
c18.6367 1.63574 36.5557 6.875 52.5225 14.8701c13.5889 7.65625 25.9609 16.8633 37.1377 27.585l20.1289 19.3926c28.2617 -7.47852 57.8037 -11.501 88.4033 -11.501c0.347656 0 0.695312 0 1.04297 0.000976562z" />
|
2111 |
<glyph glyph-name="rockrms" unicode="" horiz-adv-x="496"
|
2112 |
d="M248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM405.4 20.5l-101.5 118.9s73.5996 0.199219 74.1992 0.199219c29.6006 -1.09961 46.6006 33.3008 27.6006 56.1006l-157.7 185.1c-13.2002 17.2998 -40.0996 18.4004 -54.5 0
|
2113 |
l-147.1 -172.5h90l84.2998 98.9004l84.5996 -99.2998h-75.2998c-30.5 0 -44.5 -35.7002 -26.5996 -56.1006l112 -131.3h90z" />
|
2352 |
c2.39941 1.40039 5.2998 1.2002 7.39941 0l61.1006 -35.2002c2.2998 -1.2998 3.89941 -3.7998 3.89941 -6.39941v-70.4004zM230.5 310.4l-0.799805 -0.5h1.09961zM306.7 180.2l-0.400391 0.700195v-0.900391z" />
|
2353 |
<glyph glyph-name="osi" unicode="" horiz-adv-x="512"
|
2354 |
d="M8 181.56c2.2998 135.801 97.3994 232.441 213.799 248.102c138.8 18.5996 255.601 -75.7998 278 -201.101c21.2998 -118.8 -44 -230 -151.6 -274c-9.2998 -3.7998 -14.4004 -1.69922 -18 7.7002c-17.7998 46.2998 -35.5996 92.6328 -53.3994 138.999
|
2355 |
+
c-3.09961 8.10059 -1 13.2002 7 16.7998c24.2002 11 39.2998 29.4004 43.2998 55.8008c0.561523 3.60547 0.852539 7.2998 0.852539 11.0615c0 37.3613 -28.7998 67.9971 -65.3525 71.1377c-39 3.40039 -71.7998 -23.6992 -77.5 -59.6992
|
2356 |
c-5.19922 -33 11.1006 -63.7002 41.9004 -77.7002c9.59961 -4.40039 11.5 -8.60059 7.7998 -18.4004c-17.8994 -46.5996 -35.7998 -93.2324 -53.7002 -139.899c-2.59961 -6.90039 -8.2998 -9.30078 -15.5 -6.5c-52.5996 20.2998 -101.399 61 -130.8 119
|
2357 |
c-24.8994 49.1992 -25.2002 87.6992 -26.7998 108.699zM28.8994 183.461c0.399414 -6.59961 0.599609 -14.3008 1.2998 -22.1006c6.2998 -71.9004 49.5996 -143.5 131 -183.101c3.2002 -1.5 4.39941 -0.799805 5.59961 2.2998c14.9004 39.1006 29.9004 78.2012 45 117.302
|
2358 |
+
c1.2998 3.2998 0.600586 4.7998 -2.39941 6.69922c-31.6006 19.9004 -47.3008 48.5 -45.6006 86c1 21.6006 9.2998 40.5 23.7998 56.3008c30 32.6992 77 39.7998 115.5 17.5996c27.4619 -15.834 45.9629 -45.4971 45.9629 -79.4463
|
2359 |
+
c0 -3.75879 -0.321289 -7.3125 -0.762695 -10.9541c-3.59961 -30.5996 -19.2998 -53.8994 -45.7002 -69.7998c-2.69922 -1.59961 -3.5 -2.89941 -2.2998 -6c15.2002 -39.2002 30.2666 -78.4336 45.2002 -117.7c1.2002 -3.09961 2.40039 -3.7998 5.59961 -2.2998
|
2360 |
c35.5 16.6006 65.2002 40.2998 88.1006 72c34.7998 48.2002 49.0996 101.9 42.2998 161c-13.7002 117.5 -119.4 214.8 -255.5 198c-106.1 -13 -195.3 -102.5 -197.1 -225.8z" />
|
2361 |
<glyph glyph-name="react" unicode="" horiz-adv-x="512"
|
2362 |
d="M418.2 270.8c54.3994 -18.7002 93.7998 -48.0996 93.7998 -78.3994c0 -31.7002 -41.7998 -62.6006 -99.5 -81.7002c-3.09961 -1 -6.2002 -2 -9.40039 -2.90039c1.10059 -4.59961 2.10059 -9.09961 3 -13.5c11.4004 -57.5996 2.60059 -104.899 -24.3994 -120.5
|
2397 |
<glyph glyph-name="sass" unicode="" horiz-adv-x="640"
|
2398 |
d="M301.84 69.0801c-0.299805 -0.599609 -0.599609 -1.08008 0 0zM550.97 156.08c57.9092 0.300781 90.5703 -37.0801 88.9707 -71.0801c-1.10059 -26.9004 -25.6904 -37.9004 -30.29 -38.7002c-3.30078 -0.599609 -5.10059 -0.700195 -5.60059 1.90039
|
2399 |
c-0.299805 1.7998 0.900391 2.7002 4.7998 5.09961c3.90039 2.40039 15.6006 10.5 17.7002 25c2.10059 14.5 -8.7998 49.2998 -64.4795 55.7998c-26 3 -46.3906 -0.599609 -62.0898 -7.19922c2.89941 -7.60059 5.09961 -15.5 5.39941 -23.4004
|
2400 |
+
c0.799805 -17.5 -11.29 -30.4004 -23.79 -39.5996c-6.50391 -4.72559 -13.8096 -8.50879 -21.5898 -11.1006c-5.2002 -2.2002 -12.2002 -4.5 -17.0996 -3.5c-10.9004 2.2002 -16.7002 11.7998 -9.30078 33.1006c4 11.5 15.5 29 34.0908 44.0996
|
2401 |
+
c-4.30078 8.7002 -8.99023 17.5996 -11.3906 25.7002c-2.58984 8.31934 -4.7002 17.0566 -6.2002 25.7998c0 0 -15.2998 -31.7197 -35.0898 -60.6201c-1.09961 -1.7002 -2.2998 -3.39941 -3.39941 -5c3.7998 -9 6.89941 -18.5996 7.2998 -28.2002
|
2402 |
+
c0.700195 -17.3994 -6.90039 -30.5996 -19.4004 -39.7998c-6.1377 -4.40625 -12.9531 -8.00488 -20.1895 -10.5996c-3.90039 -1.7998 -12 -4.60059 -23.5 -5.40039c-6.29004 -0.5 -12.29 -0.0996094 -15.6904 2.5c-4.59961 3.40039 -5.2002 7.7998 -2.7998 13.7002
|
2403 |
+
c2 5 17.21 22.4004 30 37.5996c3.5 4.2002 6.90039 8.5 9.90039 12.5c-0.0556641 0.0507812 -0.0927734 0.121094 -0.100586 0.200195c0 0 2.2998 3 6.10059 8.2002c-4.7002 10.0996 -10.6006 20.5 -13.4004 30c-2.58984 8.32031 -4.7002 17.0576 -6.2002 25.7998
|
2404 |
c0 0 -15.4902 -39.7002 -31.6895 -71.5c-12.4902 -24.5996 -20.79 -39.5 -24.5908 -46v-0.299805s-0.5 -0.900391 -1.5 -2.40039c-0.5 -0.799805 -0.699219 -1.19922 -0.699219 -1.19922v0.0996094c-4.20996 -6.2002 -13.6104 -18.2998 -23 -18.2998
|
2405 |
c-25.7002 0 -16.3008 52.2002 -16.3008 52.2002s-7.5 -19.3008 -16 -35.9004c-6.88965 -13.5996 -13.0898 -25 -26.8896 -25c-3.90039 0 -10.1904 0.0996094 -15.3896 5c-11.8008 11.2002 -20.9004 39.7002 -19.1006 61.7002c1.5 18.7998 4.40039 31.7998 8.40039 42.5996
|
2406 |
c-7.10059 -3.89941 -15.2002 -8.39941 -23.4902 -13.2998c-4.2998 -2.5 -8.59961 -5 -12.7998 -7.5c0.0996094 -0.299805 0.299805 -0.5 0.400391 -0.799805c10.5996 -20.4004 13.3896 -65.2002 -9.60059 -99.5s-65.7803 -55.2002 -107.57 -43.6006
|
2411 |
c12.5801 18.2998 38.1797 38.5 56.5801 38.5c29.4893 0 19.3896 -42.3994 19.3896 -42.3994s0.599609 2 1.40039 2c0.799805 0 4.09961 5.5 13.1992 2.19922c9.40039 -3.5 7.2002 -10 7.30078 -10.6992c0.0996094 -1.30078 -11 -38.9004 -15.7002 -63.1006
|
2412 |
c-2.2002 -11.5 -0.900391 -19.8994 -0.299805 -19.8994c0.899414 0 2.7998 2.89941 4.5 6.09961v0.0996094s1.2998 2.40039 3.5 6.7002c0 0.200195 -0.200195 -0.299805 -0.5 -0.799805c0.199219 0.400391 0.5 0.900391 0.899414 1.7002
|
2413 |
c2.60059 5 6.2002 12.3994 10.4004 21.5996c8.18945 18.1006 39.4795 87.7002 42.0801 95.4004c2.59961 7.7002 4 15.7002 5.2998 19.0996c1.2998 3.40039 12.4102 6 25.2998 5.90039c12.8906 -0.100586 14.1904 -5.60059 14.29 -6.7002
|
2414 |
+
c0.100586 -1.09961 -6.2002 -16.4004 -7.59961 -27.2002c-1.40039 -10.7998 -0.100586 -16.2002 1.09961 -25.2998c0.799805 -6 4.5 -13.5 8.90039 -22c13.2998 21.7998 36.79 63.5996 39.0898 75.2998c1.25195 6.51465 3.06152 12.9941 5.2998 19.1006
|
2415 |
c1.29004 3.39941 12.3896 6 25.29 5.89941c12.9004 -0.0996094 14.2002 -5.59961 14.2998 -6.7002c0.100586 -1.09961 -6.2002 -16.3994 -7.59961 -27.1992c-1.40039 -10.8008 -0.100586 -16.2002 1.09961 -25.3008c1 -7.7998 7.10059 -18.1992 13 -30.0996
|
2416 |
+
c17.4492 8.59473 37.2061 13.5 57.957 13.5h0.0429688zM121.79 11.3799c19.4004 21.0996 27.3896 47.9199 19.0996 78.3203c-1 -0.600586 -2 -1.10059 -2.89941 -1.7002c0 0 -0.400391 -0.200195 -1.2002 -0.700195c-4.7998 -2.89941 -8.7002 -5.2998 -11.4004 -6.89941
|
2417 |
c-11.7998 -7.40039 -29.5898 -19.4004 -43.3896 -32.4004c-22.6904 -21.4199 -27.3896 -51 -15.4902 -57.9199c11.0898 -6.40039 36.8906 1.2002 55.2803 21.2998zM256.15 102.78c4 9.7998 19.6992 53.2998 16.1992 59.2002c-2.59961 4.5 -13.6992 0.899414 -23.79 -10.4004
|
2418 |
c-6.2998 -7 -16.8994 -25 -21.8994 -40.0996c-9.90039 -30 -5.60059 -60.5 1.39941 -62.3008c8.2002 -2.09961 21.6904 37.9004 28.0908 53.6006zM367.15 49.7803c7.7998 4.7998 24.96 16.8994 25.0898 34.7998c0 0.599609 -0.100586 1.09961 -0.100586 1.59961
|
2419 |
c-3.98926 -5.19922 -7.68945 -9.89941 -10.8896 -13.8994c-5.5 -6.7998 -19.4004 -21.7002 -19.4004 -21.7002s-2 -1.90039 -1.09961 -2.40039c1.2002 -0.699219 3.7002 0.200195 6.40039 1.60059zM452.73 69.2803c9.68945 3.5 25.7998 11.8994 25.8994 34.3994
|
2420 |
+
c-0.0830078 3.7627 -0.750977 7.4043 -1.89941 10.8008c-10.4102 -9.2002 -16.4004 -18.8008 -19 -24.5c-6.7002 -14.6006 -7 -19.3008 -5 -20.7002z" />
|
2421 |
<glyph glyph-name="vuejs" unicode=""
|
2422 |
d="M356.9 383.7h91.0996l-224 -383.7l-224 383.7h176l48 -88.6006l56 88.6006h76.9004zM55.7002 351.7l168.3 -288.2l168.2 288.2h-53.7998l-114.4 -198.2l-114.5 198.2h-53.7998z" />
|
2423 |
<glyph glyph-name="angular" unicode=""
|
2455 |
c12.5996 33.0996 -3.59961 45.5 -3.59961 45.5s-23.4004 12.9004 -33.3008 -20.2002c-9.89941 -33.0996 -6.39941 -44.8994 -6.39941 -44.8994s30.7002 -13.4004 43.2998 19.5996zM442.1 188.1c0 0 15.7002 -1.09961 26.4004 14.2002s1.2998 25.5 1.2998 25.5
|
2456 |
s-8.59961 11.1006 -19.5996 -9.09961c-11.1006 -20.1006 -8.10059 -30.6006 -8.10059 -30.6006z" />
|
2457 |
<glyph glyph-name="font-awesome-flag" unicode=""
|
2458 |
+
d="M448 400v-336c-63 -23 -82 -32 -119 -32c-63 0 -87 32 -150 32c-20 0 -36 -4 -51 -8v64c15 4 31 8 51 8c63 0 87 -32 150 -32c20 0 35 3 55 9v208c-20 -6 -35 -9 -55 -9c-63 0 -87 32 -150 32c-51 0 -75 -21 -115 -29v-307
|
2459 |
+
c0.00195312 -0.136719 0.00292969 -0.273438 0.00292969 -0.410156c0 -17.4404 -14.1602 -31.5996 -31.6006 -31.5996c-0.136719 0 -0.265625 0.0078125 -0.402344 0.00976562c-0.136719 -0.00195312 -0.273438 -0.00292969 -0.410156 -0.00292969
|
2460 |
+
c-17.4404 0 -31.5996 14.1602 -31.5996 31.6006c0 0.136719 0.0078125 0.265625 0.00976562 0.402344v384c-0.00195312 0.136719 -0.00292969 0.273438 -0.00292969 0.410156c0 17.4404 14.1602 31.5996 31.6006 31.5996
|
2461 |
+
c0.136719 0 0.265625 -0.0078125 0.402344 -0.00976562c0.136719 0.00195312 0.273438 0.00292969 0.410156 0.00292969c17.4404 0 31.5996 -14.1602 31.5996 -31.6006c0 -0.136719 -0.0078125 -0.265625 -0.00976562 -0.402344v-13c40 8 64 29 115 29c63 0 87 -32 150 -32
|
2462 |
+
c37 0 56 9 119 32z" />
|
2463 |
<glyph glyph-name="gitter" unicode="" horiz-adv-x="384"
|
2464 |
d="M66.4004 125.5h-50.4004v322.5h50.4004v-322.5zM166.9 371.9v-435.9h-50.4004v435.9h50.4004zM267.5 371.9v-435.9h-50.4004v435.9h50.4004zM368 372v-247h-50.4004v247h50.4004z" />
|
2465 |
<glyph glyph-name="hooli" unicode="" horiz-adv-x="640"
|
2485 |
l-44.4004 -9.40039v204.801h39.0996l2.30078 -11c6.19922 5.69922 17.3994 13.8994 34.7998 13.8994zM428.6 145.3c16.5 0 27.5 17.9004 27.4004 41.7998c0 23.2002 -11.2002 41.4004 -27.4004 41.4004c-10.1992 0 -16.5996 -3.7002 -21.1992 -8.7998l0.299805 -66
|
2486 |
c4.2998 -4.60059 10.5 -8.40039 20.8994 -8.40039zM301.9 111.6v153.2h44.5996v-153.2h-44.5996z" />
|
2487 |
<glyph glyph-name="stripe-s" unicode="" horiz-adv-x="384"
|
2488 |
+
d="M155.3 293.4c0 -64.2002 218 -33.7002 218 -203.9c0 -102.6 -81.7002 -153.6 -200.3 -153.6c-55.2773 0.125 -108.22 11.7861 -156 32.3994v128.5c47.9004 -26 108.9 -45.5 156.1 -45.5c31.8008 0 54.7002 8.5 54.7002 34.9004c0 68.0996 -216.8 42.5 -216.8 200.399
|
2489 |
c0 101 77.0996 161.4 192.8 161.4c47.2998 0 94.5 -7.2002 141.8 -26.0996v-134.301c-43.3994 23.4004 -98.5 36.7002 -141.899 36.7002c-29.7998 0 -48.4004 -8.59961 -48.4004 -30.8994z" />
|
2490 |
<glyph glyph-name="typo3" unicode=""
|
2491 |
d="M178.7 369.6c0 -66.3994 83.3994 -264.899 140.6 -264.899c6.90039 0 11.5 0 18.5 2.2998c-49.3994 -79.5 -110.399 -139 -146.7 -139c-77.2998 0 -184.1 234 -184.1 337.5c0 16.2998 3.90039 29.4004 9.2998 37.0996c27 32.4004 106.8 57.9004 176.3 66.4004
|
2492 |
c-8.5 -7 -13.8994 -14.7002 -13.8994 -39.4004zM301.5 416c71.7998 0 138.8 -11.5996 138.8 -52.5c0 -82.5996 -52.5 -182.3 -78.7998 -182.3c-47.9004 0 -101.7 132.1 -101.7 198.5c0 30.8994 11.6006 36.2998 41.7002 36.2998z" />
|
2493 |
<glyph glyph-name="amazon-pay" unicode="" horiz-adv-x="640"
|
2494 |
+
d="M14 122.7c2.2998 4.2002 5.2002 4.89941 9.7002 2.5c10.3994 -5.60059 20.5996 -11.4004 31.2002 -16.7002c39.8447 -19.8691 83.1084 -35.7148 127.399 -46.2998c20.5771 -4.96484 41.8789 -8.95996 63.2002 -11.7998
|
2495 |
+
c26.4932 -3.56152 53.5293 -5.40039 80.9922 -5.40039c4.97266 0 9.06348 0.0800781 14.0078 0.200195c17.4004 0.399414 34.7998 1.7998 52.0996 3.7998c56.8682 6.62891 112.369 21.4697 163.301 42.7998c2.89941 1.2002 5.89941 2 9.09961 1.2002
|
2496 |
+
c6.7002 -1.7998 9 -9 4.09961 -13.9004c-2.98828 -2.74707 -6.16797 -5.2002 -9.59961 -7.39941c-30.7002 -21.1006 -64.2002 -36.4004 -99.5996 -47.9004c-24.0801 -7.76074 -49.5137 -13.7686 -75.1006 -17.5996c-17.4854 -2.67871 -35.0918 -4.29395 -53.2002 -4.7998
|
2497 |
+
c-0.847656 -0.0517578 -1.68066 -0.152344 -2.5 -0.300781h-21.0996c-0.818359 0.148438 -1.65234 0.249023 -2.5 0.300781c-3.59961 0.199219 -7.2002 0.299805 -10.7002 0.399414c-17.1182 0.776367 -33.8633 2.55957 -50.3994 5.2998
|
2498 |
+
c-27.5244 4.48633 -54.7959 11.6387 -80.4004 20.9004c-54.1943 19.5449 -103.535 49.2734 -145.6 87c-1.80078 1.59961 -3 3.7998 -4.40039 5.7002v2zM172 382.9c2.7998 0 5.5 0 8.2998 -0.100586c3.2998 -0.5 6.60059 -0.799805 9.7998 -1.5
|
2499 |
c21.3008 -4.39941 35.4004 -17.2998 43.9004 -36.8994c6.90039 -15.9004 8.59961 -32.7002 8.09961 -49.8008c-0.399414 -15.3994 -3.2998 -30.1992 -10.2998 -44.0996c-9.2002 -18.4004 -23.3994 -30.9004 -43.7998 -34.9004c-22.5 -4.39941 -43.0996 0.5 -61 15.4004
|
2500 |
c-0.5 0.5 -1.09961 1 -2.2002 1.90039v-72.4004c0 -1 0 -2 -0.0996094 -3c-0.299805 -3 -2.10059 -5 -5 -5c-7 -0.0996094 -14.1006 -0.0996094 -21.1006 0c-2.89941 0.0996094 -4.69922 2 -4.89941 5c-0.100586 1 -0.100586 2 -0.100586 3v209.3
|
2501 |
+
c0 6.90039 1.30078 8.2002 8.2002 8.2002h11.5c4.60059 0 6.90039 -2 7.60059 -6.59961c0.5 -2.7002 0.899414 -5.5 1.2998 -8.2002c0.0537109 -0.494141 0.193359 -0.970703 0.399414 -1.40039c2.5 1.90039 4.7002 3.7002 7.10059 5.40039
|
2502 |
+
c10.8691 7.98535 23.957 13.3662 38 15.0996zM124.6 341c0.100586 -14.0996 0 -28 0 -42.0996c0 -14.1006 0.100586 -28.1006 0 -42.2002c-0.00585938 -0.0849609 -0.0126953 -0.165039 -0.0126953 -0.250977c0 -1.29102 0.686523 -2.42188 1.71289 -3.04883
|
2503 |
c11.2002 -7.90039 23.4004 -13.3008 37.4004 -13.9004c20.2002 -0.900391 35.7998 7.2002 42.5996 28.5c3.2002 10 4 20.2002 4 30.5996c0 11.2002 -1 22.3008 -4.89941 33c-6.40039 17.5 -18.6006 24.8008 -33.5 25.9004
|
2504 |
+
c-16.8008 1.2998 -31.9004 -3.7002 -45.6006 -13.2002c-1.02734 -0.605469 -1.71289 -1.7168 -1.71289 -2.99414c0 -0.103516 0.00390625 -0.205078 0.0126953 -0.305664zM330.3 382.9c4 0 8 0 11.9004 0.0996094c3.59961 -0.5 7.2002 -0.799805 10.7998 -1.2998
|
2505 |
+
c7.7002 -1.10059 15.0996 -3.10059 21.7998 -7.10059c11.6006 -6.89941 17.1006 -17.5 19 -30.3994c0.597656 -3.93945 0.905273 -7.87793 0.905273 -11.9834c0 -0.305664 -0.00195312 -0.611328 -0.00488281 -0.916992v-106
|
2506 |
+
c0.00292969 -0.157227 0.00488281 -0.282227 0.00488281 -0.44043c0 -0.794922 -0.0351562 -1.58203 -0.105469 -2.35938c-0.0742188 -2.59277 -2.19336 -4.67969 -4.7998 -4.7002c-5.39941 -0.0996094 -10.8994 -0.0996094 -16.2998 0
|
2507 |
+
c-2.90039 0.100586 -4.7998 2.10059 -5.40039 5.2002c-0.699219 3.59961 -1.19922 7.2002 -1.7998 11c-0.583984 -0.296875 -1.11816 -0.665039 -1.59961 -1.09961c-11.7998 -9.7002 -25.2002 -16.1006 -40.2998 -18.4004c-13.1006 -2 -26 -1.2002 -37.9004 5.40039
|
2508 |
+
c-12.4004 6.89941 -19.4004 17.6992 -21.4004 31.6992c-1.5 10.5 -0.799805 20.9004 3.90039 30.7002c6.09961 12.6006 16.5 20.4004 29.4004 24.9004c10.7998 3.7998 22 4.5 33.2998 3.89941c10.9355 -0.680664 21.6748 -2.35449 32 -4.89941
|
2509 |
+
c0.399414 -0.100586 0.799805 0 1.2998 -0.100586c0.107422 0.453125 0.174805 0.921875 0.200195 1.40039c-0.100586 8.2998 0 16.5996 -0.299805 24.9004c-0.200195 5.89941 -1.60059 11.5996 -5.30078 16.3994c-4.19922 5.5 -10.2998 7.40039 -16.7998 8.40039
|
2510 |
c-12.5 1.89941 -24.8994 0.899414 -37.2002 -1.40039c-7.89941 -1.5 -15.6992 -3.7002 -23.5 -5.7002c-4.69922 -1.19922 -6.69922 0.100586 -6.7998 4.90039c-0.0996094 3.2998 0.100586 6.59961 0 9.90039c-0.0996094 3.89941 1.7002 6.5 5.2998 7.69922
|
2511 |
+
c5.90039 2 11.8008 4.2002 17.9004 5.80078c9.3125 2.27539 18.9932 3.68164 28.9004 4.09961c0.899414 0.0996094 1.89941 0.299805 2.89941 0.400391zM365.3 255.2c-0.0996094 4.7002 0.100586 9.2998 0.100586 14.0996s-0.100586 9.5 0 14.2998
|
2512 |
+
c0 1.60059 -0.5 2.40039 -2.10059 2.60059c-8.39941 1.09961 -16.5996 2.7002 -25 3.39941c-2.34766 0.273438 -4.66895 0.400391 -7.08984 0.400391c-6.15625 0 -12.1016 -0.90918 -17.71 -2.59961c-8 -2.60059 -13.9004 -7.30078 -16.4004 -15.6006
|
2513 |
+
c-0.914062 -3.01953 -1.40527 -6.22168 -1.40527 -9.53906c0 -3.43457 0.527344 -6.74707 1.50586 -9.86035c1.77637 -6.16602 6.41895 -11.1133 12.3994 -13.3008c5.40039 -2.19922 11.1006 -2.39941 16.8008 -1.7998c13.8994 1.40039 26.1992 6.7998 37.3994 14.9004
|
2514 |
+
c0.90918 0.594727 1.50684 1.61719 1.50684 2.7832c0 0.0732422 -0.00195312 0.145508 -0.00683594 0.216797zM625.2 125.8v-17.2998c-0.700195 -3.59961 -1.2998 -7.2998 -2.10059 -10.9004c-4.39941 -20.2998 -11.8994 -39.1992 -24.6992 -55.5996
|
2515 |
+
c-3.97559 -4.76562 -8.1582 -9.17773 -12.7002 -13.4004c-1.33008 -1.21289 -2.98242 -2.09082 -4.7998 -2.5c-2.90039 -0.699219 -4.60059 1.2002 -4.10059 4.10059c0.243164 1.03027 0.584961 2.04785 1 3c5.7998 14.7998 11.7002 29.7002 15.7998 45.0996
|
2516 |
+
c2.10059 7.60059 3.90039 15.2998 3.5 23.2998c-0.199219 5.2002 -2.5 9 -7.59961 10.4004c-4.60352 1.3623 -9.46191 2.29004 -14.4004 2.7002c-11.3994 0.899414 -22.8994 0.200195 -34.2998 -0.900391c-7.7998 -0.799805 -15.5 -1.7002 -23.2998 -2.5
|
2517 |
+
c-0.607422 -0.0693359 -1.20215 -0.104492 -1.82715 -0.104492c-0.125 0 -0.249023 0.00195312 -0.373047 0.00488281c-1.5 -0.100586 -3.2002 0.299805 -3.59961 1.7998c-0.129883 0.450195 -0.197266 0.930664 -0.197266 1.42285
|
2518 |
+
c0 0.939453 0.253906 1.82031 0.697266 2.57715c1.00879 1.39258 2.25 2.56836 3.7002 3.5c12.0996 8.2998 25.6992 12.9004 40 15.5996c8.68945 1.59961 17.376 2.43945 26.5254 2.43945c4.26953 0 8.49707 -0.182617 12.6738 -0.539062
|
2519 |
+
c7.24512 -0.454102 14.3311 -1.80273 21 -3.90039c4.30078 -1.39941 8.10059 -3.2998 9.10059 -8.2998zM493.1 249c0.300781 -0.700195 0.501953 -1.2998 0.902344 -2.40039c2.59961 7.7002 5.2002 15 7.7002 22.2002l34.7998 100
|
2520 |
+
c0.5 1.40039 1.09961 2.7002 1.59961 4.10059c0.980469 3.02734 3.81543 5.21777 7.16699 5.21777c0.179688 0 0.357422 -0.00585938 0.533203 -0.0185547c6.60059 0 13.2998 0.100586 19.9004 0c2.7998 0 4.09961 -1.59961 3.7002 -4.39941
|
2521 |
+
c-0.335938 -1.89648 -0.884766 -3.76465 -1.60059 -5.5c-23.3662 -59.9336 -46.8994 -119.801 -70.5996 -179.601c-2.58691 -6.37598 -5.6875 -12.5654 -9.2002 -18.3994c-8.7998 -14.9004 -22.4004 -21.7998 -39.5 -21.4004c-5.7666 0.225586 -11.3984 0.905273 -16.9004 2
|
2522 |
+
c-5.39941 0.900391 -7.2998 3.40039 -7.39941 8.90039c-0.100586 3.2666 -0.100586 6.56641 0 9.89941c0.0996094 3.5 1.7998 5 5.2002 4.80078c2.5 -0.200195 5 -0.800781 7.5 -1c1.57227 -0.178711 3.11328 -0.264648 4.7334 -0.264648
|
2523 |
+
c3.68457 0 7.25879 0.473633 10.666 1.36426c7.2002 1.90039 12.2002 6.7998 15.2002 13.2998c3.40039 7.2998 6 15 9.2998 22.2998c1.90039 4.2002 1.5 7.7002 -0.200195 11.8008c-19.7998 48.5 -39.5 97 -59.1006 145.5
|
2524 |
+
c-0.770508 1.95117 -1.41797 4.02051 -1.90039 6.09961c-0.5 2.5 0.700195 4.5 3.2002 4.5c7.7002 0.0996094 15.2998 0 22.9004 -0.0996094c3.2002 0 5.2998 -1.90039 6.39941 -4.80078c2.10059 -5.59961 4.30078 -11.1992 6.30078 -16.8994
|
2525 |
c12.8994 -35.7666 25.7988 -71.5 38.6982 -107.2z" />
|
2526 |
<glyph glyph-name="cc-amazon-pay" unicode="" horiz-adv-x="576"
|
2527 |
d="M124.7 246.2c0.0996094 11.7998 0 23.5 0 35.2998v35.2998c0 1.2998 0.399414 2 1.39941 2.7002c11.5 8 24.1006 12.0996 38.2002 11.0996c12.5 -0.899414 22.7002 -7 28.1006 -21.6992c3.2998 -8.90039 4.09961 -18.2002 4.09961 -27.7002
|
2584 |
c-5.39941 5.7998 -17.6992 4.59961 -47.3994 4.59961l-18.7998 -96.5996h-36.5zM505 205.5c7.40039 38.4004 -18.2002 34.2998 -56.4004 34.2998l-13.6992 -70.5996c33.3994 0 62.0996 -4.7998 70.0996 36.2998zM384.2 97.7002l32.7998 168.7h70.7002
|
2585 |
c21.2002 0 36.7998 -5.5 46.5 -16.7002c18.5996 -21.4004 11.7998 -64.1006 -14.2998 -88.1006c-23.1006 -21.5996 -47 -19.0996 -90.2002 -19.0996l-8.7002 -44.7998h-36.7998z" />
|
2586 |
<glyph glyph-name="quinscape" unicode="" horiz-adv-x="512"
|
2587 |
+
d="M313.6 -26.5996c4.40039 -4.40039 8.10059 -9 13.3008 -12.5c-21.7051 -6.54492 -44.666 -10.1084 -68.4922 -10.1084c-0.636719 0 -1.27246 0.00292969 -1.9082 0.0078125c-135 0 -244.5 109.5 -244.5 244.601c0 135.1 109.4 244.6 244.5 244.6
|
2588 |
+
s244.6 -109.5 244.6 -244.6c0 -35.3008 -6.89941 -67.4004 -20.2998 -97.7002c-3 5.7002 -7.2002 10.2002 -11.2002 15.2998c11.2002 93.5 -62.0996 176.6 -157 176.6c-87.2578 0 -158.1 -70.8418 -158.1 -158.1s70.8418 -158.1 158.1 -158.1h1zM313.5 -26.5
|
2589 |
+
l0.400391 -0.0996094zM391.9 142.4c54.7393 0 99.1992 -44.4414 99.1992 -99.1797v-0.0205078c0 -54.75 -44.4492 -99.2002 -99.1992 -99.2002s-99.2002 44.4502 -99.2002 99.2002s44.4502 99.2002 99.2002 99.2002z" />
|
2590 |
<glyph glyph-name="readme" unicode="" horiz-adv-x="576"
|
2591 |
d="M528.3 401.5c26.4004 -0.200195 47.7002 -21.7002 47.7002 -48.0996v-245.7c0 -26.5 -21.5 -48 -48 -48h-89.7002c-102.1 0 -132.6 -24.4004 -147.3 -75c-0.799805 -2.7998 -5.2998 -2.7998 -6 0c-14.5996 50.5996 -45.0996 75 -147.3 75h-89.7002
|
2592 |
c-26.5 0 -48 21.5 -48 48v245.8c0 26.5 21.5 48 48 48h139.7c48.0996 0 89.7998 -33.2998 100.399 -80.2998c10.5 47 52.3008 80.2998 100.4 80.2998h139.8zM242 136.1h0.0996094v22.9004c0 2 -1.59961 3.5 -3.5 3.5h-160.399c-2 0 -3.5 -1.59961 -3.5 -3.5v-22.9004
|
2597 |
<glyph glyph-name="java" unicode="" horiz-adv-x="384"
|
2598 |
d="M277.74 135.1c-94.5 -24.8994 -277 -13.2998 -224.5 12.1006c44.5 21.3994 80.5996 19 80.5996 19s-93.0996 -22.1006 -33 -30.1006c25.4004 -3.39941 76 -2.59961 123.101 1.30078c38.5 3.19922 77.1992 10.1992 77.1992 10.1992s-13.5996 -5.7998 -23.3994 -12.5z
|
2599 |
M192.34 167.2c-48.5 43.7998 -84.0996 82.2998 -60.2002 118.2c35.1006 52.5 132.2 78.0996 110.7 162.6c0 0 53.1602 -53.2002 -50.5 -135c-83.0996 -65.5996 -19 -103.1 0 -145.8zM306.94 343.4c-111.601 -64.7002 -91 -83.5 -64.1006 -121.301
|
2600 |
+
c28.7998 -40.5 -33.8994 -72.8994 -33.8994 -72.8994s31.1992 25.5996 6.5 54c-83.7002 96.3994 91.5996 140.2 91.5 140.2zM300.84 72.9004c96.1006 49.8994 51.6006 97.8994 20.6006 91.3994c-3.75195 -0.703125 -7.4834 -1.72656 -11 -3
|
2601 |
+
c2.01367 2.86523 4.85742 5.07227 8.19922 6.2998c61.3008 21.6006 108.5 -63.5996 -19.7998 -97.2998c0.78125 0.773438 1.44922 1.63965 2 2.60059zM348 10.5996c53 -23.8994 -115.16 -72 -319.4 -38.7998c-74.8994 12.1006 36.1006 54.5 56.4004 40.2002
|
2602 |
c0 0 -6.5 0.400391 -17.7002 -2c-10.7998 -2.2998 -45.0996 -13.4004 -26.7998 -21.2998c50.7998 -22.1006 233.7 -16.7998 291.6 0.700195c30.4004 9.2998 15.9004 21.1992 15.9004 21.1992zM124.44 52c0 0 -19.6006 -11.4004 13.8994 -15.2002
|
2603 |
+
c40.6006 -4.59961 61.2998 -4 106 4.5c8.91016 -5.33594 18.4062 -9.99512 28.2002 -13.7998c-100.2 -42.9004 -226.8 2.5 -148.1 24.5zM304.24 -45.2002c69.7998 13.2002 76.2002 29.7002 76.2002 29.7002c-3.30078 -43.5996 -144.9 -52.7998 -237.101 -46.9004
|
2604 |
+
c-60.5996 3.90039 -72.3994 13.7002 -72.3994 13.6006c57.5 -9.5 154.6 -11.2002 233.3 3.59961zM260.64 95c6.01562 -5.61719 13.1807 -10.0039 21.1006 -12.7998c-121.3 -35.5 -256.3 -2.90039 -169.5 25.8994c0 0 -21.9004 -16.1992 11.5996 -19.6992
|
2605 |
c43.2998 -4.5 77.6006 -4.80078 136.8 6.59961z" />
|
2606 |
<glyph glyph-name="pied-piper-hat" unicode="" horiz-adv-x="640"
|
2607 |
d="M640 423.1c-80.7998 -53.5996 -89.4004 -92.5 -96.4004 -104.399c-6.69922 -12.2002 -11.6992 -60.2998 -23.2998 -83.6006c-11.7002 -23.5996 -54.2002 -42.1992 -66.0996 -50c-11.7002 -7.7998 -28.2998 -38.0996 -41.9004 -64.1992
|
2688 |
c-11.7998 0 -26.2998 -0.0996094 -39.3994 -0.599609c-29.1006 -0.900391 -47.2002 -6.2002 -47.2002 -25.2998c0 -12.4004 9.90039 -25.8008 35 -25.8008c33.7002 0 51.5996 18.4004 51.5996 48.4004zM32.7002 179.9c3.5 -58.3008 79.2002 -57.4004 91.2002 -21.6006
|
2689 |
h33.0996c-6.40039 -34.3994 -43 -46.0996 -74.4004 -46.0996c-57.1992 0 -82.5 31.5 -82.5 74c0 46.7998 26.2002 77.5996 83 77.5996c45.3008 0 78.4004 -23.7002 78.4004 -75.3994v-8.5h-128.8zM127.7 201.3c-2.2998 54.7002 -87.5 56.6006 -94.4004 0h94.4004z" />
|
2690 |
<glyph glyph-name="keybase" unicode=""
|
2691 |
+
d="M286.17 29c9.93457 0 18 -8.06543 18 -18s-8.06543 -18 -18 -18s-18 8.06543 -18 18s8.06543 18 18 18zM398.09 176.6c22.9102 -33.46 35.9102 -72.3398 35.9102 -110.92c0 -31.6797 -5 -60.6797 -14.5996 -86.2295
|
2692 |
+
c-3.04004 -8.0498 -10.9502 -12.7197 -18.3701 -11.1504c-6.83984 1.24023 -11.1201 9.28027 -8.60059 15.7402c11.1904 28.71 14.8799 58.3398 14.8799 81.6396c-0.0634766 9.75 -1.02246 19.1807 -2.7998 28.4307c-0.649414 -1.06055 -1.12988 -2.2207 -1.84961 -3.2207
|
2693 |
+
c-17.29 -24.5293 -50.54 -33.8896 -84.7402 -23.8398c-78.8701 23.1699 -178.02 3.81055 -236.25 -38.5898l24.6602 74.1104l-46.8203 -59.8301c2.4834 -18.6582 7.96191 -36.7539 15.7598 -53.1299c6.25 -13.1904 0.460938 -18.2402 -3.75 -20.1104
|
2694 |
+
c-4.76953 -2.12012 -13.8594 -2.7998 -19.6396 7.33008c-6.41504 11.584 -11.4131 24.3486 -14.5596 37.5596l-23.3203 -29.7998v33.6406c0 55.7695 0 125.109 62.6504 188.409c13.7461 13.917 29.1787 25.7891 46.29 35.54l-8.93066 0.540039
|
2695 |
+
c-27.8799 1.64062 -49.2402 24.8506 -47.6299 51.8506l2.36035 36.6797c0 -6.24023 0.139648 45.8799 50.75 45.8799c2.05957 0 -0.470703 0.120117 41.0596 -2.33008c2.82715 -0.19043 5.60742 -0.616211 8.29004 -1.25c7.41992 11.3398 15.6504 22.8301 24.3398 34.8906
|
2696 |
+
l5.48047 7.55957l22.8994 -13.5195c-11.29 -24 -10 -33 -9.39941 -35c9.08008 0.229492 20 -1.6709 32.4102 -5.77051c31.2002 -10.3584 53.6846 -39.8262 53.6846 -74.4844c0 -10.4883 -2.0625 -20.498 -5.80469 -29.6455
|
2697 |
+
c6.18652 -2.13965 12.3135 -4.56348 18.3799 -7.27051c47.8896 -21.2598 77.7598 -59.0898 87.2598 -73.71zM142.37 319.42c1.87695 6.54492 4.25684 13.041 7 19.1699l-29.1104 1.73047c0.610352 -0.0507812 -12.2598 0.849609 -13.2598 -11.3203l-2.41016 -36.6602
|
2698 |
+
c-0.00683594 -0.174805 -0.00292969 -0.34375 -0.00292969 -0.520508c0 -6.60449 5.22461 -11.998 11.7627 -12.2695l22.3809 -1.33984c-0.457031 3.73438 -0.692383 7.34863 -0.692383 11.2061c0 2.81836 0.125977 5.6084 0.37207 8.36426l-13.1299 0.779297l1.38965 21.79
|
2699 |
+
zM290.79 147.24c2.27441 1.75195 3.72949 4.50586 3.72949 7.59668c0 2.19922 -0.742188 4.22559 -1.98926 5.84277l-81.0898 96.3203c-1.9043 2.21094 -4.72949 3.60156 -7.87305 3.60156c-2.42578 0 -4.65918 -0.833984 -6.42773 -2.23145
|
2700 |
+
c-2.27344 -1.74805 -3.72754 -4.49902 -3.72754 -7.58594c0 -2.19531 0.741211 -4.21973 1.98828 -5.83398c0.0898438 -0.140625 18.5996 -22.1406 18.5996 -22.1406l-16.9102 -13.29c-1.75879 -1.34863 -2.88477 -3.47461 -2.88477 -5.86133
|
2701 |
+
c0 -1.68359 0.564453 -3.23633 1.51465 -4.47852c0.0800781 -0.109375 2.37988 -2.91113 3.7998 -4.5293c1.4209 -1.61914 3.50977 -2.63477 5.83105 -2.63477c1.79395 0 3.44531 0.610352 4.75977 1.63477l17.0898 13.4492l14.1396 -16.7393l-34.5703 -27.1807
|
2702 |
+
c-1.74805 -1.34961 -2.86621 -3.46875 -2.86621 -5.84668c0 -1.69043 0.569336 -3.24805 1.52637 -4.49316l15.7803 -18.6396c1.48438 -1.72363 3.68555 -2.80762 6.13574 -2.80762c1.88379 0 3.61816 0.645508 4.99414 1.72754l34.4199 27l9.68066 -11.4902
|
2703 |
+
c1.92676 -2.2041 4.76465 -3.58789 7.91992 -3.58789c2.4209 0 4.65234 0.820312 6.42969 2.19824zM187.44 29c9.93359 0 18 -8.06543 18 -18s-8.06641 -18 -18 -18c-9.93457 0 -18 8.06543 -18 18s8.06543 18 18 18z" />
|
|
|
2704 |
<glyph glyph-name="mastodon" unicode=""
|
2705 |
+
d="M433 268.89c0 0 0.799805 -71.6992 -9 -121.5c-6.23047 -31.5996 -55.1104 -66.1992 -111.23 -72.8994c-20.0996 -2.40039 -93.1191 -14.2002 -178.75 6.7002c0 -0.116211 -0.00390625 -0.119141 -0.00390625 -0.235352c0 -4.63281 0.307617 -9.19434 0.904297 -13.665
|
2706 |
+
c6.62988 -49.5996 49.2197 -52.5996 89.6299 -54c40.8105 -1.2998 77.1201 10.0996 77.1201 10.0996l1.7002 -36.8994s-28.5098 -15.2998 -79.3203 -18.1006c-28.0098 -1.59961 -62.8193 0.700195 -103.33 11.4004c-112.229 29.7002 -105.63 173.4 -105.63 289.1
|
2707 |
+
c0 97.2002 63.7197 125.7 63.7197 125.7c61.9209 28.4004 227.96 28.7002 290.48 0c0 0 63.71 -28.5 63.71 -125.7zM357.88 143.69c0 122 5.29004 147.71 -18.4199 175.01c-25.71 28.7002 -79.7197 31 -103.83 -6.10059l-11.5996 -19.5l-11.6006 19.5
|
2708 |
+
c-24.0098 36.9004 -77.9297 35 -103.83 6.10059c-23.6094 -27.1006 -18.4092 -52.9004 -18.4092 -175h46.7295v114.2c0 49.6992 64 51.5996 64 -6.90039v-62.5098h46.3301v62.5c0 58.5 64 56.5996 64 6.89941v-114.199h46.6299z" />
|
2709 |
<glyph glyph-name="r-project" unicode="" horiz-adv-x="581"
|
2710 |
d="M581 221.4c0 -54.8008 -33.9004 -104.301 -88.4004 -139.7l67.4004 -113.7h-112l-40.0996 75.4004c-21.8008 -6.5 -45.1006 -11.2002 -69.4004 -13.9004v-61.5h-99.0996v61.9004c-136.101 16.0996 -239.4 95.6992 -239.4 191.5c0 107.5 130.1 194.6 290.5 194.6
|
2711 |
s290.5 -87.0996 290.5 -194.6zM114.2 206.9c0 -52.8008 51.0996 -98.4004 125.2 -119.9v208.3h199s90.5996 -1.59961 90.5996 -87.8994c0 -86.3008 -86.5996 -92.7002 -86.5996 -92.7002s17.5996 -5.2998 27.7998 -10.5c1.7002 -0.799805 4 -2.10059 6.39941 -3.7002
|
2721 |
<glyph glyph-name="teamspeak" unicode="" horiz-adv-x="512"
|
2722 |
d="M244.2 101.21c-2.40039 -12.5 -10.6006 -20 -22.5 -24.2998c-9.2002 -3.2002 -50.1006 -1.60059 -61.7002 -1c-18 1.2998 -33.2002 8.5 -43.4004 24c-14.5 22.5 -19.5 47.7002 -14.5 73.8994c4.60059 24.5 24.6006 34.7002 46.3008 22.7002
|
2723 |
c15.1992 -7.5 42.5 -27.3994 63.3994 -46.5996c20.4004 -18.7002 34.7998 -36.4004 32.4004 -48.7002zM449.2 80.4102c6.7002 -5.41016 11.2002 -22 11.5996 -32.1006c1 -50.3994 -23.8994 -68 -46.5996 -85.3994c-65.1006 -50 -295.101 -16.9004 -145.4 -6.40039
|
2724 |
+
c127.4 9 164.101 96.1006 172.101 121.5c0.679688 2.0918 2.64941 3.60352 4.9668 3.60352c1.2666 0 2.42871 -0.452148 3.33301 -1.20312zM511.2 202.81c0 -17.1992 1.89941 -34.5996 -1 -51.6992c-4 -24.7002 -29.1006 -41.7002 -53.2002 -36.7002
|
2725 |
c-7.2002 1.7002 -9.40039 7.2002 -9.40039 14.2002c0 28.0996 0.800781 56.3994 0 84.5996c-1.89941 75.79 -36.1992 132.79 -102.3 169.4c-111 60.3896 -253.2 -7 -277.8 -131.5c-6.09961 -30.4004 -1.7002 -48.3008 -3.7002 -125.801
|
2726 |
c-0.299805 -7.19922 -4.2998 -11.1992 -12 -11.5c-30.7998 -1.39941 -51.7998 18.2002 -51.7998 49v20.9004l0.799805 26.4902c2.40039 15.5 10.7002 27 24.9004 34c3.5 1.7998 5.7002 3.5 6.39941 7.7998c6.10059 33.4102 19.5 64 39.3008 91.71
|
2727 |
c2.2998 3.09961 4 5.2998 1 9.2998c-3.7002 5.40039 -1 10.2002 3 14.5c28.0996 31.7998 61.8994 55.1006 102 67.4004c96 29.4668 180.1 9.29688 252.3 -60.5098c6.7002 -6.40039 15.5 -12.9004 7 -24.4004c-1.2998 -1.7998 1.09961 -3.5 2.2002 -5
|
2728 |
+
c20.0586 -27.0264 34.2529 -59.1357 40.3994 -93.5898c0.900391 -3.7002 3 -5.10059 5.90039 -6.40039c17.3994 -8.7998 25.7002 -23.2998 26 -42.2002zM351.6 71.3096l-51.5996 7.7002c-22.7998 5.90039 -51 32.7002 22.2002 60.7998
|
2729 |
c21.5996 8.5 85.7002 37.2002 87.7998 -8c0.900391 -32 -21.9004 -63.2998 -58.4004 -60.5z" />
|
2730 |
<glyph glyph-name="first-order-alt" unicode="" horiz-adv-x="496"
|
2731 |
d="M248 440c136.97 0 248 -111.03 248 -248s-111.03 -248 -248 -248s-248 111.03 -248 248s111.03 248 248 248zM248 -48.21c132.66 0 240.21 107.55 240.21 240.21s-107.55 240.21 -240.21 240.21s-240.21 -107.55 -240.21 -240.21s107.55 -240.21 240.21 -240.21z
|
2732 |
M248 411.71c121.34 0 219.71 -98.3701 219.71 -219.71s-98.3701 -219.71 -219.71 -219.71s-219.71 98.3701 -219.71 219.71s98.3701 219.71 219.71 219.71zM248 -19.5098c116.81 0 211.51 94.7002 211.51 211.51s-94.7002 211.51 -211.51 211.51
|
2733 |
+
s-211.51 -94.6895 -211.51 -211.51s94.7002 -211.51 211.51 -211.51zM434.23 143.47c-4.46582 -17.1914 -11.3633 -33.7256 -20.1309 -48.6895l-74.1299 35.8799l61.4805 -54.8203c-10.709 -14.1553 -23.0713 -26.5469 -37.2002 -37.29l-54.7998 61.5703l35.8799 -74.2705
|
2734 |
+
c-14.9385 -8.80469 -31.4502 -15.7354 -48.6299 -20.2295l-27.29 78.4697l4.79004 -82.9297c-8.61035 -1.17969 -17.4004 -1.7998 -26.3301 -1.7998s-17.7197 0.620117 -26.3301 1.7998l4.75977 82.46l-27.1494 -78.0303
|
2735 |
+
c-17.1836 4.48828 -33.7021 11.4092 -48.6504 20.2002l35.9297 74.3398l-54.8701 -61.6396c-14.1318 10.7412 -26.5 23.1299 -37.2197 37.2793l61.5898 54.9004l-74.2598 -35.9297c-8.77051 14.9639 -15.6709 31.4971 -20.1396 48.6895l77.8398 27.1104l-82.2305 -4.75977
|
2736 |
+
c-1.15918 8.56934 -1.7793 17.3193 -1.7793 26.21c0 9 0.629883 17.8398 1.81934 26.5098l82.3799 -4.76953l-77.9395 27.1592c4.5 17.1895 11.4307 33.7148 20.2295 48.6699l74.2207 -35.9199l-61.5205 54.8604c10.7412 14.1328 23.1299 26.501 37.2803 37.2197
|
2737 |
+
l54.7598 -61.5293l-35.8301 74.1699c14.9521 8.76465 31.4717 15.6621 48.6504 20.1299l26.8701 -77.25l-4.70996 81.6094c8.60938 1.18066 17.3896 1.80078 26.3193 1.80078c8.93066 0 17.71 -0.620117 26.3203 -1.80078l-4.74023 -82.1592l27.0498 77.7598
|
2738 |
+
c17.2705 -4.5 33.6006 -11.3506 48.6309 -20.1699l-35.8203 -74.1201l54.7197 61.4697c14.1426 -10.7178 26.5186 -23.0908 37.2402 -37.2295l-61.4502 -54.7705l74.1201 35.8604c8.78906 -14.9492 15.71 -31.4678 20.2002 -48.6504l-77.8105 -27.0996l82.2402 4.75
|
2739 |
+
c1.19043 -8.66016 1.82031 -17.5 1.82031 -26.4902c0 -8.87988 -0.610352 -17.6299 -1.78027 -26.1904l-82.1201 4.75z" />
|
2740 |
<glyph glyph-name="fulcrum" unicode="" horiz-adv-x="320"
|
2741 |
d="M95.75 283.86l-35.3799 -43.5508l-35.3701 43.5508l35.3799 43.5498zM144.23 448v-211.11l-41.0801 -44.8896l41.0801 -44.8896v-211.11l-20.5107 198.18l-51 57.8203l50.9707 57.8203zM223.9 283.86l35.3799 43.5498l35.3799 -43.5498l-35.3799 -43.5508zM175.42 236.86
|
2742 |
v211.14l20.5801 -198.18l51 -57.8203l-51 -57.8203l-20.5801 -198.18v211.11l41.0801 44.8896z" />
|
2743 |
<glyph glyph-name="galactic-republic" unicode="" horiz-adv-x="496"
|
2744 |
d="M248 -56c-136.75 0 -248 111.25 -248 248s111.25 248 248 248s248 -111.25 248 -248s-111.25 -248 -248 -248zM248 423.47c-127.63 0 -231.47 -103.84 -231.47 -231.47s103.84 -231.47 231.47 -231.47s231.47 103.84 231.47 231.47s-103.84 231.47 -231.47 231.47z
|
2745 |
+
M275.62 401.66c37.6602 -4.91016 72.21 -19.7402 100.96 -41.7998l-17.3896 -17.3604c-23.9795 17.7627 -52.7207 29.9941 -83.5703 34.54v24.6201zM220.25 401.59v-24.54c-30.9697 -4.60938 -59.4502 -16.8301 -83.5195 -34.6699h-0.0800781l-17.2803 17.3604
|
2746 |
c28.7197 22.0498 63.2402 36.9102 100.88 41.8496zM232.5 351.42h31v-82.8604c10.0498 -2.0293 19.3701 -6.00977 27.6201 -11.5l58.6699 58.6709l21.9297 -21.9307l-58.6699 -58.6699c5.46973 -8.24023 9.48047 -17.5996 11.5 -27.6201h82.8701v-31h-82.8701
|
2747 |
+
c-2.03027 -10.0195 -6.04004 -19.3096 -11.5 -27.54l58.6699 -58.6895l-21.9297 -21.9307l-58.6699 58.6904c-8.25 -5.49023 -17.5703 -9.52051 -27.6201 -11.5498v-82.9004h-31v82.9004c-10.0039 2.02148 -19.4531 6.00977 -27.6699 11.4697l-58.6201 -58.6201
|
2748 |
l-21.9297 21.9297l58.6699 58.6904c-5.45996 8.23047 -9.4502 17.5205 -11.4697 27.54h-82.9004v31h82.9004c2.01953 10.0303 6 19.3896 11.4697 27.6201l-58.6699 58.6699l21.9297 21.9297l58.6201 -58.5898c8.25 5.48047 17.6299 9.38965 27.6699 11.4199v82.8701z
|
2749 |
+
M415.74 320.7c22.0996 -28.7402 36.9795 -63.3398 41.9297 -101.03h-24.6201c-4.58496 30.8906 -16.8604 59.665 -34.6699 83.6699zM80.1904 320.57l17.3896 -17.3906c-17.8301 -24.0693 -29.9902 -52.5596 -34.5898 -83.5195h-24.6504
|
2750 |
c4.94043 37.6494 19.79 72.1895 41.8506 100.91zM38.3398 164.33l24.6504 0.00976562c4.58984 -30.9502 16.7002 -59.4502 34.5098 -83.5195l-17.3604 -17.3906c-22.0498 28.7207 -36.8799 63.2607 -41.7998 100.9zM433.04 164.33h24.6201
|
2751 |
c-4.9502 -37.6699 -19.8506 -72.2197 -41.9297 -100.96l-17.3604 17.3604c17.8701 24.0996 30.0596 52.6094 34.6699 83.5996zM136.66 41.6201c24.0703 -17.8604 52.6094 -30.0205 83.5996 -34.6504v-24.6396c-37.6602 4.9502 -72.2295 19.8398 -100.96 41.9297z
|
2752 |
M359.19 41.5703h0.0791016l17.3105 -17.3906c-28.75 -22.0596 -63.29 -36.9297 -100.96 -41.8496v24.5703c30.9902 4.58984 59.4795 16.8301 83.5703 34.6699z" />
|
2756 |
c0 -14.9102 -7.38965 -32.6201 -19.1299 -48.2402c0.610352 106.761 10.8906 194.73 24.4707 215.351v26.0693zM223.52 266.75c-1.59961 -22.4004 -2.75 -46.5195 -3.47949 -72.0703c-23.2998 -11.2793 -40.7705 -33.1602 -46.3203 -59.5098
|
2757 |
c-7.71973 -2.25977 -22.71 -3.91992 -40.4893 -4.21973c-7.51074 3.66016 -16.5 5.85938 -26.1807 6.04004c1.90039 14.9102 5.87012 29.1699 11.6504 42.4199c15.4395 -8.10059 30.9297 -8.66016 35.4697 -0.959961c4.57031 7.74023 -3.58984 21.04 -18.3203 30.6602
|
2758 |
c8.68066 11.7695 18.9805 22.2998 30.5605 31.0898c9.50977 -15.5898 23.3594 -24.4404 31.3594 -19.8203c8.05078 4.65039 7.19043 21.1699 -1.70996 37.29c8.76074 3.88965 17.9404 6.92969 27.46 9.08008zM288.48 266.75
|
2759 |
+
c9.45508 -2.12695 18.7754 -5.23145 27.4492 -9.08008c-8.89941 -16.1299 -9.75977 -32.6396 -1.70996 -37.29c8 -4.62012 21.8506 4.23047 31.3604 19.8203c11.5801 -8.79004 21.8799 -19.3203 30.5596 -31.0898c-14.7197 -9.61035 -22.8896 -22.9199 -18.3193 -30.6602
|
2760 |
c4.54004 -7.7002 20.0293 -7.14062 35.4697 0.959961c5.79004 -13.25 9.75 -27.5098 11.6504 -42.4199c-9.68066 -0.19043 -18.6709 -2.37988 -26.1807 -6.04004c-17.7793 0.299805 -32.7695 1.95996 -40.4902 4.21973c-5.5498 26.3496 -23.0293 48.2305 -46.3193 59.5098
|
2761 |
c-0.719727 25.5508 -1.87988 49.6699 -3.46973 72.0703zM256 258.15c3.23047 0 5.86035 -8.81055 6.08984 -19.9307h0.0498047v-16.8799c0 -41.4199 49.0107 -95.04 93.4902 -95.04c52 0 122.76 1.4502 156.37 -29.1699v-2.50977
|
2762 |
c-9.41992 -17.1104 -20.5801 -33.1699 -33.1797 -47.9697c-12.5303 21.0898 -51.5898 40.96 -108.021 41.3496c-45.6797 -1.01953 -79.0195 -20.3301 -90.7598 -40.8701c-0.00976562 -0.00976562 0.00976562 -0.0400391 0 -0.0498047
|
2776 |
l24.2002 -47.3994s-30.2002 31.7002 -34.5 36.2002c1.7998 -68.8008 2.19922 -85.7002 2.19922 -85.7002s154.4 71.7002 68.6006 230.1c0 0 107 118 10.0996 190.7c0 0 165.5 -100 60.5 -271.5c0 0 86.7998 84.7002 41.4004 170.5c0 0 78.7002 -111 -17.2002 -233.1z" />
|
2777 |
<glyph glyph-name="mandalorian" unicode=""
|
2778 |
d="M232.27 -63.8896c-1 3.25977 -1.68945 15.8301 -1.38965 24.5801c0.549805 15.8896 1 24.7197 1.40039 28.7598c0.639648 6.2002 2.87012 20.7197 3.2793 21.3799c0.600586 1 0.400391 27.8701 -0.239258 33.1299c-0.310547 2.58008 -0.629883 11.9004 -0.69043 20.7305
|
2779 |
+
c-0.129883 16.4697 -0.530273 20.1191 -2.72949 24.7598c-1.10059 2.31934 -1.23047 3.83984 -1 11.4297c0.0546875 1.30957 0.0830078 2.62695 0.0830078 3.9502c0 3.00586 -0.142578 5.82715 -0.423828 8.75977c-2 13 -3.45996 27.7002 -3.25 33.9004
|
2780 |
+
s0.430664 7.14941 2.06055 9.66992c3.0498 4.70996 6.50977 14 8.62012 23.2695c2.25977 9.86035 3.87988 17.1807 4.58984 20.7402c1.1123 5.11914 2.61816 10.2246 4.41992 15.0498c2.26953 6.25 2.49023 15.3906 0.370117 15.3906
|
2781 |
c-0.299805 0 -1.37988 -1.2207 -2.41016 -2.70996c-1.03027 -1.49023 -4.75977 -4.80078 -8.29004 -7.36035c-8.37012 -6.08008 -11.7002 -9.38965 -12.6602 -12.5801s-1 -7.22949 -0.160156 -7.75977c0.34082 -0.209961 1.29004 -2.40039 2.11035 -4.87988
|
2782 |
+
c0.926758 -2.82617 1.42773 -5.84375 1.42773 -8.97754c0 -2.19824 -0.241211 -4.3252 -0.708008 -6.38281c-0.389648 -1.76953 -1 -5.46973 -1.45996 -8.22949c-0.459961 -2.76074 -1 -6.46094 -1.25 -8.2207c-0.181641 -1.55176 -0.731445 -3.01367 -1.5498 -4.25977
|
2783 |
+
c-1 -1 -1.13965 -0.910156 -2.0498 0.530273c-0.724609 1.4541 -1.22656 3.07324 -1.44043 4.75c-0.25 1.73926 -1.62988 7.10938 -3.08008 11.9297c-3.2793 10.9004 -3.51953 16.1504 -1 21c0.800781 1.39648 1.38086 2.96875 1.66992 4.61035
|
2784 |
c0 2.38965 -2.19922 5.31934 -7.40918 9.88965c-7 6.17969 -8.62988 7.91992 -10.2305 11.2998c-1.70996 3.60059 -3.05957 4.06055 -4.54004 1.54004c-1.78027 -3 -2.59961 -9.10938 -3 -22l-0.339844 -12.1895l2 -2.25c3.20996 -3.7002 12.0703 -16.4502 13.7803 -19.8301
|
2785 |
+
c3.41016 -6.74023 4.33984 -11.6904 4.41016 -23.5605c0.0693359 -11.8701 0.949219 -22.75 2 -24.71c0.359375 -0.660156 0.509766 -1.34961 0.339844 -1.51953s0.410156 -2.08984 1.29004 -4.27051c1.02539 -2.84082 1.73633 -5.8916 2.05957 -9
|
2786 |
+
c0.37207 -3.50684 0.950195 -6.99219 1.70996 -10.3701c2.23047 -9.55957 2.77051 -14.0801 2.39062 -20.1396c-0.200195 -3.26953 -0.530273 -11.0703 -0.730469 -17.3203c-1.30957 -41.7598 -1.84961 -58 -2 -61.21c-0.120117 -2 -0.389648 -11.5098 -0.599609 -21.0693
|
2787 |
c-0.360352 -16.3008 -1.30078 -27.3701 -2.41992 -28.6504c-0.640625 -0.729492 -8.07031 4.91016 -12.5205 9.49023c-3.75 3.87012 -4 4.79004 -2.83008 9.9502c0.700195 3 2.25977 18.29 3.33008 32.6191c0.360352 4.78027 0.80957 10.5 1 12.7109
|
2788 |
c0.830078 9.36914 1.66016 20.3496 2.61035 34.7793c0.55957 8.45996 1.33008 16.4404 1.71973 17.7305s0.889648 9.88965 1.12988 19.1094l0.429688 16.7705l-2.25977 4.2998c-1.71973 3.28027 -4.87012 6.94043 -13.2197 15.3398
|
2789 |
c-6 6.07031 -11.8398 12.2998 -12.9102 13.8506l-1.9502 2.80957l0.75 10.9004c1.08984 15.71 1.10059 48.5693 0 59.0596l-0.889648 8.7002l-3.28027 4.51953c-5.85938 8.08008 -5.7998 7.75 -6.21973 33.2705c-0.100586 6.07031 -0.379883 11.5 -0.629883 12.0596
|
2790 |
+
c-0.830078 1.87012 -3.0498 2.66016 -8.54004 3.05078c-8.86035 0.619141 -11 1.89941 -23.8506 14.5498c-6.14941 6 -12.3398 12 -13.75 13.1895c-2.80957 2.41992 -2.79004 2 -0.55957 9.62988l1.34961 4.65039l-1.68945 3
|
2791 |
+
c-0.764648 1.42578 -1.62793 2.78223 -2.58984 4.07031c-1.33008 1.50977 -5.5 10.8896 -6 13.4893c-0.100586 0.362305 -0.154297 0.743164 -0.154297 1.13672c0 1.05469 0.385742 2.02148 1.02441 2.76367c2.22949 2.86035 3.39941 5.67969 4.44922 10.7305
|
2792 |
+
c2.33008 11.1895 7.74023 26.0898 10.6006 29.2197c3.17969 3.46973 7.7002 1 9.41016 -5c1.33984 -4.79004 1.36914 -9.79004 0.0996094 -18.5498c-0.53418 -3.65918 -0.869141 -7.33594 -1 -11.1104c0 -4 0.19043 -4.69043 2.25 -7.38965
|
2793 |
+
c3.33008 -4.37012 7.72949 -7.41016 15.2002 -10.5205c1.71777 -0.71582 3.30566 -1.67969 4.71973 -2.84961c11.1699 -10.7207 18.6201 -16.1807 22.9502 -16.8506c5.17969 -0.799805 8 -4.54004 10 -13.3896c1.30957 -5.65039 4 -11.1396 5.45996 -11.1396
|
2794 |
+
c1.2041 0.246094 2.3418 0.729492 3.33008 1.38965c2 1.21973 2.25 1.73047 2.25 4.17969c-0.267578 6.07031 -0.943359 12.0078 -2 17.8398c-0.370117 1.66016 -0.780273 4.06055 -0.930664 5.35059c-0.149414 1.29004 -0.609375 3.84961 -1 5.68945
|
2795 |
+
c-2.5498 11.1602 -3.64941 15.46 -4.09961 16c-1.5498 2 -4.08008 10.2002 -4.92969 15.9209c-1.64062 11.1094 -4 14.2295 -12.9102 17.3896c-4.92969 1.81641 -9.44238 4.50195 -13.3398 7.87988c-1.15039 1 -4 3.21973 -6.35059 5.05957
|
2796 |
+
c-2.34961 1.84082 -4.40918 3.53027 -4.59961 3.76074c-0.848633 0.733398 -1.73926 1.39648 -2.69043 2c-6.23926 4.21973 -8.83984 7 -11.2598 12l-2.43945 5l-0.220703 13l-0.219727 13l6.91016 6.5498c3.9502 3.75 8.47949 7.34961 10.5898 8.42969
|
2797 |
+
c3.30957 1.69043 4.4502 1.89062 11.3701 2c8.53027 0.19043 10.1201 0 11.6602 -1.55957c1.54004 -1.56055 1.35938 -6.40039 -0.290039 -8.5c-0.592773 -0.666992 -1.05273 -1.45508 -1.33984 -2.32031c0 -0.580078 -2.61035 -4.91016 -5.41992 -9
|
2798 |
+
c-1.03906 -2.12988 -1.85156 -4.44727 -2.37012 -6.82031c20.4395 -13.3896 21.5498 -3.76953 14.0693 -29l11.3604 -2.51953c3.11035 8.66016 6.46973 17.2598 8.61035 26.2197c0.290039 7.62988 -12 4.19043 -15.4004 8.68066
|
2799 |
+
c-2.33008 5.92969 3.12988 14.1797 6.05957 19.1992c1.60059 2.33984 6.62012 4.7002 8.82031 4.15039c0.879883 -0.219727 4.16016 0.349609 7.37012 1.28027c2.41992 0.759766 4.97461 1.33398 7.5498 1.67969c2.05957 0.222656 4.08984 0.666016 6 1.29004
|
2800 |
+
c3.65039 1.11035 4.5 1.16992 6.35059 0.400391c1.85156 -0.636719 3.82324 -1.10352 5.81934 -1.36035c2.12598 -0.287109 4.17285 -0.953125 6 -1.91016c1.55078 -0.908203 3.24414 -1.64746 5 -2.16992c2.51074 -0.679688 3 -0.570312 7.05078 1.66992l4.34961 2.40039
|
2801 |
+
l10.7402 0.389648c10.4395 0.400391 10.8096 0.469727 15.2598 2.67969l4.58008 2.32031l2.45996 -1.42969c1.75977 -1 3.13965 -2.73047 4.84961 -6c2.36035 -4.51074 2.37988 -4.58008 1.37012 -7.37012c-0.879883 -2.44043 -0.889648 -3.2998 -0.0996094 -6.39062
|
2802 |
+
c0.526367 -2.03027 1.24219 -4.03516 2.09961 -5.90918c0.62793 -1.22852 1.08203 -2.5918 1.31055 -4c0.30957 -4.33008 0 -5.30078 -2.41016 -6.91992c-2.16992 -1.4707 -7 -7.91016 -7 -9.34082c-0.249023 -1.03906 -0.614258 -2.05762 -1.07031 -3
|
2803 |
+
c-5 -11.5098 -6.75977 -13.5596 -14.2598 -17c-9.2002 -4.19922 -12.2998 -5.18945 -16.21 -5.18945c-3.10059 0 -4 -0.25 -4.54004 -1.25977c-1.17383 -1.44238 -2.53613 -2.67969 -4.08984 -3.70996c-1.82715 -1.21973 -3.32031 -2.84668 -4.37988 -4.78027
|
2804 |
+
c-0.486328 -1.22852 -1.36426 -2.24707 -2.49023 -2.91016c-0.941406 -0.387695 -1.77246 -0.97168 -2.4502 -1.70996c-2.22168 -1.9502 -4.53613 -3.73047 -7 -5.37988c-3.33008 -2.33984 -6.87012 -5 -7.87012 -6c-0.666992 -0.71875 -1.47168 -1.29688 -2.37988 -1.7002
|
2805 |
+
c-0.837891 -0.376953 -1.5625 -0.941406 -2.12988 -1.65039c-1.31055 -1.38965 -1.49023 -2.10938 -1.13965 -4.59961c0.310547 -2.00488 0.795898 -3.99707 1.41992 -5.87988c1.31934 -3.7998 1.30957 -7.86035 0 -10.5703
|
2806 |
+
c-1.31055 -2.70996 -0.890625 -6.64941 1.34961 -9.58984c2 -2.62988 2.16016 -4.55957 0.709961 -8.83984c-0.692383 -2.67969 -1.06152 -5.48926 -1.06152 -8.38379c0 -0.183594 -0.000976562 -0.34375 0.00195312 -0.526367
|
2807 |
+
c0 -4.87988 0.219727 -6.28027 1.45996 -8.37988c1.23926 -2.09961 1.81934 -2.48047 3.23926 -2.32031c2 0.230469 2.30078 1.0498 4.70996 12.1201c2.18066 10 3.70996 11.9199 13.7607 17.0801c2.93945 1.50977 7.45996 4 10 5.44043
|
2808 |
+
c2.54004 1.43945 6.79004 3.68945 9.37012 4.90918c5.99512 2.625 11.1807 6.62598 15.2197 11.6709c7.10938 8.78906 10 16.2197 12.8496 33.2998c0.362305 2.81152 1.37402 5.46387 2.86035 7.72949c1.39648 2.17676 2.40332 4.6748 2.88965 7.31055
|
2809 |
+
c1 5.2998 2.85059 9.08008 5.58008 11.5098c4.7002 4.17969 6 1.08984 4.58984 -10.8701c-0.459961 -3.86035 -1.09961 -10.3301 -1.43945 -14.3799l-0.610352 -7.36035l4.4502 -4.08984l4.4502 -4.08984l0.109375 -8.41992
|
2810 |
+
c0.0605469 -4.62988 0.470703 -9.53027 0.919922 -10.8896l0.820312 -2.4707l-6.42969 -6.2793c-8.54004 -8.33008 -12.8799 -13.9307 -16.7598 -21.6104c-1.77051 -3.49023 -3.74023 -7.11035 -4.38086 -8c-2.17969 -3.11035 -6.45996 -13 -8.75977 -20.2598
|
2811 |
+
l-2.29004 -7.2207l-7 -6.48926c-3.83008 -3.57031 -8 -7.25 -9.16992 -8.16992c-3.0498 -2.32031 -4.25977 -5.15039 -4.25977 -10c-0.00878906 -0.204102 -0.0126953 -0.40918 -0.0126953 -0.614258c0 -2.39062 0.583984 -4.65332 1.60254 -6.64648
|
2812 |
+
c0.789062 -1.54785 1.49512 -3.17871 2.08984 -4.83008c0.350586 -1.05859 0.887695 -2.03809 1.57031 -2.88965c1.40039 -1.58984 1.91992 -16.1201 0.830078 -23.2197c-0.679688 -4.48047 -3.62988 -12 -4.7002 -12c-1.79004 0 -4.05957 -9.27051 -5.07031 -20.7402
|
2813 |
+
c-0.179688 -2 -0.620117 -5.94043 -1 -8.7002s-1 -10 -1.34961 -16.0498c-0.770508 -12.2197 -0.19043 -18.7705 2 -23.1504c3.41016 -6.68945 0.519531 -12.6895 -11 -22.8398l-4 -3.49023l0.0703125 -5.18945c0.0546875 -3.05273 0.448242 -6.01562 1.13965 -8.87012
|
2814 |
+
c4.61035 -16 4.73047 -16.9199 4.37988 -37.1299c-0.459961 -26.4004 -0.259766 -40.2705 0.629883 -44.1504c0.489258 -2.28223 0.853516 -4.63086 1.08008 -7c0.169922 -2 0.660156 -5.33008 1.08008 -7.35938c0.469727 -2.26074 0.780273 -11 0.790039 -22.7402v-19.0605
|
2815 |
+
l-1.80957 -2.62988c-2.70996 -3.91016 -15.1104 -13.54 -15.4902 -12.29zM261.8 -18.7803c-0.179688 0.299805 -0.330078 6.87012 -0.330078 14.5898c0 14.0605 -0.889648 27.54 -2.25977 34.4502c-0.400391 2 -0.80957 9.7002 -0.900391 17.0605
|
2816 |
+
c-0.149414 11.9297 -1.39941 24.3701 -2.63965 26.3799c-0.660156 1.06934 -3 17.6602 -3 21.2998c0 4.23047 1 6 5.28027 9.12988s4.85938 3.13965 5.47949 0.719727c0.280273 -1.09961 1.4502 -5.61914 2.60059 -10c3.92969 -15.1191 4.13965 -16.2695 4.0498 -21.7393
|
2817 |
+
c-0.0996094 -5.78027 -0.129883 -6.12988 -1.74023 -17.7305c-1 -7.07031 -1.16992 -12.3896 -1 -28.4297c0.169922 -19.4004 -0.639648 -35.7305 -2 -41.2705c-0.709961 -2.7793 -2.7998 -5.47949 -3.42969 -4.42969zM190.8 18.7998
|
2818 |
+
c-0.761719 3.52051 -1.3457 7.14453 -1.72949 10.79c-0.382812 3.64648 -0.967773 7.27051 -1.73047 10.79c-0.513672 2.0957 -0.854492 4.27344 -1 6.49023c-0.30957 3.18945 -0.910156 7.45996 -1.33008 9.47949c-1 4.79004 -3.34961 19.3506 -3.41992 21.0703
|
2819 |
c0 0.740234 -0.339844 4.0498 -0.700195 7.36035c-0.669922 6.20996 -0.839844 27.6699 -0.219727 28.29c1 1 6.62988 -2.76074 11.3301 -7.43066l5.28027 -5.25l-0.450195 -6.46973c-0.25 -3.55957 -0.599609 -10.2295 -0.780273 -14.8301
|
2820 |
+
c-0.179688 -4.59961 -0.490234 -9.87012 -0.669922 -11.71s-0.610352 -9.36035 -0.939453 -16.7197c-0.790039 -17.4102 -1.94043 -31.29 -2.65039 -32c-0.113281 -0.119141 -0.273438 -0.194336 -0.450195 -0.194336c-0.239258 0 -0.446289 0.135742 -0.549805 0.333984
|
2821 |
h0.00976562zM103.62 285.39c21.0703 -12.79 17.8398 -14.1494 28.4902 -17.6592c13 -4.29004 18.8701 -7.13086 23.1494 -16.8701c-43.6602 -36.1406 -69.0098 -57.8604 -76.71 -70.8604c-31 -52 -6 -101.59 62.75 -87.21c-14.1797 -29.2305 -78 -28.6299 -98.6797 4.90039
|
2822 |
c-24.6797 39.9492 -22.0898 118.3 61 187.659v0.0400391zM314.41 106.39c56.6602 -6.87988 82.3203 37.7402 46.54 89.2305c0 0 -26.8701 29.3398 -64.2803 68c3 15.4502 9.49023 32.1201 30.5703 53.8203c89.2002 -63.5107 92 -141.61 92.46 -149.36
|
2823 |
c4.2998 -70.6396 -78.7002 -91.1797 -105.29 -61.71v0.0195312z" />
|
2826 |
c7.90039 -1.33008 15.6699 -3.28027 23.3906 -5.39941c12.2393 -3.4707 24.1895 -7.91992 35.7598 -13.21c26.5596 -12.2402 50.9395 -29.21 71.6299 -49.8809c20.0303 -20.0898 36.7197 -43.5498 48.8896 -69.1895c1.12988 -2.58984 2.44043 -5.10059 3.4707 -7.74023
|
2827 |
c2.80957 -6.42969 5.38965 -12.9697 7.58008 -19.6299c4.13965 -12.3301 7.33984 -24.9902 9.41992 -37.8301c0.569336 -3.13965 1.04004 -6.2998 1.39941 -9.46973c0.549805 -3.83008 0.94043 -7.69043 1.18066 -11.5605
|
2828 |
c0.829102 -8.33984 0.839844 -16.7295 0.769531 -25.0996c-0.0703125 -4.96973 -0.259766 -9.94043 -0.75 -14.8896c-0.240234 -3.38086 -0.509766 -6.76074 -0.979492 -10.1201c-0.390625 -2.7207 -0.630859 -5.45996 -1.11035 -8.16992
|
2829 |
+
c-0.900391 -5.15039 -1.7002 -10.3105 -2.87012 -15.4102c-4.09961 -18.5 -10.2998 -36.5498 -18.5098 -53.6299c-15.7705 -32.8301 -38.8301 -62.1699 -67.1201 -85.1201c-17.2012 -14.0635 -36.3066 -25.8115 -56.9102 -34.8604
|
2830 |
c-6.20996 -2.67969 -12.46 -5.25 -18.8701 -7.41016c-3.50977 -1.16016 -7.00977 -2.37988 -10.5703 -3.38965c-6.61914 -1.87988 -13.2891 -3.63965 -20.0391 -5c-4.66016 -0.910156 -9.34082 -1.73047 -14.0303 -2.48047c-5.25 -0.65918 -10.5 -1.43945 -15.79 -1.73926
|
2831 |
c-6.69043 -0.660156 -13.4102 -0.839844 -20.1201 -0.810547c-6.82031 -0.0292969 -13.6504 0.120117 -20.4502 0.790039c-3.29004 0.230469 -6.57031 0.5 -9.83008 0.950195c-2.71973 0.389648 -5.45996 0.629883 -8.16992 1.11035
|
2832 |
c-4.12012 0.719727 -8.25 1.37012 -12.3496 2.21973c-4.25 0.939453 -8.49023 1.88965 -12.6904 3.01953c-8.62988 2.16992 -17.0801 5.01074 -25.4102 8.13086c-10.4893 4.11914 -20.79 8.75 -30.6396 14.25c-2.13965 1.14941 -4.28027 2.28906 -6.34961 3.56934
|
2910 |
<glyph glyph-name="phoenix-squadron" unicode="" horiz-adv-x="512"
|
2911 |
d="M96 384.62c46.4902 36.1299 105.55 56.0703 164.51 54.5703c29.5801 0.379883 59.1104 -5.37012 86.9102 -15.3301c-24.1299 4.62988 -49 6.33984 -73.3799 2.44922c-42.8701 -5.30957 -83.04 -27.1494 -111.83 -59.1797c5.66992 1 10.7803 3.66992 16 5.86035
|
2912 |
c18.1396 7.87012 37.4902 13.2598 57.2305 14.8301c19.7393 2.12988 39.6396 0.429688 59.2793 -1.91992c-14.4199 -2.79004 -29.1201 -4.57031 -43 -9.59082c-34.4297 -11.0693 -65.2695 -33.1592 -86.2998 -62.6299c-13.7998 -19.71 -23.6299 -42.8594 -24.6699 -67.1299
|
2913 |
+
c-0.349609 -16.4902 5.21973 -34.8096 19.8301 -44c8.0293 -4.85254 17.4395 -7.64648 27.498 -7.64648c3.4209 0 6.7793 0.289062 10.0215 0.90625c15.4502 2.45996 30.0703 8.64062 43.6006 16.3301c11.5195 6.82031 22.6699 14.5508 32 24.25
|
2914 |
+
c3.79004 3.2207 2.53027 8.4502 2.62012 12.79c-2.12012 0.339844 -4.37988 1.11035 -6.30078 -0.299805c-11.2676 -6.17773 -23.3838 -11.3975 -35.8193 -15.3701c-20 -6.16992 -42.1602 -8.45996 -62.1006 -0.779297c12.79 -1.73047 26.0605 -0.310547 37.7402 5.43945
|
2915 |
+
c20.2305 9.71973 36.8105 25.2002 54.4404 38.7705c27.625 21.2686 57.3311 39.7881 88.8994 55.3096c25.71 12 52.9404 22.7803 81.5703 24.1201c-15.6299 -13.7197 -32.1504 -26.5205 -46.7803 -41.3799c-14.5098 -14 -27.46 -29.5 -40.1094 -45.1807
|
2916 |
+
c-3.52051 -4.59961 -8.9502 -6.93945 -13.5801 -10.1592c-22.333 -15.0176 -40.1992 -35.627 -51.8906 -60.1006c-9.33008 -19.6797 -14.5 -41.8496 -11.7695 -63.6494c1.93945 -13.6904 8.70996 -27.5908 20.8994 -34.9102c12.9004 -8 29.0508 -8.07031 43.4805 -5.10059
|
2917 |
c32.7998 7.4502 61.4297 28.8906 81 55.8408c20.4404 27.5195 30.5195 62.1992 29.1602 96.3496c-0.520508 7.5 -1.57031 15 -1.66016 22.4902c8 -19.4805 14.8203 -39.71 16.6504 -60.8301c2 -14.2803 0.75 -28.7598 -1.62012 -42.9004
|
2918 |
+
c-1.91016 -11 -5.66992 -21.5098 -7.78027 -32.4297c19.9287 22.3428 33.9023 50.3545 39.3398 81.0703c1.48438 9.39258 2.25488 19.0225 2.25488 28.8301c0 27.0342 -5.95508 52.6875 -16.4648 75.8096c20.7803 -32 32.3398 -69.5801 35.71 -107.48
|
2919 |
+
c0.490234 -12.7295 0.490234 -25.5098 0 -38.2295c-2.89453 -35.0469 -13.3936 -68.4854 -29.5898 -97.75c-26.1201 -47.3398 -68 -85.6299 -117.19 -108c-78.29 -36.2305 -174.68 -31.3203 -248 14.6797c-39.0088 23.8643 -70.5215 57.7861 -91.4492 98.6602
|
2920 |
+
c-14.2646 28.0879 -23.2725 59.8086 -25.3604 92.9199v31.3398c3.92969 69.7402 40.8701 135.92 96 178.36zM318 304.29c5.50781 0.932617 10.9404 2.46973 16 4.47949c5 1.77051 9.24023 5.94043 10.3203 11.2207c-8.95996 -4.99023 -17.9805 -9.91992 -26.3203 -15.7002z
|
2921 |
" />
|
2922 |
<glyph glyph-name="sith" unicode=""
|
2923 |
d="M0 416l118.75 -69.71l-11.5195 58.9004l91.0596 -69.8701c8.5 1.50977 17.0996 2.29004 25.71 2.29004s17.21 -0.770508 25.71 -2.29004l91.0596 69.8701l-11.5195 -58.9004l118.75 69.71l-69.71 -118.75l58.8604 11.5195l-69.8408 -91.0293
|
2924 |
c3.04004 -17.0098 3.03027 -34.4404 0 -51.4502l69.8408 -91.0303l-58.8604 11.5205l69.71 -118.78l-118.75 69.71l11.5195 -58.8604l-91.0293 69.8408c-17.0098 -3.04004 -34.46 -3.04004 -51.4805 0l-91.0293 -69.8408l11.5195 58.8604l-118.75 -69.71l69.71 118.78
|
2925 |
+
l-58.8604 -11.5205l69.8408 91.0303c-1.49512 8.39453 -2.27539 16.7734 -2.27539 25.5947s0.780273 17.4609 2.27539 25.8555l-69.8408 91.0293l58.8604 -11.5195zM224 316.22c-31.7998 0 -63.6104 -12.0898 -87.8496 -36.3398c-48.4902 -48.4902 -48.5 -127.2 0 -175.7
|
2926 |
+
c48.5 -48.4893 127.21 -48.5195 175.699 -0.0292969c48.4902 48.4893 48.5 127.199 0 175.699c-24.25 24.25 -56.0498 36.3701 -87.8496 36.3701zM224 279.56c22.4199 0 44.8301 -8.51953 61.9199 -25.6094c34.1904 -34.1904 34.1797 -89.6904 0 -123.87
|
2927 |
+
c-34.1895 -34.1797 -89.6504 -34.1904 -123.84 0c-34.1904 34.1895 -34.1797 89.6895 0 123.87c17.0898 17.0898 39.5 25.6094 61.9199 25.6094z" />
|
2928 |
<glyph glyph-name="trade-federation" unicode="" horiz-adv-x="496"
|
2929 |
d="M248 439.2c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM248 -43.5996c129.7 0 234.8 105.1 234.8 234.8s-105.1 234.8 -234.8 234.8s-234.8 -105.1 -234.8 -234.8s105.1 -234.8 234.8 -234.8zM403.1 284.9v-0.100586h-145.699
|
2930 |
v-34.7998h83.2998v-47h-83.2998v-195.8h-48.8008v196.8h-117.699l-36.7002 46h155.1v81.7002h193.8v-46.7998zM329.8 239.8h-82.8994v56.2002h145v24.4004h-171.801v-80.6006h-143.899l20.0996 -23.8994h123.8v-197.4h26.8008v197.4h82.8994v23.8994zM168.5 308.8l22 9.2998
|
2945 |
l-26.3906 21.1104l19.3506 -7l8.7998 33.3896l18.4697 -7l6.16016 33.4307l27.2803 -7.05078c3.7998 25.3809 -2.0498 49.1406 -13.2002 72.1406l30.3496 8.35938c-9.42969 43.5205 -35.4297 50.7305 -63.3398 54.1006
|
2946 |
c-9.35938 -30.6201 -6.24023 -56.4404 2.64062 -80.0498c-82.25 -56.3008 -76.75 -117.221 -81.3701 -149.11c-4.40039 -30.3496 -4.4502 -89.29 -25.5107 -97.21v29.9502l-5.2793 7l-5.28027 -12.3203zM346.9 71.4697l-15.8408 10.5303
|
2947 |
c7.4707 4.36035 13.7607 8.41992 19.3506 12.3203c-0.600586 -7.2207 -0.270508 -13.8398 -3.50977 -22.8398v-0.0107422zM375.05 120.73c-0.399414 -10.9404 -0.899414 -21.6602 -1.75977 -31.6709c-7.84961 1.86035 -15.5703 3.80078 -21.1104 7
|
2948 |
+
c8.24023 7.94043 15.5508 16.3203 22.8701 24.6807v-0.00976562zM399.68 115.45l-23.75 6.16016c6.78906 8.64844 12.9297 17.708 18.4707 27.2695c3.22949 -9.21973 5.2793 -20 5.2793 -33.4297zM403.2 196.39c19.4395 -12.8096 27.7998 -33.6592 29.9102 -56.2998
|
2949 |
c-12.3203 4.53027 -24.6299 9.31055 -36.9502 10.5605c5.05957 12 6.64941 28.1396 7 45.7393h0.0400391zM401.44 242.13c18.5596 -2.62988 35.1494 -9.18945 45.7598 -28.1494c-14.2197 -4.36035 -24.7803 -5.9707 -44 -14.0801
|
2950 |
c0.0800781 13.4092 -0.950195 27.9297 -1.75977 42.2295zM165.68 71.4805c-3.23926 9 -2.91016 15.5791 -3.50977 22.8398c5.58984 -3.90039 11.8799 -7.95996 19.3496 -12.3203zM137.53 120.74c7.31934 -8.36035 14.6299 -16.7402 22.8701 -24.6699
|
2951 |
+
c-5.54004 -3.2002 -13.2607 -5.14062 -21.1104 -7c-0.860352 10.0098 -1.36035 20.7295 -1.75977 31.6699zM112.89 115.46c0 13.4297 2 24.21 5.28027 33.4297c5.54102 -9.56152 11.6816 -18.6211 18.4697 -27.2695zM109.37 196.4h0.0898438
|
2952 |
c0.349609 -17.6006 2 -33.7402 7 -45.7402c-12.3701 -1.25 -24.6797 -6.03027 -37 -10.5605c2.11035 22.6406 10.4697 43.4902 29.9102 56.3008zM111.13 242.14c-0.80957 -14.2998 -1.83984 -28.8193 -1.75977 -42.2295c-19.2197 8.10938 -29.7803 9.71973 -44 14.0801
|
2953 |
c10.6299 18.9502 27.2295 25.5195 45.7598 28.1494z" />
|
2954 |
<glyph glyph-name="hornbill" unicode="" horiz-adv-x="512"
|
2955 |
+
d="M76.3799 77.7002c0.219727 -1.64648 0.333008 -3.32617 0.333008 -5.03125c0 -20.8623 -16.9375 -37.7998 -37.8008 -37.7998c-20.8623 0 -37.7998 16.9375 -37.7998 37.7998s16.9375 37.7998 37.7998 37.7998c1.84668 0 3.62207 -0.0927734 5.39746 -0.348633
|
2956 |
+
c-78.2793 111.35 52 190.53 52 190.53c-5.85938 -43 -8.23926 -91.1602 -8.23926 -91.1602c-67.3105 -41.4902 0.929688 -64.0605 39.8096 -72.8701c19.7207 -53.6396 71.2256 -91.8984 131.66 -91.9404c1.91992 0 3.76953 0.209961 5.66992 0.280273l0.110352 -18.8604
|
2957 |
c-99.2207 -1.38965 -158.7 29.1406 -188.94 51.6006zM184.38 405.4c109.75 73.9395 187.601 -54.0605 187.601 -54.0605c-43.04 5.86035 -91.1807 8.24023 -91.1807 8.24023c-43.0996 70.0098 -65.7998 -6.58008 -73.7998 -44.29
|
2958 |
+
c-51.5254 -20.7842 -87.8506 -71.208 -87.8896 -130.13c0 -0.910156 0.139648 -1.78027 0.139648 -2.67969l-21.8398 -0.150391c-1.41016 100.43 29.8701 160.09 52.4199 190c-1.02051 -0.0820312 -2.03711 -0.0888672 -3.07812 -0.0888672
|
2959 |
+
c-20.9453 0 -37.9492 17.0049 -37.9492 37.9502s17.0039 37.9502 37.9492 37.9502c15.0898 0 28.1338 -8.8252 34.248 -21.5918c2.35742 -4.91211 3.70117 -10.4102 3.70117 -16.2188c0 -1.67188 -0.109375 -3.31738 -0.321289 -4.93066zM488.57 271.23
|
2960 |
+
c-4.87012 -2.31934 -10.2754 -3.63965 -16.0244 -3.63965c-1.09375 0 -2.17578 0.046875 -3.24609 0.139648c84.4502 -113.45 -49 -194.61 -49 -194.61c5.87012 43.0303 8.20996 91.1602 8.20996 91.1602c66.6006 40.96 0.640625 63.54 -38.46 72.54
|
2961 |
+
c-20.5566 51.9932 -71.2275 88.7393 -130.49 88.7598c-2.75 0 -5.43945 -0.259766 -8.13965 -0.410156l-0.139648 22.5c93.6094 1.33008 151.72 -25.7998 183.45 -47.7402c-0.270508 1.82617 -0.375 3.67676 -0.375 5.57715c0 20.9395 17 37.9395 37.9395 37.9395
|
2962 |
+
c20.9404 0 37.9404 -17 37.9404 -37.9395c0 -15.1162 -8.85938 -28.1797 -21.665 -34.2764zM374.06 11.7598v-0.0595703c0.112305 0.000976562 0.239258 -0.0332031 0.351562 -0.0332031c20.9336 0 37.9297 -16.9961 37.9297 -37.9297
|
2963 |
+
c0 -20.9346 -16.9961 -37.9307 -37.9297 -37.9307c-15.0908 0 -28.1348 8.83203 -34.2412 21.6035c-2.0498 4.26074 -3.33984 9.0332 -3.63965 14c-111.98 -80.3398 -191.9 51 -191.9 51c43.0703 -5.87988 91.1904 -8.21973 91.1904 -8.21973
|
2964 |
+
c41.3301 -67.1709 63.9199 0.540039 72.7695 39.4893c53.3574 19.8584 91.3574 71.2188 91.3906 131.45c0 2.08008 -0.220703 4.08984 -0.300781 6.15039l19.5205 0.139648c1.28027 -89.9697 -23.71 -147.2 -45.1406 -179.66z" />
|
2965 |
<glyph glyph-name="mailchimp" unicode=""
|
2966 |
d="M330.61 204.48c-2.50977 3.17969 -4.70996 8.31934 -5.9707 14.3193c-2.22949 10.6807 -1.98926 18.4102 4.24023 19.4199c6.23047 1.01074 9.25 -5.45996 11.4805 -16.1299c1.5 -7.17969 1.20996 -13.7803 -0.450195 -17.6094
|
2967 |
+
c-1.53418 0.198242 -3.02441 0.300781 -4.61328 0.300781c-1.58789 0 -3.15234 -0.102539 -4.68652 -0.300781zM277.05 196c-4.45996 1.95996 -10.2598 4.13965 -17.2598 3.7002c-12.5996 -0.770508 -21.75 -7.21973 -22.5996 -3.48047
|
2968 |
+
c-0.400391 1.83984 2.40918 4.87988 5.40918 7.06055c5.20117 3.80859 11.6621 6.06055 18.5967 6.06055c4.25391 0 8.31152 -0.84668 12.0137 -2.38086c8.63965 -3.7002 14.0098 -11.1504 12.1201 -13.0898c-1.08008 -1.12988 -3.81055 0.129883 -8.28027 2.12988z
|
2969 |
+
M268.05 190.87c9.68066 1.14941 16.8604 -4.62988 15.4004 -6.85059c-0.629883 -1.00977 -2.02051 -0.829102 -4.94043 -0.489258c-1.85449 0.286133 -3.73438 0.420898 -5.66895 0.420898c-4.59277 0 -8.99121 -0.838867 -13.0508 -2.37109
|
2970 |
c-4.04004 -1.62012 -4.30957 -1.15039 -5.20996 -0.810547c-1.53027 3.57031 4.40039 8.68066 13.4697 10.1006zM322.22 173.77c-3.40039 -6.91016 -17.7002 0.0703125 -14.2998 7c3.40039 6.93066 17.6797 -0.129883 14.2998 -7zM337.88 194.24
|
2971 |
+
c7.69922 -0.149414 7.42969 -16.0605 -0.259766 -15.9307c-7.69043 0.130859 -7.40039 16.0605 0.259766 15.9307zM119.09 115.34c4.0293 0.910156 3.40039 -1.25 3.37012 -0.359375c0.291016 -0.358398 0.464844 -0.818359 0.464844 -1.31445
|
2972 |
+
c0 -0.369141 -0.0966797 -0.71582 -0.264648 -1.01562c-3.16016 -7.37012 -20.1904 -7.68066 -21.5801 9c-0.910156 10.8594 9.30957 21.0293 -2.28027 28.6191c-2.02734 1.34277 -4.46289 2.14648 -7.0752 2.14648c-4.51465 0 -8.4873 -2.33691 -10.7744 -5.86621
|
2973 |
c-3.2998 -5.16016 -3.11035 -12.2002 -7.37988 -11.6299c-3.7207 0.540039 -3.70996 14.4805 5 24.0801c7.22949 8 25.9492 11.9297 35.0498 -5.54004c8.11035 -15.3896 -8.2002 -27.7695 -3 -35.7695c2.46973 -3.80078 7.14941 -2.66016 8.46973 -2.35059zM418.81 132.41
|
2974 |
+
c6.44043 0 16.5605 -7.5 16.5605 -25.2705c0 -17.7695 -7.37012 -37.9092 -9.11035 -42.3799c-54.3896 -130.279 -264.56 -130.06 -322.29 3c-31.5293 -0.0400391 -64.1699 26.9805 -67.5293 60.3799c-0.308594 2.71191 -0.438477 5.42383 -0.438477 8.2168
|
2975 |
+
c0 8.89062 1.60352 17.4102 4.53809 25.2832l-14.7598 12.5107c-67.5498 57.04 143.72 291.85 211.27 232.93c0.339844 -0.299805 22.9902 -22.5205 23.0498 -22.5703l12.5508 5.33008c59.2695 24.5303 107.359 12.6904 107.42 -26.4697
|
2976 |
c0.0292969 -20.3604 -12.9404 -44.1006 -33.7305 -65.6504c26.1699 -24.2998 20.0205 -71.6094 21.5205 -83c7.19922 -2 30.6992 -7.62012 41.0996 -18.54c18.3604 -19.25 5.52051 -39.5801 3.07031 -43.25c4.20996 -11.2998 3.42969 -8.79004 6.7793 -20.5195z
|
2977 |
M102.81 84.25c29.4502 -0.680664 38.6309 28.2002 34.0908 57.8398c-9.74023 62.9404 -90.1699 48.9805 -84 -12.3301c2.44922 -24.3594 27.0898 -44.8994 49.9092 -45.5098zM84.2998 198.45c19.3105 51.8096 51.54 99.5498 94.2002 132.399
|
2978 |
c31.6504 26.4102 65.7998 45.3506 65.7998 45.3506s-18.3896 21.3193 -23.9395 22.8896c-34.1699 9.23047 -107.94 -41.6494 -155.051 -108.88c-19.0596 -27.21 -46.3096 -75.3604 -33.2998 -100.21c1.58984 -3 10.71 -10.9297 15.5898 -15
|
2979 |
c8.18066 11.9102 21.54 20.5 36.7002 23.4502zM323.18 97.2998c2.58984 0.259766 0.560547 -2.53027 0.560547 -2.53027s-27.4004 -12.75 -71 0.740234c1.20996 -10.2295 11.1699 -14.8193 15.9395 -16.6699c31.4004 -12.21 86.6904 -2.58008 128.46 26
|
2980 |
c0.850586 0.589844 1.41992 0 0.730469 -1c-28.9697 -41.3496 -128.73 -54.7598 -151.37 -21.3496c-12.0801 17.8301 -0.599609 43.8594 19.5498 41.1494c6.7998 -0.769531 53.7705 -8 100.48 13.6807c27.4893 12.7598 37.8701 26.79 36.3096 38.1602
|
2981 |
+
c-0.537109 3.60742 -2.25 6.85156 -4.74023 9.28906c-5 4.83008 -12.79 8.60059 -26 12.3105c-4.35938 1.22949 -7.31934 2.00977 -10.5098 3.05957c-5.67969 1.83008 -8.47949 3.33008 -9.10938 14c-0.280273 4.62988 -1.09082 20.9102 -1.38086 27.6299
|
2982 |
+
c-0.519531 11.7607 -1.91992 27.8506 -11.9199 34.4902c-2.71094 1.73535 -5.94238 2.75098 -9.39746 2.75098c-1.44824 0 -2.85645 -0.177734 -4.20215 -0.510742c-5.69043 -0.969727 -9.06055 -4.00977 -13.2598 -7.50977
|
2983 |
c-12.4404 -10.3701 -22.9502 -12.0605 -34.6406 -11.5605c-6.98926 0.290039 -14.3994 1.37988 -22.8799 1.87988l-5 0.290039c-19.5801 1 -40.5693 -15.9092 -44.0693 -39.9092c-4.86035 -33.4307 19.3291 -50.7002 26.3291 -60.8301
|
2984 |
+
c1.04785 -1.25391 1.74121 -2.82812 1.9209 -4.54004c0 -1.94043 -1.25 -3.48047 -2.48047 -4.79004c-19.9805 -20.54 -26.3701 -53.1699 -18.8398 -80.3701c0.927734 -3.33594 2.13574 -6.6377 3.5498 -9.74023c17.7002 -41.2598 72.4902 -60.4795 126 -43
|
2985 |
+
c7.01562 2.29199 13.8936 5.20215 20.3398 8.58008c11.8203 5.84668 22.2969 13.7168 31.1504 23.3096c14.2002 14.8408 22.6396 30.9707 25.9297 50.8408c2.81055 18.6191 -7.78027 18.7598 -11.4395 18.0996c-1.37598 8.42188 -3.82812 16.6758 -7.12012 24.2803
|
2986 |
+
c-15.6299 -12.3506 -35.71 -20.9707 -51 -25.3506c-69.4004 -19.9102 -90.1904 6.35059 -96.4004 -13.8096c33.7705 -12.3701 69.5098 -7.07031 69.5098 -7.07031zM171.31 290.5l0.0605469 0.00976562c-0.107422 -0.130859 -0.170898 -0.297852 -0.170898 -0.480469
|
2987 |
+
c0 -0.419922 0.34082 -0.759766 0.759766 -0.759766c0.151367 0 0.292969 0.0439453 0.411133 0.120117c11.4199 8.30078 64.9502 42.7705 134.5 26.8301c0.860352 -0.189453 1.39941 1.29004 0.639648 1.7207c-11.3398 6.33984 -28.6895 10.6494 -41 10.7393
|
2988 |
+
c-0.405273 0.00976562 -0.732422 0.342773 -0.732422 0.750977c0 0.164062 0.0527344 0.31543 0.142578 0.439453c2.23535 2.92383 4.79492 5.49414 7.70996 7.74023c0.18457 0.140625 0.303711 0.362305 0.303711 0.611328
|
2989 |
+
c0 0.424805 -0.345703 0.770508 -0.770508 0.770508c-0.0175781 0 -0.0351562 -0.000976562 -0.0527344 -0.00195312c-17.5205 -1.08008 -37.5107 -9.4707 -49 -17.2998c-0.12207 -0.0859375 -0.271484 -0.136719 -0.431641 -0.136719
|
2990 |
+
c-0.414062 0 -0.75 0.335938 -0.75 0.75c0 0.0605469 0.0078125 0.120117 0.0214844 0.176758c0.899414 4.30957 3.72949 9.98926 5.18945 12.6494c0.0644531 0.108398 0.101562 0.236328 0.101562 0.371094c0 0.40332 -0.327148 0.730469 -0.730469 0.730469
|
2991 |
+
c-0.134766 0 -0.261719 -0.0371094 -0.371094 -0.101562c-18.4697 -9.4502 -39.0898 -26.2803 -55.8301 -45.6299z" />
|
2992 |
<glyph glyph-name="megaport" unicode="" horiz-adv-x="496"
|
2993 |
d="M214.5 238.4l33.4004 33.3994l33.3994 -33.3994v-66.4004l-33.2998 -33.2998l-33.5 33.5v66.2002zM248 440c137 0 248 -111 248 -248s-111 -248 -248 -248s-248 111 -248 248s111 248 248 248zM393.1 25.5996h0.100586v87.1006l-59.7002 59.7002v87.5996l-59.5 59.5
|
2994 |
v75.5996l-26.0996 19.2002l-26.1006 -19.2002v-75.5996l-59.5 -59.5v-87.9004l-59.5 -59.5v-87l26.1006 -19.1992l26.0996 19.1992v65.5l33.5 33.4004l33.4004 -33.4004v-65.5l26.0996 -19.1992l26.2002 19.1992v65.5l33.3994 33.4004l33.4004 -33.4004v-65.5l26 -19.1992z
|
2998 |
c-15.4404 0 -27.1504 11.3096 -27.1504 27zM191.76 289c98.3701 0 177.76 -78.9102 177.76 -176.48c0 -97.5693 -79.6094 -176.52 -177.76 -176.52c-98.1494 0 -177.76 78.8701 -177.76 176.52v335.48l45.25 -227c30.2002 48.2305 97.75 68 132.51 68zM191.76 -19.1201
|
2999 |
c73.2402 0 132.51 58.96 132.51 131.64c0 72.6807 -59.2393 131.54 -132.51 131.54c-73.2695 0 -132.51 -58.8994 -132.51 -131.59c0 -72.6895 59.2402 -131.59 132.51 -131.59z" />
|
3000 |
<glyph glyph-name="rev" unicode=""
|
3001 |
+
d="M289.67 173.11c0 -36.1895 -29.3809 -65.5703 -65.5703 -65.5703c-36.1885 0 -65.5693 29.3809 -65.5693 65.5703c0 36.1885 29.3906 65.5596 65.5801 65.5596c36.1631 -0.0439453 65.5156 -29.3965 65.5596 -65.5596zM429.22 178.16v-210.16h-210.16v0.110352
|
3002 |
c-110.939 2.70996 -200.06 93.4092 -200.06 205c0 108.569 84.2998 197.319 191 204.569v38.3203l108.77 -62.7803l-108.77 -62.79v39.1201c-80 -7.16016 -143 -74.5498 -143 -156.43c0 -86.6201 70.4902 -157.12 157.11 -157.12s157.09 70.5 157.09 157.12
|
3003 |
+
c-0.0263672 55.3057 -28.5371 103.871 -71.8105 131.84l45.3799 26.2002c44.3125 -36.582 72.8613 -91.4561 74.3203 -153h0.129883z" />
|
3004 |
<glyph glyph-name="shopware" unicode="" horiz-adv-x="512"
|
3005 |
+
d="M403.5 -7.41016c-40.9688 -30.4482 -91.7109 -48.4707 -146.63 -48.4707c-0.223633 0 -0.646484 -0.120117 -0.870117 -0.119141c-137.19 0 -248 111 -248 248c0 137.19 111 248 248 248h0.21582c63.5576 0 121.648 -24.0508 165.484 -63.5
|
3006 |
+
c0.716797 -0.65332 1.16699 -1.59375 1.16699 -2.63965c0 -1.9707 -1.59961 -3.57031 -3.57031 -3.57031c-0.155273 0 -0.306641 0.0107422 -0.457031 0.0302734c-18.2656 2.43848 -36.9023 3.69727 -55.8301 3.69727c-0.445312 0 -0.43457 -0.0166016 -0.879883 -0.0175781
|
3007 |
+
c-129.36 0 -222.399 -53.4697 -222.399 -155.35c0 -109 92.1299 -145.881 176.829 -178.73c33.6406 -13 65.4004 -25.3604 87 -41.5898c0.868164 -0.65332 1.42969 -1.69238 1.42969 -2.86133c0 -1.16992 -0.561523 -2.20508 -1.42969 -2.8584zM503 214.91
|
3008 |
+
c0.698242 -7.59375 0.950195 -15.1699 0.950195 -22.9443c0 -31.8691 -5.99902 -62.3467 -16.9307 -90.3662c-0.526367 -1.31445 -1.81543 -2.24023 -3.31738 -2.24023c-0.608398 0 -1.18066 0.152344 -1.68262 0.420898
|
3009 |
+
c-29.4893 16.3594 -61.6094 28.3398 -92.6797 39.9297c-60.2803 22.4902 -112.34 41.8896 -112.34 84.4902c0 1.45996 -3.87988 53.6299 80.25 53.6299c50.8604 0 92.7197 -17.4805 144.48 -60.4805c0.706055 -0.598633 1.17871 -1.46484 1.26953 -2.43945z" />
|
|
|
3010 |
<glyph glyph-name="squarespace" unicode="" horiz-adv-x="512"
|
3011 |
d="M186.12 104.66l157.22 157.2c38.5703 38.5898 101.13 38.5898 139.72 0c38.5908 -38.5801 38.5908 -101.13 0 -139.721l-119.25 -119.239l-0.0400391 -0.0400391c-19.2891 -19.2705 -50.5498 -19.25 -69.8193 0.0400391l154.149 154.14
|
3012 |
c19.29 19.29 19.29 50.5703 0 69.8604s-50.5693 19.29 -69.8594 0l-157.181 -157.181c-9.64941 -9.64941 -25.29 -9.64941 -34.9395 0c-9.65039 9.65039 -9.65039 25.29 0 34.9404zM430.65 209.46c9.63965 -9.63965 9.63965 -25.2803 -0.0107422 -34.9297l-157.199 -157.2
|
3072 |
c61.0098 -28.0996 125.64 -62.8203 171.6 -88.4404c-0.5 -38.5195 -31.7402 -69.5996 -70.2598 -69.5996h-307.48c-38.8496 0 -70.2598 31.4102 -70.2598 70.2598v307.48c0 38.8496 31.4102 70.2598 70.2598 70.2598h307.48zM47.2803 125.05
|
3073 |
c-0.990234 17.5205 10.9102 50.5801 78.3594 50.5801c24.96 0 64.8105 -12.7295 109.44 -31.4102c-25.29 -33.2197 -65.7998 -72.8994 -117.87 -72.8994c-59.6797 0 -68.9404 33.5596 -69.9297 53.7295z" />
|
3074 |
<glyph glyph-name="the-red-yeti" unicode="" horiz-adv-x="512"
|
3075 |
+
d="M488.23 206.3c2.95508 -3.9668 5.25098 -8.47559 6.76953 -13.2998c3.99121 -10.8701 7.04004 -22.4727 8.90039 -34.2002l-2.5 -0.5l-13 14.2998c-17.9004 -28.0996 -9.90039 -15.3994 -16.7002 -25.0996c0 -124.2 -101.3 -211.5 -223 -211.5
|
3076 |
c-61.5 0 -113.9 20.2002 -157.5 60.2002c-64.5 60.8994 -64.9004 125 -64.9004 150.5c-0.5 1.7998 -0.700195 3.5 -1.2002 5.2002l-20.1992 -22.4004c-6.80078 43 25.6992 74.2998 33 80.7002c0.5 1 0.699219 2.2002 1.19922 3.2002l-28.7998 1l-3 3.39941
|
3077 |
+
c8.5 3.5 25.2998 13.2998 40.2998 14.2998c7.63672 14.623 16.9365 28.0742 27.8008 40.3008c1.2998 6.39941 3.2998 14.1992 6.59961 25.7998l-7.59961 -4.7002l-1.7002 1.7002l1.7002 8.39941c10.6934 25.7754 26.6318 48.6221 46.6992 67.4004l-33 14.2998h3.7002
|
3078 |
+
c20.9004 4.90039 33.2002 3.2998 49.2002 0c-2.5 4.10059 -5.40039 10.5 -8.40039 18.9004c-1.36035 3.74219 -2.09961 7.81445 -2.09961 12.0244c0 4.69629 0.923828 9.17871 2.59961 13.2754c8.90039 -7.40039 14.3008 -24.5996 15.2002 -27
|
3079 |
c0.700195 3.59961 2.10059 21.2998 33.7002 45.5l1.83008 -0.5l-12 -44.2002c30 17.7002 63 21.9004 97.9004 11.7998c-12.7002 -12.1992 -24.3008 -28.8994 -42.5 -33c7.39941 -2.2998 28.6992 -9.69922 34.1992 -15.1992l-24.7998 7.09961
|
3080 |
+
c6.5 -6 19.6006 -16.4004 25.1006 -25.0996c23.7891 -1.09473 46.9111 -5.74414 68.3994 -13.3008l-0.5 0.5c29.4004 14.7002 37.7002 27.3008 74.7998 3c0 -30.1992 -2.2998 -23.3994 3 -29.7998c7.69336 6.50391 16.1553 12.0381 25.3008 16.5
|
3081 |
c13 6.40039 23.0996 4.7002 30.6992 -5.89941c11.8008 0 17.8008 -15.7002 18.4004 -27c14.7998 -2.90039 2.7002 -30.7002 2.5 -30.7002l-7.09961 -18.2002c7.7998 -7.7998 22.0996 -20.9004 31.6992 -44.7998zM398 336.8c-13.0996 8.90039 -22.7002 11.9004 -28.2998 8.5
|
3082 |
+
c8.09961 -7.2002 13 -14.2998 13.5 -20.7002c1.2002 -7.59961 -2.2002 -14.7998 -10.6006 -21.8994l-4.19922 -3.40039c4.2002 -6.89355 7.1416 -14.793 8.39941 -23.0996h2.5c-2.09961 13.8994 -2.5 11 0.700195 14.7998c11 -6.40039 14.9004 -14.5 16 -19.9004
|
3083 |
c21.7998 10.1006 29.5 12.7002 54.7998 20.9004l-18.2002 -16c11.4004 0 25.6006 0.299805 46.5 -8.40039c7 24.3008 7.10059 20.7002 2.5 20.7002l-4.69922 -11.2998c-1.7002 10.5 -2.90039 18.9004 -3.40039 25.2998c-0.5 6.7002 -3.90039 9.60059 -9.2998 10.1006
|
3084 |
+
c-0.0117188 -0.470703 -0.0126953 -0.894531 -0.0126953 -1.36816c0 -4.77148 0.594727 -9.40527 1.71289 -13.832l-1.7002 -5.90039c-2.90039 10.6006 -5.90039 20.2002 -9.2998 27.7998c-9.7002 17.7002 -30.2002 -9.19922 -43 -11.2998
|
3085 |
+
c4.53027 -0.25293 8.71777 -0.380859 13.3115 -0.380859c4.59277 0 9.15723 0.12793 13.6885 0.380859l-22.4004 -5.39941l3.40039 -4.7002c-5.5 0 -16.9004 -0.900391 -22.4004 17.2002zM358.4 346.9l-20.3008 -11.8008
|
3086 |
+
c11.3008 -7.59961 20.2002 -18.1992 27.8008 -31.1992c6.39941 2.89941 10.0996 5.09961 11.7998 7.59961c2.5 2.7998 2.5 4.7002 3 7.09961c0.599609 1.30078 0.799805 2.7002 -3.40039 11.1006c-7.5 11.7998 -16.2002 15.2998 -18.8994 17.2002zM91 304.9
|
3087 |
+
c-7.7998 -24.1006 -11.7002 -49.4004 -13.2002 -74.6006l13.2002 -5l1.2002 27c9.5 -16.3994 11.2002 -23.2998 12.2998 -28.7998c2.7998 2.09961 7.7002 7 22.5996 11.2998l1.2002 -1.7002l-7.59961 -10.5996c10.0996 3.5 19.5 3.5 28.2998 0.5l-10.5996 -8.40039
|
3088 |
+
c22.7998 -8.39941 26.5996 -7.59961 38.3994 -26.0996l-11.7998 1.2002c34.9297 -20.5 66 -47.9004 141.2 -63.2002c15.5996 24.0996 14 21.0996 14 22.9004l0.200195 0.199219l-0.200195 0.200195c-0.700195 1.90039 -14.1006 16.6006 -18.2002 20.7002
|
3089 |
+
c7.2998 -1.7998 6 -0.900391 10.7998 -3.7002c1.7002 -0.899414 -5.39941 5.40039 -21.8994 20.2002c16.5 -6.7002 27.5996 -15.5 33 -27.7998l1.69922 30.7002l-22.3994 17.6992l6.39941 5.90039c-7.2998 0 -31 3.7002 -49.1992 -16l-2.5 0.5
|
3090 |
+
c6.9668 14.3867 12.4512 30.0156 16 46c1.9209 9.16797 2.95508 18.5742 3 28.2998c0 19.5 -4.7002 38.4004 -13.5 56.6006c-6.40039 13.5 -16.5 25.2998 -30 35.3994c-6.5957 4.94238 -13.4805 9.43652 -20.7002 13.5c3 0.700195 1 1.2002 -5.40039 1.2002
|
3091 |
+
c-6.39941 0.200195 -13 0.700195 -19.3994 1.2002v-3c-10.2949 -1.63086 -19.2871 -7.22266 -25.3008 -15.2002h-1.19922l-5.40039 -3.40039c-1.2002 2.90039 0 6.30078 4.2002 9.30078l10.5996 11.2998l-3.39941 -0.5l2 3.39941
|
3092 |
+
c-2.30078 0.200195 -4.2002 0.5 -6.2002 0.700195l-0.5 1.2002l2.5 1.7002c2.2002 -0.200195 4.59961 -0.5 7.09961 -0.700195c2.9043 1.54785 6.22559 2.4375 9.74414 2.4375c1.45898 0 2.88184 -0.150391 4.25586 -0.4375l2.5 -1.2002l0.200195 -0.5
|
3093 |
+
c7.93457 0.514648 15.7422 1.49121 23.4004 2.90039c20.6992 2.89941 36.6992 11.2998 48.5 24.7998l-21.1006 0.5c-25.7998 0.5 -49.3994 -5.40039 -71.2998 -18.9004l-2.5 2.5l0.5 4.7002l1.7002 7.10059c1.66211 8.54199 3.83691 17.1143 6.39941 25.2998
|
3094 |
+
c-1.69922 -0.700195 -4.59961 -4.90039 -9.2998 -11.2998c-4.7002 -6.40039 -8.39941 -13 -10.0996 -19.4004c-1.0957 -5.14258 -3.14062 -10.0195 -5.90039 -14.2998l-13.5 29l8.40039 -35.7998l-0.5 -1.7002c-0.00585938 0 -0.0146484 0.0117188 -0.0195312 0.0117188
|
3095 |
+
c-5.57227 0 -10.9424 0.87207 -15.9805 2.48828c-3.40039 0.700195 -10.6006 1.2002 -20.9004 1.2002c0.5 0 -0.700195 0 -3.2002 -0.5c5.40039 -1.30078 13.5 -4.2002 24.8008 -8.40039l6.39941 1.2002c-4.2002 -3.40039 -10.8994 -10.1006 -20.2002 -19.4004
|
3096 |
+
c-9.39941 -8.89941 -20.1992 -26.0996 -32.5 -50.2002l4.2002 1.2002l10.1006 9.2998l-5.40039 -4.69922l13 12.2998l-2.5 -3.40039c-5.09961 -7.59961 -8.09961 -12.2998 -9.2998 -15.2002zM367.5 -25.0996c8.2998 40.2998 3.59961 55.1992 -0.700195 89.5
|
3097 |
+
c-35.5 -11.8008 -20.2998 -6 -32 -10.8008l10.5 -14.1992l-1.2002 -1.2002c-20.1992 6 -23.1992 10.7998 -27.7998 15c6 -22.2002 13.9004 -26.4004 29.5 -31.7002c-9.5 -9.59961 -25.3994 4 -34.3994 13l2.5 -23.5996l-4.2002 -3c-5 22.0996 -22 39.0996 -25.2998 39.0996
|
3098 |
+
c-44 -13 -79.1006 -5.7998 -113.9 10.5996c-1.59961 -0.399414 -70.5996 -18 -120.5 37.1006c13.7002 -35 32.2998 -63.7002 71.2998 -82.6006c-4.98047 10.3184 -12.0117 19.3135 -20.7002 26.6006c0 0 0.700195 3.7002 1.2002 10.0996
|
3099 |
+
c19.4004 -19.3994 50.7002 -39.5 93.2002 -60.2002c-59.5996 24.5 -59.9004 24.8008 -69.0996 29l16 -20.6992c-3 -1.30078 -6.7002 -0.5 -10.1006 1.19922c-12.5371 7.32422 -24.2949 15.5693 -35.3994 24.8008c1.89941 -2.2002 80.0996 -98.5 200.899 -74.3008
|
3100 |
+
c-43.0996 21.8008 -52.3994 52.4004 -66.5996 73.5l17.7002 -7.59961l-11.8008 23.0996c20.1006 -27.7998 28.6006 -35 38.4004 -44.2998l-30 16.5c12.5996 -27.0996 33.7002 -47 63.5 -58.7998c2.90039 1.5 9.09961 -1.09961 59 23.9004zM482.8 189.3l8.93066 -12.7998
|
3101 |
+
l-12.3008 32.5c10.9004 0 10 -0.0996094 21.2002 -3.40039c-8.16406 11.4756 -17.0879 22.0469 -27 32l-26.5996 23.1006l1.2002 3l23.5996 2.5c-10.6865 2.35742 -21.708 3.79199 -33 4.2002l-17.7002 -0.5l-0.5 2.89941l14.7998 13l-41.7998 -20.2002l-12.2998 18.9004
|
3102 |
+
l3.40039 -16l-2.5 -1.2002l-5.90039 4.2002h-10.0996l5.39941 -4.2002v-2l-13.5 -27.7998c-10.0996 -31.2002 -21.8994 -67.9004 -35.3994 -109.7l1.19922 16l-1.19922 -3v-0.5c-6.40039 -16 -13.6006 -29.5 -21.2002 -39.5996l9.2998 21.8994l-46.7002 -20.1992
|
3103 |
+
c11.7998 13.5 23.6006 19.3994 34.9004 18.8994c-71.2002 11.4004 -106.2 41 -110.4 46c3.60059 -6.2002 13.2002 -17.7998 16 -40.0996l-1.7002 -1.2002c-4.2998 15.5996 -16.3994 46.5996 -55.7998 69.5996l23.6006 -2.5c-10.5 12.6006 -36.3008 17.8008 -40.8008 16
|
3104 |
+
l-2.5 2.5l8.40039 8.40039l-22.2998 -5.7998l5.39941 13.5c-8.09961 -4.40039 -4.2998 -2.40039 -17 -8.90039l-1.69922 0.5c0.599609 0.600586 0.899414 -0.700195 -3 9.2998c-0.600586 -11 -0.400391 -8.59961 -1 -11.7998
|
3105 |
+
c-1.29785 -0.430664 -2.54785 -1.00781 -3.7002 -1.7002c-40 20.6006 -57.2002 11 -73 5.2002c36.7998 -6 29.2998 -4 38.3994 -9.2998c-25.7998 -12.2002 -31.8994 -12.5996 -51.3994 -70.0996l22.2695 22.2998l2.5 -16.4004c13.4004 -58 68.7002 -92.5 126.4 -83.3994
|
3106 |
+
l-26.1006 22.3994l44.8008 -22.3994l-1.2002 -3c4.59961 -1.7002 9.2998 -3 13.5 -4.2002c19.3359 -5.72266 39.5713 -8.83887 60.752 -8.83887c11.0293 0 21.8643 0.832031 32.4482 2.43848l-32.5 21.2002c35.7998 -7 50.6992 -31.4004 56.7998 -39.5996l-7.60059 29
|
3107 |
+
l1.2002 2.5l19 -27.9004l-9.2998 26.5996l21.9004 -13.5h1.19922l-3.39941 4.2002l7.09961 -4.7002l-14.2998 16l1.2002 3l7.59961 -7.09961c4.2998 1.2002 41.4004 10.5 80.9004 40.2998c47.8994 35.4004 68.0996 73.7998 71.5996 79.7002l-3 9.2998zM476.7 260.6
|
3108 |
+
l-18.2002 -1.19922l14.2998 -11.8008zM221.9 253.5c2.69922 -5.09961 5.69922 -12.4004 18.3994 -18.7998c-7.5 -10.9004 -8.2998 -10.5 -20.2002 -16c-7.59961 -7.7002 -13.5 -13.1006 -17.6992 -14.7998l7.09961 13c-5.38281 -1.97266 -11.167 -3.06836 -17.2295 -3.06836
|
3109 |
+
c-2.57324 0 -5.10156 0.194336 -7.57031 0.568359l-0.5 1.19922c19 2.10059 37.2002 9.40039 46.5 16c-4.10059 4.2002 -7.10059 11.3008 -8.7998 21.9004zM225.6 355.8c5.87793 -3.32715 10.7842 -8.04688 14.3008 -13.7998
|
3110 |
+
c14.6992 -24.0996 19.1992 -40.0996 11.2998 -47.7002c-7.90039 -7.59961 -16.7998 -7.09961 -26.1006 3c-9.2998 10.1006 -13.5 23.7002 -11.7998 39.6006c1.7002 15.8994 5.90039 22.2998 12.2998 18.8994zM220.9 309.5
|
3111 |
+
c7.09961 -21.2998 33.3994 -23.0996 26.8994 4.90039c-3.89941 16.5 -8.7998 27.0996 -15.2002 32.5c-6.59961 5.39941 -10.0996 6.69922 -11.2998 4.19922c-2.5 -2.89941 -3.5 -11.2998 -3 -24.7998c7.5 12.7998 11.6006 5.90039 12.5 4.7002l-0.5 -0.5
|
3112 |
+
c-0.799805 -1.7002 -2.59961 -3.09961 1.7002 -6.2002l1.2002 0.5v-4.7002c-1.7998 -12.5 -6.90039 -12.7998 -12.2998 -10.5996zM175.9 315c-2.41016 0.448242 -4.38965 2.04102 -5.40039 4.2002c-3.5 8.5 0 21.2002 8.09961 21.2002
|
3113 |
+
c2 -0.5 3.7002 -1.7002 5.40039 -4.7002c-1.5 -0.400391 -4.7002 -4.7998 0.700195 -5.90039h0.5c0 -13.7002 -7.7002 -15.0996 -9.2998 -14.7998zM216 365.1l-3.7002 2.40039l-0.5 2.5c18.2998 0 25.7998 -8.7998 28.2998 -14.2998
|
3114 |
+
c-6.94727 3.78809 -14.9268 5.97363 -23.3916 5.97363c-0.90918 0 -1.81152 -0.0244141 -2.70801 -0.0742188l-0.5 3zM144.2 315.7c1.59961 -1.60059 0.599609 -0.299805 4.89941 -6.60059c-25.3994 -4.69922 -23.1992 -12.2998 -30 -12.2998
|
3115 |
+
c0.300781 0.600586 7.10059 16 23.6006 16l-7.10059 7.60059c9.40039 0.5 15.2002 2.09961 19.9004 -5.90039c0.0214844 8.14648 1.03027 16.0225 2.90039 23.5996c2 7.60059 3.69922 11.8008 5.39941 13.5c1 1.5 16.2998 15.7002 29 22.4004
|
3116 |
+
c2.33496 1.68262 5.22168 2.67676 8.31641 2.67676c1.8291 0 3.57715 -0.34668 5.18359 -0.976562c0.321289 -0.390625 0.515625 -0.889648 0.515625 -1.43457c0 -0.0898438 -0.00488281 -0.178711 -0.015625 -0.265625l-13 -7.59961
|
3117 |
+
c7.60059 -11.8008 10.5 -25.3008 8.7998 -41.3008c-1.11328 -11.292 -6.61426 -21.3291 -14.7998 -28.2998l2.90039 -4.7002c-30 2.2002 -24.7998 6.80078 -46.5 23.6006zM162.9 334.4c-1.80078 -7.2002 -2.30078 -16 -3.10059 -26l5.40039 -6.40039l7.09961 -3.40039
|
3118 |
+
c2.39648 -0.458008 4.79688 -0.699219 7.3252 -0.699219c1.3418 0 2.66797 0.0673828 3.97461 0.199219c1 1.7002 3.5 4.2002 6.40039 7.60059c5 5.89941 7.90039 13.7998 8.40039 23.0996c0.0849609 1.43848 0.113281 2.82617 0.113281 4.28613
|
3119 |
+
c0 7.30859 -1.08887 14.3643 -3.11328 21.0137c-3 8.10059 -5.90039 11 -10.1006 9.30078c-5.39941 -1.7002 -10.5996 -5.40039 -16 -11.8008c-3 -4.19922 -5.2002 -9.59961 -6.39941 -17.1992zM204.9 278.3l-3.10059 -6.5c7.10059 4.2002 13.5 7.2002 19.4004 8.40039
|
3120 |
+
l7.09961 0.5l11.7998 -7.60059h-2.5c-8.7998 3.7002 -19.3994 1.2002 -30.6992 -7.59961c-0.5 -4.7002 1.69922 -14.7002 5.89941 -29.5l9.2002 0.5c-21.9004 -6.59961 -37.5996 -8.40039 -48.9004 -5.40039c-24.8994 6.7002 -27.3994 23.6006 -27.5 24.1006
|
3121 |
+
c-1.74121 6.70996 -2.67871 13.6348 -2.67871 20.8867c0 4.35645 0.333984 8.63574 0.979492 12.8135c-6.40039 -0.5 -11 -4.2002 -15.2002 -10.6006c-2.90039 5.90039 -5.40039 8.7998 -5.90039 9.2998c1.5 0.700195 12.2998 7.5 32.5 4.90039l0.5 -2.5l-5.89941 -1.2002
|
3122 |
+
c-0.100586 -0.399414 -1.90039 -29.5 18.8994 -24.7998c1.40039 0.299805 1.2998 -0.0996094 36.1006 14.2998z" />
|
3123 |
<glyph glyph-name="acquisitions-incorporated" unicode="" horiz-adv-x="384"
|
3124 |
+
d="M357.45 -20.2002c2.2002 -14.2998 4.09961 -28.7002 6.59961 -43.7002c-367.8 0 -153.899 -0.599609 -337.1 0c-4 0 -6.10059 0.700195 -5.2998 5.7002c2.09961 12.9004 3.5 25.9004 5 38.7998c0.5 4.80078 2.2998 6.80078 7.59961 6.80078
|
3125 |
+
c118.1 -1 114.9 -0.300781 121.4 2.39941c9.39941 4 14.8994 12.9004 14.8994 23.1006c-0.0996094 42.8994 -0.299805 85.8994 -0.200195 128.8c0 3.7998 -1.19922 5.89941 -4.59961 6.7998c-15.7002 3.90039 -31.2998 7.7002 -47.5996 11.7002
|
3126 |
+
c-5.30078 -12.2998 -10.4004 -24.4004 -15.7002 -36.7002c1.7998 -3.2998 28.3994 -2.90039 35.2998 -2.90039v-27.5996h-114.3c1 8.59961 1.7002 16.7998 3.2002 24.9004c0.299805 1.39941 3.59961 3.09961 5.5 3.19922
|
3127 |
+
c8.39941 0.400391 16.8994 0.300781 25.3994 0.100586c4 0 5.90039 1.09961 7.60059 5.2002c16.5996 40.6992 13.5 31.1992 67.2998 161c31.5 76.0996 33 76 32.5996 87.3994c-0.700195 18.6006 -25.3994 22.2998 -37.7002 22.1006c-30 -0.400391 -38.3994 0.5 -101.8 0.5
|
3128 |
+
c-7.2002 44.5 -4.2002 32.0996 -6.39941 45.2998c-0.700195 4.2002 1 5.2998 4.59961 5.2998l339.1 -0.200195c-0.799805 -5.39941 -1.59961 -10.7998 -2.39941 -16.0996c-1.2998 -9.7002 -2.7998 -19.4004 -4 -29.2002c-0.299805 -2.90039 -1.2002 -4.2998 -4.2998 -4.2998
|
3129 |
+
c-20.6006 -0.100586 -41.2002 -0.100586 -61.8008 -0.5c-18.6992 -0.400391 -37.5996 -0.299805 -56.1992 -2c-13.4004 -1.2002 -23.3008 -12.6006 -18.9004 -26.6006c8.59961 -27.0996 27.7002 -69.0996 36.5 -89.1992c65.7002 -154.2 61.4004 -157 84 -158.601
|
3130 |
+
c6.59961 -0.5 13.4004 -0.0996094 20.4004 -0.0996094c1.2998 -9.40039 2.59961 -18 4 -27.5h-116v27c10.3994 0 20.3994 0.0996094 30.3994 -0.100586c3.5 0 5 0.700195 3.40039 4.40039c-4.40039 10.2998 -8.7002 20.5996 -13.2002 30.9004
|
3131 |
+
c-1.59961 3.69922 -4.09961 4.7998 -8.40039 3.5c-12.3994 -3.60059 -24.7998 -6.7002 -37.2998 -9.7002c-4.2998 -1.10059 -6 -2.7998 -5.89941 -7.5c0.799805 -57.5 0.899414 -127.5 1 -129.101c0.399414 -12.5996 8.69922 -21.3994 21 -23.0996
|
3132 |
+
c0.899414 -0.200195 12.8994 -2.7998 112.699 -2.59961c8.30078 0 8.40039 0.0996094 9.60059 -7.60059zM182.55 185.5c2.87695 -1.01465 5.98633 -1.56641 9.20801 -1.56641s6.31543 0.551758 9.19238 1.56641c13 4.2002 26.2998 7.7998 39.3994 11.7002
|
3133 |
+
c1.34473 0.620117 2.65234 1.32422 3.90039 2.09961c-6.7002 17.4004 -13.0996 34.2002 -19.7002 50.9004c-8.89941 22.7002 -17.7002 60.2998 -27 82.7998c-1.5 0.799805 -1.89941 -2.40039 -9.39941 0c-17.1006 -44 -34.1006 -87.7998 -51.3008 -132.1
|
3134 |
+
c1.8457 -1.09766 3.7959 -2.07422 5.80078 -2.90039c13.2998 -4.2998 26.5996 -8.2998 39.8994 -12.5z" />
|
3135 |
<glyph glyph-name="critical-role" unicode=""
|
3136 |
+
d="M225.82 448c0.259766 -0.150391 216.569 -124.51 217.12 -124.72c3 -1.18066 3.69922 -3.45996 3.69922 -6.56055c-0.0732422 -83.4463 -0.0732422 -166.899 0 -250.359c0.0117188 -0.150391 0.0175781 -0.302734 0.0175781 -0.456055
|
3137 |
+
c0 -2.36035 -1.38867 -4.38867 -3.39746 -5.32422c-21.3701 -12 -207.859 -118.29 -218.93 -124.58h-3c-79.3301 45.6602 -218.25 125.44 -218.4 125.52c-1.11816 0.526367 -1.89355 1.66309 -1.89355 2.97949c0 0.0898438 0.00683594 0.173828 0.0136719 0.260742
|
3138 |
+
c0 0.870117 0 225.94 -0.0498047 253.101c-0.00976562 0.124023 -0.0136719 0.25 -0.0136719 0.376953c0 2.02832 1.20605 3.76855 2.94336 4.55273c23.2607 13.0996 209.271 119.21 220.141 125.21h1.75zM215.4 427.58l-0.219727 0.158203
|
3139 |
c-64.7471 -36.8604 -129.474 -73.7305 -194.18 -110.61c0 -0.120117 0.0800781 -0.229492 0.129883 -0.349609l30.8604 -11.6406c-7.70996 -6 -8.32031 -6 -10.6504 -5.12988c-0.0996094 0 -24.1699 9.28027 -26.7998 10v-230.43
|
3140 |
c0.879883 1.41016 64.0703 110.91 64.1299 111c1.62012 2.82031 3 1.91992 9.12012 1.51953c1.40039 -0.0898438 1.47949 -0.219727 0.780273 -1.41992c-41.1904 -71.3301 -36.4004 -63 -67.4805 -116.939c-0.80957 -1.40039 -0.609375 -1.12988 1.25 -1.12988h186.5
|
3141 |
c1.44043 0 1.69043 0.229492 1.7002 1.63965v8.87988c0 1.33984 2.36035 0.810547 -18.3701 1c-7.45996 0.0703125 -14.1396 3.21973 -21.3799 12.7002c-7.37988 9.66016 -14.6201 19.4297 -21.8496 29.21c-2.28027 3.08008 -3.4502 2.37988 -16.7607 2.37988
|
3142 |
c-1.75 0 -1.7793 0 -1.75977 -1.82031c0.290039 -26.21 0.150391 -25.2695 1 -32.6592c0.520508 -4.37012 2.16016 -4.2002 9.69043 -4.81055c3.13965 -0.259766 3.87988 -4.08008 0.519531 -4.91992c-1.57031 -0.389648 -31.5996 -0.509766 -33.6699 0.0996094
|
3143 |
+
c-1.02539 0.28125 -1.7793 1.2207 -1.7793 2.33496c0 1.21973 0.905273 2.22949 2.0791 2.39551c3.29004 0.759766 6.16016 -0.80957 6.66016 4.44043c1.2998 13.6592 1.16992 9 1.09961 79.4199c0 10.8193 -0.349609 12.5801 -5.35938 13.5498
|
3144 |
c-1.21973 0.240234 -3.54004 0.160156 -4.69043 0.549805c-2.87988 1 -2 4.83984 1.77051 4.84961c33.6699 0 46.0801 1.07031 56.0596 -4.85938c7.74023 -4.61035 12 -11.4805 12.5098 -20.4004c0.880859 -14.5898 -6.50977 -22.3496 -15 -32.5898
|
3145 |
+
c-0.313477 -0.267578 -0.511719 -0.666016 -0.511719 -1.11035s0.198242 -0.841797 0.511719 -1.10938c2.60059 -3.25 5 -6.62988 7.70996 -9.83008c27.5605 -33.2305 24.1104 -30.54 41.2803 -33.0605c0.890625 -0.129883 1 0.419922 1 1.15039v11
|
3146 |
+
c0 1 0.320312 1.42969 1.41016 1.25977c3.57227 -0.542969 7.23047 -0.825195 10.9531 -0.825195c4.35449 0 8.4834 0.386719 12.627 1.125c1.08008 0.150391 1.5 -0.199219 1.47949 -1.33008c0 -0.109375 0.880859 -26.6895 0.870117 -26.7998
|
3147 |
c-0.0498047 -1.51953 0.669922 -1.62012 1.89062 -1.62012h186.71c-27.1533 47.0342 -54.2334 93.9746 -81.2402 140.821c2.25977 0.660156 -0.400391 0 6.69043 1.38965c2 0.390625 2.0498 0.410156 3.10938 -1.43945c7.31055 -12.6396 77.3105 -134 77.3701 -134.061
|
3148 |
v230.44c-1.71973 -0.5 -103.3 -38.7197 -105.76 -39.6797c-1.08008 -0.419922 -1.5498 -0.200195 -1.91016 0.879883c-0.629883 1.89941 -1.33984 3.75977 -2.08984 5.62012c-0.320312 0.790039 -0.0898438 1.12988 0.649414 1.38965
|
3149 |
c0.100586 0 95.5303 35.8496 103 38.7705c-65.4199 37.5693 -130.56 75 -196 112.6l86.8203 -150.39l-0.280273 -0.330078c-9.56934 0.899414 -10.46 1.59961 -11.7998 3.93945c-1 1.69043 -73.5 127.71 -82 142.16c-9.09961 -14.6699 -83.5596 -146.21 -85.3701 -146.32
|
3150 |
+
c-2.92969 -0.169922 -5.87988 -0.0800781 -9.25 -0.0800781c28.833 49.8271 57.5596 99.4941 86.1797 149.001zM267.331 297.658c1.88379 0.146484 3.74316 0.435547 5.54004 0.849609c1.68945 0.299805 2.53027 -0.200195 2.59961 -1.91992
|
3151 |
c0 -0.109375 0.0703125 -19.0596 -0.859375 -20.4502c-0.930664 -1.38965 -1.87988 -1.21973 -2.60059 0.19043c-5 9.68945 6.2207 9.66016 -39.1201 12c-0.699219 0 -1 -0.230469 -1 -0.929688c0 -0.130859 3.7207 -122 3.73047 -122.11
|
3152 |
+
c0 -0.889648 0.519531 -1.2002 1.20996 -1.50977c2.97363 -1.18262 5.9043 -2.54883 8.7002 -4.0498c7.30957 -4.33008 11.3799 -10.8408 12.4102 -19.3105c1.43945 -11.7998 -2.77051 -35.7695 -32.21 -37.1396c-2.75 -0.129883 -28.2607 -1.08008 -34.1406 23.25
|
3153 |
+
c-4.66016 19.2598 8.25977 32.7002 19.8906 36.3994c1.14258 0.208008 2.00977 1.20898 2.00977 2.41113c0 0.0849609 -0.00195312 0.166016 -0.00976562 0.249023c0.0996094 5.62988 3 107.101 3.70996 121.351c0.0498047 1.0791 -0.620117 1.15918 -1.35059 1.14941
|
3154 |
c-32.3496 -0.519531 -36.75 0.339844 -40.2197 -8.51953c-2.41992 -6.18066 -4.13965 -1.32031 -3.9502 -0.230469c1.05957 6 2.16309 12 3.31055 18c0.399414 2.11035 1.42969 2.61035 3.42969 1.86035c5.58984 -2.11035 6.71973 -1.7002 37.25 -1.91992
|
3155 |
+
c1.72949 0 1.78027 0.0800781 1.82031 1.84961c0.679688 27.4902 0.579102 22.5898 1 29.5498c0.0117188 0.106445 0.0185547 0.213867 0.0185547 0.322266c0 1.11719 -0.679688 2.07129 -1.64941 2.47852c-5.59961 2.90918 -8.75 7.5498 -8.89941 13.8691
|
3156 |
+
c-0.350586 14.8105 17.7197 21.6699 27.3799 11.5107c6.83984 -7.19043 5.7998 -18.9102 -2.4502 -24.1504c-1.34473 -0.740234 -2.25684 -2.1709 -2.25684 -3.81348c0 -0.180664 0.015625 -0.351562 0.0371094 -0.526367c0 -0.589844 -0.110352 4.30957 1 -30.0498
|
3157 |
c0 -0.900391 0.429688 -1.12012 1.24023 -1.11035c0.0996094 0 23 0.0898438 34.4697 0.370117zM68.2705 306.298c19.8408 4.50977 32.6807 0.560547 52.4902 -1.68945c2.75977 -0.310547 3.74023 -1.2207 3.62012 -4c-0.209961 -5 -1.16016 -22.3301 -1.24023 -23.1504
|
3158 |
+
c-0.0419922 -1.05566 -0.702148 -1.9541 -1.62988 -2.33984c-4.05957 -1.7002 -3.60938 4.4502 -4 7.29004c-3.12988 22.4297 -73.8701 32.7002 -74.6299 -25.4004c-0.30957 -23.9199 17 -53.6299 54.0801 -50.8799c27.2402 2 19 20.1904 24.8398 20.4697
|
3159 |
+
c0.120117 0.0166016 0.241211 0.0244141 0.365234 0.0244141c1.50098 0 2.71973 -1.21875 2.71973 -2.71973c0 -0.229492 -0.03125 -0.451172 -0.0849609 -0.664062c-1.83008 -10.8506 -3.41992 -18.9502 -3.4502 -19.1504
|
3160 |
+
c-1.54004 -9.16992 -86.6992 -22.0898 -93.3496 42.0605c-2.70996 25.8496 10.4404 53.3691 40.2695 60.1494zM148.271 218.628h-19.4893c-0.0703125 -0.00585938 -0.140625 -0.00878906 -0.210938 -0.00878906c-1.15039 0 -2.12109 0.756836 -2.44922 1.79883
|
3161 |
c2.37988 3.75 5.88965 -0.919922 5.86035 6.13965c-0.0800781 25.75 0.209961 38 0.229492 40.1006c0 3.41992 -0.530273 4.64941 -3.32031 4.93945c-7 0.720703 -3.10938 3.37012 -1.10938 3.38086c11.8398 0.0996094 22.6201 0.179688 30.0498 -0.720703
|
3162 |
+
c8.76953 -1.06934 16.71 -12.6299 7.92969 -22.6201c-2 -2.25 -4 -4.41992 -6.13965 -6.72949c0.950195 -1.15039 6.89941 -8.82031 17.2803 -19.6797c2.65918 -2.78027 6.14941 -3.51074 9.87988 -3.13086h0.0214844c1.18945 0 2.16016 0.943359 2.20801 2.12012
|
3163 |
c0.299805 3.41992 0.259766 -4.72949 0.450195 40.5801c0 5.65039 -0.339844 6.58008 -3.22949 6.83008c-3.9502 0.350586 -4 2.25977 -0.69043 3.37012l19.0898 0.0898438c0.320312 0 4.49023 -0.530273 1 -3.37988c0 -0.0498047 -0.160156 0 -0.240234 0
|
3164 |
c-3.60938 -0.259766 -3.93945 -1 -4 -4.62012c-0.269531 -43.9297 0.0703125 -40.2295 0.410156 -42.8203c0.110352 -0.839844 0.270508 -2.22949 5.10059 -2.13965c2.48926 0 3.85938 -3.37012 0 -3.39941c-10.3701 -0.0800781 -20.7402 0 -31.1104 -0.0703125
|
3165 |
c-10.6699 0 -13.4697 6.2002 -24.21 20.8203c-1.59961 2.17969 -8.31055 2.35938 -8.2002 0.369141c0.879883 -16.4697 0 -17.7793 4 -17.6699c4.75 0.100586 4.73047 -3.56934 0.830078 -3.5498h0.0595703zM423.271 228.778
|
3166 |
+
c-1.20996 -7.12988 0.170898 -10.3799 -5.2998 -10.3398c-61.5498 0.419922 -47.8193 0.219727 -50.7197 0.30957c-1.24414 0.12207 -2.4707 0.37207 -3.62988 0.730469c-2.53027 0.599609 1.47949 1.22949 -0.379883 5.59961
|
3167 |
+
c-1.43066 3.37012 -2.78027 6.78027 -4.11035 10.1895c-0.219727 0.831055 -0.976562 1.44336 -1.87598 1.44336c-0.0419922 0 -0.0820312 0 -0.124023 -0.00292969c-2.22852 0.107422 -4.4707 0.161133 -6.72559 0.161133
|
3168 |
+
c-2.70605 0 -5.18652 -0.0771484 -7.85449 -0.231445c-0.6875 -0.0898438 -1.27734 -0.491211 -1.62012 -1.05957c-1.58008 -3.62012 -3.06934 -7.29004 -4.50977 -11c-1.26953 -3.23047 7.86035 -1.32031 12.1904 -2.16016c3 -0.570312 4.5293 -3.71973 0.65918 -3.72949
|
3169 |
+
h-26.3691c-2.91992 0 -3.09082 3.14941 -0.740234 3.20996c0.0966797 -0.00488281 0.194336 -0.00683594 0.291992 -0.00683594c2.46484 0 4.59277 1.41211 5.62793 3.47656c1.5 3 2.7998 6 4.11035 9.08984c18.1797 42.1396 17.0596 40.1699 18.4199 41.6104
|
3170 |
+
c0.330078 0.473633 0.879883 0.783203 1.50098 0.783203s1.16797 -0.30957 1.49902 -0.783203c2.92969 -3.33984 18.3994 -44.71 23.6201 -51.9199c2 -2.7002 5.73926 -2 6.35938 -2c3.61035 -0.130859 4 1.10938 4.12988 4.29004
|
3171 |
c0.0898438 1.86914 0.0800781 -1.1709 0.0703125 41.2393c0 4.45996 -2.36035 3.74023 -5.5498 4.27051c-0.259766 0 -2.56055 0.629883 -0.0800781 3.05957c0.209961 0.200195 -0.890625 0.240234 21.7002 0.150391c2.31934 0 5.31934 -2.75 -1.20996 -3.4502
|
3172 |
+
c-0.0390625 0.00195312 -0.078125 0.00292969 -0.116211 0.00292969c-1.41309 0 -2.56055 -1.14746 -2.56055 -2.56055c0 -0.0927734 0.00683594 -0.181641 0.0166016 -0.272461c-0.0703125 -1.62988 -0.19043 -38.8896 0.290039 -41.21
|
3173 |
+
c0.288086 -1.39062 1.52051 -2.43652 2.99609 -2.43652c0.0791016 0 0.155273 0.000976562 0.233398 0.00683594c13.25 -0.430664 14.9199 -0.44043 16 3.41016c1.66992 5.7793 4.12988 2.51953 3.73047 0.189453zM318.551 164.408
|
3174 |
c-4.24023 0 -4.41992 3.38965 -0.609375 3.41016c35.9092 0.160156 28.1094 -0.379883 37.1895 0.649414c1.67969 0.19043 2.37988 -0.239258 2.25 -1.88965c-0.259766 -3.38965 -0.639648 -6.78027 -1 -10.1602c-0.25 -2.16016 -3.2002 -2.61035 -3.39941 0.150391
|
3175 |
c-0.380859 5.30957 -2.15039 4.44922 -15.6309 5.08008c-1.58008 0.0693359 -1.63965 0 -1.63965 -1.52051v-16.1299c0 -1.65039 0 -1.59961 1.62012 -1.46973c3.12012 0.25 10.3096 -0.339844 15.6895 1.51953c0.470703 0.160156 3.30078 1.79004 3.07031 -1.75977
|
3176 |
c0 -0.209961 -0.759766 -10.3496 -1.17969 -11.3896c-0.530273 -1.29004 -1.87988 -1.51074 -2.58008 -0.320312c-1.16992 2 0 5.08008 -3.70996 5.2998c-15.4199 0.900391 -12.9102 2.5498 -12.9102 -6c0 -12.25 -0.759766 -16.1104 3.88965 -16.2402
|
3183 |
c1 15.8701 0.570312 44.6504 0.339844 47.8105c-0.269531 3.76953 -2.7998 3.26953 -5.67969 3.70996c-2.46973 0.379883 -2 3.21973 0.339844 3.21973c1.4502 0.0205078 17.9697 0.0302734 23.0898 0.0205078zM258.171 225.648
|
3184 |
c0.0703125 -4.08008 2.86035 -3.45996 6 -3.58008c2.61035 -0.100586 2.53027 -3.41016 -0.0703125 -3.43066c-6.47949 0 -13.6992 0 -21.6094 0.0605469c-3.83984 0 -3.37988 3.34961 0 3.37012c4.49023 0 3.24023 -1.61035 3.41016 45.54
|
3185 |
c0 5.08008 -3.27051 3.54004 -4.7207 4.22949c-2.58008 1.23047 -1.35938 3.08984 0.410156 3.15039c1.29004 0 20.1904 0.410156 21.1699 -0.209961c0.980469 -0.620117 1.87012 -1.65039 -0.419922 -2.86035c-1 -0.519531 -3.85938 0.280273 -4.14941 -2.46973
|
3186 |
+
c0 -0.209961 -0.820312 -1.62988 -0.0703125 -43.7998h0.0498047zM221.261 -48.6221c0.46582 -0.311523 1.02539 -0.493164 1.62695 -0.493164c0.602539 0 1.16797 0.181641 1.63281 0.493164c17 9.79004 182 103.57 197.421 112.51
|
3187 |
+
c-0.140625 0.430664 11.2598 0.180664 -181.521 0.270508c-1.21973 0 -1.57031 -0.370117 -1.53027 -1.56055c0 -0.0996094 1.25 -44.5098 1.2207 -50.3799c-0.0966797 -2.67383 -0.571289 -5.27344 -1.36035 -7.70996c-0.549805 -1.83008 0.379883 0.5 -13.5 -32.2295
|
3188 |
+
c-0.730469 -1.7207 -1 -2.20996 -2 0.0800781c-4.19043 10.3398 -8.28027 20.7197 -12.5703 31c-1.29785 2.92285 -2.01953 6.15723 -2.01953 9.55957c0 0.412109 -0.000976562 0.823242 0.0195312 1.23047c0.160156 2.45996 0.800781 16.1191 1.51074 48
|
3189 |
+
c0 1.94922 0 2 -2 2h-183c2.5791 -1.63086 178.319 -102.57 196 -112.761zM130.361 140.128c0 -2.39941 0.359375 -2.79004 2.75977 -3c11.54 -1.16992 21 -3.74023 25.6396 7.32031c6 14.46 2.66016 34.4102 -12.4795 38.8398c-2 0.589844 -16 2.75977 -15.9404 -1.50977
|
3190 |
c0.0498047 -8.04004 0.00976562 -11.6104 0.0205078 -41.6504zM236.111 155.178c0 -2.12988 1.06934 -38.6797 1.08984 -39.1299c0.339844 -9.93945 -25.5801 -5.76953 -25.2305 2.58984c0.0800781 2 1.37012 37.4199 1.10059 39.4307
|
3191 |
+
c-14.1006 -7.44043 -14.4199 -40.21 6.43945 -48.8008c2.18066 -0.946289 4.58594 -1.4707 7.11328 -1.4707c6.46094 0 12.1299 3.40332 15.2773 8.54102c4.90918 7.75977 6.83984 29.4697 -5.43066 39c-0.114258 -0.0478516 -0.237305 -0.0888672 -0.359375 -0.120117
|
3192 |
v-0.0400391zM223.831 353.178c-9.83008 0 -9.73047 -14.75 -0.0703125 -14.8701c9.66016 -0.119141 10.1006 14.8809 0.0703125 14.9102v-0.0400391zM143.681 249.348c0 -1.7998 0.410156 -2.39941 2.16992 -2.58008c13.6201 -1.38965 12.5107 11 12.1602 13.3604
|
3193 |
c-1.68945 11.2197 -14.3799 10.2002 -14.3496 7.81055c0.0498047 -4.5 -0.0302734 -13.6807 0.0195312 -18.5908zM356.001 242.948l-6.09961 15.8398c-2.16016 -5.48047 -4.16016 -10.5703 -6.23047 -15.8398h12.3301z" />
|
3194 |
<glyph glyph-name="d-and-d-beyond" unicode="" horiz-adv-x="640"
|
3231 |
c0.279297 -11.1602 9.55957 -19.9805 20.7197 -19.6904h62.1797v29.5703h-53.29v38.4102h32.5703v29.5693h-32.5703v38.4199h53.2803zM358.52 130.18l38.4609 144.801h-32.5801l-29.5703 -113.721l-29.71 113.721h-32.5703l38.5303 -144.801
|
3232 |
c10.5898 -24.6299 34.2402 -30.75 47.4395 0z" />
|
3233 |
<glyph glyph-name="fantasy-flight-games" unicode="" horiz-adv-x="512"
|
3234 |
+
d="M256 415.14l223.14 -223.14l-223.14 -223.14l-223.14 223.14zM88.3398 192.17c13.8027 -13.6836 27.3086 -27.0547 41.1299 -40.7197c20.1602 19.8799 40.46 39.8994 61.8506 60.9902c12.0596 -12.5801 24.5195 -25.5703 36.54 -38.1104
|
3235 |
c12.0293 11.6895 23.7393 23.0596 35.6895 34.6602c-6.99023 7.4502 -32.1494 32.8301 -35.0898 35.7793c-1.91016 1.9209 -2.29004 3.2207 -0.120117 5.35059c15.5801 15.2295 39.21 17.79 56.9805 5.09961c7.98926 -5.70996 14.2998 -11.6396 48.5098 -43.9502
|
3236 |
c10.8203 11.1504 22.2295 22.8506 33.5 34.6904c0.490234 0.520508 0.0996094 2.63965 -0.580078 3.37988c-0.0898438 0.100586 -37.5195 40.6006 -62.1504 59c-33.5801 25.0801 -78.3193 23.0605 -119.77 -18.6895c-84.5703 -85.1807 -94.5303 -95.4805 -96.4902 -97.4805z
|
3237 |
M323.16 90.5703c18.8203 18.79 80.3301 80.6396 100.5 101.5c-13.7305 13.4492 -27.1797 26.6299 -40.8604 40.0293c-20.0098 -19.7393 -40.2402 -39.6895 -61.25 -60.4199c-12.3301 12.8301 -24.8799 25.8799 -37.25 38.75
|
3241 |
<glyph glyph-name="penny-arcade" unicode="" horiz-adv-x="640"
|
3242 |
d="M421.91 283.73c7.33984 -16.2705 2.29004 -5.07031 24.6299 -54.6807l-39.7305 -10.6094c13.7002 59.2295 10.6104 45.8398 15.1006 65.29zM215.82 232.62c32.5 8.99023 41.9492 -37.6396 -0.350586 -47.4297c-14.2002 -3.77051 -6.64941 -1.75 -34.8193 -9.34082
|
3243 |
l-4.45996 46.1904c28.3193 7.5498 19.4395 5.17969 39.6299 10.5801zM541.98 258.81c75.7998 -37.9092 98 -76.3193 97.9893 -104.47c2.10059 -78.8496 -183.3 -130.33 -399.89 -84.8301c0.540039 -13 -8.00977 -24.6494 -20.5801 -28.0195
|
3244 |
+
c-125.54 -33.54 -117.35 -31.75 -122.53 -31.7598c-14.3701 -0.0107422 -26.4102 10.8896 -27.7998 25.1992l-4.2998 44.4805c-0.0830078 0.875 -0.138672 1.72461 -0.138672 2.62109c0 11.877 7.43945 22.0293 17.9082 26.0488l-1.73926 17.8799
|
3245 |
+
c-50.2305 28.2598 -80.9004 61.8701 -80.9004 95.3701c0 72.9199 144.26 113.4 309.41 98.3701c3.02734 8.49316 10.0977 15.0625 18.8896 17.4102c96.8701 25.9092 65.3203 17.4795 135.59 36.2295c13.1602 3.50977 26.9307 -2.95996 32.6201 -15.3301zM255.14 149.7
|
3246 |
+
c20.7529 4.80176 38.666 16.9805 50.75 33.7197c21.6006 32.5898 14.1104 105.561 -42.5498 104.43c-16.04 -0.229492 -8.07031 0.890625 -186.22 -46.6494l4.34961 -44.5l20.1201 5.38965l11.1104 -114.64l-20.0205 -5.35059l4.30078 -44.5195l115.31 30.7803
|
3247 |
l-4.50977 44.5098l-20.5303 -5.50977l-2.45996 23.5498l48.4404 12.9102zM454.32 133.08l108.55 28.96l-4.2998 44.4795l-20.79 -5.55957l-66.6699 145.47c-70.5801 -18.8301 -42.2305 -11.25 -135.591 -36.2393l4.2002 -44.4805l17.1504 4.55957l-33.0801 -126.47
|
3248 |
l-20.9902 -5.58984l4.45996 -44.4297l112.851 30.0693l-4.05078 39.54l-19.1992 -5.12012l4.09961 17.54l57.7598 15.4209l6.61035 -14.6807l-14.9004 -3.97949z" />
|
3249 |
<glyph glyph-name="wizards-of-the-coast" unicode="" horiz-adv-x="640"
|
3312 |
s-5.7998 -1.40039 -5.7998 -6.10059v-36.5996c0 -4.7002 2.2998 -6.10059 5.7998 -6.10059s5.7998 1.40039 5.7998 6.10059c0 8.09961 -1 12.0996 3.7998 12.0996h3.40039zM142.3 168.36c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961
|
3313 |
c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-21.8994c-2.5 0 -3.80078 1.2998 -3.80078 3.7998v59.0996c0 2.5 1.30078 3.90039 3.7002 3.80078h21.7002c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-14.4004v-18.2998h11.4004
|
3314 |
c2.5 0 3.7998 -1.30078 3.7998 -3.80078v-2.09961c0 -2.5 -1.2998 -3.7998 -3.7998 -3.7998h-11.4004v-19.2998h14.7002zM100.3 186.86l8.10059 -23.9004c0.799805 -2.59961 -0.400391 -4.40039 -3.2002 -4.40039h-3.2998
|
3315 |
+
c-0.0996094 -0.00683594 -0.196289 -0.0078125 -0.297852 -0.0078125c-1.95703 0 -3.59473 1.37402 -4.00293 3.20801l-7.39941 23.5h-5.60059v-22.8994c0 -2.5 -1.2998 -3.80078 -3.7998 -3.80078h-3.39941c-2.5 0 -3.80078 1.30078 -3.80078 3.80078v59.0996
|
3316 |
c0 2.5 1.30078 3.7998 3.80078 3.7998h13.3994c10.1006 0 16.7998 -4 16.7998 -14.0996v-11.9004c0 -6.39941 -2.69922 -10.3994 -7.2998 -12.3994zM96.5 200.86v8.69922c0 4.80078 -2.5 6.10059 -6.09961 6.10059h-5.80078v-20.9004h5.80078
|
|
|
|