Version Description
Metform 1.3.0-beta1 is a major update. We have reconstructed the widgets with react and huge optimization for future proof. If you faced any issue please contact our support team from here https://help.wpmet.com/
Download this release
Release Info
Developer | ataurr |
Plugin | Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress |
Version | 1.3.14 |
Comparing to | |
See all releases |
Code changes from version 1.3.12 to 1.3.14
- metform.php +7 -1
- plugin.php +14 -10
- readme.txt +8 -2
- trunk/autoloader.php +0 -57
- trunk/base/api.php +0 -44
- trunk/base/common.php +0 -37
- trunk/base/cpt.php +0 -21
- trunk/base/shortcode.php +0 -173
- trunk/controls/assets/css/form-picker-editor.css +0 -62
- trunk/controls/assets/css/form-picker-inspactor.css +0 -436
- trunk/controls/assets/img/edit_icon.svg +0 -39
- trunk/controls/assets/js/form-picker-editor.js +0 -210
- trunk/controls/assets/js/form-picker-inspactor.js +0 -70
- trunk/controls/base.php +0 -57
- trunk/controls/control-manager.php +0 -17
- trunk/controls/form-editor-modal.php +0 -53
- trunk/controls/form-picker-modal.php +0 -96
- trunk/controls/form-picker-utils.php +0 -53
- trunk/controls/form-picker.php +0 -80
- trunk/core/admin/base.php +0 -96
- trunk/core/admin/images/banner.png +0 -0
- trunk/core/admin/images/feature-preview.png +0 -0
- trunk/core/admin/images/metform_logo.png +0 -0
- trunk/core/admin/images/rate-now-thumb.png +0 -0
- trunk/core/admin/views/settings.php +0 -903
- trunk/core/entries/action.php +0 -937
- trunk/core/entries/api.php +0 -139
- trunk/core/entries/base.php +0 -23
- trunk/core/entries/cpt.php +0 -73
- trunk/core/entries/export.php +0 -90
- trunk/core/entries/form-data.php +0 -146
- trunk/core/entries/hooks.php +0 -105
- trunk/core/entries/map-el.php +0 -57
- trunk/core/entries/meta-data.php +0 -304
- trunk/core/entries/metform-shortcode.php +0 -61
- trunk/core/forms/action.php +0 -263
- trunk/core/forms/api.php +0 -302
- trunk/core/forms/base.php +0 -38
- trunk/core/forms/builder.php +0 -56
- trunk/core/forms/cpt.php +0 -414
- trunk/core/forms/hooks.php +0 -82
- trunk/core/forms/views/modal-editor.php +0 -761
- trunk/core/integrations/Mail_Adapter.php +0 -18
- trunk/core/integrations/Mail_Adapter_Contract.php +0 -13
- trunk/core/integrations/google-recaptcha.php +0 -85
- trunk/core/integrations/mail-chimp.php +0 -92
- trunk/core/integrations/provider/aweber/test +0 -0
- trunk/core/integrations/slack.php +0 -54
- trunk/languages/metform.pot +0 -2913
- trunk/metform.php +0 -31
- trunk/plugin.php +0 -403
- trunk/public/assets/admin-fonts.css +0 -2747
- trunk/public/assets/css/admin-style.css +0 -1401
- trunk/public/assets/css/asRange.min.css +0 -8
- trunk/public/assets/css/category-top.css +0 -8
- trunk/public/assets/css/flatpickr.min.css +0 -13
- trunk/public/assets/css/font-awesome.min.css +0 -4
- trunk/public/assets/css/metform-ui.css +0 -1
- trunk/public/assets/css/select2.min.css +0 -1
- trunk/public/assets/css/style.css +0 -1045
- trunk/public/assets/fonts/FontAwesome.otf +0 -0
- trunk/public/assets/fonts/fontawesome-webfont.eot +0 -0
- trunk/public/assets/fonts/fontawesome-webfont.svg +0 -2049
metform.php
CHANGED
@@ -5,7 +5,7 @@ defined( 'ABSPATH' ) || exit;
|
|
5 |
* Plugin Name: MetForm
|
6 |
* Plugin URI: http://products.wpmet.com/metform/
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
-
* Version: 1.3.
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
@@ -16,11 +16,17 @@ defined( 'ABSPATH' ) || exit;
|
|
16 |
require_once plugin_dir_path( __FILE__ ) . '/utils/notice/notice.php';
|
17 |
require_once plugin_dir_path( __FILE__ ) . '/utils/banner/init.php';
|
18 |
|
|
|
|
|
|
|
|
|
19 |
require plugin_dir_path( __FILE__ ) .'autoloader.php';
|
20 |
require plugin_dir_path( __FILE__ ) .'plugin.php';
|
21 |
|
22 |
// init notice class
|
23 |
\Oxaim\Libs\Notice::init();
|
|
|
|
|
24 |
|
25 |
register_activation_hook( __FILE__, [ MetForm\Plugin::instance(), 'flush_rewrites'] );
|
26 |
|
5 |
* Plugin Name: MetForm
|
6 |
* Plugin URI: http://products.wpmet.com/metform/
|
7 |
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
+
* Version: 1.3.14
|
9 |
* Author: Wpmet
|
10 |
* Author URI: https://wpmet.com
|
11 |
* Text Domain: metform
|
16 |
require_once plugin_dir_path( __FILE__ ) . '/utils/notice/notice.php';
|
17 |
require_once plugin_dir_path( __FILE__ ) . '/utils/banner/init.php';
|
18 |
|
19 |
+
require_once 'utils/announcements/init.php';
|
20 |
+
require_once 'utils/pro-awareness/init.php';
|
21 |
+
require_once 'utils/rating/init.php';
|
22 |
+
|
23 |
require plugin_dir_path( __FILE__ ) .'autoloader.php';
|
24 |
require plugin_dir_path( __FILE__ ) .'plugin.php';
|
25 |
|
26 |
// init notice class
|
27 |
\Oxaim\Libs\Notice::init();
|
28 |
+
\Wpmet\Rating\Rating::init();
|
29 |
+
|
30 |
|
31 |
register_activation_hook( __FILE__, [ MetForm\Plugin::instance(), 'flush_rewrites'] );
|
32 |
|
plugin.php
CHANGED
@@ -16,7 +16,7 @@ final class Plugin{
|
|
16 |
}
|
17 |
|
18 |
public function version(){
|
19 |
-
return '1.3.
|
20 |
}
|
21 |
|
22 |
public function package_type(){
|
@@ -82,15 +82,14 @@ final class Plugin{
|
|
82 |
/**
|
83 |
* Ask for rating
|
84 |
*/
|
85 |
-
require_once 'utils/rating.php';
|
86 |
-
|
87 |
-
require_once 'utils/pro-awareness/init.php';
|
88 |
|
89 |
-
|
90 |
-
->
|
91 |
-
->
|
92 |
-
->
|
93 |
-
->
|
94 |
|
95 |
// banner
|
96 |
add_action('admin_head', function() {
|
@@ -124,7 +123,7 @@ final class Plugin{
|
|
124 |
'https://wpmet.com/plugin/metform/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro_menu')
|
125 |
->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
|
126 |
->set_grid([
|
127 |
-
'url' => 'https://
|
128 |
'title' => 'Join the Community',
|
129 |
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
|
130 |
])
|
@@ -132,6 +131,11 @@ final class Plugin{
|
|
132 |
'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
|
133 |
'title' => 'Video Tutorials',
|
134 |
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
|
|
|
|
|
|
|
|
|
|
|
135 |
])
|
136 |
->call();
|
137 |
|
16 |
}
|
17 |
|
18 |
public function version(){
|
19 |
+
return '1.3.14';
|
20 |
}
|
21 |
|
22 |
public function package_type(){
|
82 |
/**
|
83 |
* Ask for rating
|
84 |
*/
|
85 |
+
// require_once 'utils/rating.php';
|
86 |
+
|
|
|
87 |
|
88 |
+
\Wpmet\Rating\Rating::instance('metform')
|
89 |
+
->set_plugin('Metform','https://wordpress.org/plugins/metform/')
|
90 |
+
->set_first_appear_day(7)
|
91 |
+
->set_condition(true)
|
92 |
+
->call();
|
93 |
|
94 |
// banner
|
95 |
add_action('admin_head', function() {
|
123 |
'https://wpmet.com/plugin/metform/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro_menu')
|
124 |
->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
|
125 |
->set_grid([
|
126 |
+
'url' => 'https://go.wpmet.com/facebook-group',
|
127 |
'title' => 'Join the Community',
|
128 |
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
|
129 |
])
|
131 |
'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
|
132 |
'title' => 'Video Tutorials',
|
133 |
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
|
134 |
+
])
|
135 |
+
->set_grid([
|
136 |
+
'url' => 'https://wpmet.com/plugin/metform/roadmaps#ideas',
|
137 |
+
'title' => 'Request a feature',
|
138 |
+
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/request.png',
|
139 |
])
|
140 |
->call();
|
141 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: ataurr, wpmet, emranio, prappo_p, atiqsu, easin55474, enamulhoquem
|
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.5.1
|
6 |
-
Stable tag: 1.3.
|
7 |
Requires PHP: 7.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -221,6 +221,12 @@ Connect with Gmail, Slack, Mailchimp, and many more.
|
|
221 |
|
222 |
|
223 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
Version 1.3.12
|
225 |
Fix: Default Value for Email input issue
|
226 |
Fix: Checkbox option left side label cursor fix
|
@@ -242,7 +248,7 @@ New: Styling Controls for Like Dislike Widget.
|
|
242 |
Fix: Active value not working in Like Dislike Widget
|
243 |
Fix: Line break support for Textarea Widget in Form Entry View.
|
244 |
|
245 |
-
Version 1.
|
246 |
Fix : Minor bug fix
|
247 |
|
248 |
Version 1.3.10
|
3 |
Tags: Form builder, Elementor form builder, contact form, custom form, forms, drag & drop form builder
|
4 |
Requires at least: 4.8
|
5 |
Tested up to: 5.5.1
|
6 |
+
Stable tag: 1.3.14
|
7 |
Requires PHP: 7.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
221 |
|
222 |
|
223 |
== Changelog ==
|
224 |
+
Version 1.3.14
|
225 |
+
Improve: Updated core libraries
|
226 |
+
|
227 |
+
Version 1.3.13
|
228 |
+
Fix: Updated Facebook Community links
|
229 |
+
|
230 |
Version 1.3.12
|
231 |
Fix: Default Value for Email input issue
|
232 |
Fix: Checkbox option left side label cursor fix
|
248 |
Fix: Active value not working in Like Dislike Widget
|
249 |
Fix: Line break support for Textarea Widget in Form Entry View.
|
250 |
|
251 |
+
Version 1.2.11
|
252 |
Fix : Minor bug fix
|
253 |
|
254 |
Version 1.3.10
|
trunk/autoloader.php
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
/**
|
6 |
-
* MetForm autoloader.
|
7 |
-
* Handles dynamically loading classes only when needed.
|
8 |
-
*
|
9 |
-
* @since 1.0.0
|
10 |
-
*/
|
11 |
-
class Autoloader {
|
12 |
-
|
13 |
-
/**
|
14 |
-
* Run autoloader.
|
15 |
-
* Register a function as `__autoload()` implementation.
|
16 |
-
*
|
17 |
-
* @since 1.0.0
|
18 |
-
* @access public
|
19 |
-
*/
|
20 |
-
public static function run() {
|
21 |
-
spl_autoload_register( [ __CLASS__, 'autoload' ] );
|
22 |
-
}
|
23 |
-
|
24 |
-
/**
|
25 |
-
* Autoload.
|
26 |
-
* For a given class, check if it exist and load it.
|
27 |
-
*
|
28 |
-
* @since 1.0.0
|
29 |
-
* @access private
|
30 |
-
* @param string $class Class name.
|
31 |
-
*/
|
32 |
-
private static function autoload( $class_name ) {
|
33 |
-
|
34 |
-
// If the class being requested does not start with our prefix
|
35 |
-
// we know it's not one in our project.
|
36 |
-
if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
|
37 |
-
return;
|
38 |
-
}
|
39 |
-
|
40 |
-
$file_name = strtolower(
|
41 |
-
preg_replace(
|
42 |
-
[ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
|
43 |
-
[ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
|
44 |
-
$class_name
|
45 |
-
)
|
46 |
-
);
|
47 |
-
|
48 |
-
// Compile our path from the corosponding location.
|
49 |
-
$file = plugin_dir_path(__FILE__) . $file_name . '.php';
|
50 |
-
|
51 |
-
// If a file is found.
|
52 |
-
if ( file_exists( $file ) ) {
|
53 |
-
// Then load it up!
|
54 |
-
require_once( $file );
|
55 |
-
}
|
56 |
-
}
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/base/api.php
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Base;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
abstract class Api
|
8 |
-
{
|
9 |
-
|
10 |
-
public $prefix = '';
|
11 |
-
public $param = '';
|
12 |
-
public $request = null;
|
13 |
-
|
14 |
-
public function __construct()
|
15 |
-
{
|
16 |
-
$this->config();
|
17 |
-
$this->init();
|
18 |
-
}
|
19 |
-
|
20 |
-
public abstract function config();
|
21 |
-
|
22 |
-
public function init()
|
23 |
-
{
|
24 |
-
add_action('rest_api_init', function () {
|
25 |
-
register_rest_route(untrailingslashit('metform/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
|
26 |
-
'methods' => \WP_REST_Server::ALLMETHODS,
|
27 |
-
'callback' => [$this, 'action'],
|
28 |
-
'permission_callback' => '__return_true',
|
29 |
-
));
|
30 |
-
});
|
31 |
-
}
|
32 |
-
|
33 |
-
public function action($request)
|
34 |
-
{
|
35 |
-
$this->request = $request;
|
36 |
-
$action_class = strtolower($this->request->get_method()) . '_' . $this->request['action'];
|
37 |
-
|
38 |
-
if (method_exists($this, $action_class)) {
|
39 |
-
|
40 |
-
return $this->{$action_class}();
|
41 |
-
|
42 |
-
}
|
43 |
-
}
|
44 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/base/common.php
DELETED
@@ -1,37 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Base;
|
3 |
-
|
4 |
-
defined('ABSPATH') || exit;
|
5 |
-
|
6 |
-
abstract class Common {
|
7 |
-
|
8 |
-
public function get_name() {
|
9 |
-
return null;
|
10 |
-
}
|
11 |
-
|
12 |
-
|
13 |
-
public function get_title() {
|
14 |
-
return $this->get_name();
|
15 |
-
}
|
16 |
-
|
17 |
-
|
18 |
-
public function get_dir() {
|
19 |
-
return dirname(__FILE__);
|
20 |
-
}
|
21 |
-
|
22 |
-
|
23 |
-
public function get_base() {
|
24 |
-
return str_replace(\MetForm\Plugin::instance()->plugin_dir(), '', $this->get_dir());
|
25 |
-
|
26 |
-
return $this->get_dir();
|
27 |
-
}
|
28 |
-
|
29 |
-
|
30 |
-
public function get_url() {
|
31 |
-
return \MetForm\Plugin::instance()->plugin_url() . $this->get_base();
|
32 |
-
}
|
33 |
-
|
34 |
-
|
35 |
-
public abstract function init();
|
36 |
-
|
37 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/base/cpt.php
DELETED
@@ -1,21 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Base;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
abstract Class Cpt{
|
6 |
-
|
7 |
-
public function __construct() {
|
8 |
-
|
9 |
-
$name = $this->get_name();
|
10 |
-
$args = $this->post_type();
|
11 |
-
|
12 |
-
add_action('init',function() use($name,$args) {
|
13 |
-
register_post_type( $name, $args );
|
14 |
-
});
|
15 |
-
|
16 |
-
}
|
17 |
-
|
18 |
-
public abstract function post_type();
|
19 |
-
|
20 |
-
}
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/base/shortcode.php
DELETED
@@ -1,173 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Base;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Shortcode
|
8 |
-
{
|
9 |
-
|
10 |
-
use \MetForm\Traits\Singleton;
|
11 |
-
|
12 |
-
|
13 |
-
public function __construct()
|
14 |
-
{
|
15 |
-
add_shortcode('metform', [$this, 'render_shortcode']);
|
16 |
-
add_shortcode('mf_thankyou', [$this, 'render_thank_you_page']);
|
17 |
-
add_shortcode('mf_first_name', [$this, 'render_first_name']);
|
18 |
-
add_shortcode('mf_last_name', [$this, 'render_last_name']);
|
19 |
-
add_shortcode('mf_payment_status', [$this, 'render_payment_status']);
|
20 |
-
add_shortcode('mf_transaction_id', [$this, 'render_transaction_id']);
|
21 |
-
add_shortcode('mf',[$this,'render_mf_field']);
|
22 |
-
}
|
23 |
-
|
24 |
-
|
25 |
-
public function render_shortcode($atts)
|
26 |
-
{
|
27 |
-
$attributes = shortcode_atts(array(
|
28 |
-
'form_id' => 'test',
|
29 |
-
), $atts);
|
30 |
-
|
31 |
-
return '<div class="mf-form-shortcode">' . \MetForm\Utils\Util::render_form_content($attributes['form_id'], $attributes['form_id']) . '</div>';
|
32 |
-
}
|
33 |
-
|
34 |
-
public function render_thank_you_page($atts)
|
35 |
-
{
|
36 |
-
if($GLOBALS['pagenow'] == 'post.php'){
|
37 |
-
return;
|
38 |
-
}
|
39 |
-
global $post;
|
40 |
-
|
41 |
-
/**
|
42 |
-
*
|
43 |
-
* =============================
|
44 |
-
* Atts for thank you page start
|
45 |
-
* =============================
|
46 |
-
*
|
47 |
-
*/
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
$a = shortcode_atts(array(
|
52 |
-
'fname' => '',
|
53 |
-
'lname' => '',
|
54 |
-
), $atts);
|
55 |
-
|
56 |
-
// return "foo = {$a['foo']}";
|
57 |
-
|
58 |
-
$settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
59 |
-
$page_id = $settings['mf_thank_you_page'];
|
60 |
-
$post_id = $_GET['id'];
|
61 |
-
|
62 |
-
error_log($post_id);
|
63 |
-
|
64 |
-
$postMeta = get_post_meta(
|
65 |
-
$post_id,
|
66 |
-
'metform_entries__form_data',
|
67 |
-
true
|
68 |
-
);
|
69 |
-
$first_name = !empty($postMeta[$a['fname']]) ? $postMeta[$a['fname']] : '';
|
70 |
-
|
71 |
-
$payment_status = get_post_meta(
|
72 |
-
$post_id,
|
73 |
-
'metform_entries__payment_status',
|
74 |
-
true
|
75 |
-
);
|
76 |
-
|
77 |
-
$tnx_id = get_post_meta(
|
78 |
-
$post_id,
|
79 |
-
'metform_entries__payment_trans',
|
80 |
-
true
|
81 |
-
);
|
82 |
-
|
83 |
-
$msg = '';
|
84 |
-
|
85 |
-
if ($payment_status == 'paid') {
|
86 |
-
$msg = $first_name . ' Thank you for your payment. <br>' . ' Your transcation ID : ' . $tnx_id;
|
87 |
-
} else {
|
88 |
-
$msg = 'Thank you . Your payment status : ' . $payment_status;
|
89 |
-
}
|
90 |
-
|
91 |
-
return $msg;
|
92 |
-
|
93 |
-
|
94 |
-
/**
|
95 |
-
*
|
96 |
-
*
|
97 |
-
* ===================================
|
98 |
-
* Atts for thank you page ends here :D
|
99 |
-
* ====================================
|
100 |
-
*
|
101 |
-
*/
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
}
|
106 |
-
|
107 |
-
public function render_mf_field($atts){
|
108 |
-
$a = shortcode_atts(array(
|
109 |
-
'field' => ''
|
110 |
-
),$atts);
|
111 |
-
|
112 |
-
$settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
113 |
-
$page_id = $settings['mf_thank_you_page'];
|
114 |
-
$post_id = $_GET['id'];
|
115 |
-
|
116 |
-
$field = get_post_meta(
|
117 |
-
$post_id,
|
118 |
-
'metform_entries__form_data',
|
119 |
-
true
|
120 |
-
)[$a['field']];
|
121 |
-
|
122 |
-
return $field;
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
}
|
127 |
-
|
128 |
-
public function render_first_name($atts)
|
129 |
-
{
|
130 |
-
|
131 |
-
$post_id = $_GET['id'];
|
132 |
-
$first_name = get_post_meta(
|
133 |
-
$post_id,
|
134 |
-
'metform_entries__form_data',
|
135 |
-
true
|
136 |
-
)['mf-listing-fname'];
|
137 |
-
return $first_name;
|
138 |
-
}
|
139 |
-
|
140 |
-
public function render_last_name($atts)
|
141 |
-
{
|
142 |
-
$post_id = $_GET['id'];
|
143 |
-
$last_name = get_post_meta(
|
144 |
-
$post_id,
|
145 |
-
'metform_entries__form_data',
|
146 |
-
true
|
147 |
-
)['mf-listing-lname'];
|
148 |
-
return $last_name;
|
149 |
-
}
|
150 |
-
|
151 |
-
public function render_payment_status($atts)
|
152 |
-
{
|
153 |
-
$post_id = $_GET['id'];
|
154 |
-
$payment_status = get_post_meta(
|
155 |
-
$post_id,
|
156 |
-
'metform_entries__payment_status',
|
157 |
-
true
|
158 |
-
);
|
159 |
-
return $payment_status;
|
160 |
-
}
|
161 |
-
|
162 |
-
public function render_transaction_id($atts)
|
163 |
-
{
|
164 |
-
$post_id = $_GET['id'];
|
165 |
-
$tnx_id = get_post_meta(
|
166 |
-
$post_id,
|
167 |
-
'metform_entries__payment_trans',
|
168 |
-
true
|
169 |
-
);
|
170 |
-
|
171 |
-
return $tnx_id;
|
172 |
-
}
|
173 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/assets/css/form-picker-editor.css
DELETED
@@ -1,62 +0,0 @@
|
|
1 |
-
/* editor file */
|
2 |
-
|
3 |
-
.formpicker_warper_edit {
|
4 |
-
display: none;
|
5 |
-
position: absolute;
|
6 |
-
top: 0;
|
7 |
-
right: 0;
|
8 |
-
bottom: 0;
|
9 |
-
width: 0;
|
10 |
-
z-index: 99999;
|
11 |
-
}
|
12 |
-
|
13 |
-
.formpicker_warper_editable {
|
14 |
-
min-height: 30px;
|
15 |
-
min-width: 100px;
|
16 |
-
position: relative;
|
17 |
-
}
|
18 |
-
|
19 |
-
.formpicker_iframe_modal {
|
20 |
-
display: none;
|
21 |
-
}
|
22 |
-
|
23 |
-
.formpicker_iframe_modal .dialog-widget-content {
|
24 |
-
position: static !important;
|
25 |
-
margin-top: 10px;
|
26 |
-
}
|
27 |
-
|
28 |
-
.elementor-editor-active .formpicker_warper_editable:hover {
|
29 |
-
outline: 1px solid #71d7f7;
|
30 |
-
}
|
31 |
-
|
32 |
-
.elementor-editor-active .formpicker_warper_editable:hover>.formpicker_warper_edit {
|
33 |
-
display: block;
|
34 |
-
}
|
35 |
-
.metform-builder-edit{
|
36 |
-
display: block;
|
37 |
-
position: sticky;
|
38 |
-
top: 0;
|
39 |
-
width: 26px;
|
40 |
-
height: 26px;
|
41 |
-
margin-top: -1px;
|
42 |
-
margin-left: -25px;
|
43 |
-
background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
|
44 |
-
border-bottom-left-radius: 3px;
|
45 |
-
cursor: pointer;
|
46 |
-
}
|
47 |
-
.metform-builder-edit:before {
|
48 |
-
content: " ";
|
49 |
-
position: absolute;
|
50 |
-
top: 0;
|
51 |
-
left: 0;
|
52 |
-
width: 100%;
|
53 |
-
height: 100%;
|
54 |
-
background-image: url(../img/edit_icon.svg);
|
55 |
-
background-size: 17px;
|
56 |
-
background-repeat: no-repeat;
|
57 |
-
background-position: center;
|
58 |
-
}
|
59 |
-
.elementor-editor-active .formpicker_warper_editable .formpicker_warper_editable .formpicker_warper_edit,
|
60 |
-
.elementor-widget-metform .elementor-element-overlay {
|
61 |
-
display: none!important;
|
62 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/assets/css/form-picker-inspactor.css
DELETED
@@ -1,436 +0,0 @@
|
|
1 |
-
/* modal css */
|
2 |
-
|
3 |
-
.formpicker_warper_editable {
|
4 |
-
position: relative;
|
5 |
-
}
|
6 |
-
|
7 |
-
.formpicker_warper_editable:hover {
|
8 |
-
outline: 1px solid #71d7f7;
|
9 |
-
}
|
10 |
-
|
11 |
-
.formpicker_warper_editable:hover .formpicker_warper_edit {
|
12 |
-
display: block;
|
13 |
-
}
|
14 |
-
|
15 |
-
.formpicker_iframe_modal,
|
16 |
-
.formpicker_iframe_mini_modal {
|
17 |
-
display: block;
|
18 |
-
}
|
19 |
-
|
20 |
-
.formpicker_iframe_modal .dialog-message {
|
21 |
-
position: relative;
|
22 |
-
}
|
23 |
-
|
24 |
-
.formpicker_iframe_modal iframe {
|
25 |
-
position: absolute;
|
26 |
-
top: 0;
|
27 |
-
bottom: 0;
|
28 |
-
right: 0;
|
29 |
-
left: 0;
|
30 |
-
width: 100%;
|
31 |
-
height: 100%;
|
32 |
-
}
|
33 |
-
|
34 |
-
.formpicker_iframe_modal .dialog-widget-content {
|
35 |
-
position: static !important;
|
36 |
-
margin-top: 10px;
|
37 |
-
}
|
38 |
-
|
39 |
-
.formpicker_warper_edit {
|
40 |
-
display: none;
|
41 |
-
position: absolute;
|
42 |
-
top: 0;
|
43 |
-
right: 0;
|
44 |
-
color: #fff;
|
45 |
-
background: #71d7f7;
|
46 |
-
line-height: 1;
|
47 |
-
padding: 7px 8px;
|
48 |
-
font-size: 11px;
|
49 |
-
border-bottom-left-radius: 3px;
|
50 |
-
cursor: pointer;
|
51 |
-
}
|
52 |
-
|
53 |
-
.metform-dynamic-content-modal .dialog-widget-content {
|
54 |
-
max-width: 90% !important;
|
55 |
-
margin-top: 20px !important;
|
56 |
-
margin-bottom: 20px !important;
|
57 |
-
}
|
58 |
-
.metform-dynamic-content-modal .elementor-templates-modal__header {
|
59 |
-
background-color: #F1F3F5;
|
60 |
-
}
|
61 |
-
|
62 |
-
.elementor-device-desktop #elementor-preview-responsive-wrapper {
|
63 |
-
min-width: auto !important;
|
64 |
-
}
|
65 |
-
|
66 |
-
.metform-dynamic-content-modal .dialog-message {
|
67 |
-
overflow: unset !important;
|
68 |
-
}
|
69 |
-
|
70 |
-
.formpicker_iframe_mini_modal {
|
71 |
-
position: fixed;
|
72 |
-
top: 50%;
|
73 |
-
left: 50%;
|
74 |
-
z-index: 9999;
|
75 |
-
background: #fff;
|
76 |
-
border: 1px solid;
|
77 |
-
}
|
78 |
-
|
79 |
-
#metform-open-content-editor{
|
80 |
-
background-color: rgba(0,0,0, .8);
|
81 |
-
width: 100%;
|
82 |
-
height: 100%;
|
83 |
-
position: fixed;
|
84 |
-
left: 0;
|
85 |
-
top: 0;
|
86 |
-
z-index: 2;
|
87 |
-
overflow-y: auto;
|
88 |
-
}
|
89 |
-
.metform-open-content-inner {
|
90 |
-
position: relative;
|
91 |
-
top: 50px;
|
92 |
-
left: 50%;
|
93 |
-
transform: translateX(-50%);
|
94 |
-
z-index: 999;
|
95 |
-
width: 622px;
|
96 |
-
background-color: #fff;
|
97 |
-
box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.16);
|
98 |
-
padding: 50px 0 80px;
|
99 |
-
border-radius: 5px;
|
100 |
-
text-align: center;
|
101 |
-
}
|
102 |
-
.rtl .metform-open-content-inner {
|
103 |
-
direction: ltr;
|
104 |
-
left: auto;
|
105 |
-
right: 50%;
|
106 |
-
transform: translateX(50%);
|
107 |
-
}
|
108 |
-
#metform-open-content-editor .metform-close-editor-modals {
|
109 |
-
color: #FF433C;
|
110 |
-
border: 2px solid #FF433C;
|
111 |
-
width: 30px;
|
112 |
-
height: 30px;
|
113 |
-
line-height: 27px;
|
114 |
-
text-align: center;
|
115 |
-
border-radius: 100px;
|
116 |
-
font-size: 17px;
|
117 |
-
position: absolute;
|
118 |
-
top: -10px;
|
119 |
-
right: -10px;
|
120 |
-
background-color: #fff;
|
121 |
-
cursor: pointer;
|
122 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
123 |
-
}
|
124 |
-
.rtl #metform-open-content-editor .metform-close-editor-modals {
|
125 |
-
left: -10px;
|
126 |
-
right: auto;
|
127 |
-
}
|
128 |
-
.metform-editor-input{
|
129 |
-
height: 56px;
|
130 |
-
width: 100%;
|
131 |
-
display: block;
|
132 |
-
box-sizing: border-box;
|
133 |
-
background-color: #fff;
|
134 |
-
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
135 |
-
border-radius: 10px;
|
136 |
-
border: none;
|
137 |
-
padding: 0 25px;
|
138 |
-
color: #101010;
|
139 |
-
font-size: 14px;
|
140 |
-
line-height: 42px;
|
141 |
-
border: 1px solid #ccc;
|
142 |
-
}
|
143 |
-
.metform-open-content-editor-button {
|
144 |
-
position: fixed;
|
145 |
-
bottom: 15px;
|
146 |
-
left: 50%;
|
147 |
-
transform: translateX(-50%);
|
148 |
-
background-color: #4285F4;
|
149 |
-
border: none;
|
150 |
-
font-size: 16px;
|
151 |
-
line-height: 42px;
|
152 |
-
color: #fff;
|
153 |
-
border-radius: 5px;
|
154 |
-
padding: 4px 30px;
|
155 |
-
min-width: 170px;
|
156 |
-
box-sizing: border-box;
|
157 |
-
margin-top: 30px;
|
158 |
-
cursor: pointer;
|
159 |
-
}
|
160 |
-
.metform-open-content-editor-button > span {
|
161 |
-
margin-right: 12px;
|
162 |
-
}
|
163 |
-
.metform-editor-tab-content-item {
|
164 |
-
display: none;
|
165 |
-
}
|
166 |
-
.metform-editor-tab-content-item .metform-error {
|
167 |
-
color: red;
|
168 |
-
font-style: italic;
|
169 |
-
margin-top: 10px;
|
170 |
-
}
|
171 |
-
.metform-editor-tab-content-item.active {
|
172 |
-
display: block;
|
173 |
-
}
|
174 |
-
.metform-content {
|
175 |
-
overflow: scroll;
|
176 |
-
max-height: 70vh;
|
177 |
-
padding: 0 50px 30px;
|
178 |
-
border-bottom: 1px solid #f2f2f2;
|
179 |
-
}
|
180 |
-
.metform-content::-webkit-scrollbar {
|
181 |
-
display: none;
|
182 |
-
}
|
183 |
-
.metform-content-editor-tab {
|
184 |
-
display: flex;
|
185 |
-
justify-content: center;
|
186 |
-
flex-wrap: wrap;
|
187 |
-
margin-bottom: 20px;
|
188 |
-
}
|
189 |
-
.metform-content-editor-tab-item {
|
190 |
-
padding: 0 15px;
|
191 |
-
}
|
192 |
-
#metform-open-content-editor .metform-content-editor-radio {
|
193 |
-
-webkit-appearance: none;
|
194 |
-
appearance:none;
|
195 |
-
outline: none;
|
196 |
-
width: 20px;
|
197 |
-
height: 20px;
|
198 |
-
border: 2px solid #747474;
|
199 |
-
border-radius: 100px;
|
200 |
-
position: relative;
|
201 |
-
margin: 0;
|
202 |
-
margin-right: 8px;
|
203 |
-
cursor: pointer;
|
204 |
-
}
|
205 |
-
#metform-open-content-editor .metform-content-editor-radio:checked{
|
206 |
-
border-color: #4285F4;
|
207 |
-
}
|
208 |
-
#metform-open-content-editor .metform-content-editor-radio:checked:before {
|
209 |
-
content: '';
|
210 |
-
background-color: #4285F4;
|
211 |
-
width: 10px;
|
212 |
-
height: 10px;
|
213 |
-
display: inline-block;
|
214 |
-
position: absolute;
|
215 |
-
left: 50%;
|
216 |
-
border-radius: 100px;
|
217 |
-
top: 50%;
|
218 |
-
transform: translate(-50%, -50%);
|
219 |
-
}
|
220 |
-
.metform-content-editor-tab-item label {
|
221 |
-
display: flex;
|
222 |
-
text-align: left;
|
223 |
-
cursor: pointer;
|
224 |
-
}
|
225 |
-
.metform-content-editor-radio-data p{
|
226 |
-
color: #101010;
|
227 |
-
font-size: 16px;
|
228 |
-
line-height: 20px;
|
229 |
-
margin: 0;
|
230 |
-
}
|
231 |
-
.metform-content-editor-radio-data span{
|
232 |
-
color: #999999;
|
233 |
-
font-size: 12px;
|
234 |
-
line-height: 25px;
|
235 |
-
margin: 0;
|
236 |
-
}
|
237 |
-
.metform-template-input-con{
|
238 |
-
margin-bottom: 20px;
|
239 |
-
}
|
240 |
-
.metform-templates-list {
|
241 |
-
display: flex;
|
242 |
-
flex-wrap: wrap;
|
243 |
-
}
|
244 |
-
.metform-templates-list li{
|
245 |
-
margin: 5px;
|
246 |
-
flex: 0 0 31.4%;
|
247 |
-
box-sizing: border-box;
|
248 |
-
}
|
249 |
-
.metform-templates-list li input{
|
250 |
-
display: none;
|
251 |
-
cursor: pointer;
|
252 |
-
}
|
253 |
-
.metform-template-radio-data {
|
254 |
-
min-height: 101px;
|
255 |
-
border: 1px solid #ccc;
|
256 |
-
display: flex;
|
257 |
-
justify-content: center;
|
258 |
-
align-items: center;
|
259 |
-
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
|
260 |
-
cursor: pointer;
|
261 |
-
height: 100%;
|
262 |
-
position: relative;
|
263 |
-
flex-direction: column;
|
264 |
-
}
|
265 |
-
.metform-templates-list li input:checked + .metform-template-radio-data {
|
266 |
-
border: 1px solid #4285F4;
|
267 |
-
}
|
268 |
-
.metform-template-radio-data--pro_tag {
|
269 |
-
background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
|
270 |
-
color: #fff;
|
271 |
-
padding: 3px 5px;
|
272 |
-
display: inline-block;
|
273 |
-
position: absolute;
|
274 |
-
right: 2px;
|
275 |
-
top: 2px;
|
276 |
-
text-transform: uppercase;
|
277 |
-
font-size: 10px;
|
278 |
-
border-radius: 3px;
|
279 |
-
text-align: center;
|
280 |
-
}
|
281 |
-
.metform-template-radio-data--demo_link {
|
282 |
-
position: absolute;
|
283 |
-
left: 0;
|
284 |
-
top: 0;
|
285 |
-
background-color: #4285F4;
|
286 |
-
color: #fff;
|
287 |
-
font-size: 12px;
|
288 |
-
border-bottom-right-radius: 5px;
|
289 |
-
padding: 5px 8px;
|
290 |
-
opacity: 0;
|
291 |
-
visibility: hidden;
|
292 |
-
transition: all .4s;
|
293 |
-
}
|
294 |
-
.metform-template-radio-data--demo_link:hover{
|
295 |
-
color: #fff;
|
296 |
-
}
|
297 |
-
.metform-template-radio-data:hover .metform-template-radio-data--demo_link{
|
298 |
-
opacity: 1;
|
299 |
-
visibility: visible;
|
300 |
-
}
|
301 |
-
.metform-template-item--go_pro .metform-template-radio-data{
|
302 |
-
cursor: default;
|
303 |
-
}
|
304 |
-
.metform-template-footer-content {
|
305 |
-
align-self: normal;
|
306 |
-
padding: 10px;
|
307 |
-
min-height: 50px;
|
308 |
-
border-top: 1px solid rgba(204, 204, 204, .5);
|
309 |
-
justify-self: auto;
|
310 |
-
display: flex;
|
311 |
-
align-items: center;
|
312 |
-
}
|
313 |
-
.metform-template-footer-links a {
|
314 |
-
color: #4285F4;
|
315 |
-
font-size: 13px;
|
316 |
-
line-height: 15px;
|
317 |
-
}
|
318 |
-
.metform-template-footer-links--icon {
|
319 |
-
margin-right: 5px;
|
320 |
-
}
|
321 |
-
.metform-template-footer-title{
|
322 |
-
position: static;
|
323 |
-
opacity: 1;
|
324 |
-
visibility: visible;
|
325 |
-
transition: opacity 1s;
|
326 |
-
}
|
327 |
-
.metform-template-footer-title h2{
|
328 |
-
font-size: 13px;
|
329 |
-
text-align: left;
|
330 |
-
font-weight: 500;
|
331 |
-
color: #6d7882;
|
332 |
-
}
|
333 |
-
.metform-template-footer-links {
|
334 |
-
display: flex;
|
335 |
-
width: 100%;
|
336 |
-
justify-content: space-between;
|
337 |
-
opacity: 0;
|
338 |
-
visibility: hidden;
|
339 |
-
position: absolute;
|
340 |
-
transition: opacity .4s;;
|
341 |
-
}
|
342 |
-
.metform-template-radio-data:hover .metform-template-footer-links{
|
343 |
-
opacity: 1;
|
344 |
-
visibility: visible;
|
345 |
-
position: static;
|
346 |
-
}
|
347 |
-
.metform-template-radio-data:hover .metform-template-footer-title{
|
348 |
-
opacity: 0;
|
349 |
-
visibility: hidden;
|
350 |
-
position: absolute;
|
351 |
-
}
|
352 |
-
.metform-templates-list img {
|
353 |
-
max-width: 100%;
|
354 |
-
padding: 5px;
|
355 |
-
max-height: 180px;
|
356 |
-
}
|
357 |
-
.metform-form-edit-btn {
|
358 |
-
position: absolute;
|
359 |
-
left: 135px;
|
360 |
-
top: 0;
|
361 |
-
color: #4285F4;
|
362 |
-
font-size: 15px;
|
363 |
-
text-transform: uppercase;
|
364 |
-
padding: 18px 0;
|
365 |
-
}
|
366 |
-
.metform-form-update-close-btn {
|
367 |
-
position: absolute;
|
368 |
-
right: 10px;
|
369 |
-
top: 7px;
|
370 |
-
font-size: 14px;
|
371 |
-
text-transform: uppercase;
|
372 |
-
background-color: #39b54a;
|
373 |
-
color: #fff;
|
374 |
-
padding: 10px 25px;
|
375 |
-
border-radius: 100px;
|
376 |
-
z-index: 1;
|
377 |
-
cursor: pointer;
|
378 |
-
line-height: 15px;
|
379 |
-
padding-top: 10px;
|
380 |
-
transition: all .4s;
|
381 |
-
}
|
382 |
-
.metform-form-update-close-btn:hover {
|
383 |
-
background-color: #2d963c;
|
384 |
-
color: #fff;
|
385 |
-
}
|
386 |
-
.metform-form-edit-btn:hover{
|
387 |
-
color: #4285F4;
|
388 |
-
}
|
389 |
-
.rtl .metform-form-edit-btn {
|
390 |
-
left: 60px;
|
391 |
-
right: auto;
|
392 |
-
}
|
393 |
-
.metform-form-edit-btn i{
|
394 |
-
margin-right: 5px;
|
395 |
-
font-size: 18px;
|
396 |
-
margin-top: -4px;
|
397 |
-
}
|
398 |
-
.rtl .metform-form-edit-btn > i {
|
399 |
-
margin-left: 5px;
|
400 |
-
margin-right: 0;
|
401 |
-
}
|
402 |
-
.metform-open-content-editor-templates {
|
403 |
-
-webkit-appearance: none;
|
404 |
-
-moz-appearance: none;
|
405 |
-
background: transparent;
|
406 |
-
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
|
407 |
-
background-repeat: no-repeat;
|
408 |
-
background-position-x: 98%;
|
409 |
-
background-position-y: 50%;
|
410 |
-
}
|
411 |
-
#metform-open-content-editor .metform-picker-close{
|
412 |
-
display: none;
|
413 |
-
position: static;
|
414 |
-
border: none;
|
415 |
-
background-color: transparent;
|
416 |
-
box-shadow: none;
|
417 |
-
margin-left: 10px;
|
418 |
-
}
|
419 |
-
|
420 |
-
/* form edit button */
|
421 |
-
.mf-edit-form {
|
422 |
-
display: block;
|
423 |
-
background-color: #39b54a;
|
424 |
-
border: none;
|
425 |
-
color: #fff;
|
426 |
-
margin-top: 15px;
|
427 |
-
padding: 12px 20px;
|
428 |
-
font-weight: bold;
|
429 |
-
cursor: pointer;
|
430 |
-
font-size: 14px;
|
431 |
-
border-radius: 3px;
|
432 |
-
transition: all .4s;
|
433 |
-
}
|
434 |
-
.mf-edit-form:hover {
|
435 |
-
background-color: #da3419;
|
436 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/assets/img/edit_icon.svg
DELETED
@@ -1,39 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="0 0 200 216.59" enable-background="new 0 0 512 512" xml:space="preserve">
|
5 |
-
<g>
|
6 |
-
<g>
|
7 |
-
<path style="fill: #ffffff;" d="M72.76,176.77H4.71c-2.6,0-4.71-2.11-4.71-4.71V4.71C0,2.11,2.11,0,4.71,0h172.06c2.6,0,4.71,2.11,4.71,4.71V82.5
|
8 |
-
c0,2.6-2.11,4.71-4.71,4.71c-2.6,0-4.71-2.11-4.71-4.71V9.42H9.42v157.94h63.34c2.6,0,4.71,2.11,4.71,4.71
|
9 |
-
S75.36,176.77,72.76,176.77z"/>
|
10 |
-
</g>
|
11 |
-
<g>
|
12 |
-
<path style="fill: #ffffff;" d="M143.81,49.22H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
|
13 |
-
S146.41,49.22,143.81,49.22z"/>
|
14 |
-
</g>
|
15 |
-
<g>
|
16 |
-
<path style="fill: #ffffff;" d="M143.81,83.67H37.67c-2.6,0-4.71-2.11-4.71-4.71c0-2.6,2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
|
17 |
-
C148.52,81.56,146.41,83.67,143.81,83.67z"/>
|
18 |
-
</g>
|
19 |
-
<g>
|
20 |
-
<path style="fill: #ffffff;" d="M101.43,118.12H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h63.76c2.6,0,4.71,2.11,4.71,4.71
|
21 |
-
S104.04,118.12,101.43,118.12z"/>
|
22 |
-
</g>
|
23 |
-
<g>
|
24 |
-
<g>
|
25 |
-
<path style="fill: #ffffff;" d="M118.37,202.09l-24.55-24.55l66.95-66.95l24.55,24.55L118.37,202.09z M107.14,177.54l11.23,11.23l53.64-53.64
|
26 |
-
l-11.23-11.23L107.14,177.54z"/>
|
27 |
-
</g>
|
28 |
-
<g>
|
29 |
-
<path style="fill: #ffffff;" d="M182.42,138.04l-24.55-24.55l12.49-12.49c6.77-6.77,17.78-6.77,24.55,0c3.28,3.27,5.09,7.64,5.09,12.27
|
30 |
-
c0,4.64-1.81,9-5.09,12.28L182.42,138.04z M171.19,113.48l11.23,11.23l5.84-5.84c1.5-1.5,2.33-3.49,2.33-5.62
|
31 |
-
c0-2.12-0.82-4.12-2.33-5.61c-3.1-3.09-8.13-3.09-11.23,0L171.19,113.48z"/>
|
32 |
-
</g>
|
33 |
-
<g>
|
34 |
-
<path style="fill: #ffffff;" d="M79.55,209.64l7.59-25.42l13.34-13.34l24.55,24.55l-13.34,13.34l-25.42,7.59C82.15,217.58,78.32,213.75,79.55,209.64z
|
35 |
-
M95.48,189.19L90.7,205.2l16.01-4.78l4.99-4.99l-11.23-11.23L95.48,189.19z"/>
|
36 |
-
</g>
|
37 |
-
</g>
|
38 |
-
</g>
|
39 |
-
</svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/assets/js/form-picker-editor.js
DELETED
@@ -1,210 +0,0 @@
|
|
1 |
-
( function (jQuery, elementor, oElementor) {
|
2 |
-
"use strict";
|
3 |
-
if (typeof window.parent != 'undefined') {
|
4 |
-
// window.parent found
|
5 |
-
}else{
|
6 |
-
// window.parent missing
|
7 |
-
return;
|
8 |
-
}
|
9 |
-
|
10 |
-
let windowParent = window.parent;
|
11 |
-
var ElementsKit_WidgetArea = {
|
12 |
-
init: function () {
|
13 |
-
elementor.hooks.addAction('frontend/element_ready/metform.default', function (scope) {
|
14 |
-
/*
|
15 |
-
* Checks if in the editor, if not stop the rest from executing
|
16 |
-
*/
|
17 |
-
if ( !elementor.isEditMode() ) {
|
18 |
-
return;
|
19 |
-
}
|
20 |
-
|
21 |
-
var formTemplateSelectorOpenButton = scope.find('.formpicker_warper_edit');
|
22 |
-
|
23 |
-
formTemplateSelectorOpenButton.off('click.metform').on('click.metform', function(){
|
24 |
-
var formTemplateSelector = windowParent.jQuery('#metform-open-content-editor'),
|
25 |
-
key = formTemplateSelectorOpenButton.attr('data-metform-formpicker-key');
|
26 |
-
var nonce = jQuery(this).attr('data-nonce');
|
27 |
-
formTemplateSelector.find('.metform-error').remove();
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
var popupTab = formTemplateSelector.find('.metform-content-editor-radio');
|
32 |
-
popupTab.on('click', function(e){
|
33 |
-
var self = jQuery(this),
|
34 |
-
dataTarget = self.closest('li').data('target');
|
35 |
-
|
36 |
-
formTemplateSelector.find('#'+ dataTarget).fadeIn().siblings().hide();
|
37 |
-
});
|
38 |
-
|
39 |
-
|
40 |
-
jQuery.ajax({
|
41 |
-
url: jQuery(this).attr('resturl') + (key || 0),
|
42 |
-
type: 'get',
|
43 |
-
headers: {
|
44 |
-
'X-WP-Nonce': nonce
|
45 |
-
},
|
46 |
-
dataType: 'html',
|
47 |
-
success: function (output) {
|
48 |
-
if(output){
|
49 |
-
|
50 |
-
formTemplateSelector.find('.metform-content-editor-radio').first().trigger('click');
|
51 |
-
formTemplateSelector.find('.metform-open-content-editor-templates').html(output);
|
52 |
-
} else {
|
53 |
-
formTemplateSelector.find('.metform-content-editor-radio').last().trigger('click');
|
54 |
-
formTemplateSelector.find('.metform-open-content-editor-templates').parent().append("<p class='metform-error'>No forms were created yet!</p>")
|
55 |
-
}
|
56 |
-
|
57 |
-
}
|
58 |
-
});
|
59 |
-
|
60 |
-
formTemplateSelector.show();
|
61 |
-
});
|
62 |
-
|
63 |
-
windowParent.jQuery('#metform-open-content-editor').off('click.metform').on('click.metform', '.metform-open-content-editor-button', function() {
|
64 |
-
|
65 |
-
var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
|
66 |
-
iframe = iframeModal.find('#formpicker-control-iframe'),
|
67 |
-
iframeLoading = iframeModal.find('.dialog-lightbox-loading'),
|
68 |
-
modalContainer = iframeModal.find('.dialog-type-lightbox');
|
69 |
-
|
70 |
-
|
71 |
-
var conParent = jQuery(this).parents('.metform-open-content-inner'),
|
72 |
-
content_key = conParent.find('.metform-open-content-editor-templates').val(),
|
73 |
-
editorTabInput = conParent.find('.metform-content-editor-radio:checked').val(),
|
74 |
-
editorTamplateInput = conParent.find('.metform-template-radio:checked').val(),
|
75 |
-
editorTemplateName = conParent.find('.metform-template-input-con input').val();
|
76 |
-
var nonce = windowParent.jQuery('#metform-form-modalinput-settings').data('nonce');
|
77 |
-
|
78 |
-
if(editorTabInput == 'saved'){
|
79 |
-
windowParent.jQuery('body').attr('data-metform-template-key', content_key);
|
80 |
-
}else{
|
81 |
-
jQuery.ajax({
|
82 |
-
url: jQuery(this).attr('resturl') + 'builder_form_id/' + editorTamplateInput +'?title=' + editorTemplateName,
|
83 |
-
type: 'GET',
|
84 |
-
headers: {
|
85 |
-
'X-WP-Nonce': nonce
|
86 |
-
},
|
87 |
-
success: function (output) {
|
88 |
-
windowParent.jQuery('body').attr('data-metform-template-key', output);
|
89 |
-
conParent.find('.metform-template-input-con input').val('');
|
90 |
-
conParent.find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
|
91 |
-
content_key = output;
|
92 |
-
},
|
93 |
-
async: false
|
94 |
-
});
|
95 |
-
}
|
96 |
-
|
97 |
-
var url = jQuery(this).attr('resturl') + 'builder/' + content_key;
|
98 |
-
|
99 |
-
windowParent.jQuery('body').attr('data-metform-template-load', 'false');
|
100 |
-
|
101 |
-
modalContainer.show();
|
102 |
-
iframeModal.show();
|
103 |
-
iframeLoading.show();
|
104 |
-
iframe.contents().find('#elementor-loading').show();
|
105 |
-
iframe.css('z-index', '-1');
|
106 |
-
iframe.attr('src', url);
|
107 |
-
|
108 |
-
iframe.on('load', function() {
|
109 |
-
iframeLoading.hide();
|
110 |
-
iframe.show();
|
111 |
-
iframe.contents().find('#elementor-loading').hide();
|
112 |
-
iframe.css('z-index', '1');
|
113 |
-
});
|
114 |
-
});
|
115 |
-
|
116 |
-
windowParent.jQuery('#elementor-editor-wrapper').on('click', '#metform-inspactor-edit-button', function(){
|
117 |
-
console.log('dom found');
|
118 |
-
// trigger click.metform', '.metform-open-content-editor-button'
|
119 |
-
});
|
120 |
-
|
121 |
-
|
122 |
-
function metformClosingPopup(windowLoc){
|
123 |
-
windowLoc.jQuery('body').attr('data-metform-template-load', 'true');
|
124 |
-
windowLoc.jQuery('.metform-dynamic-content-modal').hide();
|
125 |
-
windowLoc.jQuery('#metform-open-content-editor').hide();
|
126 |
-
}
|
127 |
-
|
128 |
-
if(typeof windowParent.jQuery !== 'undefined'){
|
129 |
-
var iframeCloseButton = windowParent.jQuery('.metform-close-editor-modals');
|
130 |
-
iframeCloseButton.off('click.metform').on('click.metform', function() {
|
131 |
-
|
132 |
-
if(jQuery(this).hasClass('metform-editor-close')) {
|
133 |
-
|
134 |
-
var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
|
135 |
-
iframe = iframeModal.find('#formpicker-control-iframe'),
|
136 |
-
iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
|
137 |
-
saved = iframeWindow.jQuery('#elementor-panel-saver-button-publish').hasClass('elementor-disabled');
|
138 |
-
|
139 |
-
if(!saved){
|
140 |
-
|
141 |
-
if(confirm("Leaving? Changes you made may not be saved.")) {
|
142 |
-
|
143 |
-
iframeWindow.jQuery(iframeWindow).off('beforeunload');
|
144 |
-
|
145 |
-
metformClosingPopup(windowParent);
|
146 |
-
} else {
|
147 |
-
iframeWindow.jQuery(iframeWindow).off('beforeunload');
|
148 |
-
}
|
149 |
-
|
150 |
-
} else {
|
151 |
-
metformClosingPopup(windowParent);
|
152 |
-
}
|
153 |
-
} else if(jQuery(this).hasClass('metform-picker-close')){
|
154 |
-
|
155 |
-
metformClosingPopup(windowParent);
|
156 |
-
|
157 |
-
var pickerContainer = windowParent.jQuery('#metform-open-content-editor'),
|
158 |
-
tabValue = pickerContainer.find('.metform-content-editor-radio:checked').val(),
|
159 |
-
templateValue = pickerContainer.find('.metform-open-content-editor-templates').val();
|
160 |
-
|
161 |
-
|
162 |
-
if(tabValue == 'saved'){
|
163 |
-
windowParent.jQuery('body').attr('data-metform-template-key', templateValue);
|
164 |
-
}
|
165 |
-
metformClosingPopup(windowParent);
|
166 |
-
}
|
167 |
-
else {
|
168 |
-
metformClosingPopup(windowParent);
|
169 |
-
}
|
170 |
-
|
171 |
-
windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').hide();
|
172 |
-
windowParent.jQuery('#metform-open-content-editor').find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
|
173 |
-
|
174 |
-
});
|
175 |
-
}
|
176 |
-
|
177 |
-
windowParent.jQuery('#metform-open-content-editor').find('.metform-open-content-editor-templates').on('change', function(){
|
178 |
-
windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').fadeIn();
|
179 |
-
});
|
180 |
-
|
181 |
-
// update and close
|
182 |
-
var updateClose = windowParent.jQuery('.metform-form-update-close-btn');
|
183 |
-
updateClose.off('click.metform').on('click.metform', function(){
|
184 |
-
var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
|
185 |
-
iframe = iframeModal.find('#formpicker-control-iframe'),
|
186 |
-
iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
|
187 |
-
needSaving = iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled');
|
188 |
-
|
189 |
-
if(!needSaving){
|
190 |
-
iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').trigger('click');
|
191 |
-
var checkExist = setInterval(function() {
|
192 |
-
if(iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled')) {
|
193 |
-
windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
|
194 |
-
clearInterval(checkExist);
|
195 |
-
}
|
196 |
-
}, 100); // check every 100ms
|
197 |
-
} else {
|
198 |
-
windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
|
199 |
-
}
|
200 |
-
|
201 |
-
});
|
202 |
-
// end update and close
|
203 |
-
|
204 |
-
});
|
205 |
-
},
|
206 |
-
};
|
207 |
-
|
208 |
-
jQuery(window).on('elementor/frontend/init', ElementsKit_WidgetArea.init);
|
209 |
-
|
210 |
-
}(jQuery, window.elementorFrontend) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/assets/js/form-picker-inspactor.js
DELETED
@@ -1,70 +0,0 @@
|
|
1 |
-
jQuery(window).on('elementor:init', function () {
|
2 |
-
"use strict";
|
3 |
-
|
4 |
-
var ControlBaseDataView = elementor.modules.controls.BaseData;
|
5 |
-
var ControlFormPickerItemView = ControlBaseDataView.extend({
|
6 |
-
interval : null,
|
7 |
-
|
8 |
-
ui: function ui() {
|
9 |
-
var ui = ControlBaseDataView.prototype.ui.apply(this, arguments);
|
10 |
-
ui.inputs = 'textarea';
|
11 |
-
return ui;
|
12 |
-
},
|
13 |
-
|
14 |
-
events: function events() {
|
15 |
-
return _.extend(ControlBaseDataView.prototype.events.apply(this, arguments), {
|
16 |
-
'change @ui.inputs': 'onBaseInputChange'
|
17 |
-
});
|
18 |
-
},
|
19 |
-
|
20 |
-
onBaseInputChange: function onBaseInputChange(event) {
|
21 |
-
clearTimeout(this.correctionTimeout);
|
22 |
-
|
23 |
-
var input = event.currentTarget,
|
24 |
-
value = this.getInputValue(input);
|
25 |
-
|
26 |
-
//console.log(event.currentTarget);
|
27 |
-
//console.log(value);
|
28 |
-
|
29 |
-
this.updateElementModel(value, input);
|
30 |
-
|
31 |
-
//this.triggerMethod('input:change', event);
|
32 |
-
},
|
33 |
-
|
34 |
-
onDestroy: function onRender() {
|
35 |
-
// console.log('boo');
|
36 |
-
clearInterval(window.metFormPickerInterval2555);
|
37 |
-
},
|
38 |
-
|
39 |
-
onRender: function onRender() {
|
40 |
-
ControlBaseDataView.prototype.onRender.apply(this, arguments);
|
41 |
-
var self = this;
|
42 |
-
|
43 |
-
jQuery(document).on('click', '.mf-edit-form', function(){
|
44 |
-
let IframeDoc = jQuery('#elementor-preview-iframe')[0].contentDocument;
|
45 |
-
jQuery(IframeDoc).find('.elementor-element-editable .formpicker_warper_edit').trigger('click')
|
46 |
-
});
|
47 |
-
|
48 |
-
window.metFormPickerInterval2555 = setInterval(function(){
|
49 |
-
|
50 |
-
var formpicker_load = jQuery('body').attr('data-metform-template-load'),
|
51 |
-
formpicker_key = jQuery('body').attr('data-metform-template-key');
|
52 |
-
|
53 |
-
if(formpicker_load == 'true' && self.isRendered == true && formpicker_key !== undefined){
|
54 |
-
var time = new Date().getTime(),
|
55 |
-
new_val,
|
56 |
-
formpicker_key_spilt = formpicker_key.split('***');
|
57 |
-
|
58 |
-
formpicker_key_spilt = formpicker_key_spilt[0];
|
59 |
-
new_val = formpicker_key_spilt + '***' + time;
|
60 |
-
|
61 |
-
jQuery('body').attr('data-metform-template-load', 'false');
|
62 |
-
self.setValue(new_val);
|
63 |
-
}
|
64 |
-
}, 200);
|
65 |
-
}
|
66 |
-
},{
|
67 |
-
|
68 |
-
});
|
69 |
-
elementor.addControlView('formpicker', ControlFormPickerItemView);
|
70 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/base.php
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Controls;
|
3 |
-
|
4 |
-
defined( 'ABSPATH' ) || exit;
|
5 |
-
|
6 |
-
class Base{
|
7 |
-
|
8 |
-
use \MetForm\Traits\Singleton;
|
9 |
-
|
10 |
-
// instance of all control's base class
|
11 |
-
// ##readhere
|
12 |
-
public static function get_url(){
|
13 |
-
return \MetForm\Plugin::instance()->plugin_url() . 'controls/';
|
14 |
-
}
|
15 |
-
public static function get_dir(){
|
16 |
-
return \MetForm\Plugin::instance()->plugin_dir() . 'controls/';
|
17 |
-
}
|
18 |
-
|
19 |
-
public function init() {
|
20 |
-
|
21 |
-
// Includes necessary files
|
22 |
-
$this->include_files();
|
23 |
-
|
24 |
-
// Initilizating control hooks
|
25 |
-
add_action('elementor/controls/controls_registered', array( $this, 'formpicker' ), 11 );
|
26 |
-
|
27 |
-
// Initilizating control scripts
|
28 |
-
add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'formpicker_enqueue_styles_editor' ) );
|
29 |
-
add_action( 'elementor/frontend/after_enqueue_scripts', array( $this, 'formpicker_enqueue_scripts_editor' ) );
|
30 |
-
|
31 |
-
// Initilizating control classes
|
32 |
-
$formpicker_utils = new Form_Picker_Utils();
|
33 |
-
$formpicker_utils->init();
|
34 |
-
}
|
35 |
-
|
36 |
-
private function include_files(){
|
37 |
-
// Controls_Manager
|
38 |
-
include_once self::get_dir() . 'control-manager.php';
|
39 |
-
|
40 |
-
// formpicker
|
41 |
-
include_once self::get_dir() . 'form-picker-utils.php';
|
42 |
-
include_once self::get_dir() . 'form-picker.php';
|
43 |
-
}
|
44 |
-
|
45 |
-
public function formpicker( $controls_manager ) {
|
46 |
-
$controls_manager->register_control( 'formpicker', new \MetForm\Controls\Form_Picker());
|
47 |
-
}
|
48 |
-
|
49 |
-
public function formpicker_enqueue_scripts_editor() {
|
50 |
-
wp_enqueue_script( 'metform-js-formpicker-control-editor', self::get_url() . 'assets/js/form-picker-editor.js', [], \MetForm\Plugin::instance()->version() );
|
51 |
-
}
|
52 |
-
|
53 |
-
public function formpicker_enqueue_styles_editor() {
|
54 |
-
wp_enqueue_style( 'metform-css-formpicker-control-editor', self::get_url() . 'assets/css/form-picker-editor.css', [], '1.0.0' );
|
55 |
-
}
|
56 |
-
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/control-manager.php
DELETED
@@ -1,17 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Controls;
|
3 |
-
|
4 |
-
defined( 'ABSPATH' ) || exit;
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Elementor controls manager.
|
8 |
-
*
|
9 |
-
* Elementor controls manager handler class is responsible for registering and
|
10 |
-
* initializing all the supported controls, both regular controls and the group
|
11 |
-
* controls.
|
12 |
-
*
|
13 |
-
* @since 1.0.0
|
14 |
-
*/
|
15 |
-
abstract class Controls_Manager extends \Elementor\Controls_Manager{
|
16 |
-
const FORMPICKER = 'formpicker';
|
17 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/form-editor-modal.php
DELETED
@@ -1,53 +0,0 @@
|
|
1 |
-
<?php defined( 'ABSPATH' ) || exit; ?>
|
2 |
-
|
3 |
-
<div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
|
4 |
-
<div class="dialog-widget-content dialog-lightbox-widget-content">
|
5 |
-
<div class="dialog-header dialog-lightbox-header">
|
6 |
-
<div class="elementor-templates-modal__header">
|
7 |
-
<div class="elementor-templates-modal__header__logo-area">
|
8 |
-
<div class="elementor-templates-modal__header__logo">
|
9 |
-
<span class="elementor-templates-modal__header__logo__icon-wrapper">
|
10 |
-
<i class="eicon-elementor"></i>
|
11 |
-
</span>
|
12 |
-
<span class="elementor-templates-modal__header__logo__title"><?php esc_html_e('MetForm', 'metform'); ?></span>
|
13 |
-
</div>
|
14 |
-
<a class="metform-form-edit-btn" href="#"><i class="eicon-cog"></i><?php esc_html_e('Form settings', 'metform') ?></a>
|
15 |
-
<a class="metform-form-update-close-btn" href="#"><?php esc_html_e('Update & Close', 'metform') ?></a>
|
16 |
-
</div>
|
17 |
-
|
18 |
-
<div class="elementor-templates-modal__header__items-area">
|
19 |
-
<div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item">
|
20 |
-
<i class="eicon-close metform-close-editor-modals metform-editor-close" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
|
21 |
-
<span class="elementor-screen-only"><?php esc_html_e('Close', 'metform'); ?></span>
|
22 |
-
</div>
|
23 |
-
</div>
|
24 |
-
</div>
|
25 |
-
</div>
|
26 |
-
<div class="dialog-message dialog-lightbox-message">
|
27 |
-
<div class="dialog-content dialog-lightbox-content" style="display: block;">
|
28 |
-
<div id="elementor-template-library-templates" data-template-source="remote">
|
29 |
-
|
30 |
-
<div id="elementor-template-library-templates-container">
|
31 |
-
<iframe id="formpicker-control-iframe"></iframe>
|
32 |
-
</div>
|
33 |
-
</div>
|
34 |
-
</div>
|
35 |
-
<div class="dialog-loading dialog-lightbox-loading" style="display: block;">
|
36 |
-
<div id="elementor-template-library-loading">
|
37 |
-
<div class="elementor-loader-wrapper">
|
38 |
-
<div class="elementor-loader">
|
39 |
-
<div class="elementor-loader-boxes">
|
40 |
-
<div class="elementor-loader-box"></div>
|
41 |
-
<div class="elementor-loader-box"></div>
|
42 |
-
<div class="elementor-loader-box"></div>
|
43 |
-
<div class="elementor-loader-box"></div>
|
44 |
-
</div>
|
45 |
-
</div>
|
46 |
-
<div class="elementor-loading-title"><?php esc_html_e('Loading', 'metform'); ?></div>
|
47 |
-
</div>
|
48 |
-
</div>
|
49 |
-
</div>
|
50 |
-
</div>
|
51 |
-
<div class="dialog-buttons-wrapper dialog-lightbox-buttons-wrapper"></div>
|
52 |
-
</div>
|
53 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/form-picker-modal.php
DELETED
@@ -1,96 +0,0 @@
|
|
1 |
-
<?php defined('ABSPATH') || exit; ?>
|
2 |
-
|
3 |
-
<div id="metform-open-content-editor" style="display:none;">
|
4 |
-
<div class="metform-open-content-inner">
|
5 |
-
<div class="metform-content">
|
6 |
-
<ul class="metform-content-editor-tab">
|
7 |
-
<li class="metform-content-editor-tab-item active" data-target="metform-select-form-content">
|
8 |
-
<label>
|
9 |
-
<input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" checked value="saved">
|
10 |
-
|
11 |
-
<div class="metform-content-editor-radio-data">
|
12 |
-
<p><?php esc_html_e('Select Form', 'metform') ?></p>
|
13 |
-
<span><?php esc_html_e('Select saved form', 'metform') ?></span>
|
14 |
-
</div>
|
15 |
-
</label>
|
16 |
-
</li>
|
17 |
-
|
18 |
-
<li class="metform-content-editor-tab-item" data-target="metform-templates-content">
|
19 |
-
<label>
|
20 |
-
<input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" value="template">
|
21 |
-
|
22 |
-
<div class="metform-content-editor-radio-data">
|
23 |
-
<p><?php esc_html_e('New', 'metform') ?></p>
|
24 |
-
<span><?php esc_html_e('Create new form', 'metform') ?></span>
|
25 |
-
</div>
|
26 |
-
</label>
|
27 |
-
</li>
|
28 |
-
</ul>
|
29 |
-
|
30 |
-
<div class="metform-editor-tab-content">
|
31 |
-
<div class="metform-editor-tab-content-item active" id="metform-select-form-content">
|
32 |
-
<select name="metform-saved-form" class="metform-open-content-editor-templates metform-editor-input"></select>
|
33 |
-
</div>
|
34 |
-
<div class="metform-editor-tab-content-item" id="metform-templates-content">
|
35 |
-
|
36 |
-
<div class="metform-template-input-con">
|
37 |
-
<input type="text" class="metform-editor-input" placeholder="<?php esc_html_e('Enter a form name', 'metform'); ?>">
|
38 |
-
</div>
|
39 |
-
|
40 |
-
<ul class="metform-templates-list">
|
41 |
-
<li>
|
42 |
-
<label>
|
43 |
-
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="0" checked>
|
44 |
-
<div class="metform-template-radio-data"> </div>
|
45 |
-
</label>
|
46 |
-
</li>
|
47 |
-
|
48 |
-
<?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
|
49 |
-
<li class="metform-template-item<?php echo isset($template['package']) ? ' metform-template-item--' . esc_attr($template['package']) : ''; ?> <?php echo (isset($template['package']) && $template['file'] === '') ? ' metform-template-item--go_pro' : ''; ?>">
|
50 |
-
<label>
|
51 |
-
<input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo ($template['file'] != '') ? esc_attr($template['id']) : ''; ?>" <?php echo $template['file'] === '' ? 'disabled=disabled' : '' ?>>
|
52 |
-
<div class="metform-template-radio-data">
|
53 |
-
<img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
|
54 |
-
|
55 |
-
<?php if(isset($template['package']) && $template['package'] === 'pro') : ?>
|
56 |
-
<div class="metform-template-radio-data--tag">
|
57 |
-
<span class="metform-template-radio-data--pro_tag"><?php echo esc_html(ucfirst($template['package'])); ?></span>
|
58 |
-
</div>
|
59 |
-
<?php endif; ?>
|
60 |
-
|
61 |
-
<div class="metform-template-footer-content">
|
62 |
-
<?php if(isset($template['title']) && $template['title'] != '') : ?>
|
63 |
-
<div class="metform-template-footer-title">
|
64 |
-
<h2><?php echo esc_html($template['title']); ?></h2>
|
65 |
-
</div>
|
66 |
-
<?php endif; ?>
|
67 |
-
|
68 |
-
<div class="metform-template-footer-links">
|
69 |
-
<?php if(isset($template['package']) && $template['package'] === 'pro' && isset($template['file']) && $template['file'] == '') : ?>
|
70 |
-
<a target="_blank" href="https://products.wpmet.com/metform/pricing/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro" class="metform-template-footer-links--pro_tag"><i class="metform-template-footer-links--icon fas fa-external-link-square-alt"></i><?php echo esc_html__('Buy Pro'); ?></a>
|
71 |
-
<?php endif; ?>
|
72 |
-
|
73 |
-
<?php if(isset($template['demo-url']) && $template['demo-url'] != '') : ?>
|
74 |
-
<a target="_blank" class="metform-template-footer-links--demo_link" href="<?php echo esc_attr(ucfirst($template['demo-url'])); ?>"><i class="metform-template-footer-links--icon far fa-eye"></i><?php echo esc_html__('Demo', 'metform'); ?></a>
|
75 |
-
<?php endif; ?>
|
76 |
-
</div>
|
77 |
-
|
78 |
-
</div>
|
79 |
-
</div>
|
80 |
-
</label>
|
81 |
-
</li>
|
82 |
-
<?php endforeach; ?>
|
83 |
-
|
84 |
-
</ul>
|
85 |
-
|
86 |
-
</div>
|
87 |
-
</div>
|
88 |
-
|
89 |
-
<button resturl="<?php echo get_rest_url() ?>metform/v1/forms/" class="metform-open-content-editor-button"><span class="eicon-elementor"></span><?php esc_html_e('Edit form', 'metform') ?></button>
|
90 |
-
|
91 |
-
<span class="metform-close-editor-modals metform-picker-close"><?php esc_html_e('Save & close', 'metform'); ?></span>
|
92 |
-
|
93 |
-
<i class="eicon-close metform-close-editor-modals" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
|
94 |
-
</div>
|
95 |
-
</div>
|
96 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/form-picker-utils.php
DELETED
@@ -1,53 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Controls;
|
3 |
-
|
4 |
-
defined( 'ABSPATH' ) || exit;
|
5 |
-
|
6 |
-
class Form_Picker_Utils{
|
7 |
-
|
8 |
-
function init(){
|
9 |
-
add_action('elementor/editor/after_enqueue_styles', array( $this, 'modal_content' ) );
|
10 |
-
}
|
11 |
-
|
12 |
-
public function modal_content() {
|
13 |
-
?>
|
14 |
-
<div class="metform_open_content_editor_modal">
|
15 |
-
<?php include 'form-picker-modal.php'; ?>
|
16 |
-
<?php include \MetForm\Plugin::instance()->core_dir() . 'forms/views/modal-editor.php'; ?>
|
17 |
-
</div>
|
18 |
-
<div class="formpicker_iframe_modal">
|
19 |
-
<?php include 'form-editor-modal.php'; ?>
|
20 |
-
</div>
|
21 |
-
<?php
|
22 |
-
}
|
23 |
-
|
24 |
-
public static function parse($key, $widget_key){
|
25 |
-
$extract_key = explode('***', $key);
|
26 |
-
$extract_key = $extract_key[0];
|
27 |
-
ob_start(); ?>
|
28 |
-
|
29 |
-
<div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
|
30 |
-
<?php if(\Elementor\Plugin::$instance->editor->is_edit_mode() == true) : ?>
|
31 |
-
<div class="formpicker_warper_edit" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest');?>" resturl="<?php echo get_rest_url() ?>metform/v1/forms/templates/" >
|
32 |
-
<i class="metform-builder-edit" aria-hidden="true"></i>
|
33 |
-
<a href="#" class="elementor-screen-only" title="<?php esc_html_e('Edit Form Content', 'metform'); ?>"><?php esc_html_e('Edit', 'metform'); ?></a>
|
34 |
-
</div>
|
35 |
-
<?php endif; ?>
|
36 |
-
|
37 |
-
<div class="elementor-widget-container">
|
38 |
-
<?php
|
39 |
-
if($extract_key == ''){
|
40 |
-
echo esc_html__('No content is added yet.', 'metform');
|
41 |
-
}else{
|
42 |
-
echo \MetForm\Utils\Util::render_form_content($extract_key, $widget_key);
|
43 |
-
}
|
44 |
-
?>
|
45 |
-
</div>
|
46 |
-
</div>
|
47 |
-
<?php
|
48 |
-
$output = ob_get_contents();
|
49 |
-
ob_end_clean();
|
50 |
-
|
51 |
-
return $output;
|
52 |
-
}
|
53 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/controls/form-picker.php
DELETED
@@ -1,80 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Controls;
|
3 |
-
|
4 |
-
defined( 'ABSPATH' ) || exit;
|
5 |
-
|
6 |
-
class Form_Picker extends \Elementor\Base_Data_Control {
|
7 |
-
/**
|
8 |
-
* Get choose control type.
|
9 |
-
*
|
10 |
-
* Retrieve the control type, in this case `choose`.
|
11 |
-
*
|
12 |
-
* @since 1.0.0
|
13 |
-
* @access public
|
14 |
-
*
|
15 |
-
* @return string Control type.
|
16 |
-
*/
|
17 |
-
public function get_type() {
|
18 |
-
return 'formpicker';
|
19 |
-
}
|
20 |
-
|
21 |
-
/**
|
22 |
-
* Enqueue ontrol scripts and styles.
|
23 |
-
*
|
24 |
-
* @since 1.0.0
|
25 |
-
* @access public
|
26 |
-
*/
|
27 |
-
public function enqueue() {
|
28 |
-
// styles
|
29 |
-
wp_register_style( 'metform-css-formpicker-control-inspactor', Base::get_url() . 'assets/css/form-picker-inspactor.css', [], '1.0.0' );
|
30 |
-
wp_enqueue_style( 'metform-css-formpicker-control-inspactor' );
|
31 |
-
|
32 |
-
// script
|
33 |
-
wp_register_script( 'metform-js-formpicker-control-inspactor', Base::get_url() . 'assets/js/form-picker-inspactor.js' );
|
34 |
-
wp_enqueue_script( 'metform-js-formpicker-control-inspactor' );
|
35 |
-
}
|
36 |
-
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Render choose control output in the editor.
|
40 |
-
*
|
41 |
-
* Used to generate the control HTML in the editor using Underscore JS
|
42 |
-
* template. The variables for the class are available using `data` JS
|
43 |
-
* object.
|
44 |
-
*
|
45 |
-
* @since 1.0.0
|
46 |
-
* @access public
|
47 |
-
*/
|
48 |
-
public function content_template() {
|
49 |
-
$control_uid = $this->get_control_uid();
|
50 |
-
?>
|
51 |
-
<div style="display:none" class="elementor-control-field">
|
52 |
-
<label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">{{{ data.label }}}</label>
|
53 |
-
<div class="elementor-control-input-wrapper">
|
54 |
-
<textarea id="<?php echo $control_uid; ?>" data-setting="{{ data.name }}"></textarea>
|
55 |
-
</div>
|
56 |
-
</div>
|
57 |
-
<!-- <button id="metform-inspactor-edit-button">Edit Form Content</button> -->
|
58 |
-
<# if ( data.description ) { #>
|
59 |
-
<div class="elementor-control-field-description">{{{ data.description }}}</div>
|
60 |
-
<# } #>
|
61 |
-
<?php
|
62 |
-
}
|
63 |
-
|
64 |
-
/**
|
65 |
-
* Get choose control default settings.
|
66 |
-
*
|
67 |
-
* Retrieve the default settings of the choose control. Used to return the
|
68 |
-
* default settings while initializing the choose control.
|
69 |
-
*
|
70 |
-
* @since 1.0.0
|
71 |
-
* @access protected
|
72 |
-
*
|
73 |
-
* @return array Control default settings.
|
74 |
-
*/
|
75 |
-
protected function get_default_settings() {
|
76 |
-
return [
|
77 |
-
'label_block' => true,
|
78 |
-
];
|
79 |
-
}
|
80 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/admin/base.php
DELETED
@@ -1,96 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Admin;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
/**
|
6 |
-
* Metform settings related all functionalities.
|
7 |
-
*
|
8 |
-
* @version 1.1.8
|
9 |
-
*/
|
10 |
-
class Base {
|
11 |
-
use \MetForm\Traits\Singleton;
|
12 |
-
private $key_settings_option;
|
13 |
-
|
14 |
-
public function __construct(){
|
15 |
-
$this->key_settings_option = 'metform_option__settings';
|
16 |
-
}
|
17 |
-
|
18 |
-
public static function parent_slug(){
|
19 |
-
return 'metform-menu';
|
20 |
-
}
|
21 |
-
|
22 |
-
public function init(){
|
23 |
-
add_action('admin_menu', [$this, 'register_settings'], 999);
|
24 |
-
add_action('admin_init', [$this, 'register_actions'], 999);
|
25 |
-
}
|
26 |
-
|
27 |
-
public function register_settings(){
|
28 |
-
add_submenu_page( self::parent_slug(), esc_html__( 'Settings', 'metform' ), esc_html__( 'Settings', 'metform' ), 'manage_options', self::parent_slug().'-settings', [$this, 'register_settings_contents__settings'], 11);
|
29 |
-
}
|
30 |
-
|
31 |
-
public function register_settings_contents__settings(){
|
32 |
-
|
33 |
-
$code = '';
|
34 |
-
$disabledAttr = '';
|
35 |
-
$selectTheTab= false;
|
36 |
-
|
37 |
-
if(did_action('xpd_metform_pro/plugin_loaded')) {
|
38 |
-
#must be pro loaded....
|
39 |
-
|
40 |
-
if(!empty($_REQUEST['code'])) {
|
41 |
-
|
42 |
-
$code = $_REQUEST['code'];
|
43 |
-
$nonce = $_REQUEST['state'];
|
44 |
-
$option = get_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY);
|
45 |
-
|
46 |
-
if($option == $nonce) {
|
47 |
-
update_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY, '');
|
48 |
-
update_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY, $code);
|
49 |
-
}
|
50 |
-
|
51 |
-
$disabledAttr = 'disabled';
|
52 |
-
$selectTheTab = true;
|
53 |
-
|
54 |
-
} else {
|
55 |
-
|
56 |
-
$code = get_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY);
|
57 |
-
|
58 |
-
$disabledAttr = empty($code)? '': 'disabled';
|
59 |
-
}
|
60 |
-
}
|
61 |
-
#let check if this is returned from aweber..
|
62 |
-
#give state check
|
63 |
-
|
64 |
-
include('views/settings.php');
|
65 |
-
}
|
66 |
-
|
67 |
-
public function get_settings_option($key = null , $default = null){
|
68 |
-
if($key != null){
|
69 |
-
$this->key_settings_option = $key;
|
70 |
-
}
|
71 |
-
return get_option($this->key_settings_option);
|
72 |
-
}
|
73 |
-
|
74 |
-
public function set_option($key, $default = null){
|
75 |
-
|
76 |
-
}
|
77 |
-
|
78 |
-
public function register_actions(){
|
79 |
-
|
80 |
-
if(isset( $_POST['mf_settings_page_action'])) {
|
81 |
-
// run a quick security check
|
82 |
-
//$key = !isset($_POST['metform-settings-page-key']) ? '' : sanitize_text_field($_POST['metform-settings-page-key']);
|
83 |
-
$request = $_POST;
|
84 |
-
|
85 |
-
if( !check_admin_referer('metform-settings-page', 'metform-settings-page')){
|
86 |
-
return;
|
87 |
-
}
|
88 |
-
|
89 |
-
$status = \MetForm\Core\Forms\Action::instance()->store( -1, $request);
|
90 |
-
|
91 |
-
return $status;
|
92 |
-
|
93 |
-
}
|
94 |
-
}
|
95 |
-
|
96 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/admin/images/banner.png
DELETED
Binary file
|
trunk/core/admin/images/feature-preview.png
DELETED
Binary file
|
trunk/core/admin/images/metform_logo.png
DELETED
Binary file
|
trunk/core/admin/images/rate-now-thumb.png
DELETED
Binary file
|
trunk/core/admin/views/settings.php
DELETED
@@ -1,903 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
defined('ABSPATH') || exit;
|
3 |
-
|
4 |
-
$settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
5 |
-
|
6 |
-
?>
|
7 |
-
<div class="wrap mf-settings-dashboard">
|
8 |
-
<div class="attr-row">
|
9 |
-
<div class="attr-col-lg-3 attr-col-sm-4 mf-setting-sidebar-column">
|
10 |
-
<div class="mf-setting-sidebar">
|
11 |
-
<div class="mf_setting_logo">
|
12 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/metform_logo.png'; ?>">
|
13 |
-
</div>
|
14 |
-
<div class="mf-settings-tab">
|
15 |
-
<ul class="nav-tab-wrapper">
|
16 |
-
<li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
|
17 |
-
|
18 |
-
<li>
|
19 |
-
<a href="#mf-dashboard_options" class="mf-setting-nav-link">
|
20 |
-
<div class="mf-setting-tab-content">
|
21 |
-
<span class="mf-setting-title"><?php echo esc_html__('Dashboard', 'metform'); ?></span>
|
22 |
-
<span class="mf-setting-subtitle"><?php echo esc_html__('All dashboard info here', 'metform'); ?></span>
|
23 |
-
</div>
|
24 |
-
</a>
|
25 |
-
</li>
|
26 |
-
|
27 |
-
<li>
|
28 |
-
<a href="#mf-general_options" class="mf-setting-nav-link">
|
29 |
-
<div class="mf-setting-tab-content">
|
30 |
-
<span class="mf-setting-title"><?php echo esc_html__('General', 'metform'); ?></span>
|
31 |
-
<span class="mf-setting-subtitle"><?php echo esc_html__('All General info here', 'metform'); ?></span>
|
32 |
-
</div>
|
33 |
-
</a>
|
34 |
-
</li>
|
35 |
-
|
36 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal') || class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
|
37 |
-
<li>
|
38 |
-
<a href="#mf-payment_options" class="mf-setting-nav-link">
|
39 |
-
<div class="mf-setting-tab-content">
|
40 |
-
<span class="mf-setting-title"><?php echo esc_html__('Payment', 'metform'); ?></span>
|
41 |
-
<span class="mf-setting-subtitle"><?php echo esc_html__('All payment info here', 'metform'); ?></span>
|
42 |
-
</div>
|
43 |
-
</a>
|
44 |
-
</li>
|
45 |
-
<?php endif; ?>
|
46 |
-
<li>
|
47 |
-
<a href="#mf-newsletter_integration" class="mf-setting-nav-link">
|
48 |
-
<div class="mf-setting-tab-content">
|
49 |
-
<span class="mf-setting-title"><?php echo esc_html__('Newsletter Integration', 'metform'); ?></span>
|
50 |
-
<span class="mf-setting-subtitle"><?php echo esc_html__('All newsletter integration info here', 'metform'); ?></span>
|
51 |
-
</div>
|
52 |
-
</a>
|
53 |
-
</li>
|
54 |
-
|
55 |
-
<?php echo do_action('metform_settings_tab'); ?>
|
56 |
-
|
57 |
-
<li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
|
58 |
-
</ul>
|
59 |
-
</div>
|
60 |
-
</div>
|
61 |
-
</div>
|
62 |
-
|
63 |
-
<div class="attr-col-lg-9 attr-col-sm-8 mf-setting-main-content-column">
|
64 |
-
<div class="metform-admin-container stuffbox">
|
65 |
-
<div class="attr-card-body metform-admin-container--body">
|
66 |
-
<form action="" method="post" class="form-group mf-admin-input-text mf-admin-input-text--metform-license-key">
|
67 |
-
|
68 |
-
<!-- Dashboard Tab -->
|
69 |
-
<div class="mf-settings-section" id="mf-dashboard_options">
|
70 |
-
<div class="mf-settings-single-section">
|
71 |
-
<div class="mf-setting-header">
|
72 |
-
<h3 class="mf-settings-single-section--title"><span class="mf mf-home"></span><?php esc_html_e('Dashboard', 'metform'); ?></h3>
|
73 |
-
<button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
|
74 |
-
</div>
|
75 |
-
|
76 |
-
<div class="mf-setting-dashboard-banner">
|
77 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/banner.png'; ?>" class="mf-admin-dashboard-banner">
|
78 |
-
</div>
|
79 |
-
|
80 |
-
<div class="mf-set-dash-section">
|
81 |
-
<div class="mf-setting-dash-section-heading">
|
82 |
-
<h2 class="mf-setting-dash-section-heading--title">
|
83 |
-
<?php esc_html_e('Top Notch', 'metform'); ?>
|
84 |
-
<strong><?php esc_html_e('Features', 'metform'); ?></strong></h2>
|
85 |
-
<span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
|
86 |
-
<div class="mf-setting-dash-section-heading--content">
|
87 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
|
88 |
-
</p>
|
89 |
-
</div>
|
90 |
-
</div> <!-- ./End Section heading -->
|
91 |
-
|
92 |
-
<div class="mf-set-dash-top-notch">
|
93 |
-
<div class="mf-set-dash-top-notch--item" data-count="01">
|
94 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
95 |
-
<?php esc_html_e('Easy to use', 'metform'); ?></h3>
|
96 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
97 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
98 |
-
</p>
|
99 |
-
</div>
|
100 |
-
<div class="mf-set-dash-top-notch--item" data-count="02">
|
101 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
102 |
-
<?php esc_html_e('Moden Typography', 'metform'); ?></h3>
|
103 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
104 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
105 |
-
</p>
|
106 |
-
</div>
|
107 |
-
<div class="mf-set-dash-top-notch--item" data-count="03">
|
108 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
109 |
-
<?php esc_html_e('Perfectly Match', 'metform'); ?></h3>
|
110 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
111 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
112 |
-
</p>
|
113 |
-
</div>
|
114 |
-
<div class="mf-set-dash-top-notch--item" data-count="04">
|
115 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
116 |
-
<?php esc_html_e('Dynamic Forms', 'metform'); ?></h3>
|
117 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
118 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
119 |
-
</p>
|
120 |
-
</div>
|
121 |
-
<div class="mf-set-dash-top-notch--item" data-count="05">
|
122 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
123 |
-
<?php esc_html_e('Create Faster', 'metform'); ?></h3>
|
124 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
125 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
126 |
-
</p>
|
127 |
-
</div>
|
128 |
-
<div class="mf-set-dash-top-notch--item" data-count="06">
|
129 |
-
<h3 class="mf-set-dash-top-notch--item__title">
|
130 |
-
<?php esc_html_e('Awesome Layout', 'metform'); ?></h3>
|
131 |
-
<p class="mf-set-dash-top-notch--item__desc">
|
132 |
-
<?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
|
133 |
-
</p>
|
134 |
-
</div>
|
135 |
-
</div> <!-- ./End Section heading -->
|
136 |
-
</div> <!-- setting top notch section -->
|
137 |
-
|
138 |
-
<!-- Dashboard setting free and pro -->
|
139 |
-
<div id="mf-set-dash-free-pro" class="mf-set-dash-section">
|
140 |
-
<div class="mf-setting-dash-section-heading">
|
141 |
-
<h2 class="mf-setting-dash-section-heading--title">
|
142 |
-
<?php esc_html_e('What included with Free &', 'metform'); ?>
|
143 |
-
<strong><?php esc_html_e('PRO', 'metform'); ?></strong></h2>
|
144 |
-
<span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
|
145 |
-
<div class="mf-setting-dash-section-heading--content">
|
146 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
|
147 |
-
</p>
|
148 |
-
</div>
|
149 |
-
</div> <!-- ./End Section heading -->
|
150 |
-
|
151 |
-
<div class="mf-set-dash-free-pro-content">
|
152 |
-
<ul class="attr-nav attr-nav-tabs" id="myTab" role="tablist">
|
153 |
-
<li class="attr-nav-item attr-active">
|
154 |
-
<a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-1"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Easy to use', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
|
155 |
-
</li>
|
156 |
-
<li class="attr-nav-item">
|
157 |
-
<a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-2"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Modern Typography', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
|
158 |
-
</li>
|
159 |
-
<li class="attr-nav-item">
|
160 |
-
<a class="attr-nav-link" id="contact-tab" data-toggle="tab" href="#mf-set-feature-3"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Perfectly Match', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
|
161 |
-
</li>
|
162 |
-
</ul>
|
163 |
-
|
164 |
-
<div class="attr-tab-content" id="myTabContent">
|
165 |
-
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-set-feature-1">
|
166 |
-
<div class="mf-set-dash-tab-img">
|
167 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
|
168 |
-
</div>
|
169 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
|
170 |
-
</p>
|
171 |
-
<ul>
|
172 |
-
<li><?php esc_html_e('Success Message', 'metform'); ?></li>
|
173 |
-
<li><?php esc_html_e('Required Login', 'metform'); ?></li>
|
174 |
-
<li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
|
175 |
-
</li>
|
176 |
-
<li><?php esc_html_e('Store Entries', 'metform'); ?></li>
|
177 |
-
</ul>
|
178 |
-
|
179 |
-
<a href="#" class="mf-admin-setting-btn medium"><span class="mf mf-icon-checked-fillpng"></span><?php esc_html_e('View Details', 'metform'); ?></a>
|
180 |
-
</div>
|
181 |
-
<div class="attr-tab-pane attr-fade" id="mf-set-feature-2">
|
182 |
-
<div class="mf-set-dash-tab-img">
|
183 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
|
184 |
-
</div>
|
185 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
|
186 |
-
</p>
|
187 |
-
<ul>
|
188 |
-
<li><?php esc_html_e('Success Message', 'metform'); ?></li>
|
189 |
-
<li><?php esc_html_e('Required Login', 'metform'); ?></li>
|
190 |
-
<li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
|
191 |
-
</li>
|
192 |
-
<li><?php esc_html_e('Store Entries', 'metform'); ?></li>
|
193 |
-
</ul>
|
194 |
-
</div>
|
195 |
-
<div class="attr-tab-pane attr-fade" id="mf-set-feature-3">
|
196 |
-
<div class="mf-set-dash-tab-img">
|
197 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
|
198 |
-
</div>
|
199 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
|
200 |
-
</p>
|
201 |
-
<ul>
|
202 |
-
<li><?php esc_html_e('Success Message', 'metform'); ?></li>
|
203 |
-
<li><?php esc_html_e('Required Login', 'metform'); ?></li>
|
204 |
-
<li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
|
205 |
-
</li>
|
206 |
-
<li><?php esc_html_e('Store Entries', 'metform'); ?></li>
|
207 |
-
</ul>
|
208 |
-
</div>
|
209 |
-
</div>
|
210 |
-
</div>
|
211 |
-
</div> <!-- Dashboard setting free and pro -->
|
212 |
-
|
213 |
-
<!-- Dashboard setting faq -->
|
214 |
-
<div id="mf-set-dash-faq" class="mf-set-dash-section">
|
215 |
-
<div class="mf-setting-dash-section-heading">
|
216 |
-
<h2 class="mf-setting-dash-section-heading--title">
|
217 |
-
<?php esc_html_e('General Knowledge Base', 'metform'); ?></h2>
|
218 |
-
<span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('FAQ', 'metform'); ?></span>
|
219 |
-
<div class="mf-setting-dash-section-heading--content">
|
220 |
-
<p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
|
221 |
-
</p>
|
222 |
-
</div>
|
223 |
-
</div> <!-- ./End Section heading -->
|
224 |
-
|
225 |
-
<div class="mf-admin-accordion">
|
226 |
-
<div class="mf-admin-single-accordion">
|
227 |
-
<h2 class="mf-admin-single-accordion--heading">
|
228 |
-
<?php esc_html_e('1. How to create a Invitation Form using MetForm?', 'metform'); ?>
|
229 |
-
</h2>
|
230 |
-
<div class="mf-admin-single-accordion--body">
|
231 |
-
<div class="mf-admin-single-accordion--body__content">
|
232 |
-
<p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
|
233 |
-
</p>
|
234 |
-
</div>
|
235 |
-
</div>
|
236 |
-
</div>
|
237 |
-
<div class="mf-admin-single-accordion">
|
238 |
-
<h2 class="mf-admin-single-accordion--heading">
|
239 |
-
<?php esc_html_e('2. How to translate language with WPML?', 'metform'); ?>
|
240 |
-
</h2>
|
241 |
-
<div class="mf-admin-single-accordion--body">
|
242 |
-
<div class="mf-admin-single-accordion--body__content">
|
243 |
-
<p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
|
244 |
-
</p>
|
245 |
-
</div>
|
246 |
-
</div>
|
247 |
-
</div>
|
248 |
-
<div class="mf-admin-single-accordion">
|
249 |
-
<h2 class="mf-admin-single-accordion--heading">
|
250 |
-
<?php esc_html_e('3. How to add custom css in specific section shortcode?', 'metform'); ?>
|
251 |
-
</h2>
|
252 |
-
<div class="mf-admin-single-accordion--body">
|
253 |
-
<div class="mf-admin-single-accordion--body__content">
|
254 |
-
<p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
|
255 |
-
</p>
|
256 |
-
</div>
|
257 |
-
</div>
|
258 |
-
</div>
|
259 |
-
</div>
|
260 |
-
|
261 |
-
<a href="#" class="mf-admin-setting-btn fatty active"><span class="mf mf-question"></span><?php esc_html_e('View all faq’s', 'metform'); ?></a>
|
262 |
-
</div> <!-- Dashboard setting faq -->
|
263 |
-
|
264 |
-
<!-- Dashboard setting rate now -->
|
265 |
-
<div id="mf-set-dash-rate-now" class="mf-set-dash-section">
|
266 |
-
<div class="mf-admin-right-content">
|
267 |
-
|
268 |
-
<div class="mf-setting-dash-section-heading">
|
269 |
-
<h2 class="mf-setting-dash-section-heading--title">
|
270 |
-
<strong><?php esc_html_e('Satisfied!', 'metform'); ?></strong><br><?php esc_html_e('Don’t forget to rate our item.', 'metform'); ?>
|
271 |
-
</h2>
|
272 |
-
<span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('review', 'metform'); ?></span>
|
273 |
-
<div class="mf-setting-dash-section-heading--content">
|
274 |
-
<p></p>
|
275 |
-
</div>
|
276 |
-
</div> <!-- ./End Section heading -->
|
277 |
-
<div class="mf-admin-right-content--button">
|
278 |
-
<a target="_blank" href="https://wordpress.org/support/plugin/metform/reviews/?rate=5#new-post" class="mf-admin-setting-btn fatty"><span class="mf mf-star-1"></span><?php esc_html_e('Rate it now', 'elementskit'); ?></a>
|
279 |
-
</div>
|
280 |
-
</div>
|
281 |
-
|
282 |
-
<div class="mf-admin-left-thumb">
|
283 |
-
<img src="<?php echo plugin_dir_url(__FILE__) . '../images/rate-now-thumb.png'; ?>" alt="<?php esc_attr_e('Rate Now Thumb', 'elementskit'); ?>">
|
284 |
-
</div>
|
285 |
-
</div>
|
286 |
-
|
287 |
-
</div>
|
288 |
-
</div>
|
289 |
-
|
290 |
-
<!-- General Tab -->
|
291 |
-
<div class="mf-settings-section" id="mf-general_options">
|
292 |
-
<div class="mf-settings-single-section">
|
293 |
-
<div class="mf-setting-header">
|
294 |
-
<h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('General', 'metform'); ?></h3>
|
295 |
-
<button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
|
296 |
-
</div>
|
297 |
-
<div class="attr-form-group">
|
298 |
-
<div class="mf-setting-tab-nav">
|
299 |
-
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
300 |
-
<li class="attr-active attr-in">
|
301 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-recaptcha-tab" role="tab"><?php esc_attr_e('reCaptcha', 'metform'); ?></a>
|
302 |
-
</li>
|
303 |
-
|
304 |
-
<?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
|
305 |
-
<li>
|
306 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-map-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Map', 'metform'); ?></a>
|
307 |
-
</li>
|
308 |
-
<?php endif; ?>
|
309 |
-
|
310 |
-
|
311 |
-
</ul>
|
312 |
-
</div>
|
313 |
-
|
314 |
-
<div class="attr-tab-content" id="nav-tabContent">
|
315 |
-
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-recaptcha-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
316 |
-
<div class="attr-row">
|
317 |
-
<div class="attr-col-lg-6">
|
318 |
-
<div class="mf-setting-input-group">
|
319 |
-
<label class="mf-setting-label" for="captcha-method"><?php esc_html_e('Select version:', 'metform'); ?></label>
|
320 |
-
<div class="mf-setting-select-container">
|
321 |
-
<select name="mf_recaptcha_version" class="mf-setting-input attr-form-control mf-recaptcha-version" id="captcha-method">
|
322 |
-
<option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v2')) ? 'Selected' : ''); ?> value="recaptcha-v2">
|
323 |
-
<?php esc_html_e('reCAPTCHA V2', 'metform'); ?>
|
324 |
-
</option>
|
325 |
-
<option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v3')) ? 'Selected' : ''); ?> value="recaptcha-v3">
|
326 |
-
<?php esc_html_e('reCAPTCHA V3', 'metform'); ?>
|
327 |
-
</option>
|
328 |
-
</select>
|
329 |
-
</div>
|
330 |
-
<p class="description">
|
331 |
-
<?php esc_html_e('Select google reCaptcha version which one want to use.', 'metform'); ?>
|
332 |
-
</p>
|
333 |
-
</div>
|
334 |
-
|
335 |
-
<div class="mf-recaptcha-settings-wrapper">
|
336 |
-
<div class="mf-recaptcha-settings" id="mf-recaptcha-v2">
|
337 |
-
<div class="mf-setting-input-group">
|
338 |
-
<label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
|
339 |
-
</label>
|
340 |
-
<input type="text" name="mf_recaptcha_site_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key'])) ? $settings['mf_recaptcha_site_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
|
341 |
-
<p class="description">
|
342 |
-
<?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
343 |
-
</p>
|
344 |
-
</div>
|
345 |
-
<div class="mf-setting-input-group">
|
346 |
-
<label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
|
347 |
-
</label>
|
348 |
-
<input type="text" name="mf_recaptcha_secret_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key'])) ? $settings['mf_recaptcha_secret_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
|
349 |
-
<p class="description">
|
350 |
-
<?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
351 |
-
</p>
|
352 |
-
</div>
|
353 |
-
</div>
|
354 |
-
|
355 |
-
<div class="mf-recaptcha-settings" id="mf-recaptcha-v3">
|
356 |
-
<div class="mf-setting-input-group">
|
357 |
-
<label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
|
358 |
-
</label>
|
359 |
-
<input type="text" name="mf_recaptcha_site_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key_v3'])) ? $settings['mf_recaptcha_site_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
|
360 |
-
<p class="description">
|
361 |
-
<?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
362 |
-
</p>
|
363 |
-
</div>
|
364 |
-
<div class="mf-setting-input-group">
|
365 |
-
<label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
|
366 |
-
</label>
|
367 |
-
<input type="text" name="mf_recaptcha_secret_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key_v3'])) ? $settings['mf_recaptcha_secret_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
|
368 |
-
<p class="description">
|
369 |
-
<?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
370 |
-
</p>
|
371 |
-
</div>
|
372 |
-
</div>
|
373 |
-
</div>
|
374 |
-
</div>
|
375 |
-
</div>
|
376 |
-
</div>
|
377 |
-
|
378 |
-
<?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
|
379 |
-
<div class="attr-tab-pane attr-fade" id="mf-map-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
380 |
-
<div class="attr-row">
|
381 |
-
<div class="attr-col-lg-6">
|
382 |
-
<div class="mf-setting-input-group">
|
383 |
-
<label class="mf-setting-label"><?php esc_html_e('API:', 'metform'); ?>
|
384 |
-
</label>
|
385 |
-
<input type="text" name="mf_google_map_api_key" value="<?php echo esc_attr((isset($settings['mf_google_map_api_key'])) ? $settings['mf_google_map_api_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-google-map-api-key" placeholder="<?php esc_html_e('Insert map api key', 'metform'); ?>">
|
386 |
-
<p class="description">
|
387 |
-
<?php esc_html_e('Create google map api key from google developer console. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://console.cloud.google.com/google/maps-apis/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
388 |
-
</p>
|
389 |
-
</div>
|
390 |
-
</div>
|
391 |
-
</div>
|
392 |
-
</div>
|
393 |
-
<?php endif; ?>
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
</div>
|
401 |
-
|
402 |
-
|
403 |
-
</div>
|
404 |
-
</div>
|
405 |
-
|
406 |
-
</div>
|
407 |
-
<!-- ./End General Tab -->
|
408 |
-
|
409 |
-
<!-- Payment Tab -->
|
410 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')) : ?>
|
411 |
-
<div class="mf-settings-section" id="mf-payment_options">
|
412 |
-
<div class="mf-settings-single-section">
|
413 |
-
|
414 |
-
<div class="mf-setting-header">
|
415 |
-
<h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Payment', 'metform'); ?></h3>
|
416 |
-
<button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
|
417 |
-
</div>
|
418 |
-
|
419 |
-
<div class="mf-setting-tab-nav">
|
420 |
-
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
421 |
-
<li class="attr-active attr-in">
|
422 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-paypal-tab" role="tab"><?php esc_attr_e('Paypal', 'metform'); ?></a>
|
423 |
-
</li>
|
424 |
-
|
425 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
|
426 |
-
<li>
|
427 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-stripe-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Stripe', 'metform'); ?></a>
|
428 |
-
</li>
|
429 |
-
<?php endif; ?>
|
430 |
-
|
431 |
-
<li>
|
432 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-thankyou-tab" role="tab"><?php esc_attr_e('Tankyou Page', 'metform'); ?></a>
|
433 |
-
</li>
|
434 |
-
</ul>
|
435 |
-
</div>
|
436 |
-
|
437 |
-
<div class="attr-form-group">
|
438 |
-
<div class="attr-tab-content" id="nav-tabContent">
|
439 |
-
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-paypal-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
440 |
-
<div class="attr-row">
|
441 |
-
<div class="attr-col-lg-6">
|
442 |
-
<div class="mf-setting-input-group">
|
443 |
-
<label class="mf-setting-label"><?php esc_html_e('Paypal email:', 'metform'); ?></label>
|
444 |
-
<input type="email" name="mf_paypal_email" value="<?php echo esc_attr((isset($settings['mf_paypal_email'])) ? $settings['mf_paypal_email'] : ''); ?>" class="mf-setting-input mf-paypal-email attr-form-control" placeholder="<?php esc_html_e('Paypal email', 'metform'); ?>">
|
445 |
-
<p class="description">
|
446 |
-
<?php esc_html_e('Enter here your paypal email. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
447 |
-
</p>
|
448 |
-
</div>
|
449 |
-
|
450 |
-
<div class="mf-setting-input-group">
|
451 |
-
<label class="mf-setting-label"><?php esc_html_e('Paypal token:', 'metform'); ?></label>
|
452 |
-
<input type="text" name="mf_paypal_token" value="<?php echo esc_attr((isset($settings['mf_paypal_token'])) ? $settings['mf_paypal_token'] : ''); ?>" class="mf-setting-input mf-paypal-token attr-form-control" placeholder="<?php esc_html_e('Paypal token', 'metform'); ?>">
|
453 |
-
<p class="description">
|
454 |
-
<?php esc_html_e('Enter here your paypal token. This is optional. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
455 |
-
</p>
|
456 |
-
</div>
|
457 |
-
|
458 |
-
<div class="mf-setting-input-group">
|
459 |
-
<label class="mf-setting-label"><?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
|
460 |
-
<input type="checkbox" value="1" name="mf_paypal_sandbox" <?php echo esc_attr((isset($settings['mf_paypal_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-paypal_sandbox">
|
461 |
-
<p class="description">
|
462 |
-
<?php esc_html_e('Enable this for testing payment method. ', 'metform'); ?>
|
463 |
-
</p>
|
464 |
-
</label>
|
465 |
-
</div>
|
466 |
-
</div>
|
467 |
-
</div>
|
468 |
-
</div>
|
469 |
-
|
470 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
|
471 |
-
<div class="attr-tab-pane attr-fade" id="attr-stripe-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
|
472 |
-
<div class="attr-row">
|
473 |
-
<div class="attr-col-lg-6">
|
474 |
-
<div class="mf-setting-input-group">
|
475 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Image url:', 'metform'); ?></label>
|
476 |
-
<input type="text" name="mf_stripe_image_url" value="<?php echo esc_attr((isset($settings['mf_stripe_image_url'])) ? $settings['mf_stripe_image_url'] : ''); ?>" class="mf-setting-input mf-stripe-image-url attr-form-control" placeholder="<?php esc_html_e('Stripe image url', 'metform'); ?>">
|
477 |
-
<p class="description">
|
478 |
-
<?php esc_html_e('Enter here your stripe image url. This image will show on stripe payment pop up modal. ', 'metform'); ?>
|
479 |
-
</p>
|
480 |
-
</div>
|
481 |
-
|
482 |
-
<div class="mf-setting-input-group">
|
483 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live publishiable key:', 'metform'); ?></label>
|
484 |
-
<input type="text" name="mf_stripe_live_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_publishiable_key'])) ? $settings['mf_stripe_live_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe live publishiable key', 'metform'); ?>">
|
485 |
-
<p class="description">
|
486 |
-
<?php esc_html_e('Enter here your stripe live publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
487 |
-
</p>
|
488 |
-
</div>
|
489 |
-
|
490 |
-
<div class="mf-setting-input-group">
|
491 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live secret key:', 'metform'); ?></label>
|
492 |
-
<input type="text" name="mf_stripe_live_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_secret_key'])) ? $settings['mf_stripe_live_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe live secret key', 'metform'); ?>">
|
493 |
-
<p class="description">
|
494 |
-
<?php esc_html_e('Enter here your stripe live secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
495 |
-
</p>
|
496 |
-
</div>
|
497 |
-
|
498 |
-
<div class="mf-setting-input-group">
|
499 |
-
<label class="mf-setting-label attr-input-label">
|
500 |
-
<?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
|
501 |
-
<input type="checkbox" value="1" name="mf_stripe_sandbox" <?php echo esc_attr((isset($settings['mf_stripe_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-stripe_sandbox">
|
502 |
-
<p class="description">
|
503 |
-
<?php esc_html_e('Enable this for testing your payment system. ', 'metform'); ?>
|
504 |
-
</p>
|
505 |
-
</label>
|
506 |
-
</div>
|
507 |
-
|
508 |
-
<div class="mf-form-modalinput-stripe_sandbox_keys">
|
509 |
-
<div class="mf-setting-input-group">
|
510 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test publishiable key:', 'metform'); ?></label>
|
511 |
-
<input type="text" name="mf_stripe_test_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_publishiable_key'])) ? $settings['mf_stripe_test_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe test publishiable key', 'metform'); ?>">
|
512 |
-
<p class="description">
|
513 |
-
<?php esc_html_e('Enter here your test publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
514 |
-
</p>
|
515 |
-
</div>
|
516 |
-
<div class="mf-setting-input-group">
|
517 |
-
<label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test secret key:', 'metform'); ?></label>
|
518 |
-
<input type="text" name="mf_stripe_test_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_secret_key'])) ? $settings['mf_stripe_test_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe test secret key', 'metform'); ?>">
|
519 |
-
<p class="description">
|
520 |
-
<?php esc_html_e('Enter here your test secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
|
521 |
-
</p>
|
522 |
-
</div>
|
523 |
-
</div>
|
524 |
-
|
525 |
-
</div>
|
526 |
-
</div>
|
527 |
-
</div>
|
528 |
-
<?php endif; ?>
|
529 |
-
|
530 |
-
<!-- Thank you page section -->
|
531 |
-
|
532 |
-
<div class="attr-tab-pane attr-fade" id="mf-thankyou-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
533 |
-
<div class="attr-row">
|
534 |
-
<div class="attr-col-lg-6">
|
535 |
-
<div class="mf-setting-input-group">
|
536 |
-
<h3>Select Thankyou Page :</h3>
|
537 |
-
<?php $page_ids = get_all_page_ids(); ?>
|
538 |
-
<select name="mf_thank_you_page" class="mf-setting-input attr-form-control">
|
539 |
-
<?php foreach ($page_ids as $page) : ?>
|
540 |
-
<option <?php
|
541 |
-
if(isset($settings['mf_thank_you_page'])){
|
542 |
-
if ($settings['mf_thank_you_page'] == $page) {
|
543 |
-
echo 'selected';
|
544 |
-
}
|
545 |
-
|
546 |
-
}
|
547 |
-
|
548 |
-
?> value="<?php echo $page; ?>"> <?php echo get_the_title($page); ?>
|
549 |
-
<?php endforeach; ?>
|
550 |
-
|
551 |
-
|
552 |
-
</select>
|
553 |
-
<br><br>
|
554 |
-
<p>Handle both payment successfull and cancel redirection page. Learn more about Thank you page <a href="https://help.wpmet.com/docs/thank-you-page/" target="_blank">Here</a></p>
|
555 |
-
<a class="mf-setting-btn-link" href="<?php echo get_admin_url() . 'post-new.php?post_type=page'; ?>">Create Thankyou Page</a>
|
556 |
-
</div>
|
557 |
-
</div>
|
558 |
-
</div>
|
559 |
-
</div>
|
560 |
-
|
561 |
-
</div>
|
562 |
-
</div>
|
563 |
-
|
564 |
-
|
565 |
-
</div>
|
566 |
-
|
567 |
-
</div>
|
568 |
-
<?php endif; ?>
|
569 |
-
|
570 |
-
<!-- ./End Payment Tab -->
|
571 |
-
|
572 |
-
<!-- newsletter Integration Tab -->
|
573 |
-
<div class="mf-settings-section" id="mf-newsletter_integration">
|
574 |
-
<div class="mf-settings-single-section">
|
575 |
-
<?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')) : ?>
|
576 |
-
<div class="mf-setting-header">
|
577 |
-
<h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Newsletter Integration', 'metform'); ?>
|
578 |
-
</h3>
|
579 |
-
<button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
|
580 |
-
</div>
|
581 |
-
|
582 |
-
|
583 |
-
<div class="mf-setting-tab-nav">
|
584 |
-
<ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
|
585 |
-
<li class="attr-active attr-in">
|
586 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-mailchimp-tab" role="tab"><?php esc_attr_e('MailChimp', 'metform'); ?></a>
|
587 |
-
</li>
|
588 |
-
|
589 |
-
<?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
|
590 |
-
<li>
|
591 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-aweber-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Aweber', 'metform'); ?></a>
|
592 |
-
</li>
|
593 |
-
|
594 |
-
<li>
|
595 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-activeCampaign-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('ActiveCampaign', 'metform'); ?></a>
|
596 |
-
</li>
|
597 |
-
|
598 |
-
<li>
|
599 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-getresponse-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('Get Response', 'metform'); ?></a>
|
600 |
-
</li>
|
601 |
-
|
602 |
-
<li>
|
603 |
-
<a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-ckit-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('ConvertKit', 'metform'); ?></a>
|
604 |
-
</li>
|
605 |
-
|
606 |
-
<?php endif; ?>
|
607 |
-
</ul>
|
608 |
-
</div>
|
609 |
-
<div class="attr-form-group">
|
610 |
-
<div class="attr-tab-content" id="nav-tabContent">
|
611 |
-
<div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-mailchimp-tab" role="tabpanel" aria-labelledby="nav-home-tab">
|
612 |
-
|
613 |
-
<div class="attr-row">
|
614 |
-
<div class="attr-col-lg-6">
|
615 |
-
<div class="mf-setting-input-group">
|
616 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
|
617 |
-
<input type="text" name="mf_mailchimp_api_key" value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Mailchimp api key', 'metform'); ?>">
|
618 |
-
<p class="description">
|
619 |
-
<?php esc_html_e('Enter here your Mailchimp api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
620 |
-
</p>
|
621 |
-
</div>
|
622 |
-
</div>
|
623 |
-
|
624 |
-
<div class="attr-col-lg-6">
|
625 |
-
<div class="mf-setting-input-desc">
|
626 |
-
<div class="mf-setting-input-desc-data">
|
627 |
-
<h2 class="mf-setting-input-desc--title">
|
628 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
629 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
630 |
-
</p>
|
631 |
-
<ol>
|
632 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
633 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
634 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
635 |
-
</ol>
|
636 |
-
</div>
|
637 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
638 |
-
</div>
|
639 |
-
</div>
|
640 |
-
</div>
|
641 |
-
</div>
|
642 |
-
|
643 |
-
<?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
|
644 |
-
|
645 |
-
<div class="attr-tab-pane attr-fade" id="attr-aweber-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
|
646 |
-
<div class="attr-row">
|
647 |
-
<div class="attr-col-lg-6">
|
648 |
-
|
649 |
-
<div class="mf-setting-input-group">
|
650 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App ID:', 'metform'); ?></label>
|
651 |
-
<input type="text" <?php echo $disabledAttr; ?> name="mf_aweber_dev_api_key" id="mf_aweber_dev_api_key" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_key'])) ? $settings['mf_aweber_dev_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer clientId key', 'metform'); ?>">
|
652 |
-
<p class="description">
|
653 |
-
<?php esc_html_e('Enter here your Aweber developer app key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
654 |
-
</p>
|
655 |
-
</div>
|
656 |
-
|
657 |
-
<div class="mf-setting-input-group">
|
658 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App Secret:', 'metform'); ?></label>
|
659 |
-
<input type="text" <?php echo $disabledAttr; ?> id="mf_aweber_dev_api_sec" name="mf_aweber_dev_api_sec" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_sec'])) ? $settings['mf_aweber_dev_api_sec'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer secret key', 'metform'); ?>">
|
660 |
-
<p class="description">
|
661 |
-
<?php esc_html_e('Enter here your Aweber developer secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
662 |
-
</p>
|
663 |
-
</div>
|
664 |
-
|
665 |
-
<div class="mf-setting-input-group">
|
666 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php echo __('Redirect url:', 'metform'); ?></label>
|
667 |
-
<p class="description">
|
668 |
-
<?php echo get_admin_url() . 'admin.php?page=metform-menu-settings'; ?>
|
669 |
-
</p>
|
670 |
-
</div>
|
671 |
-
|
672 |
-
<?php if (!empty($code)) : ?>
|
673 |
-
<div class="mf-setting-input-group">
|
674 |
-
<p class="description">
|
675 |
-
<a id="met_pro_aweber_propmpt_re_auth" class="button-primary mf-setting-btn"> Re Authorize </a>
|
676 |
-
</p>
|
677 |
-
</div>
|
678 |
-
<?php else : ?>
|
679 |
-
<div class="mf-setting-input-group">
|
680 |
-
|
681 |
-
<p class="description">
|
682 |
-
<button class="mf-setting-btn-link" id="met_pro_aweber_authorize"> Get Authorization URL
|
683 |
-
</button>
|
684 |
-
</p>
|
685 |
-
</div>
|
686 |
-
<?php endif; ?>
|
687 |
-
|
688 |
-
</div>
|
689 |
-
<div class="attr-col-lg-6">
|
690 |
-
<div class="mf-setting-input-desc">
|
691 |
-
<div class="mf-setting-input-desc-data">
|
692 |
-
<h2 class="mf-setting-input-desc--title">
|
693 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
694 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
695 |
-
</p>
|
696 |
-
<ol>
|
697 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
698 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
699 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
700 |
-
</ol>
|
701 |
-
</div>
|
702 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
703 |
-
</div>
|
704 |
-
</div>
|
705 |
-
|
706 |
-
</div>
|
707 |
-
</div>
|
708 |
-
|
709 |
-
<div class="attr-tab-pane attr-fade" id="attr-ckit-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
|
710 |
-
<div class="attr-row">
|
711 |
-
<div class="attr-col-lg-6">
|
712 |
-
<div class="mf-setting-input-group">
|
713 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
|
714 |
-
<input type="text" name="mf_ckit_api_key" value="<?php echo esc_attr((isset($settings['mf_ckit_api_key'])) ? $settings['mf_ckit_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
|
715 |
-
<p class="description">
|
716 |
-
<?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
717 |
-
</p>
|
718 |
-
</div>
|
719 |
-
|
720 |
-
|
721 |
-
<div class="mf-setting-input-group">
|
722 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Secret Key:', 'metform'); ?></label>
|
723 |
-
<input type="text" name="mf_ckit_sec_key" value="<?php echo esc_attr((isset($settings['mf_ckit_sec_key'])) ? $settings['mf_ckit_sec_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
|
724 |
-
<p class="description">
|
725 |
-
<?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
726 |
-
</p>
|
727 |
-
</div>
|
728 |
-
|
729 |
-
|
730 |
-
</div>
|
731 |
-
<div class="attr-col-lg-6">
|
732 |
-
<div class="mf-setting-input-desc">
|
733 |
-
<div class="mf-setting-input-desc-data">
|
734 |
-
<h2 class="mf-setting-input-desc--title">
|
735 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
736 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
737 |
-
</p>
|
738 |
-
<ol>
|
739 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
740 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
741 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
742 |
-
</ol>
|
743 |
-
</div>
|
744 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
745 |
-
</div>
|
746 |
-
</div>
|
747 |
-
</div>
|
748 |
-
</div>
|
749 |
-
|
750 |
-
<?php endif; ?>
|
751 |
-
|
752 |
-
<div class="attr-tab-pane attr-fade" id="attr-activeCampaign-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
|
753 |
-
<div class="attr-row">
|
754 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign')) : ?>
|
755 |
-
<div class="attr-col-lg-6">
|
756 |
-
<div class="mf-setting-input-group">
|
757 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API URL:', 'metform'); ?></label>
|
758 |
-
<input type="text" name="mf_active_campaign_url" value="<?php echo esc_attr((isset($settings['mf_active_campaign_url'])) ? $settings['mf_active_campaign_url'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign API URL', 'metform'); ?>">
|
759 |
-
<p class="description">
|
760 |
-
<?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
761 |
-
</p>
|
762 |
-
</div>
|
763 |
-
|
764 |
-
<div class="mf-setting-input-group">
|
765 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
|
766 |
-
<input type="text" name="mf_active_campaign_api_key" value="<?php echo esc_attr((isset($settings['mf_active_campaign_api_key'])) ? $settings['mf_active_campaign_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
|
767 |
-
<p class="description">
|
768 |
-
<?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
769 |
-
</p>
|
770 |
-
</div>
|
771 |
-
</div>
|
772 |
-
<div class="attr-col-lg-6">
|
773 |
-
<div class="mf-setting-input-desc">
|
774 |
-
<div class="mf-setting-input-desc-data">
|
775 |
-
<h2 class="mf-setting-input-desc--title">
|
776 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
777 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
778 |
-
</p>
|
779 |
-
<ol>
|
780 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
781 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
782 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
783 |
-
</ol>
|
784 |
-
</div>
|
785 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
786 |
-
</div>
|
787 |
-
</div>
|
788 |
-
|
789 |
-
<?php else : ?>
|
790 |
-
<div class="attr-col-lg-6">
|
791 |
-
<div class="mf-setting-input-group">
|
792 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
|
793 |
-
<input type="text" disabled name="mf_activecampaign_api_key_field" value="" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
|
794 |
-
<p class="description">
|
795 |
-
<?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
|
796 |
-
</p>
|
797 |
-
</div>
|
798 |
-
</div>
|
799 |
-
<div class="attr-col-lg-6">
|
800 |
-
<div class="mf-setting-input-desc">
|
801 |
-
<div class="mf-setting-input-desc-data">
|
802 |
-
<h2 class="mf-setting-input-desc--title">
|
803 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
804 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
805 |
-
</p>
|
806 |
-
<ol>
|
807 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
808 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
809 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
810 |
-
</ol>
|
811 |
-
</div>
|
812 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
813 |
-
</div>
|
814 |
-
</div>
|
815 |
-
<?php endif; ?>
|
816 |
-
</div>
|
817 |
-
</div>
|
818 |
-
|
819 |
-
<div class="attr-tab-pane attr-fade" id="attr-getresponse-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
|
820 |
-
<div class="attr-row">
|
821 |
-
|
822 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')) : ?>
|
823 |
-
<div class="attr-col-lg-6">
|
824 |
-
<div class="mf-setting-input-group">
|
825 |
-
<div class="attr-form-group">
|
826 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
|
827 |
-
<input type="text" name="mf_get_reponse_api_key" value="<?php echo esc_attr((isset($settings['mf_get_reponse_api_key'])) ? $settings['mf_get_reponse_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
|
828 |
-
|
829 |
-
</div>
|
830 |
-
</div>
|
831 |
-
</div>
|
832 |
-
<div class="attr-col-lg-6">
|
833 |
-
<div class="mf-setting-input-desc">
|
834 |
-
<div class="mf-setting-input-desc-data">
|
835 |
-
<h2 class="mf-setting-input-desc--title">
|
836 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
837 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
838 |
-
</p>
|
839 |
-
<ol>
|
840 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
841 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
842 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
843 |
-
</ol>
|
844 |
-
</div>
|
845 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
846 |
-
</div>
|
847 |
-
</div>
|
848 |
-
|
849 |
-
<?php else : ?>
|
850 |
-
<div class="attr-col-lg-6">
|
851 |
-
<div class="mf-setting-input-group">
|
852 |
-
<div class="attr-form-group">
|
853 |
-
<label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
|
854 |
-
<input type="text" name="mf_getreponse_api_key_field" value="" disabled class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
|
855 |
-
|
856 |
-
</div>
|
857 |
-
</div>
|
858 |
-
</div>
|
859 |
-
<div class="attr-col-lg-6">
|
860 |
-
<div class="mf-setting-input-desc">
|
861 |
-
<div class="mf-setting-input-desc-data">
|
862 |
-
<h2 class="mf-setting-input-desc--title">
|
863 |
-
<?php esc_html_e('How To', 'metfrom') ?></h2>
|
864 |
-
<p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
|
865 |
-
</p>
|
866 |
-
<ol>
|
867 |
-
<li><?php esc_html_e('Item 1', 'metform') ?></li>
|
868 |
-
<li><?php esc_html_e('Item 2', 'metform') ?></li>
|
869 |
-
<li><?php esc_html_e('Item 3', 'metform') ?></li>
|
870 |
-
</ol>
|
871 |
-
</div>
|
872 |
-
<a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
|
873 |
-
</div>
|
874 |
-
</div>
|
875 |
-
|
876 |
-
<?php endif; ?>
|
877 |
-
|
878 |
-
</div>
|
879 |
-
</div>
|
880 |
-
|
881 |
-
|
882 |
-
</div>
|
883 |
-
</div>
|
884 |
-
<!-- <hr class="mf-setting-separator"> -->
|
885 |
-
<?php endif; ?>
|
886 |
-
</div>
|
887 |
-
</div>
|
888 |
-
<!-- ./End Mail Integration Tab -->
|
889 |
-
|
890 |
-
<!-- Integrations settings action -->
|
891 |
-
|
892 |
-
<?php echo do_action('metform_settings_content'); ?>
|
893 |
-
|
894 |
-
<!-- Integrations settings action end -->
|
895 |
-
|
896 |
-
<input type="hidden" name="mf_settings_page_action" value="save">
|
897 |
-
<?php wp_nonce_field('metform-settings-page', 'metform-settings-page'); ?>
|
898 |
-
</form>
|
899 |
-
</div>
|
900 |
-
</div>
|
901 |
-
</div>
|
902 |
-
</div>
|
903 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/action.php
DELETED
@@ -1,937 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Entries;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Action
|
8 |
-
{
|
9 |
-
use \MetForm\Traits\Singleton;
|
10 |
-
|
11 |
-
private $key_form_id;
|
12 |
-
private $key_form_data;
|
13 |
-
//private $key_form_settings;
|
14 |
-
private $key_browser_data;
|
15 |
-
private $key_form_total_entries;
|
16 |
-
private $key_form_file;
|
17 |
-
private $key_payment_status;
|
18 |
-
private $post_type;
|
19 |
-
|
20 |
-
private $fields;
|
21 |
-
private $entry_id;
|
22 |
-
private $form_id;
|
23 |
-
private $form_data;
|
24 |
-
private $form_settings;
|
25 |
-
private $title;
|
26 |
-
private $entry_count;
|
27 |
-
private $email_name;
|
28 |
-
private $file_upload_info;
|
29 |
-
|
30 |
-
private $inserted_form_data;
|
31 |
-
|
32 |
-
private $response;
|
33 |
-
|
34 |
-
public function __construct()
|
35 |
-
{
|
36 |
-
$this->response = (object) [
|
37 |
-
'status' => 0,
|
38 |
-
'error' => [
|
39 |
-
esc_html__('Some thing went wrong.', 'metrom'),
|
40 |
-
],
|
41 |
-
'data' => [
|
42 |
-
'message' => '',
|
43 |
-
],
|
44 |
-
];
|
45 |
-
|
46 |
-
//$this->key_form_settings = 'metform_form__form_setting';
|
47 |
-
$this->key_form_total_entries = 'metform_form__form_total_entries';
|
48 |
-
$this->key_browser_data = 'metform_form__entry_browser_data';
|
49 |
-
$this->key_form_id = 'metform_entries__form_id';
|
50 |
-
$this->key_form_data = 'metform_entries__form_data';
|
51 |
-
$this->key_form_file = 'metform_entries__file_upload';
|
52 |
-
$this->key_payment_status = 'metform_entries__payment_status';
|
53 |
-
$this->post_type = Base::instance()->cpt->get_name();
|
54 |
-
}
|
55 |
-
|
56 |
-
public function submit($form_id, $form_data, $file_data, $page_id = '')
|
57 |
-
{
|
58 |
-
|
59 |
-
$this->form_id = $form_id;
|
60 |
-
$this->title = get_the_title($this->form_id);
|
61 |
-
//$this->form_settings = $this->get_form_settings($form_id);
|
62 |
-
$this->form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
63 |
-
$this->fields = $this->get_fields($form_id);
|
64 |
-
|
65 |
-
$this->response->data['redirect_to'] = (!isset($this->form_settings['redirect_to'])) ? '' : $this->form_settings['redirect_to'];
|
66 |
-
$this->response->data['hide_form'] = (!isset($this->form_settings['hide_form_after_submission']) ? '' : $this->form_settings['hide_form_after_submission']);
|
67 |
-
$this->response->data['form_data'] = $form_data;
|
68 |
-
//$this->response->data['form_setting'] = $this->form_settings;
|
69 |
-
//$this->response->data['map_data'] = $this->fields;
|
70 |
-
|
71 |
-
$email_name = $this->get_input_name_by_widget_type('mf-email');
|
72 |
-
$this->email_name = (isset($email_name[0]) ? $email_name[0] : null);
|
73 |
-
|
74 |
-
// nonce check
|
75 |
-
if (!isset($form_data['form_nonce']) || !wp_verify_nonce($form_data['form_nonce'], 'form_nonce')) {
|
76 |
-
$this->response->status = 0;
|
77 |
-
$this->response->error[] = esc_html__('Unauthorized submission.', 'metform');
|
78 |
-
return $this->response;
|
79 |
-
}
|
80 |
-
|
81 |
-
// validate form with max length, min length, length type and expression
|
82 |
-
$validate = $this->validate_form_data($form_data);
|
83 |
-
if ($validate == false) {
|
84 |
-
$this->response->status = 0;
|
85 |
-
return $this->response;
|
86 |
-
}
|
87 |
-
|
88 |
-
// google recaptcha condition and action
|
89 |
-
if ((isset($form_data['g-recaptcha-response']) || isset($form_data['g-recaptcha-response-v3'])) && (isset($this->fields['mf-recaptcha'])) && (isset($this->form_settings['mf_recaptcha_site_key'])) && $this->form_settings['mf_recaptcha_site_key'] != '') {
|
90 |
-
if (isset($form_data['g-recaptcha-response']) && ($form_data['g-recaptcha-response'] == "")) {
|
91 |
-
$this->response->status = 0;
|
92 |
-
$this->response->error[] = esc_html__('Please solve the recaptcha.', 'metform');
|
93 |
-
return $this->response;
|
94 |
-
}
|
95 |
-
|
96 |
-
if ((isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v3')) && (!isset($form_data['g-recaptcha-response-v3']) || ($form_data['g-recaptcha-response-v3'] == ""))) {
|
97 |
-
$this->response->status = 0;
|
98 |
-
$this->response->error[] = esc_html__('Google captcha token not found.', 'metform');
|
99 |
-
return $this->response;
|
100 |
-
}
|
101 |
-
|
102 |
-
if ((isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v2')) && isset($form_data['g-recaptcha-response'])) {
|
103 |
-
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v2($form_data, $this->form_settings);
|
104 |
-
}
|
105 |
-
|
106 |
-
if ((isset($this->form_settings['mf_recaptcha_version']) && ($this->form_settings['mf_recaptcha_version'] == 'recaptcha-v3')) && isset($form_data['g-recaptcha-response-v3'])) {
|
107 |
-
$response = \MetForm\Core\Integrations\Google_Recaptcha::instance()->verify_captcha_v3($form_data, $this->form_settings);
|
108 |
-
}
|
109 |
-
|
110 |
-
//$this->response->data['responseKeys'] = $response['responseKeys'];
|
111 |
-
$this->response->status = $response['status'];
|
112 |
-
if ($response['status'] == 0) {
|
113 |
-
$this->response->error[] = (isset($response['error']) ? $response['error'] : '');
|
114 |
-
return $this->response;
|
115 |
-
}
|
116 |
-
}
|
117 |
-
|
118 |
-
// Captcha solve conditiona and action
|
119 |
-
if (isset($form_data['mf-captcha-challenge'])) {
|
120 |
-
if (($form_data['mf-captcha-challenge']) == "") {
|
121 |
-
$this->response->status = 0;
|
122 |
-
$this->response->error[] = esc_html__('Please solve the recaptcha.', 'metform');
|
123 |
-
return $this->response;
|
124 |
-
}
|
125 |
-
|
126 |
-
session_start();
|
127 |
-
|
128 |
-
$time = $_SERVER['REQUEST_TIME'];
|
129 |
-
|
130 |
-
$timeout_duration = 1800;
|
131 |
-
|
132 |
-
if (
|
133 |
-
isset($_SESSION['LAST_ACTIVITY']) && ($time - $_SESSION['LAST_ACTIVITY']) > $timeout_duration
|
134 |
-
) {
|
135 |
-
session_unset();
|
136 |
-
session_destroy();
|
137 |
-
session_start();
|
138 |
-
}
|
139 |
-
|
140 |
-
$_SESSION['LAST_ACTIVITY'] = $time;
|
141 |
-
|
142 |
-
if (!isset($_SESSION['mf_captcha_text'])) {
|
143 |
-
$this->response->status = 0;
|
144 |
-
$this->response->error[] = esc_html__('Time out of this captcha. Please reload or choose another one.', 'metform');
|
145 |
-
return $this->response;
|
146 |
-
}
|
147 |
-
|
148 |
-
if (isset($form_data['mf-captcha-challenge']) && isset($_SESSION['mf_captcha_text']) && ($form_data['mf-captcha-challenge'] == $_SESSION['mf_captcha_text'])) {
|
149 |
-
$this->response->status = 1;
|
150 |
-
//$this->response->data['captcha'] = esc_html__('Captcha is verified.', 'metform');
|
151 |
-
} else {
|
152 |
-
$this->response->status = 0;
|
153 |
-
$this->response->error[] = esc_html__('Enter correct captcha.', 'metform');
|
154 |
-
return $this->response;
|
155 |
-
}
|
156 |
-
}
|
157 |
-
|
158 |
-
// user login check and action
|
159 |
-
$required_loggin = isset($this->form_settings['require_login']) ? ((int) ($this->form_settings['require_login'])) : 0;
|
160 |
-
|
161 |
-
if (($required_loggin == 1) && (!is_user_logged_in())) {
|
162 |
-
$this->response->status = 0;
|
163 |
-
$this->response->error[] = esc_html__('You must be logged in to submit form.', 'metform');
|
164 |
-
return $this->response;
|
165 |
-
}
|
166 |
-
|
167 |
-
// Total entry limit check and prevent
|
168 |
-
if (isset($this->form_settings['limit_total_entries_status'])) {
|
169 |
-
$entry_limit = ((int) ($this->form_settings['limit_total_entries_status']));
|
170 |
-
|
171 |
-
if (($entry_limit == 1) && ($this->get_entry_count() >= $this->form_settings['limit_total_entries'])) {
|
172 |
-
$this->response->status = 0;
|
173 |
-
$this->response->error[] = esc_html__('Form submission limit execed.', 'metform');
|
174 |
-
|
175 |
-
return $this->response;
|
176 |
-
}
|
177 |
-
}
|
178 |
-
|
179 |
-
// signature input upload as image from base64
|
180 |
-
if (class_exists('\MetForm_Pro\Base\Package') && isset($form_data['mf-signature'])) {
|
181 |
-
|
182 |
-
$signature_input = $this->get_input_name_by_widget_type('mf-signature');
|
183 |
-
$this->response->data['signature_name'] = $signature_input;
|
184 |
-
$this->response->data['signature_input_data'] = $form_data['mf-signature'];
|
185 |
-
|
186 |
-
if ($signature_input != null) {
|
187 |
-
$inputs = (is_array($signature_input) ? $signature_input : []);
|
188 |
-
foreach ($inputs as $input) {
|
189 |
-
$b64string = isset($form_data[$input]) ? $form_data[$input] : '';
|
190 |
-
$status = $this->covert_base64_to_png($input, $b64string);
|
191 |
-
$form_data[$input] = (isset($status['url']) ? $status['url'] : '');
|
192 |
-
}
|
193 |
-
}
|
194 |
-
//$this->response->data['signature_input'] = $signature_input;
|
195 |
-
}
|
196 |
-
|
197 |
-
// Hubspot CRM integration
|
198 |
-
|
199 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot')) {
|
200 |
-
|
201 |
-
$hubspot = new \MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot();
|
202 |
-
|
203 |
-
if (isset($this->form_settings['mf_hubspot']) && $this->form_settings['mf_hubspot'] == '1') {
|
204 |
-
|
205 |
-
$hubspot->create_contact($form_data, ['email_name' => $this->email_name]);
|
206 |
-
|
207 |
-
}
|
208 |
-
|
209 |
-
if (isset($this->form_settings['mf_hubspot_forms']) && $this->form_settings['mf_hubspot_forms'] == '1') {
|
210 |
-
|
211 |
-
$hubspot->submit_data($form_id, $form_data, $this->form_settings);
|
212 |
-
|
213 |
-
}
|
214 |
-
|
215 |
-
}
|
216 |
-
|
217 |
-
/**
|
218 |
-
* ============================
|
219 |
-
* Zoho Integrations
|
220 |
-
* ============================
|
221 |
-
*/
|
222 |
-
|
223 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Zoho\Zoho')) {
|
224 |
-
|
225 |
-
// Check if settings exists or enabled
|
226 |
-
|
227 |
-
if (isset($this->form_settings['mf_zoho']) && $this->form_settings['mf_zoho'] == '1') {
|
228 |
-
|
229 |
-
$zoho = new \MetForm_Pro\Core\Integrations\Crm\Zoho\Zoho();
|
230 |
-
$zoho->create_contact($form_data, ['email_name' => $this->email_name]);
|
231 |
-
|
232 |
-
}
|
233 |
-
|
234 |
-
}
|
235 |
-
|
236 |
-
/**
|
237 |
-
* ================================
|
238 |
-
* Auth / Registrations
|
239 |
-
* ================================
|
240 |
-
*/
|
241 |
-
|
242 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Auth\Register\Register')) {
|
243 |
-
|
244 |
-
if (isset($this->form_settings['mf_registration']) && $this->form_settings['mf_registration'] == '1') {
|
245 |
-
|
246 |
-
$register = new \MetForm_Pro\Core\Integrations\Auth\Register\Register();
|
247 |
-
$register->action($form_id, $form_data);
|
248 |
-
|
249 |
-
}
|
250 |
-
|
251 |
-
}
|
252 |
-
|
253 |
-
/**
|
254 |
-
* ==============================
|
255 |
-
* Mailster action
|
256 |
-
* ==============================
|
257 |
-
*/
|
258 |
-
|
259 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Email\Mailster\Mailster')){
|
260 |
-
|
261 |
-
if(isset($this->form_settings['mf_mailster']) && $this->form_settings['mf_mailster'] == '1'){
|
262 |
-
$mailster = new \MetForm_Pro\Core\Integrations\Email\Mailster\Mailster();
|
263 |
-
$mailster->action($form_id,$form_data, $this->form_settings);
|
264 |
-
}
|
265 |
-
|
266 |
-
}
|
267 |
-
|
268 |
-
/**
|
269 |
-
* ========================
|
270 |
-
* Auth / Login
|
271 |
-
* ========================
|
272 |
-
*/
|
273 |
-
|
274 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Auth\Login\Login')) {
|
275 |
-
|
276 |
-
if (isset($this->form_settings['mf_login']) && $this->form_settings['mf_login'] == '1') {
|
277 |
-
|
278 |
-
$login = new \MetForm_Pro\Core\Integrations\Auth\Login\Login();
|
279 |
-
$login->action($form_id, $form_data);
|
280 |
-
|
281 |
-
}
|
282 |
-
|
283 |
-
}
|
284 |
-
|
285 |
-
// mailchimp email store action
|
286 |
-
if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')) {
|
287 |
-
if (isset($this->form_settings['mf_mail_chimp']) && $this->form_settings['mf_mail_chimp'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
288 |
-
|
289 |
-
$mail_chimp = new \MetForm\Core\Integrations\Mail_Chimp();
|
290 |
-
|
291 |
-
if (array_key_exists("mf-listing-optin", $this->fields) && isset($form_data['mf-listing-optin'])) {
|
292 |
-
$response = $mail_chimp->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
293 |
-
} elseif (!array_key_exists('mf-listing-optin', $this->fields)) {
|
294 |
-
$response = $mail_chimp->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
295 |
-
}
|
296 |
-
|
297 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
298 |
-
}
|
299 |
-
}
|
300 |
-
|
301 |
-
// ActiveCampaign email store action
|
302 |
-
|
303 |
-
if (class_exists('MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign')) {
|
304 |
-
if (isset($this->form_settings['mf_active_campaign']) && $this->form_settings['mf_active_campaign'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
305 |
-
|
306 |
-
$active_campaign = new \MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign();
|
307 |
-
|
308 |
-
$response = $active_campaign->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
309 |
-
|
310 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
311 |
-
}
|
312 |
-
}
|
313 |
-
|
314 |
-
// GetResponse email store action
|
315 |
-
|
316 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')) {
|
317 |
-
|
318 |
-
if (isset($this->form_settings['mf_get_response']) && $this->form_settings['mf_get_response'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
319 |
-
|
320 |
-
$get_response = new \MetForm\Core\Integrations\Get_Response();
|
321 |
-
|
322 |
-
// if (array_key_exists("mf-listing-optin", $this->fields) && isset($form_data['mf-listing-optin'])) {
|
323 |
-
// $response = $mail_chimp->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
324 |
-
// } elseif (!array_key_exists('mf-listing-optin', $this->fields)) {
|
325 |
-
// $response = $mail_chimp->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
326 |
-
// }
|
327 |
-
|
328 |
-
$response = $get_response->call_api($form_data, ['auth' => $this->form_settings, 'email_name' => $this->email_name]);
|
329 |
-
|
330 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
331 |
-
}
|
332 |
-
}
|
333 |
-
|
334 |
-
// data submit to zapier action and check
|
335 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Zapier')) {
|
336 |
-
if (isset($this->form_settings['mf_zapier']) && $this->form_settings['mf_zapier'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
337 |
-
|
338 |
-
$url = $this->form_settings['mf_zapier_webhook'];
|
339 |
-
|
340 |
-
if (array_key_exists('mf-listing-optin', $this->fields) && isset($form_data['mf-listing-optin'])) {
|
341 |
-
|
342 |
-
$zapier = new \MetForm_Pro\Core\Integrations\Zapier();
|
343 |
-
$response = $zapier->call_webhook($form_data, ['url' => $url, 'email_name' => $this->email_name]);
|
344 |
-
} elseif (!array_key_exists('mf-listing-optin', $this->fields)) {
|
345 |
-
|
346 |
-
$zapier = new \MetForm_Pro\Core\Integrations\Zapier();
|
347 |
-
$response = $zapier->call_webhook($form_data, ['url' => $url, 'email_name' => $this->email_name]);
|
348 |
-
}
|
349 |
-
|
350 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
351 |
-
}
|
352 |
-
}
|
353 |
-
|
354 |
-
// data submit to slack check and action
|
355 |
-
if (class_exists('\MetForm\Core\Integrations\Slack')) {
|
356 |
-
if (isset($this->form_settings['mf_slack']) && $this->form_settings['mf_slack'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
357 |
-
|
358 |
-
$url = $this->form_settings['mf_slack_webhook'];
|
359 |
-
|
360 |
-
//$this->response->data['slack_hook'] = $url;
|
361 |
-
|
362 |
-
if (array_key_exists('mf-listing-optin', $this->fields) && isset($form_data['mf-listing-optin'])) {
|
363 |
-
|
364 |
-
$slack = new \MetForm\Core\Integrations\Slack();
|
365 |
-
$response = $slack->call_webhook($form_data, ['url' => $url, 'email_name' => $this->email_name]);
|
366 |
-
} elseif (!array_key_exists('mf-listing-optin', $this->fields)) {
|
367 |
-
|
368 |
-
$slack = new \MetForm\Core\Integrations\Slack();
|
369 |
-
$response = $slack->call_webhook($form_data, ['url' => $url, 'email_name' => $this->email_name]);
|
370 |
-
}
|
371 |
-
|
372 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
373 |
-
}
|
374 |
-
}
|
375 |
-
|
376 |
-
/**
|
377 |
-
* Checking if convertKit is exists
|
378 |
-
* If exists calling the api
|
379 |
-
*/
|
380 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Convert_Kit')) {
|
381 |
-
if (isset($this->form_settings['mf_convert_kit']) && $this->form_settings['mf_convert_kit'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
382 |
-
|
383 |
-
$cKit = new \MetForm_Pro\Core\Integrations\Convert_Kit(false);
|
384 |
-
|
385 |
-
$response = $cKit->call_api($form_data, ['mail_settings' => $this->form_settings, 'email_name' => $this->email_name]);
|
386 |
-
|
387 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
388 |
-
}
|
389 |
-
}
|
390 |
-
|
391 |
-
/*
|
392 |
-
* Aweber integration
|
393 |
-
*
|
394 |
-
*/
|
395 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Aweber')) {
|
396 |
-
if (isset($this->form_settings['mf_mail_aweber']) && $this->form_settings['mf_mail_aweber'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
397 |
-
|
398 |
-
$aweber = new \MetForm_Pro\Core\Integrations\Aweber(false);
|
399 |
-
|
400 |
-
$response = $aweber->call_api($form_data, ['mail_settings' => $this->form_settings, 'email_name' => $this->email_name]);
|
401 |
-
|
402 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
403 |
-
}
|
404 |
-
}
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
if (defined('MAILPOET_VERSION') && class_exists('\MetForm_Pro\Core\Integrations\Mail_Poet')) {
|
409 |
-
if (isset($this->form_settings['mf_mail_poet']) && $this->form_settings['mf_mail_poet'] == '1' && $this->email_name != null && $form_data[$this->email_name] != '') {
|
410 |
-
|
411 |
-
$mPoet = new \MetForm_Pro\Core\Integrations\Mail_Poet(false);
|
412 |
-
|
413 |
-
$response = $mPoet->call_api($form_data, ['mail_settings' => $this->form_settings, 'email_name' => $this->email_name]);
|
414 |
-
|
415 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
416 |
-
}
|
417 |
-
}
|
418 |
-
|
419 |
-
// file upload check and action
|
420 |
-
$file_input_names = $this->get_input_name_by_widget_type('mf-file-upload');
|
421 |
-
|
422 |
-
if ((!empty($file_data)) && ($file_input_names != null)) {
|
423 |
-
$this->upload_file($file_data, $file_input_names);
|
424 |
-
}
|
425 |
-
|
426 |
-
// sanitize form submitted data
|
427 |
-
$this->sanitize($form_data);
|
428 |
-
|
429 |
-
//set submitted data array and key to a class
|
430 |
-
$all_data = !empty($this->form_data) && is_array($this->form_data) ? $this->form_data : [];
|
431 |
-
|
432 |
-
if (isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1) {
|
433 |
-
|
434 |
-
$defaults = [
|
435 |
-
'post_title' => '',
|
436 |
-
'post_status' => 'draft',
|
437 |
-
'post_content' => '',
|
438 |
-
'post_type' => $this->post_type,
|
439 |
-
];
|
440 |
-
|
441 |
-
$this->entry_id = wp_insert_post($defaults);
|
442 |
-
|
443 |
-
update_post_meta($this->entry_id, 'mf_page_id', $page_id);
|
444 |
-
|
445 |
-
$all_data = array_merge($all_data, ['mf_id' => $this->entry_id, 'mf_form_name' => $this->title]);
|
446 |
-
}
|
447 |
-
|
448 |
-
Metform_Shortcode::instance()->set_values($all_data);
|
449 |
-
|
450 |
-
// Store data in database
|
451 |
-
$this->store($form_id, $this->form_data);
|
452 |
-
|
453 |
-
// data submit to a rest api check and action
|
454 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Rest_Api') && isset($this->form_settings['mf_rest_api']) && ($this->form_settings['mf_rest_api_url'] != '')) {
|
455 |
-
$url = $this->form_settings['mf_rest_api_url'];
|
456 |
-
$method = $this->form_settings['mf_rest_api_method'];
|
457 |
-
$rest_api = new \MetForm_Pro\Core\Integrations\Rest_Api();
|
458 |
-
$response = $rest_api->call_api(
|
459 |
-
[
|
460 |
-
'entries' => json_encode($this->form_data),
|
461 |
-
'entry_id' => (($this->entry_id != null) ? $this->entry_id : ''),
|
462 |
-
'form_id' => $form_data['id'],
|
463 |
-
'version' => \MetForm\Plugin::instance()->version(),
|
464 |
-
],
|
465 |
-
[
|
466 |
-
'url' => $url,
|
467 |
-
'method' => $method,
|
468 |
-
]
|
469 |
-
);
|
470 |
-
$this->response->status = isset($response['status']) ? $response['status'] : 0;
|
471 |
-
}
|
472 |
-
|
473 |
-
// send confirmation email to user
|
474 |
-
if (isset($this->form_settings['enable_user_notification']) && $this->form_settings['enable_user_notification'] == 1) {
|
475 |
-
|
476 |
-
$this->send_user_email($this->form_data, $this->file_upload_info);
|
477 |
-
}
|
478 |
-
|
479 |
-
// send notification email to admins
|
480 |
-
if (isset($this->form_settings['enable_admin_notification']) && $this->form_settings['enable_admin_notification'] == 1) {
|
481 |
-
|
482 |
-
$this->send_admin_email($this->form_data, $this->file_upload_info);
|
483 |
-
}
|
484 |
-
|
485 |
-
$this->response->data['message'] = isset($this->form_settings['success_message']) ? $this->form_settings['success_message'] : '';
|
486 |
-
|
487 |
-
$paymet_method = $this->get_input_name_by_widget_type('mf-payment-method');
|
488 |
-
|
489 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal') && isset($this->form_settings['mf_paypal']) && isset($this->form_settings['mf_paypal_email']) && ($this->form_settings['mf_paypal_email'] != '') && ($paymet_method[0] != null)) {
|
490 |
-
if (isset($this->form_data[$paymet_method[0]]) && $this->form_data[$paymet_method[0]] == 'paypal') {
|
491 |
-
update_post_meta($this->entry_id, $this->key_payment_status, 'unpaid');
|
492 |
-
$rest_url = get_rest_url(null, 'metform/v1/entries/');
|
493 |
-
$this->response->data['redirect_to'] = $rest_url . "paypal/pay?entry_id=" . $this->entry_id;
|
494 |
-
$this->response->data['message'] = $this->form_settings['success_message'] . esc_html__(' Please wait... Redirecting to paypal.', 'metform');
|
495 |
-
}
|
496 |
-
}
|
497 |
-
|
498 |
-
if(!isset($paymet_method[0])){
|
499 |
-
$paymet_method[0] = null;
|
500 |
-
}
|
501 |
-
|
502 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe') && ($paymet_method[0] != null)) {
|
503 |
-
if (isset($this->form_data[$paymet_method[0]]) && $this->form_data[$paymet_method[0]] == 'stripe') {
|
504 |
-
update_post_meta($this->entry_id, $this->key_payment_status, 'unpaid');
|
505 |
-
|
506 |
-
$payment_widget_name = \MetForm\Core\Entries\Action::instance()->get_input_name_by_widget_type('mf-payment-method', $this->fields);
|
507 |
-
$widget = is_array($payment_widget_name) ? current($payment_widget_name) : '';
|
508 |
-
|
509 |
-
$amount_filed = isset($this->fields[$widget]->mf_input_payment_field_name) ? $this->fields[$widget]->mf_input_payment_field_name : '';
|
510 |
-
$amount = isset($this->form_data[$amount_filed]) ? $this->form_data[$amount_filed] : 0;
|
511 |
-
|
512 |
-
//$this->response->data['payment_method'] = $this->form_data[$paymet_method[0]];
|
513 |
-
|
514 |
-
$icon_url = !empty($this->form_settings['mf_stripe_image_url']) ? $this->form_settings['mf_stripe_image_url'] : 'https://stripe.com/img/documentation/checkout/marketplace.png';
|
515 |
-
|
516 |
-
// set key for check payment
|
517 |
-
$livekey = isset($this->form_settings['mf_stripe_live_publishiable_key']) ? $this->form_settings['mf_stripe_live_publishiable_key'] : '';
|
518 |
-
$livekey_test = isset($this->form_settings['mf_stripe_test_publishiable_key']) ? $this->form_settings['mf_stripe_test_publishiable_key'] : '';
|
519 |
-
$sandbox = isset($this->form_settings['mf_stripe_sandbox']) ? true : false;
|
520 |
-
|
521 |
-
$live_keys = ($sandbox) ? $livekey_test : $livekey;
|
522 |
-
|
523 |
-
$payment['name_post'] = $this->form_settings['form_title'];
|
524 |
-
$payment['description'] = $this->form_id;
|
525 |
-
$payment['amount'] = $amount;
|
526 |
-
$payment['currency_code'] = 'USD';
|
527 |
-
$payment['keys'] = $live_keys;
|
528 |
-
$payment['image_url'] = $icon_url;
|
529 |
-
$payment['entry_id'] = $this->entry_id;
|
530 |
-
$payment['form_id'] = $this->form_id;
|
531 |
-
$payment['sandbox'] = $sandbox;
|
532 |
-
|
533 |
-
$this->response->data['payment_data'] = (object) $payment;
|
534 |
-
$rest_url = get_rest_url(null, 'metform/v1/entries/');
|
535 |
-
$this->response->data['ajax_stripe'] = $rest_url . "stripe/pay?entry_id=" . $this->entry_id;
|
536 |
-
$this->response->data['message'] = $this->form_settings['success_message'] . esc_html__(' Please wait... Open a Stripe Popup Box.', 'metform');
|
537 |
-
}
|
538 |
-
}
|
539 |
-
|
540 |
-
/**
|
541 |
-
* Woocommerce
|
542 |
-
*/
|
543 |
-
|
544 |
-
if(class_exists('WooCommerce')){
|
545 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Ecommerce\Woocommerce\Pay')){
|
546 |
-
|
547 |
-
$woo_pay = new \MetForm_Pro\Core\Integrations\Ecommerce\Woocommerce\Pay();
|
548 |
-
$woo_pay->action($form_data, $this->entry_id);
|
549 |
-
}
|
550 |
-
}
|
551 |
-
|
552 |
-
/**
|
553 |
-
* Post submission
|
554 |
-
*/
|
555 |
-
|
556 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Post\Form_To_Post\Post')){
|
557 |
-
if(isset($this->form_settings['mf_form_to_post']) && $this->form_settings['mf_form_to_post'] == 1){
|
558 |
-
$post_submission = new \MetForm_Pro\Core\Integrations\Post\Form_To_Post\Post();
|
559 |
-
$post_submission->create_post(
|
560 |
-
$form_data ,
|
561 |
-
$this->form_settings ,
|
562 |
-
$this->form_id,
|
563 |
-
$this->entry_id ,
|
564 |
-
$this->file_upload_info
|
565 |
-
);
|
566 |
-
}
|
567 |
-
}
|
568 |
-
return $this->response;
|
569 |
-
}
|
570 |
-
|
571 |
-
public function validate_form_data($form_data)
|
572 |
-
{
|
573 |
-
|
574 |
-
$field_count = 0;
|
575 |
-
$errors = 0;
|
576 |
-
|
577 |
-
foreach ($form_data as $key => $value) {
|
578 |
-
if (!is_array($value)) {
|
579 |
-
$field_count++;
|
580 |
-
$min = ((isset($this->fields[$key]->mf_input_min_length) && $this->fields[$key]->mf_input_min_length != '') ? $this->fields[$key]->mf_input_min_length : '');
|
581 |
-
$max = ((isset($this->fields[$key]->mf_input_max_length) && $this->fields[$key]->mf_input_max_length != '') ? $this->fields[$key]->mf_input_max_length : '');
|
582 |
-
$validation_type = ((isset($this->fields[$key]->mf_input_validation_type) && $this->fields[$key]->mf_input_validation_type != '') ? $this->fields[$key]->mf_input_validation_type : 'none');
|
583 |
-
$expression = ((isset($this->fields[$key]->mf_input_validation_expression) && $this->fields[$key]->mf_input_validation_expression != '') ? $this->fields[$key]->mf_input_validation_expression : '');
|
584 |
-
$type = str_replace(['by_', '_length'], '', $validation_type);
|
585 |
-
$str_length = '';
|
586 |
-
|
587 |
-
if($validation_type == 'by_word_length'){
|
588 |
-
$str_length = str_word_count($value);
|
589 |
-
} else if($validation_type == 'by_character_length'){
|
590 |
-
$str_length = strlen($value);
|
591 |
-
if($this->fields[$key]->widgetType === 'mf-number'){
|
592 |
-
$str_length = $value;
|
593 |
-
}
|
594 |
-
}
|
595 |
-
|
596 |
-
if ((!in_array($validation_type, ['none', 'by_expresssion_based'])) && ($min != '') && ($min > $str_length)) {
|
597 |
-
$errors++;
|
598 |
-
$this->response->status = 0;
|
599 |
-
$this->response->error[] = esc_html((($this->fields[$key]->mf_input_label != '') ? $this->fields[$key]->mf_input_label : $key) . " minimum input " . $min . " " . $type);
|
600 |
-
}
|
601 |
-
if ((!in_array($validation_type, ['none', 'by_expresssion_based'])) && ($max != '') && ($max < $str_length)) {
|
602 |
-
$errors++;
|
603 |
-
$this->response->status = 0;
|
604 |
-
$this->response->error[] = esc_html((($this->fields[$key]->mf_input_label != '') ? $this->fields[$key]->mf_input_label : $key) . " maximum input " . $max . " " . $type);
|
605 |
-
}
|
606 |
-
if (($validation_type == 'by_expresssion_based') && ($expression != '') && (!preg_match("/" . $expression . "/", $value))) {
|
607 |
-
$errors++;
|
608 |
-
$this->response->status = 0;
|
609 |
-
$this->response->error[] = esc_html((($this->fields[$key]->mf_input_label != '') ? $this->fields[$key]->mf_input_label : $key) . " input criteria is not matched.");
|
610 |
-
}
|
611 |
-
}
|
612 |
-
}
|
613 |
-
|
614 |
-
return (($errors > 0) ? false : true);
|
615 |
-
}
|
616 |
-
|
617 |
-
public function store($form_id, $form_data)
|
618 |
-
{
|
619 |
-
$this->form_id = $form_id;
|
620 |
-
//$this->sanitize($form_data);
|
621 |
-
|
622 |
-
if (isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1) {
|
623 |
-
$this->insert();
|
624 |
-
}
|
625 |
-
}
|
626 |
-
|
627 |
-
private function insert()
|
628 |
-
{
|
629 |
-
|
630 |
-
$form_settings = $this->form_settings;
|
631 |
-
$form_id = $this->form_id;
|
632 |
-
|
633 |
-
$this->form_settings['entry_title'] = (isset($this->form_settings['entry_title']) ? $this->form_settings['entry_title'] : 'Entry # [mf_id]');
|
634 |
-
|
635 |
-
$update = array(
|
636 |
-
'ID' => $this->entry_id,
|
637 |
-
'post_title' => Metform_Shortcode::instance()->get_process_shortcode($this->form_settings['entry_title']),
|
638 |
-
'post_status' => 'publish',
|
639 |
-
'post_content' => '',
|
640 |
-
);
|
641 |
-
|
642 |
-
wp_update_post($update);
|
643 |
-
|
644 |
-
$this->response->data['form_id'] = $form_id;
|
645 |
-
$this->response->data['entry_id'] = $this->entry_id;
|
646 |
-
|
647 |
-
$entry_count = $this->get_entry_count();
|
648 |
-
$entry_count++;
|
649 |
-
|
650 |
-
update_post_meta($form_id, $this->key_form_total_entries, $entry_count);
|
651 |
-
update_post_meta($this->entry_id, $this->key_form_id, $form_id);
|
652 |
-
update_post_meta($this->entry_id, $this->key_form_data, $this->form_data);
|
653 |
-
|
654 |
-
update_post_meta($this->entry_id, $this->key_form_file, $this->file_upload_info);
|
655 |
-
|
656 |
-
if (isset($form_settings['capture_user_browser_data']) && $form_settings['capture_user_browser_data'] == '1') {
|
657 |
-
update_post_meta($this->entry_id, $this->key_browser_data, $this->get_browser_data());
|
658 |
-
$this->response->status = 1;
|
659 |
-
}
|
660 |
-
|
661 |
-
$this->response->status = 1;
|
662 |
-
$this->response->data['store'] = $this->form_data;
|
663 |
-
}
|
664 |
-
|
665 |
-
private function update()
|
666 |
-
{
|
667 |
-
|
668 |
-
update_post_meta($this->entry_id, $this->key_form_id, $this->form_id);
|
669 |
-
update_post_meta($this->entry_id, $this->key_form_data, $this->form_data);
|
670 |
-
|
671 |
-
$this->response->status = 1;
|
672 |
-
}
|
673 |
-
|
674 |
-
public function send_user_email($form_data, $file_info)
|
675 |
-
{
|
676 |
-
|
677 |
-
$user_mail = (isset($form_data[$this->email_name]) ? $form_data[$this->email_name] : null);
|
678 |
-
$subject = isset($this->form_settings['user_email_subject']) ? $this->form_settings['user_email_subject'] : get_bloginfo('name');
|
679 |
-
$from = isset($this->form_settings['user_email_from']) ? $this->form_settings['user_email_from'] : null;
|
680 |
-
$reply_to = isset($this->form_settings['user_email_reply_to']) ? $this->form_settings['user_email_reply_to'] : null;
|
681 |
-
$body = nl2br(isset($this->form_settings['user_email_body']) ? $this->form_settings['user_email_body'] : null);
|
682 |
-
$user_email_attached_submision_copy = isset($this->form_settings['user_email_attach_submission_copy']) ? $this->form_settings['user_email_attach_submission_copy'] : null;
|
683 |
-
|
684 |
-
//replace data from shortcode
|
685 |
-
$body = Metform_Shortcode::instance()->get_process_shortcode($body);
|
686 |
-
$reply_to = Metform_Shortcode::instance()->get_process_shortcode($reply_to);
|
687 |
-
$subject = Metform_Shortcode::instance()->get_process_shortcode($subject);
|
688 |
-
|
689 |
-
$body = "<html><body><h2 style='text-align: center;'>" . get_the_title($this->form_id) . "</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
690 |
-
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
691 |
-
$body .= $form_html . "</body></html>";
|
692 |
-
|
693 |
-
$headers = 'MIME-Version: 1.0' . "\r\n";
|
694 |
-
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
|
695 |
-
|
696 |
-
$headers .= 'From: ' . $from . "\r\n" .
|
697 |
-
'Reply-To: ' . $reply_to . "\r\n" .
|
698 |
-
'X-Mailer: PHP/' . phpversion();
|
699 |
-
|
700 |
-
if (!$user_mail) {
|
701 |
-
$this->response->status = 0;
|
702 |
-
$this->response->error[] = esc_html__('Mail not found.', 'metform');
|
703 |
-
} else {
|
704 |
-
$status = wp_mail($user_mail, $subject, $body, $headers);
|
705 |
-
$this->response->status = ($status) ? 1 : 0;
|
706 |
-
}
|
707 |
-
}
|
708 |
-
|
709 |
-
public function send_admin_email($form_data, $file_info)
|
710 |
-
{
|
711 |
-
|
712 |
-
$subject = isset($this->form_settings['admin_email_subject']) ? $this->form_settings['admin_email_subject'] : null;
|
713 |
-
$from = isset($this->form_settings['admin_email_from']) ? $this->form_settings['admin_email_from'] : null;
|
714 |
-
$reply_to = isset($this->form_settings['admin_email_reply_to']) ? $this->form_settings['admin_email_reply_to'] : null;
|
715 |
-
$body = nl2br(isset($this->form_settings['admin_email_body']) ? $this->form_settings['admin_email_body'] : null);
|
716 |
-
$admin_email_attached_submision_copy = isset($this->form_settings['admin_email_attach_submission_copy']) ? $this->form_settings['admin_email_attach_submission_copy'] : null;
|
717 |
-
|
718 |
-
//replace data from shortcode
|
719 |
-
$body = Metform_Shortcode::instance()->get_process_shortcode($body);
|
720 |
-
$from = Metform_Shortcode::instance()->get_process_shortcode($from);
|
721 |
-
$reply_to = Metform_Shortcode::instance()->get_process_shortcode($reply_to);
|
722 |
-
$subject = Metform_Shortcode::instance()->get_process_shortcode($subject);
|
723 |
-
|
724 |
-
$body = "<html><body><h2 style='text-align: center;'>" . get_the_title($this->form_id) . "</h2><h4 style='text-align: center;'>" . $body . "</h4>";
|
725 |
-
$form_html = \MetForm\Core\Entries\Form_Data::format_data_for_mail($this->form_id, $form_data, $file_info);
|
726 |
-
$body .= $form_html;
|
727 |
-
if (isset($this->form_settings['store_entries']) && $this->form_settings['store_entries'] == 1) {
|
728 |
-
$edit_link = get_edit_post_link($this->entry_id);
|
729 |
-
$body .= '<a href="' . $edit_link . '">' . $edit_link . '</a>';
|
730 |
-
}
|
731 |
-
$body .= "</body></html>";
|
732 |
-
|
733 |
-
$headers = 'MIME-Version: 1.0' . "\r\n";
|
734 |
-
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
|
735 |
-
|
736 |
-
$headers .= 'From: ' . $from . "\r\n" .
|
737 |
-
'Reply-To: ' . $reply_to . "\r\n" .
|
738 |
-
'X-Mailer: PHP/' . phpversion();
|
739 |
-
|
740 |
-
$mail = isset($this->form_settings['admin_email_to']) ? $this->form_settings['admin_email_to'] : null;
|
741 |
-
|
742 |
-
if (!$mail) {
|
743 |
-
$this->response->status = 0;
|
744 |
-
$this->response->error[] = esc_html__('Admin mail not found to send email.', 'metform');
|
745 |
-
} else {
|
746 |
-
$admin_email = preg_replace('/\s+/', '', $mail);
|
747 |
-
$admin_emails = explode(",", $admin_email);
|
748 |
-
foreach ($admin_emails as $email) {
|
749 |
-
$status = wp_mail($email, $subject, $body, $headers);
|
750 |
-
}
|
751 |
-
|
752 |
-
$this->response->status = ($status) ? 1 : 0;
|
753 |
-
}
|
754 |
-
}
|
755 |
-
|
756 |
-
public function get_fields($form_id = null)
|
757 |
-
{
|
758 |
-
if ($form_id != null) {
|
759 |
-
$this->form_id = $form_id;
|
760 |
-
}
|
761 |
-
|
762 |
-
$input_widgets = \Metform\Widgets\Manifest::instance()->get_input_widgets();
|
763 |
-
|
764 |
-
$widget_input_data = get_post_meta($this->form_id, '_elementor_data', true);
|
765 |
-
$widget_input_data = json_decode($widget_input_data);
|
766 |
-
|
767 |
-
return Map_El::data($widget_input_data, $input_widgets)->get_el();
|
768 |
-
}
|
769 |
-
|
770 |
-
public function sanitize($form_data, $fields = null)
|
771 |
-
{
|
772 |
-
if ($fields == null) {
|
773 |
-
$fields = $this->fields;
|
774 |
-
}
|
775 |
-
|
776 |
-
foreach ($form_data as $key => $value) {
|
777 |
-
|
778 |
-
if (isset($fields[$key])) {
|
779 |
-
$this->form_data[$key] = $value;
|
780 |
-
}
|
781 |
-
}
|
782 |
-
|
783 |
-
$repeaters = $this->get_input_name_by_widget_type('mf-simple-repeater');
|
784 |
-
|
785 |
-
$repeaters = (is_array($repeaters) ? $repeaters : []);
|
786 |
-
|
787 |
-
foreach ($repeaters as $repeater) {
|
788 |
-
$repeater_process_data = $this->process_repeater_data($this->form_data[$repeater]);
|
789 |
-
$this->form_data[$repeater] = $repeater_process_data;
|
790 |
-
}
|
791 |
-
}
|
792 |
-
|
793 |
-
public function upload_file($file_data, $file_input_names)
|
794 |
-
{
|
795 |
-
|
796 |
-
foreach ($file_input_names as $i => $input_name) {
|
797 |
-
// initial upload status, status use as array for multiple file
|
798 |
-
$upload[$input_name]['status'] = false;
|
799 |
-
// empty file upload check by file name
|
800 |
-
if ($file_data[$input_name]['name'] != '') {
|
801 |
-
$file_data[$input_name]['name'] = time() . "-" . $file_data[$input_name]['name'];
|
802 |
-
$upload[$input_name] = wp_upload_bits($file_data[$input_name]['name'], null, file_get_contents($file_data[$input_name]['tmp_name']), time());
|
803 |
-
// status updated as true if file uploaded
|
804 |
-
$upload[$input_name]['status'] = true;
|
805 |
-
} else {
|
806 |
-
// status updated as false for showing file not uploaded
|
807 |
-
$upload[$input_name]['status'] = false;
|
808 |
-
}
|
809 |
-
if (isset($upload['error']) && $upload['error'] != 0) {
|
810 |
-
$this->response->status = 0;
|
811 |
-
$this->response->error[] = esc_html__('There was an error uploading your file. The error is: ', 'metform') . $upload['error'];
|
812 |
-
} else {
|
813 |
-
$this->file_upload_info = $upload;
|
814 |
-
$this->response->status = 1;
|
815 |
-
}
|
816 |
-
}
|
817 |
-
}
|
818 |
-
|
819 |
-
/**
|
820 |
-
* Converting an png image string to png image file.
|
821 |
-
*
|
822 |
-
* @param $input
|
823 |
-
* @param $b64string
|
824 |
-
*
|
825 |
-
* @return array
|
826 |
-
*/
|
827 |
-
public function covert_base64_to_png($input, $b64string)
|
828 |
-
{
|
829 |
-
$status = [];
|
830 |
-
|
831 |
-
$upload_dir = wp_upload_dir();
|
832 |
-
$upload_path = $upload_dir['path'];
|
833 |
-
$upload_url = $upload_dir['url'];
|
834 |
-
|
835 |
-
$bin = str_replace('data:image/png;base64,', '', $b64string, $ct);
|
836 |
-
|
837 |
-
$decoded = base64_decode($bin);
|
838 |
-
|
839 |
-
$img_name = '/' . $input . time() . '.png';
|
840 |
-
|
841 |
-
$img_file = $upload_path . $img_name;
|
842 |
-
$img_url = $upload_url . $img_name;
|
843 |
-
|
844 |
-
$img = file_put_contents($img_file, $decoded);
|
845 |
-
|
846 |
-
if ($img) {
|
847 |
-
$status['status'] = true;
|
848 |
-
$status['url'] = $img_url;
|
849 |
-
} else {
|
850 |
-
$status['status'] = false;
|
851 |
-
}
|
852 |
-
|
853 |
-
return $status;
|
854 |
-
}
|
855 |
-
|
856 |
-
public function get_entry_count($form_id = null)
|
857 |
-
{
|
858 |
-
|
859 |
-
if ($form_id != null) {
|
860 |
-
$this->form_id = $form_id;
|
861 |
-
}
|
862 |
-
global $wpdb;
|
863 |
-
$entry_count = $wpdb->get_results(" SELECT COUNT( `post_id` ) as `count` FROM `" . $wpdb->prefix . "postmeta` WHERE `meta_key` LIKE 'metform_entries__form_id' AND `meta_value` = $this->form_id ", OBJECT);
|
864 |
-
|
865 |
-
$entry_count = $entry_count[0]->count;
|
866 |
-
|
867 |
-
$this->entry_count = $entry_count;
|
868 |
-
|
869 |
-
return $entry_count;
|
870 |
-
}
|
871 |
-
|
872 |
-
public function get_browser_data()
|
873 |
-
{
|
874 |
-
|
875 |
-
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
|
876 |
-
$ip = sanitize_text_field($_SERVER['HTTP_CLIENT_IP']);
|
877 |
-
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
|
878 |
-
$ip = sanitize_text_field($_SERVER['HTTP_X_FORWARDED_FOR']);
|
879 |
-
} else {
|
880 |
-
$ip = sanitize_text_field($_SERVER['REMOTE_ADDR']);
|
881 |
-
}
|
882 |
-
|
883 |
-
$user_agent = sanitize_text_field($_SERVER['HTTP_USER_AGENT']);
|
884 |
-
|
885 |
-
return [
|
886 |
-
'IP' => $ip,
|
887 |
-
'User_Agent' => $user_agent,
|
888 |
-
];
|
889 |
-
}
|
890 |
-
|
891 |
-
public function get_input_name_by_widget_type($widget_type, $fields = null)
|
892 |
-
{
|
893 |
-
global $w;
|
894 |
-
if ($fields != null) {
|
895 |
-
$this->fields = $fields;
|
896 |
-
}
|
897 |
-
$response = [];
|
898 |
-
|
899 |
-
$w = $widget_type;
|
900 |
-
$files = array_values(array_filter($this->fields, function ($v) {
|
901 |
-
global $w;
|
902 |
-
if ($v->widgetType == $w) {
|
903 |
-
return $v;
|
904 |
-
}
|
905 |
-
}));
|
906 |
-
foreach ($files as $file) {
|
907 |
-
$response[] = $file->mf_input_name;
|
908 |
-
}
|
909 |
-
|
910 |
-
if (!empty($response)) {
|
911 |
-
return $response;
|
912 |
-
} else {
|
913 |
-
return null;
|
914 |
-
}
|
915 |
-
}
|
916 |
-
|
917 |
-
public function process_repeater_data($repeater_data)
|
918 |
-
{
|
919 |
-
$data = [];
|
920 |
-
if (is_array($repeater_data)) {
|
921 |
-
foreach ($repeater_data as $index => $value) {
|
922 |
-
if (is_array($value)) {
|
923 |
-
foreach ($value as $input_name => $input_value) {
|
924 |
-
$proc_key = $input_name . "-" . ($index + 1);
|
925 |
-
if (is_array($input_value)) {
|
926 |
-
$data[$proc_key] = implode(', ', $input_value);
|
927 |
-
} else {
|
928 |
-
$data[$proc_key] = $input_value;
|
929 |
-
}
|
930 |
-
}
|
931 |
-
}
|
932 |
-
}
|
933 |
-
}
|
934 |
-
|
935 |
-
return $data;
|
936 |
-
}
|
937 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/api.php
DELETED
@@ -1,139 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Entries;
|
4 |
-
|
5 |
-
use MetForm\Core\Integrations\Get_Response;
|
6 |
-
use MetForm\Core\Integrations\Mail_Chimp;
|
7 |
-
|
8 |
-
defined('ABSPATH') || exit;
|
9 |
-
|
10 |
-
class Api extends \MetForm\Base\Api
|
11 |
-
{
|
12 |
-
|
13 |
-
public function config()
|
14 |
-
{
|
15 |
-
$this->prefix = 'entries';
|
16 |
-
$this->param = "/(?P<id>\w+)";
|
17 |
-
}
|
18 |
-
|
19 |
-
public function post_insert()
|
20 |
-
{
|
21 |
-
/**
|
22 |
-
* Get page id
|
23 |
-
*/
|
24 |
-
|
25 |
-
$url = wp_get_referer();
|
26 |
-
$post_id = url_to_postid($url);
|
27 |
-
$post_id;
|
28 |
-
|
29 |
-
$id = $this->request['id'];
|
30 |
-
|
31 |
-
$form_data = $this->request->get_params();
|
32 |
-
|
33 |
-
$file_data = $this->request->get_file_params();
|
34 |
-
|
35 |
-
return Action::instance()->submit($id, $form_data, $file_data,$post_id);
|
36 |
-
}
|
37 |
-
|
38 |
-
public function get_export()
|
39 |
-
{
|
40 |
-
|
41 |
-
$id = $this->request['id'];
|
42 |
-
|
43 |
-
return Export::instance()->export_data($id);
|
44 |
-
}
|
45 |
-
|
46 |
-
public function get_get_response_list_id()
|
47 |
-
{
|
48 |
-
$post_id = $this->request['id'];
|
49 |
-
return get_option('wpmet_get_response_list_' . $post_id);
|
50 |
-
}
|
51 |
-
|
52 |
-
public function get_paypal()
|
53 |
-
{
|
54 |
-
|
55 |
-
$args = [
|
56 |
-
'method' => (isset($this->request['action']) ? $this->request['action'] : ''),
|
57 |
-
'action' => (isset($this->request['id']) ? $this->request['id'] : ''),
|
58 |
-
'entry_id' => (isset($this->request['entry_id']) ? $this->request['entry_id'] : ''),
|
59 |
-
];
|
60 |
-
|
61 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')) {
|
62 |
-
return \MetForm_Pro\Core\Integrations\Payment\Paypal::instance()->init($args, $this->request);
|
63 |
-
}
|
64 |
-
return 'Pro needed';
|
65 |
-
}
|
66 |
-
|
67 |
-
public function get_stripe()
|
68 |
-
{
|
69 |
-
$args = [
|
70 |
-
'method' => (isset($this->request['action']) ? $this->request['action'] : ''),
|
71 |
-
'action' => (isset($this->request['id']) ? $this->request['id'] : ''),
|
72 |
-
'entry_id' => (isset($this->request['entry_id']) ? $this->request['entry_id'] : ''),
|
73 |
-
'token' => (isset($this->request['token']) ? $this->request['token'] : ''),
|
74 |
-
];
|
75 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) {
|
76 |
-
return \MetForm_Pro\Core\Integrations\Payment\Stripe::instance()->init($args);
|
77 |
-
}
|
78 |
-
return 'Pro needed';
|
79 |
-
}
|
80 |
-
|
81 |
-
public function get_views()
|
82 |
-
{
|
83 |
-
return $this->request->get_params();
|
84 |
-
}
|
85 |
-
|
86 |
-
public function get_get_response_list()
|
87 |
-
{
|
88 |
-
$post_id = $this->request['id'];
|
89 |
-
return get_option('wpmet_get_response_list_' . $post_id);
|
90 |
-
}
|
91 |
-
|
92 |
-
public function get_store_get_response_list()
|
93 |
-
{
|
94 |
-
|
95 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')) {
|
96 |
-
|
97 |
-
$post_id = $this->request['id'];
|
98 |
-
$data = \MetForm\Core\Forms\Action::instance()->get_all_data($post_id);
|
99 |
-
$api_key = isset($data['mf_get_reponse_api_key']) ? $data['mf_get_reponse_api_key'] : null;
|
100 |
-
|
101 |
-
$get_response_list = \MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response::get_list($api_key);
|
102 |
-
|
103 |
-
delete_option('wpmet_get_response_list_' . $post_id, $get_response_list);
|
104 |
-
update_option('wpmet_get_response_list_' . $post_id, $get_response_list);
|
105 |
-
|
106 |
-
return get_option('wpmet_get_response_list_' . $post_id);
|
107 |
-
}
|
108 |
-
|
109 |
-
return 'error';
|
110 |
-
}
|
111 |
-
|
112 |
-
public function get_get_mailchimp_list()
|
113 |
-
{
|
114 |
-
$post_id = $this->request['id'];
|
115 |
-
return get_option('wpmet_get_mailchimp_list_' . $post_id);
|
116 |
-
}
|
117 |
-
|
118 |
-
public function get_store_mailchimp_list()
|
119 |
-
{
|
120 |
-
|
121 |
-
$post_id = $this->request['id'];
|
122 |
-
$data = \MetForm\Core\Forms\Action::instance()->get_all_data($post_id);
|
123 |
-
$api_key = $data['mf_mailchimp_api_key'];
|
124 |
-
|
125 |
-
$mailChimp_list = json_decode(Mail_Chimp::get_list($api_key)['body']);
|
126 |
-
|
127 |
-
delete_option('wpmet_get_mailchimp_list_' . $post_id, $mailChimp_list);
|
128 |
-
update_option('wpmet_get_mailchimp_list_' . $post_id, $mailChimp_list);
|
129 |
-
|
130 |
-
// return $mailChimp_list;
|
131 |
-
return get_option('wpmet_get_mailchimp_list_' . $post_id, $mailChimp_list);
|
132 |
-
}
|
133 |
-
|
134 |
-
public function get_test()
|
135 |
-
{
|
136 |
-
|
137 |
-
}
|
138 |
-
|
139 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/base.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Entries;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Base{
|
6 |
-
|
7 |
-
use \MetForm\Traits\Singleton;
|
8 |
-
|
9 |
-
public $cpt;
|
10 |
-
|
11 |
-
public $api;
|
12 |
-
|
13 |
-
public $meta_data;
|
14 |
-
|
15 |
-
public function __construct(){
|
16 |
-
Hooks::instance();
|
17 |
-
$this->cpt = new Cpt();
|
18 |
-
$this->api = new Api();
|
19 |
-
$this->meta_data = new Meta_Data();
|
20 |
-
|
21 |
-
}
|
22 |
-
|
23 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/cpt.php
DELETED
@@ -1,73 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Entries;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Cpt extends \MetForm\Base\Cpt {
|
6 |
-
|
7 |
-
public function get_name(){
|
8 |
-
return 'metform-entry';
|
9 |
-
}
|
10 |
-
|
11 |
-
public function post_type()
|
12 |
-
{
|
13 |
-
$labels = array(
|
14 |
-
'name' => esc_html_x( 'Entries', 'Post Type General Name', 'metform' ),
|
15 |
-
'singular_name' => esc_html_x( 'Entry', 'Post Type Singular Name', 'metform' ),
|
16 |
-
'menu_name' => esc_html__( 'Entry', 'metform' ),
|
17 |
-
'name_admin_bar' => esc_html__( 'Entry', 'metform' ),
|
18 |
-
'archives' => esc_html__( 'Entry Archives', 'metform' ),
|
19 |
-
'attributes' => esc_html__( 'Entry Attributes', 'metform' ),
|
20 |
-
'parent_item_colon' => esc_html__( 'Parent Item:', 'metform' ),
|
21 |
-
'all_items' => esc_html__( 'Entries', 'metform' ),
|
22 |
-
'add_new_item' => esc_html__( 'Add New Item', 'metform' ),
|
23 |
-
'add_new' => esc_html__( 'Add New', 'metform' ),
|
24 |
-
'new_item' => esc_html__( 'New Item', 'metform' ),
|
25 |
-
'edit_item' => esc_html__( 'Edit Item', 'metform' ),
|
26 |
-
'update_item' => esc_html__( 'Update Item', 'metform' ),
|
27 |
-
'view_item' => esc_html__( 'View Item', 'metform' ),
|
28 |
-
'view_items' => esc_html__( 'View Items', 'metform' ),
|
29 |
-
'search_items' => esc_html__( 'Search Item', 'metform' ),
|
30 |
-
'not_found' => esc_html__( 'Not found', 'metform' ),
|
31 |
-
'not_found_in_trash' => esc_html__( 'Not found in Trash', 'metform' ),
|
32 |
-
'featured_image' => esc_html__( 'Featured Image', 'metform' ),
|
33 |
-
'set_featured_image' => esc_html__( 'Set featured image', 'metform' ),
|
34 |
-
'remove_featured_image' => esc_html__( 'Remove featured image', 'metform' ),
|
35 |
-
'use_featured_image' => esc_html__( 'Use as featured image', 'metform' ),
|
36 |
-
'insert_into_item' => esc_html__( 'Insert into item', 'metform' ),
|
37 |
-
'uploaded_to_this_item' => esc_html__( 'Uploaded to this item', 'metform' ),
|
38 |
-
'items_list' => esc_html__( 'Form entries list', 'metform' ),
|
39 |
-
'items_list_navigation' => esc_html__( 'Form entries list navigation', 'metform' ),
|
40 |
-
'filter_items_list' => esc_html__( 'Filter from entry list', 'metform' ),
|
41 |
-
);
|
42 |
-
|
43 |
-
$args = array(
|
44 |
-
'label' => esc_html__( 'Form entry', 'metform' ),
|
45 |
-
'description' => esc_html__( 'metform-entry', 'metform' ),
|
46 |
-
'labels' => $labels,
|
47 |
-
'supports' => ['title'],
|
48 |
-
'capabilities' => ['create_posts' => 'do_not_allow'],
|
49 |
-
'map_meta_cap' => true,
|
50 |
-
'hierarchical' => false,
|
51 |
-
'public' => false,
|
52 |
-
'show_ui' => true,
|
53 |
-
'show_in_menu' => "metform-menu",
|
54 |
-
'menu_icon' => 'dashicons-format-aside',
|
55 |
-
'menu_position' => 5,
|
56 |
-
'show_in_admin_bar' => false,
|
57 |
-
'show_in_nav_menus' => false,
|
58 |
-
'can_export' => true,
|
59 |
-
'has_archive' => false,
|
60 |
-
'publicly_queryable' => false,
|
61 |
-
'rewrite' => false,
|
62 |
-
'query_var' => true,
|
63 |
-
'exclude_from_search' => true,
|
64 |
-
'capability_type' => 'page',
|
65 |
-
'show_in_rest' => true,
|
66 |
-
'rest_base' => $this->get_name(),
|
67 |
-
);
|
68 |
-
|
69 |
-
return $args;
|
70 |
-
|
71 |
-
}
|
72 |
-
|
73 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/export.php
DELETED
@@ -1,90 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Entries;
|
4 |
-
|
5 |
-
use MetForm\Traits\Singleton;
|
6 |
-
|
7 |
-
defined('ABSPATH') || exit;
|
8 |
-
|
9 |
-
class Export {
|
10 |
-
|
11 |
-
use Singleton;
|
12 |
-
|
13 |
-
public function export_data($form_id) {
|
14 |
-
|
15 |
-
if( !current_user_can( 'manage_options' ) ){
|
16 |
-
return;
|
17 |
-
}
|
18 |
-
|
19 |
-
$fields = Action::instance()->get_fields($form_id);
|
20 |
-
$title = get_the_title( $form_id );
|
21 |
-
|
22 |
-
global $wpdb;
|
23 |
-
|
24 |
-
$entries = $wpdb->get_results( "SELECT `post_id` FROM `".$wpdb->prefix."postmeta` WHERE `meta_key` = 'metform_entries__form_id' AND `meta_value` = $form_id", OBJECT );
|
25 |
-
$entries = (is_array($entries)) ? $entries : [];
|
26 |
-
$export = [];
|
27 |
-
$header = [];
|
28 |
-
|
29 |
-
foreach($entries as $entry){
|
30 |
-
$entry_modify = [];
|
31 |
-
|
32 |
-
$form_entry = get_post_meta( $entry->post_id, 'metform_entries__form_data', true );
|
33 |
-
$form_entry = (is_array($form_entry) ? $form_entry : []);
|
34 |
-
$file_entry = get_post_meta( $entry->post_id, 'metform_entries__file_upload', true );
|
35 |
-
$file_entry = (is_array($file_entry) ? $file_entry : []);
|
36 |
-
|
37 |
-
$entry_data = array_merge($form_entry, $file_entry);
|
38 |
-
$entry_data = (is_array($entry_data)) ? $entry_data : [] ;
|
39 |
-
|
40 |
-
$entry_modify ['ID'] = $entry->post_id;
|
41 |
-
$header['__id'] = 'ID';
|
42 |
-
|
43 |
-
foreach( $fields as $key => $value ) {
|
44 |
-
$header_key = (($value->mf_input_name != '') ? $value->mf_input_name : $key);
|
45 |
-
$header[$header_key] = empty($value->mf_input_label) ? $key : $value->mf_input_label;
|
46 |
-
|
47 |
-
if($value->widgetType == 'mf-file-upload'){
|
48 |
-
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((isset($entry_data[$key]['url'])) ? $entry_data[$key]['url'] : ' ' ) : ' ' );
|
49 |
-
}else if($value->widgetType == 'mf-simple-repeater'){
|
50 |
-
$data_string = '';
|
51 |
-
if(is_array($entry_data[$key])){
|
52 |
-
foreach( $entry_data[$key] as $key => $value ){
|
53 |
-
$data_string .= $key.": ".$value." \n";
|
54 |
-
}
|
55 |
-
}
|
56 |
-
$entry_modify[$header_key] = $data_string;
|
57 |
-
}else{
|
58 |
-
$entry_modify[$header_key] = (isset($entry_data[$key]) ? ((is_array($entry_data[$key])) ? implode(', ', $entry_data[$key]) : $entry_data[$key]) : ' ' );
|
59 |
-
}
|
60 |
-
}
|
61 |
-
|
62 |
-
$entry_modify ['DATE'] = get_the_date( 'd-m-Y', $entry->post_id );
|
63 |
-
$export[] = $entry_modify;
|
64 |
-
$header['__dt'] = 'DATE';
|
65 |
-
}
|
66 |
-
|
67 |
-
$file_name = $title."-export-".time().".csv";
|
68 |
-
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
|
69 |
-
header('Content-Description: File Transfer');
|
70 |
-
header("Content-type: text/csv");
|
71 |
-
header("Content-Disposition: attachment; filename={$file_name}");
|
72 |
-
header("Expires: 0");
|
73 |
-
header("Pragma: public");
|
74 |
-
$file_pointer = @fopen( 'php://output', 'w' );
|
75 |
-
$csv_header = false;
|
76 |
-
foreach ( $export as $data ) {
|
77 |
-
// Add a header row if it hasn't been added yet
|
78 |
-
if ( !$csv_header ) {
|
79 |
-
// Use the keys from $data as the titles
|
80 |
-
fputcsv($file_pointer, $header);
|
81 |
-
$csv_header = true;
|
82 |
-
}
|
83 |
-
// Put the data into the stream
|
84 |
-
fputcsv($file_pointer, $data);
|
85 |
-
}
|
86 |
-
// Close the file
|
87 |
-
fclose($file_pointer);
|
88 |
-
exit;
|
89 |
-
}
|
90 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/form-data.php
DELETED
@@ -1,146 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Entries;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Form_Data
|
8 |
-
{
|
9 |
-
public static function format_form_data($form_id, $form_data)
|
10 |
-
{
|
11 |
-
$map_data = \MetForm\Core\Entries\Action::instance()->get_fields($form_id);
|
12 |
-
$map_data = json_decode(json_encode($map_data), true);
|
13 |
-
ob_start();
|
14 |
-
?>
|
15 |
-
<div class="metform-entry-data container">
|
16 |
-
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
17 |
-
<tbody>
|
18 |
-
<?php
|
19 |
-
foreach ($map_data as $key => $value) {
|
20 |
-
if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha', 'mf-file-upload'])) {
|
21 |
-
continue;
|
22 |
-
}
|
23 |
-
|
24 |
-
echo "<tr class='mf-data-label'>";
|
25 |
-
echo "<td colspan='2'><strong>" . esc_html(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key) . "</strong></td>";
|
26 |
-
echo "</tr>";
|
27 |
-
echo "<tr class='mf-data-value'>";
|
28 |
-
echo "<td class='mf-value-space'> </td>";
|
29 |
-
|
30 |
-
if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-textarea', 'mf-simple-repeater', 'mf-signature', 'mf-like-dislike'])) {
|
31 |
-
echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
|
32 |
-
}
|
33 |
-
|
34 |
-
if ($value['widgetType'] == 'mf-signature') {
|
35 |
-
echo "<td><img class='signature-img' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
|
36 |
-
}
|
37 |
-
|
38 |
-
if ($value['widgetType'] == 'mf-textarea') {
|
39 |
-
echo "<td><pre style='font:inherit;margin:0;'>" . (isset($form_data[$key]) ? $form_data[$key] : '') . "</pre></td>";
|
40 |
-
}
|
41 |
-
|
42 |
-
if ($value['widgetType'] == 'mf-simple-repeater') {
|
43 |
-
echo "<td>";
|
44 |
-
$repeater_data = ((array_key_exists($key, $form_data)) ? $form_data[$key] : []);
|
45 |
-
foreach ($repeater_data as $k => $v) {
|
46 |
-
echo "<strong>" . esc_html($k) . ": </strong>";
|
47 |
-
echo "<span>" . esc_html($v) . "</span>";
|
48 |
-
echo "<br>";
|
49 |
-
}
|
50 |
-
echo "</td>";
|
51 |
-
}
|
52 |
-
|
53 |
-
if (isset($value['widgetType']) && ($value['widgetType'] == 'mf-like-dislike')) {
|
54 |
-
$like_dislike = (isset($form_data[$key]) ? $form_data[$key] : '');
|
55 |
-
echo "<td>";
|
56 |
-
echo (($like_dislike == '1') ? "<span class='dashicons dashicons-thumbs-up'></span>" : "");
|
57 |
-
echo (($like_dislike == '0') ? "<span class='dashicons dashicons-thumbs-down'></span>" : "");
|
58 |
-
echo "</td>";
|
59 |
-
}
|
60 |
-
|
61 |
-
echo "</tr>";
|
62 |
-
}
|
63 |
-
?>
|
64 |
-
</tbody>
|
65 |
-
</table>
|
66 |
-
</div>
|
67 |
-
<?php
|
68 |
-
$data_html = ob_get_contents();
|
69 |
-
ob_end_clean();
|
70 |
-
return $data_html;
|
71 |
-
}
|
72 |
-
|
73 |
-
public static function format_data_for_mail($form_id, $form_data, $file_info)
|
74 |
-
{
|
75 |
-
$map_data = \MetForm\Core\Entries\Action::instance()->get_fields($form_id);
|
76 |
-
$map_data = json_decode(json_encode($map_data), true);
|
77 |
-
|
78 |
-
//$file_meta_data = get_post_meta( $post_id, 'metform_entries__file_upload', true );
|
79 |
-
|
80 |
-
ob_start();
|
81 |
-
|
82 |
-
?>
|
83 |
-
<div>
|
84 |
-
<table width="100%" cellpadding="5" cellspacing="0" bgcolor="#FFFFFF" style="border: 1px solid #EAF2FA">
|
85 |
-
<tbody>
|
86 |
-
<?php
|
87 |
-
foreach ($map_data as $key => $value) {
|
88 |
-
|
89 |
-
if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha', 'mf-file-upload'])) {
|
90 |
-
continue;
|
91 |
-
}
|
92 |
-
|
93 |
-
echo "<tr bgcolor='#EAF2FA'>";
|
94 |
-
echo "<td colspan='2'><strong>" . esc_html(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key) . "</strong></td>";
|
95 |
-
echo "</tr>";
|
96 |
-
echo "<tr bgcolor='#FFFFFF'>";
|
97 |
-
echo "<td width='20'> </td>";
|
98 |
-
|
99 |
-
if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-textarea', 'mf-simple-repeater', 'mf-signature'])) {
|
100 |
-
echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
|
101 |
-
}
|
102 |
-
|
103 |
-
if ($value['widgetType'] == 'mf-textarea') {
|
104 |
-
echo "<td><pre style='font:inherit;margin:0;'>" . (isset($form_data[$key]) ? $form_data[$key] : '') . "</pre></td>";
|
105 |
-
}
|
106 |
-
|
107 |
-
if ($value['widgetType'] == 'mf-signature') {
|
108 |
-
echo "<td><img width='200' height='100' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
|
109 |
-
}
|
110 |
-
|
111 |
-
if ($value['widgetType'] == 'mf-simple-repeater') {
|
112 |
-
echo "<td>";
|
113 |
-
$repeater_data = ((array_key_exists($key, $form_data)) ? $form_data[$key] : []);
|
114 |
-
foreach ($repeater_data as $key => $value) {
|
115 |
-
echo "<strong>" . esc_html($key) . ": </strong>";
|
116 |
-
echo "<span>" . esc_html($value) . "</span>";
|
117 |
-
echo "<br>";
|
118 |
-
}
|
119 |
-
echo "</td>";
|
120 |
-
}
|
121 |
-
|
122 |
-
echo "</tr>";
|
123 |
-
}
|
124 |
-
|
125 |
-
if (!empty($file_info)) {
|
126 |
-
foreach ($file_info as $key => $file) {
|
127 |
-
echo "<tr bgcolor='#EAF2FA'>";
|
128 |
-
echo "<td colspan='2'><strong>" . esc_html(($map_data[$key]['mf_input_label'] != '') ? $map_data[$key]['mf_input_label'] : $key) . "</strong></td>";
|
129 |
-
echo "</tr>";
|
130 |
-
echo "<tr bgcolor='#FFFFFF'>";
|
131 |
-
echo "<td width='20'> </td>";
|
132 |
-
echo "<td><a href='" . (isset($file['url']) ? $file['url'] : '') . "'>Download</a></td>";
|
133 |
-
echo "</tr>";
|
134 |
-
}
|
135 |
-
}
|
136 |
-
|
137 |
-
?>
|
138 |
-
</tbody>
|
139 |
-
</table>
|
140 |
-
</div>
|
141 |
-
<?php
|
142 |
-
$data_html = ob_get_contents();
|
143 |
-
ob_end_clean();
|
144 |
-
return $data_html;
|
145 |
-
}
|
146 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/hooks.php
DELETED
@@ -1,105 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Entries;
|
3 |
-
|
4 |
-
defined('ABSPATH') || exit;
|
5 |
-
|
6 |
-
class Hooks
|
7 |
-
{
|
8 |
-
use \MetForm\Traits\Singleton;
|
9 |
-
|
10 |
-
public function __construct()
|
11 |
-
{
|
12 |
-
|
13 |
-
add_filter('manage_metform-entry_posts_columns', [$this, 'set_columns']);
|
14 |
-
add_action('manage_metform-entry_posts_custom_column', [$this, 'render_column'], 10, 2);
|
15 |
-
add_filter('parse_query', [$this, 'query_filter']);
|
16 |
-
add_filter('wp_mail_from_name', [$this, 'wp_mail_from']);
|
17 |
-
|
18 |
-
}
|
19 |
-
|
20 |
-
public function set_columns($columns)
|
21 |
-
{
|
22 |
-
|
23 |
-
$date_column = $columns['date'];
|
24 |
-
|
25 |
-
unset($columns['date']);
|
26 |
-
|
27 |
-
$columns['form_name'] = esc_html__('Form Name', 'metform');
|
28 |
-
|
29 |
-
$columns['referral'] = esc_html__('Referral','metform');
|
30 |
-
|
31 |
-
$columns['date'] = esc_html($date_column);
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
return $columns;
|
36 |
-
}
|
37 |
-
|
38 |
-
public function render_column($column, $post_id)
|
39 |
-
{
|
40 |
-
switch ($column) {
|
41 |
-
case 'form_name':
|
42 |
-
$form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
|
43 |
-
$form_name = get_post((int) $form_id);
|
44 |
-
$post_title = (isset($form_name->post_title) ? $form_name->post_title : '');
|
45 |
-
|
46 |
-
global $wp;
|
47 |
-
$current_url = add_query_arg($wp->query_string . "&mf_form_id=" . $form_id, '', home_url($wp->request));
|
48 |
-
|
49 |
-
echo "<a data-metform-form-id=" . esc_attr($form_id) . " class='mf-entry-filter mf-entry-flter-form_id' href=" . esc_url($current_url) . ">" . esc_html($post_title) . "</a>";
|
50 |
-
break;
|
51 |
-
|
52 |
-
case 'referral':
|
53 |
-
$page_id = get_post_meta( $post_id, 'mf_page_id',true );
|
54 |
-
|
55 |
-
global $wp;
|
56 |
-
$current_url = add_query_arg($wp->query_string . "&mf_ref_id=" . $page_id, '', home_url($wp->request));
|
57 |
-
|
58 |
-
echo "<a class='mf-entry-filter mf-entry-flter-form_id' href='" . esc_url($current_url) . "'>".get_the_title($page_id)."</a>";
|
59 |
-
break;
|
60 |
-
}
|
61 |
-
}
|
62 |
-
|
63 |
-
public function query_filter($query)
|
64 |
-
{
|
65 |
-
global $pagenow;
|
66 |
-
$current_page = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
|
67 |
-
|
68 |
-
if (
|
69 |
-
is_admin()
|
70 |
-
&& 'metform-entry' == $current_page
|
71 |
-
&& 'edit.php' == $pagenow
|
72 |
-
&& $query->query_vars['post_type'] == 'metform-entry'
|
73 |
-
&& isset($_GET['mf_form_id'])
|
74 |
-
&& $_GET['mf_form_id'] != 'all'
|
75 |
-
) {
|
76 |
-
$form_id = sanitize_key($_GET['mf_form_id']);
|
77 |
-
$query->query_vars['meta_key'] = 'metform_entries__form_id';
|
78 |
-
$query->query_vars['meta_value'] = $form_id;
|
79 |
-
$query->query_vars['meta_compare'] = '=';
|
80 |
-
}
|
81 |
-
|
82 |
-
if (
|
83 |
-
is_admin()
|
84 |
-
&& 'metform-entry' == $current_page
|
85 |
-
&& 'edit.php' == $pagenow
|
86 |
-
&& $query->query_vars['post_type'] == 'metform-entry'
|
87 |
-
&& isset($_GET['mf_ref_id'])
|
88 |
-
&& $_GET['mf_ref_id'] != 'all'
|
89 |
-
) {
|
90 |
-
$page_id = sanitize_key($_GET['mf_ref_id']);
|
91 |
-
$query->query_vars['meta_key'] = 'mf_page_id';
|
92 |
-
$query->query_vars['meta_value'] = $page_id;
|
93 |
-
$query->query_vars['meta_compare'] = '=';
|
94 |
-
}
|
95 |
-
}
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
public function wp_mail_from($name)
|
101 |
-
{
|
102 |
-
return get_bloginfo('name');
|
103 |
-
}
|
104 |
-
|
105 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/map-el.php
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Entries;
|
3 |
-
|
4 |
-
defined( 'ABSPATH' ) || exit;
|
5 |
-
|
6 |
-
Class Map_El{
|
7 |
-
|
8 |
-
private $_el = [];
|
9 |
-
private $_el_list;
|
10 |
-
|
11 |
-
private static $instance;
|
12 |
-
|
13 |
-
public static function data($data, $el_list) {
|
14 |
-
self::$instance = new self($data, $el_list);
|
15 |
-
return self::$instance;
|
16 |
-
}
|
17 |
-
|
18 |
-
public function __construct($data, $el_list) {
|
19 |
-
$this->_el_list = $el_list;
|
20 |
-
$this->search_el($data);
|
21 |
-
return $this;
|
22 |
-
}
|
23 |
-
|
24 |
-
public function get_el(){
|
25 |
-
return $this->_el;
|
26 |
-
}
|
27 |
-
|
28 |
-
private function search_el($data){
|
29 |
-
if(!is_array($data)) return;
|
30 |
-
|
31 |
-
foreach($data as $k => $v){
|
32 |
-
if(is_array($v->elements) && !empty($v->elements)){
|
33 |
-
$this->search_el($v->elements);
|
34 |
-
}else{
|
35 |
-
if($v->elType == 'widget' && in_array(str_replace('[]','',$v->widgetType), $this->_el_list)){
|
36 |
-
|
37 |
-
if(isset($v->settings->mf_input_name)){
|
38 |
-
$this->_el[$v->settings->mf_input_name] = $v->settings;
|
39 |
-
$this->_el[$v->settings->mf_input_name]->widgetType = $v->widgetType;
|
40 |
-
}else{
|
41 |
-
$this->_el[$v->widgetType] = (object) [
|
42 |
-
'mf_input_label' => ( isset($v->settings->mf_input_label) ? $v->settings->mf_input_label: '' ) ,
|
43 |
-
'mf_input_name' => ( isset($v->widgetType) ? $v->widgetType : '' ),
|
44 |
-
'mf_input_placeholder' => ( isset($v->settings->mf_input_placeholder) ? $v->settings->mf_input_placeholder : '' ),
|
45 |
-
'mf_input_min_length' => ( isset($v->settings->mf_input_min_length) ? $v->settings->mf_input_min_length : '' ),
|
46 |
-
'mf_input_max_length' => ( isset($v->settings->mf_input_max_length) ? $v->settings->mf_input_max_length : '' ),
|
47 |
-
'mf_input_length_type' => ( isset($v->settings->mf_input_length_type) ? $v->settings->mf_input_length_type : '' ),
|
48 |
-
'mf_input_validation_expression' => ( isset($v->settings->mf_input_validation_expression) ? $v->settings->mf_input_validation_expression : '' ),
|
49 |
-
'widgetType' => ( isset($v->widgetType) ? $v->widgetType : '' ),
|
50 |
-
];
|
51 |
-
}
|
52 |
-
}
|
53 |
-
}
|
54 |
-
}
|
55 |
-
}
|
56 |
-
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/meta-data.php
DELETED
@@ -1,304 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Entries;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Meta_Data
|
8 |
-
{
|
9 |
-
|
10 |
-
private $browser_data = null;
|
11 |
-
private $file_meta_data = null;
|
12 |
-
|
13 |
-
private $form_id;
|
14 |
-
private $form_data;
|
15 |
-
private $form_settings;
|
16 |
-
|
17 |
-
private $fields;
|
18 |
-
|
19 |
-
public function __construct()
|
20 |
-
{
|
21 |
-
$this->cpt = new Cpt();
|
22 |
-
add_action('save_post', [$this, 'store_form_data_cmb']);
|
23 |
-
add_action('add_meta_boxes', [$this, 'add_form_id_cmb']);
|
24 |
-
add_action('add_meta_boxes', [$this, 'add_form_data_cmb']);
|
25 |
-
|
26 |
-
add_action('add_meta_boxes', [$this, 'add_browser_data_cmb']);
|
27 |
-
add_action('add_meta_boxes', [$this, 'add_file_upload_cmb']);
|
28 |
-
add_action('add_meta_boxes', [$this, 'add_form_payment_status_cmb']);
|
29 |
-
add_action('add_meta_boxes', [$this, 'add_woo_payment_status_cmb']);
|
30 |
-
}
|
31 |
-
|
32 |
-
function add_form_id_cmb()
|
33 |
-
{
|
34 |
-
add_meta_box(
|
35 |
-
'metform_entries__form_id',
|
36 |
-
esc_html__('Info', 'metform'),
|
37 |
-
[$this, 'show_form_id_cmb'],
|
38 |
-
$this->cpt->get_name(),
|
39 |
-
'side',
|
40 |
-
'high'
|
41 |
-
);
|
42 |
-
}
|
43 |
-
|
44 |
-
function show_form_id_cmb($post)
|
45 |
-
{
|
46 |
-
wp_nonce_field('meta_nonce', 'meta_nonce');
|
47 |
-
|
48 |
-
$this->form_id = get_post_meta($post->ID, 'metform_entries__form_id', true);
|
49 |
-
// get fields by form id for further use
|
50 |
-
$this->fields = Action::instance()->get_fields($this->form_id);
|
51 |
-
$form_title = get_the_title((int)$this->form_id);
|
52 |
-
|
53 |
-
?>
|
54 |
-
|
55 |
-
<div class="metform-entry-data container">
|
56 |
-
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
57 |
-
<tbody>
|
58 |
-
<tr class="mf-data-label">
|
59 |
-
<td colspan='2'><strong><?php esc_html_e('Form Name ', 'metform'); ?></strong></td>
|
60 |
-
</tr>
|
61 |
-
<tr class='mf-data-value'>
|
62 |
-
<td><?php echo esc_attr($form_title); ?></td>
|
63 |
-
</tr>
|
64 |
-
<tr class="mf-data-label">
|
65 |
-
<td colspan='2'><strong><?php esc_html_e('Entry ID', 'metform'); ?></strong></td>
|
66 |
-
</tr>
|
67 |
-
<tr class='mf-data-value'>
|
68 |
-
<td><?php echo esc_attr($post->ID); ?></td>
|
69 |
-
</tr>
|
70 |
-
|
71 |
-
</tbody>
|
72 |
-
</table>
|
73 |
-
</div>
|
74 |
-
|
75 |
-
<?php
|
76 |
-
}
|
77 |
-
|
78 |
-
function add_form_data_cmb()
|
79 |
-
{
|
80 |
-
add_meta_box(
|
81 |
-
'metform_entries__form_data',
|
82 |
-
esc_html__('Data'),
|
83 |
-
[$this, 'show_form_data_cmb'],
|
84 |
-
$this->cpt->get_name(),
|
85 |
-
'normal',
|
86 |
-
'high'
|
87 |
-
);
|
88 |
-
}
|
89 |
-
|
90 |
-
function add_browser_data_cmb()
|
91 |
-
{
|
92 |
-
// call browser data meta when browser data present
|
93 |
-
$post_id = (isset($_GET['post']) ? $_GET['post'] : '');
|
94 |
-
$form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
|
95 |
-
$form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
96 |
-
|
97 |
-
$this->browser_data = get_post_meta($post_id, 'metform_form__entry_browser_data', true);
|
98 |
-
if ($this->browser_data == '' && !isset($form_settings['capture_user_browser_data'])) {
|
99 |
-
return;
|
100 |
-
}
|
101 |
-
|
102 |
-
add_meta_box(
|
103 |
-
'metform_form__entry_browser_data',
|
104 |
-
esc_html__('Browser Data'),
|
105 |
-
[$this, 'show_browser_data_cmb'],
|
106 |
-
$this->cpt->get_name(),
|
107 |
-
'side',
|
108 |
-
'low'
|
109 |
-
);
|
110 |
-
}
|
111 |
-
|
112 |
-
function show_browser_data_cmb($post)
|
113 |
-
{
|
114 |
-
if ($this->browser_data != '') {
|
115 |
-
?>
|
116 |
-
<div class="metform-entry-data container">
|
117 |
-
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
118 |
-
<?php
|
119 |
-
foreach ($this->browser_data as $key => $value) {
|
120 |
-
?>
|
121 |
-
<tbody>
|
122 |
-
<tr class="mf-data-label">
|
123 |
-
<td colspan='2'><strong><?php echo esc_attr($key); ?></strong></td>
|
124 |
-
</tr>
|
125 |
-
<tr class='mf-data-value'>
|
126 |
-
<td><?php echo esc_attr($value); ?></td>
|
127 |
-
</tr>
|
128 |
-
</tbody>
|
129 |
-
<?php
|
130 |
-
}
|
131 |
-
?>
|
132 |
-
</table>
|
133 |
-
</div>
|
134 |
-
<?php
|
135 |
-
} else {
|
136 |
-
echo esc_html__('Browser data not captured.', 'metform');
|
137 |
-
}
|
138 |
-
}
|
139 |
-
|
140 |
-
function add_file_upload_cmb()
|
141 |
-
{
|
142 |
-
// call file meta when file data present
|
143 |
-
$post_id = (isset($_GET['post']) ? $_GET['post'] : '');
|
144 |
-
|
145 |
-
$this->file_meta_data = get_post_meta($post_id, 'metform_entries__file_upload', true);
|
146 |
-
if (!is_array($this->file_meta_data)) {
|
147 |
-
return;
|
148 |
-
}
|
149 |
-
|
150 |
-
add_meta_box(
|
151 |
-
'metform_entries__file_upload',
|
152 |
-
esc_html__('Files'),
|
153 |
-
[$this, 'show_file_upload_cmb'],
|
154 |
-
$this->cpt->get_name(),
|
155 |
-
'normal',
|
156 |
-
'low'
|
157 |
-
);
|
158 |
-
}
|
159 |
-
|
160 |
-
function show_form_data_cmb($post)
|
161 |
-
{
|
162 |
-
wp_nonce_field('meta_nonce', 'meta_nonce');
|
163 |
-
|
164 |
-
$this->form_data = get_post_meta($post->ID, 'metform_entries__form_data', true);
|
165 |
-
$this->form_data = (isset($this->form_data)) ? $this->form_data : "";
|
166 |
-
// format all form data into html table
|
167 |
-
if ($this->form_data != '') {
|
168 |
-
$form_html = \MetForm\Core\Entries\Form_Data::format_form_data($this->form_id, $this->form_data);
|
169 |
-
echo $form_html;
|
170 |
-
}
|
171 |
-
}
|
172 |
-
|
173 |
-
function show_file_upload_cmb($post)
|
174 |
-
{
|
175 |
-
echo "<div class='mf-file-show'><p>";
|
176 |
-
foreach ($this->file_meta_data as $key => $value) {
|
177 |
-
if (empty($this->fields)) {
|
178 |
-
return;
|
179 |
-
}
|
180 |
-
echo "<i class='mf mf-file-2'></i> ";
|
181 |
-
$file_url = isset($value['url']) ? $value['url'] : '';
|
182 |
-
$file_type = isset($value['type']) ? $value['type'] : '';
|
183 |
-
if ($file_url != '') {
|
184 |
-
echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . "<a target='_blank' class='mf-file-url' href=" . esc_url($file_url) . ">" . esc_html__('Download', 'elementskit') . "</a>";
|
185 |
-
echo((in_array($file_type, ['image/jpeg', 'image/png', 'image/jpg', 'image/gif', 'image/ico'])) ? ' | <a href="#" class="" data-toggle="modal" data-target="#mfFileUploadModal' . $key . '">' . esc_html__('View', 'metform') . '</a>' : '');
|
186 |
-
} else {
|
187 |
-
echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . esc_html__('This file is not uploaded.', 'metform');
|
188 |
-
}
|
189 |
-
|
190 |
-
?>
|
191 |
-
<!-- Modal -->
|
192 |
-
<div class="attr-modal attr-fade mf-modal-container" id="mfFileUploadModal<?php echo $key ?>" tabindex="-1"
|
193 |
-
role="dialog" aria-labelledby="mfFileUploadodalMLabel" aria-hidden="true">
|
194 |
-
<div class="attr-modal-dialog" role="document">
|
195 |
-
<div class="attr-modal-content">
|
196 |
-
<div class="attr-modal-header">
|
197 |
-
<button type="button" class="attr-close" data-dismiss="modal" aria-label="Close">
|
198 |
-
<span aria-hidden="true">×</span>
|
199 |
-
</button>
|
200 |
-
</div>
|
201 |
-
<div class="attr-modal-body">
|
202 |
-
<img class="attr-img-responsive" src="<?php echo $file_url ?>">
|
203 |
-
</div>
|
204 |
-
</div>
|
205 |
-
</div>
|
206 |
-
</div>
|
207 |
-
<?php
|
208 |
-
}
|
209 |
-
echo "</p></div>";
|
210 |
-
}
|
211 |
-
|
212 |
-
function store_form_data_cmb($post_id)
|
213 |
-
{
|
214 |
-
|
215 |
-
// add save code here
|
216 |
-
|
217 |
-
}
|
218 |
-
|
219 |
-
function add_woo_payment_status_cmb()
|
220 |
-
{
|
221 |
-
add_meta_box(
|
222 |
-
'metform_entries__woo_checkout_status',
|
223 |
-
esc_html__('Woocommerce Checkout'),
|
224 |
-
[$this, 'show_woo_checkout_status_cmb'],
|
225 |
-
$this->cpt->get_name(),
|
226 |
-
'side',
|
227 |
-
'high'
|
228 |
-
);
|
229 |
-
}
|
230 |
-
|
231 |
-
function show_woo_checkout_status_cmb($post)
|
232 |
-
{
|
233 |
-
$order_id = get_post_meta($post->ID, 'mf_woo_order_id', true);
|
234 |
-
if($order_id == null) {
|
235 |
-
return;
|
236 |
-
}
|
237 |
-
$order = wc_get_order($order_id);
|
238 |
-
$order_url = get_admin_url() . 'post.php?post=' . $order_id . '&action=edit';
|
239 |
-
?>
|
240 |
-
|
241 |
-
<div class="metform-entry-data container">
|
242 |
-
<table class='mf-entry-data' cellpadding="5" cellspacing="0">
|
243 |
-
<tbody>
|
244 |
-
<tr class="mf-data-label">
|
245 |
-
<td colspan='2'><strong><?php esc_html_e('Order ID ', 'metform'); ?></strong></td>
|
246 |
-
</tr>
|
247 |
-
<tr class='mf-data-value'>
|
248 |
-
<td><?php echo esc_attr($order_id); ?></td>
|
249 |
-
</tr>
|
250 |
-
<tr class="mf-data-label">
|
251 |
-
<td colspan='2'><strong><?php esc_html_e('Order Status', 'metform'); ?></strong></td>
|
252 |
-
</tr>
|
253 |
-
<tr class='mf-data-value'>
|
254 |
-
<td><?php echo esc_attr($order->get_status()); ?></td>
|
255 |
-
</tr>
|
256 |
-
|
257 |
-
<tr class="mf-data-label">
|
258 |
-
<td colspan='2'><strong><?php esc_html_e('Total', 'metform'); ?></strong></td>
|
259 |
-
</tr>
|
260 |
-
<tr class='mf-data-value'>
|
261 |
-
<td><?php echo esc_attr($order->get_total() . ' ' . $order->get_currency()); ?></td>
|
262 |
-
</tr>
|
263 |
-
|
264 |
-
<tr class="mf-data-label">
|
265 |
-
|
266 |
-
</tr>
|
267 |
-
<tr class='mf-data-value'>
|
268 |
-
<td><a class="button" href="<?php echo $order_url; ?>" target="__blank">Order Details</a></td>
|
269 |
-
</tr>
|
270 |
-
|
271 |
-
</tbody>
|
272 |
-
</table>
|
273 |
-
</div>
|
274 |
-
|
275 |
-
|
276 |
-
<?php
|
277 |
-
|
278 |
-
}
|
279 |
-
|
280 |
-
function add_form_payment_status_cmb()
|
281 |
-
{
|
282 |
-
|
283 |
-
add_meta_box(
|
284 |
-
'metform_entries__payment_status',
|
285 |
-
esc_html__('Payment'),
|
286 |
-
[$this, 'show_form_payment_status_cmb'],
|
287 |
-
$this->cpt->get_name(),
|
288 |
-
'side',
|
289 |
-
'high'
|
290 |
-
|
291 |
-
);
|
292 |
-
}
|
293 |
-
|
294 |
-
function show_form_payment_status_cmb($post)
|
295 |
-
{
|
296 |
-
echo "Status : " . get_post_meta($post->ID, 'metform_entries__payment_status', true) . "<br>";
|
297 |
-
|
298 |
-
if (get_post_meta($post->ID, 'metform_entries__payment_invoice', true)) {
|
299 |
-
echo "Invoice : ";
|
300 |
-
echo get_post_meta($post->ID, 'metform_entries__payment_invoice', true) . "<br>";
|
301 |
-
}
|
302 |
-
|
303 |
-
}
|
304 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/entries/metform-shortcode.php
DELETED
@@ -1,61 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Entries;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Metform_Shortcode{
|
6 |
-
use \MetForm\Traits\Singleton;
|
7 |
-
|
8 |
-
private $all_keys;
|
9 |
-
private $all_values;
|
10 |
-
private $main_data;
|
11 |
-
|
12 |
-
public function get_process_shortcode($string){
|
13 |
-
$replace = str_replace($this->all_keys, $this->all_values, $string);
|
14 |
-
return $replace;
|
15 |
-
|
16 |
-
}
|
17 |
-
|
18 |
-
public function set_values($main_data){
|
19 |
-
$this->main_data = $main_data;
|
20 |
-
$this->formate_keys();
|
21 |
-
$this->formate_values();
|
22 |
-
return $this;
|
23 |
-
}
|
24 |
-
|
25 |
-
public function get_all_keys(){
|
26 |
-
return $this->all_keys;
|
27 |
-
}
|
28 |
-
|
29 |
-
public function get_all_values(){
|
30 |
-
return $this->all_values;
|
31 |
-
}
|
32 |
-
|
33 |
-
public function set_all_keys($main_data){
|
34 |
-
$this->main_data = $main_data;
|
35 |
-
$this->formate_keys();
|
36 |
-
return $this;
|
37 |
-
}
|
38 |
-
|
39 |
-
public function set_all_values($main_data){
|
40 |
-
$this->main_data = $main_data;
|
41 |
-
$this->formate_values();
|
42 |
-
return $this;
|
43 |
-
}
|
44 |
-
|
45 |
-
public function formate_keys(){
|
46 |
-
|
47 |
-
$this->all_keys = array_map(function($v){
|
48 |
-
return "[".$v."]";
|
49 |
-
}, array_keys($this->main_data) );
|
50 |
-
|
51 |
-
}
|
52 |
-
|
53 |
-
public function formate_values(){
|
54 |
-
|
55 |
-
$this->all_values = array_map(function($value){
|
56 |
-
return (is_array($value) ? implode(', ', $value) : $value);
|
57 |
-
}, $this->main_data);
|
58 |
-
|
59 |
-
}
|
60 |
-
|
61 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/action.php
DELETED
@@ -1,263 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Forms;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Action{
|
6 |
-
|
7 |
-
use \MetForm\Traits\Singleton;
|
8 |
-
|
9 |
-
private $key_form_settings;
|
10 |
-
private $key_option_settings;
|
11 |
-
private $key_form_count_views;
|
12 |
-
private $post_type;
|
13 |
-
|
14 |
-
private $fields;
|
15 |
-
private $form_id;
|
16 |
-
private $form_setting;
|
17 |
-
private $title;
|
18 |
-
private $response = [];
|
19 |
-
|
20 |
-
public function __construct(){
|
21 |
-
|
22 |
-
$this->key_form_settings = Base::instance()->form->get_key_form_settings();
|
23 |
-
$this->key_option_settings = 'metform_option__settings';
|
24 |
-
$this->key_form_count_views = 'metform_form__count_views';
|
25 |
-
$this->post_type = Base::instance()->form->get_name();
|
26 |
-
|
27 |
-
$this->response = [
|
28 |
-
'saved' => false,
|
29 |
-
'status' => esc_html("Something went wrong.", 'metform'),
|
30 |
-
'data' => [
|
31 |
-
]
|
32 |
-
];
|
33 |
-
}
|
34 |
-
|
35 |
-
public function store( $form_id, $form_setting ){
|
36 |
-
if( !current_user_can( 'manage_options' ) ){
|
37 |
-
return;
|
38 |
-
}
|
39 |
-
|
40 |
-
$this->fields = $this->get_fields();
|
41 |
-
$this->sanitize( $form_setting );
|
42 |
-
$this->form_id = $form_id;
|
43 |
-
|
44 |
-
if(isset($form_setting['mf_zapier']) && isset($form_setting['mf_zapier_webhook']) && $form_setting['mf_zapier_webhook'] != ''){
|
45 |
-
|
46 |
-
$map_data = \MetForm\Core\Entries\Action::instance()->get_fields($form_id);
|
47 |
-
$email_name = \MetForm\Core\Entries\Action::instance()->get_input_name_by_widget_type('mf-email', $map_data);
|
48 |
-
|
49 |
-
$existing_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($this->form_id);
|
50 |
-
$zapier = new \MetForm_Pro\Core\Integrations\Zapier();
|
51 |
-
|
52 |
-
$url = $form_setting['mf_zapier_webhook'];
|
53 |
-
|
54 |
-
if(!empty($existing_settings) && ($existing_settings['mf_zapier_webhook'] != $form_setting['mf_zapier_webhook'])){
|
55 |
-
$this->response['data']['zapier'] = $zapier->call_webhook($form_data[] = null, ['url' => $url, 'email_name' => $email_name]);
|
56 |
-
}elseif(empty($existing_settings)){
|
57 |
-
$this->response['data']['zapier'] = $zapier->call_webhook($form_data[] = null, ['url' => $url, 'email_name' => $email_name]);
|
58 |
-
}
|
59 |
-
|
60 |
-
}
|
61 |
-
|
62 |
-
if($this->form_id == -1 ){
|
63 |
-
$this->update_option_settings();
|
64 |
-
} else if($this->form_id == 0){
|
65 |
-
$this->insert();
|
66 |
-
} else{
|
67 |
-
$this->update();
|
68 |
-
}
|
69 |
-
|
70 |
-
return $this->response;
|
71 |
-
|
72 |
-
}
|
73 |
-
|
74 |
-
public function update_option_settings(){
|
75 |
-
$status = update_option( $this->key_option_settings, $this->form_setting );
|
76 |
-
if($status){
|
77 |
-
$this->response['saved'] = true;
|
78 |
-
$this->response['status'] = esc_html__('Form settings inserted','metform');
|
79 |
-
$this->response['key'] = $this->key_option_settings;
|
80 |
-
$this->response['data'] = $this->form_setting;
|
81 |
-
}
|
82 |
-
}
|
83 |
-
|
84 |
-
public function insert(){
|
85 |
-
if( !current_user_can( 'manage_options' ) ){
|
86 |
-
return;
|
87 |
-
}
|
88 |
-
|
89 |
-
$this->title = ($this->form_setting['form_title'] != '') ? $this->form_setting['form_title'] : 'New Form # '.time();
|
90 |
-
|
91 |
-
$defaults = array(
|
92 |
-
'post_title' => $this->title,
|
93 |
-
'post_status' => 'publish',
|
94 |
-
'post_type' => $this->post_type,
|
95 |
-
);
|
96 |
-
$this->form_id = wp_insert_post( $defaults );
|
97 |
-
|
98 |
-
update_post_meta( $this->form_id, $this->key_form_settings, $this->form_setting );
|
99 |
-
update_post_meta( $this->form_id, '_wp_page_template', 'elementor_canvas' );
|
100 |
-
|
101 |
-
$this->response['saved'] = true;
|
102 |
-
$this->response['status'] = esc_html__('Form settings inserted','metform');
|
103 |
-
|
104 |
-
if((!array_key_exists('store_entries',$this->form_setting)) && (!array_key_exists('enable_user_notification',$this->form_setting)) && (!array_key_exists('enable_admin_notification',$this->form_setting)) && (!array_key_exists('mf_mail_chimp',$this->form_setting)) && (!array_key_exists('mf_zapier',$this->form_setting))){
|
105 |
-
$this->response['saved'] = false;
|
106 |
-
$this->response['status'] = esc_html__('You must active at least one field of these fields "store entry/ Confirmation/ Notification/ MailChimp/ Zapier". ','metform');
|
107 |
-
}
|
108 |
-
if( (array_key_exists('mf_paypal', $this->form_setting)) && (!array_key_exists('store_entries', $this->form_setting)) ){
|
109 |
-
$this->response['saved'] = false;
|
110 |
-
$this->response['status'] = esc_html__('You must enable "store entries" for integrating payment method.','metform');
|
111 |
-
}
|
112 |
-
|
113 |
-
$this->response['data']['id'] = $this->form_id;
|
114 |
-
$this->response['data']['title'] = $this->title;
|
115 |
-
$this->response['data']['type'] = $this->post_type;
|
116 |
-
|
117 |
-
}
|
118 |
-
|
119 |
-
public function update(){
|
120 |
-
if( !current_user_can( 'manage_options' ) ){
|
121 |
-
return;
|
122 |
-
}
|
123 |
-
|
124 |
-
$this->title = ($this->form_setting['form_title'] != '') ? $this->form_setting['form_title'] : 'New Form # '.time();
|
125 |
-
|
126 |
-
if( isset( $this->form_setting['form_title'] ) ){
|
127 |
-
$update_post = array(
|
128 |
-
'ID' => $this->form_id,
|
129 |
-
'post_title' => $this->title,
|
130 |
-
);
|
131 |
-
wp_update_post( $update_post );
|
132 |
-
}
|
133 |
-
|
134 |
-
update_post_meta( $this->form_id, $this->key_form_settings, $this->form_setting );
|
135 |
-
update_post_meta( $this->form_id, '_wp_page_template', 'elementor_canvas' );
|
136 |
-
|
137 |
-
$this->response['saved'] = true;
|
138 |
-
$this->response['status'] = esc_html('Form settings updated','metform');
|
139 |
-
|
140 |
-
if((!array_key_exists('store_entries',$this->form_setting)) && (!array_key_exists('enable_user_notification',$this->form_setting)) && (!array_key_exists('enable_admin_notification',$this->form_setting)) && (!array_key_exists('mf_mail_chimp',$this->form_setting)) && (!array_key_exists('mf_zapier',$this->form_setting)) && (!array_key_exists('mf_rest_api', $this->form_setting)) && (!array_key_exists('mf_slack', $this->form_setting))){
|
141 |
-
$this->response['saved'] = false;
|
142 |
-
$this->response['status'] = esc_html('You must active at least one field of these fields "store entries/ Confirmation/ Notification/ REST API/ MailChimp/ Slack/ Zapier". ','metform');
|
143 |
-
}
|
144 |
-
if( (array_key_exists('mf_paypal', $this->form_setting)) && (!array_key_exists('store_entries', $this->form_setting)) ){
|
145 |
-
$this->response['saved'] = false;
|
146 |
-
$this->response['status'] = esc_html__('You must enable "store entries" for integrating payment method.','metform');
|
147 |
-
}
|
148 |
-
|
149 |
-
$this->response['data']['id'] = $this->form_id;
|
150 |
-
$this->response['data']['title'] = $this->title;
|
151 |
-
$this->response['data']['type'] = $this->post_type;
|
152 |
-
|
153 |
-
}
|
154 |
-
|
155 |
-
public function get_fields(){
|
156 |
-
return Base::instance()->form->get_form_settings_fields();
|
157 |
-
}
|
158 |
-
|
159 |
-
public function sanitize( $form_setting, $fields = null ){
|
160 |
-
if( $fields == null ){
|
161 |
-
$fields = $this->fields;
|
162 |
-
}
|
163 |
-
foreach( $form_setting as $key => $value ){
|
164 |
-
|
165 |
-
if( isset( $fields[$key] ) ){
|
166 |
-
$this->form_setting[ $key ] = $value;
|
167 |
-
}
|
168 |
-
|
169 |
-
}
|
170 |
-
}
|
171 |
-
|
172 |
-
|
173 |
-
/**
|
174 |
-
*
|
175 |
-
* @param $post_id
|
176 |
-
*
|
177 |
-
* @return array|null
|
178 |
-
*/
|
179 |
-
public function get_all_data( $post_id ){
|
180 |
-
|
181 |
-
$post = get_post( $post_id );
|
182 |
-
|
183 |
-
if(!is_object($post)){
|
184 |
-
return null;
|
185 |
-
}
|
186 |
-
|
187 |
-
if( ! property_exists($post, 'ID')){
|
188 |
-
return null;
|
189 |
-
}
|
190 |
-
|
191 |
-
$settings = get_post_meta( $post->ID, $this->key_form_settings, true );
|
192 |
-
$settings = (is_array($settings) ? $settings : []);
|
193 |
-
$settings['entry_title'] = (!isset($settings['entry_title']) ? 'Entry # [mf_id]' :$settings['entry_title']);
|
194 |
-
|
195 |
-
$global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
196 |
-
$global_settings = (is_array($global_settings) ? $global_settings : []);
|
197 |
-
|
198 |
-
$cKitCache = [];
|
199 |
-
$awbCache = [];
|
200 |
-
$mpCache = [];
|
201 |
-
|
202 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Convert_Kit')) {
|
203 |
-
|
204 |
-
$cKitCache = get_option(\MetForm_Pro\Core\Integrations\Convert_Kit::CKIT_FORMS_CACHE_KEY);
|
205 |
-
}
|
206 |
-
|
207 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Aweber')) {
|
208 |
-
|
209 |
-
$awbCache = get_option(\MetForm_Pro\Core\Integrations\Aweber::AWEBER_LISTS_CACHE_KEY);
|
210 |
-
}
|
211 |
-
|
212 |
-
if(class_exists('\MetForm_Pro\Core\Integrations\Mail_Poet')) {
|
213 |
-
|
214 |
-
$mpCache = get_option(\MetForm_Pro\Core\Integrations\Mail_Poet::MAIL_POET_LISTS_CACHE_KEY);
|
215 |
-
}
|
216 |
-
|
217 |
-
|
218 |
-
if(empty($global_settings)) {
|
219 |
-
$all_settings = $settings;
|
220 |
-
$all_settings['mf_recaptcha_version'] = 'recaptcha-v2';
|
221 |
-
} else {
|
222 |
-
$all_settings = array_merge( $settings, $global_settings );
|
223 |
-
}
|
224 |
-
|
225 |
-
$all_settings['form_title'] = get_the_title($post_id);
|
226 |
-
|
227 |
-
$map_data = \MetForm\Core\Entries\Action::instance()->get_fields($post_id);
|
228 |
-
|
229 |
-
\MetForm\Core\Entries\Metform_Shortcode::instance()->set_all_keys($map_data);
|
230 |
-
$formated_keys = \MetForm\Core\Entries\Metform_Shortcode::instance()->get_all_keys();
|
231 |
-
|
232 |
-
$all_settings['input_names'] = (!empty($formated_keys) ? implode(' ', $formated_keys) : 'Example: [mf-inputname]');
|
233 |
-
|
234 |
-
$all_settings['ckit_opt'] = $cKitCache;
|
235 |
-
$all_settings['aweber_opt'] = $awbCache;
|
236 |
-
$all_settings['mp_opt'] = $mpCache;
|
237 |
-
|
238 |
-
return $all_settings;
|
239 |
-
|
240 |
-
}
|
241 |
-
|
242 |
-
public function get_count_views( $form_id ){
|
243 |
-
return get_post_meta( $form_id, $this->key_form_count_views, true );
|
244 |
-
}
|
245 |
-
|
246 |
-
public function count_views( $form_id ){
|
247 |
-
|
248 |
-
if( current_user_can( 'manage_options' ) ){
|
249 |
-
return;
|
250 |
-
}
|
251 |
-
|
252 |
-
$form_setting = $this->get_all_data( $form_id );
|
253 |
-
//return $form_setting;
|
254 |
-
|
255 |
-
if(isset($form_setting['count_views']) && $form_setting['count_views'] == '1'){
|
256 |
-
$count = $this->get_count_views( $form_id );
|
257 |
-
$count = (int)$count;
|
258 |
-
$count++;
|
259 |
-
update_post_meta( $form_id, $this->key_form_count_views, $count );
|
260 |
-
return $count;
|
261 |
-
}
|
262 |
-
}
|
263 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/api.php
DELETED
@@ -1,302 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Forms;
|
4 |
-
|
5 |
-
use MetForm\Core\Entries\Map_El;
|
6 |
-
|
7 |
-
defined('ABSPATH') || exit;
|
8 |
-
|
9 |
-
class Api extends \MetForm\Base\Api
|
10 |
-
{
|
11 |
-
|
12 |
-
public function config()
|
13 |
-
{
|
14 |
-
$this->prefix = 'forms';
|
15 |
-
$this->param = "/(?P<id>\w+)";
|
16 |
-
}
|
17 |
-
|
18 |
-
public function post_update()
|
19 |
-
{
|
20 |
-
$form_id = $this->request['id'];
|
21 |
-
|
22 |
-
$form_setting = $this->request->get_params();
|
23 |
-
|
24 |
-
|
25 |
-
/**
|
26 |
-
* Hubspot form settings save
|
27 |
-
*/
|
28 |
-
|
29 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot')) {
|
30 |
-
|
31 |
-
|
32 |
-
if (isset($form_setting['mf_hubspot_form_guid'])) {
|
33 |
-
$fields = [];
|
34 |
-
|
35 |
-
// return $form_setting['mf_hubspot_form_field_name_firstname'];
|
36 |
-
foreach ($form_setting as $key => $value) {
|
37 |
-
// if ($key == 'mf_hubspot_form_field_name_firstname') {
|
38 |
-
// return $value;
|
39 |
-
// }
|
40 |
-
|
41 |
-
if (strpos($key, 'mf_hubspot_form_field_name_') !== false) {
|
42 |
-
array_push($fields, [$key => $value]);
|
43 |
-
}
|
44 |
-
}
|
45 |
-
|
46 |
-
update_option('mf_hubspot_form_guid_' . $form_id, $form_setting['mf_hubspot_form_guid']);
|
47 |
-
update_option('mf_hubspot_form_portalId_' . $form_id, $form_setting['mf_hubspot_form_portalId']);
|
48 |
-
update_option('mf_hubspot_form_data_' . $form_id, $fields);
|
49 |
-
}
|
50 |
-
|
51 |
-
|
52 |
-
}
|
53 |
-
|
54 |
-
/**
|
55 |
-
* Mailster form settings
|
56 |
-
*/
|
57 |
-
|
58 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot')) {
|
59 |
-
|
60 |
-
|
61 |
-
if (isset($form_setting['mf_mailster_list_id'])) {
|
62 |
-
$fields = [];
|
63 |
-
|
64 |
-
|
65 |
-
foreach ($form_setting as $key => $value) {
|
66 |
-
|
67 |
-
if (strpos($key, 'mailster_field_') !== false) {
|
68 |
-
array_push($fields, [$key => $value]);
|
69 |
-
}
|
70 |
-
}
|
71 |
-
|
72 |
-
update_option('mf_mailster_form_data_' . $form_id, $fields);
|
73 |
-
}
|
74 |
-
|
75 |
-
|
76 |
-
}
|
77 |
-
|
78 |
-
|
79 |
-
/**
|
80 |
-
* Auth / Registration settings save
|
81 |
-
*/
|
82 |
-
|
83 |
-
|
84 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Email\Mailster\Mailster')) {
|
85 |
-
|
86 |
-
if (isset($form_setting['mf_auth_reg_user_name'])) {
|
87 |
-
|
88 |
-
$data = [
|
89 |
-
|
90 |
-
'mf_auth_reg_user_name' => $form_setting['mf_auth_reg_user_name'],
|
91 |
-
'mf_auth_reg_user_email' => $form_setting['mf_auth_reg_user_email'],
|
92 |
-
'mf_auth_reg_role' => $form_setting['mf_auth_reg_role']
|
93 |
-
|
94 |
-
];
|
95 |
-
|
96 |
-
update_option('mf_auth_reg_settings_' . $form_id, $data);
|
97 |
-
}
|
98 |
-
|
99 |
-
|
100 |
-
}
|
101 |
-
|
102 |
-
/**
|
103 |
-
* Auth / Login settings save
|
104 |
-
*/
|
105 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Auth\Login\Login')) {
|
106 |
-
|
107 |
-
|
108 |
-
if (isset($form_setting['mf_auth_login_user_name'])) {
|
109 |
-
$data = [
|
110 |
-
|
111 |
-
'mf_auth_login_user_name' => $form_setting['mf_auth_login_user_name'],
|
112 |
-
'mf_auth_login_user_password' => $form_setting['mf_auth_login_user_password']
|
113 |
-
|
114 |
-
];
|
115 |
-
|
116 |
-
update_option('mf_auth_login_settings_' . $form_id, $data);
|
117 |
-
}
|
118 |
-
|
119 |
-
|
120 |
-
}
|
121 |
-
|
122 |
-
/**
|
123 |
-
* Post submission
|
124 |
-
*/
|
125 |
-
if (class_exists('MetForm_Pro\Core\Integrations\Post\Form_To_Post\Post')) {
|
126 |
-
|
127 |
-
|
128 |
-
if (isset($form_setting['mf_post_submission_post_type'])) {
|
129 |
-
$data = [
|
130 |
-
|
131 |
-
'mf_post_submission_post_type' => $form_setting['mf_post_submission_post_type'],
|
132 |
-
'mf_post_submission_title' => $form_setting['mf_post_submission_title'],
|
133 |
-
'mf_post_submission_content' => $form_setting['mf_post_submission_content'],
|
134 |
-
'mf_post_submission_author' => $form_setting['mf_post_submission_author'],
|
135 |
-
'mf_post_submission_featured_image' => $form_setting['mf_post_submission_featured_image'],
|
136 |
-
|
137 |
-
];
|
138 |
-
|
139 |
-
/**
|
140 |
-
* If Custom field settings available
|
141 |
-
*/
|
142 |
-
if (isset($form_setting['mf_post_submission_custom_fields_name'])) {
|
143 |
-
$custom_fields_settings = [];
|
144 |
-
$mf_custom_fields = $form_setting['mf_post_submission_custom_fields_name'];
|
145 |
-
$mf_field_names = $form_setting['mf_post_submission_mf_field_name'];
|
146 |
-
$total_field_count = count($mf_custom_fields);
|
147 |
-
for ($index = 0; $index <= $total_field_count; $index++) {
|
148 |
-
if (!empty($mf_custom_fields[$index])) {
|
149 |
-
$custom_fields_settings[$mf_custom_fields[$index]] = $mf_field_names[$index];
|
150 |
-
}
|
151 |
-
}
|
152 |
-
|
153 |
-
update_option('mf_post_submission_custom_fields_' . $form_id, $custom_fields_settings );
|
154 |
-
// error_log(serialize($custom_fields_settings));
|
155 |
-
}
|
156 |
-
|
157 |
-
update_option('mf_post_submission_' . $form_id, $data);
|
158 |
-
}
|
159 |
-
|
160 |
-
|
161 |
-
}
|
162 |
-
|
163 |
-
|
164 |
-
return Action::instance()->store($form_id, $form_setting);
|
165 |
-
}
|
166 |
-
|
167 |
-
public function get_get()
|
168 |
-
{
|
169 |
-
$form_id = $this->request['id'];
|
170 |
-
|
171 |
-
return Action::instance()->get_all_data($form_id);
|
172 |
-
}
|
173 |
-
|
174 |
-
public function get_builder()
|
175 |
-
{
|
176 |
-
$form_id = $this->request['id'];
|
177 |
-
return Builder::instance()->get_editor($form_id);
|
178 |
-
}
|
179 |
-
|
180 |
-
public function get_form_content()
|
181 |
-
{
|
182 |
-
$form_id = $this->request['id'];
|
183 |
-
return Builder::instance()->get_form_content($form_id);
|
184 |
-
}
|
185 |
-
|
186 |
-
public function get_builder_form_id()
|
187 |
-
{
|
188 |
-
$title = $this->request['title'];
|
189 |
-
$template_id = $this->request['id'];
|
190 |
-
return Builder::instance()->create_form($title, $template_id);
|
191 |
-
}
|
192 |
-
|
193 |
-
public function get_templates()
|
194 |
-
{
|
195 |
-
$form_id = $this->request['id'];
|
196 |
-
$args = array(
|
197 |
-
'post_type' => Base::instance()->form->get_name(),
|
198 |
-
'post_status' => 'publish',
|
199 |
-
'posts_per_page' => -1,
|
200 |
-
);
|
201 |
-
|
202 |
-
$forms = get_posts($args);
|
203 |
-
|
204 |
-
foreach ($forms as $form) {
|
205 |
-
echo '<option value="' . $form->ID . '" ' . selected($form_id, $form->ID, false) . '>' . $form->post_title . '</option>';
|
206 |
-
}
|
207 |
-
|
208 |
-
exit();
|
209 |
-
}
|
210 |
-
|
211 |
-
public function post_views()
|
212 |
-
{
|
213 |
-
$form_id = $this->request['id'];
|
214 |
-
return Action::instance()->count_views($form_id);
|
215 |
-
}
|
216 |
-
|
217 |
-
/**
|
218 |
-
* Store hubspot forms
|
219 |
-
*/
|
220 |
-
|
221 |
-
public function get_hubspot_forms()
|
222 |
-
{
|
223 |
-
|
224 |
-
$form_id = $this->request['id'];
|
225 |
-
|
226 |
-
$key = 'hubsopt_forms_' . $form_id . '_';
|
227 |
-
|
228 |
-
$data = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
229 |
-
|
230 |
-
$token = $data['mf_hubsopt_token'];
|
231 |
-
|
232 |
-
$forms = json_decode(file_get_contents('https://api.hubapi.com/forms/v2/forms?hapikey=' . $token));
|
233 |
-
|
234 |
-
$save_forms = [];
|
235 |
-
foreach ($forms as $form) {
|
236 |
-
array_push($save_forms, [
|
237 |
-
'portalId' => $form->portalId,
|
238 |
-
'guid' => $form->guid,
|
239 |
-
'name' => $form->name,
|
240 |
-
]);
|
241 |
-
}
|
242 |
-
|
243 |
-
update_option('mf_hubspot_saved_forms', $save_forms);
|
244 |
-
|
245 |
-
update_option($key, $forms);
|
246 |
-
return get_option($key);
|
247 |
-
}
|
248 |
-
|
249 |
-
public function get_get_hubspot_forms()
|
250 |
-
{
|
251 |
-
$key = $form_id = $this->request['id'];
|
252 |
-
|
253 |
-
$key = 'hubsopt_forms_' . $form_id . '_';
|
254 |
-
|
255 |
-
return get_option($key);
|
256 |
-
}
|
257 |
-
|
258 |
-
public function post_hubspot_form_fields()
|
259 |
-
{
|
260 |
-
$form_id = $this->request['id'];
|
261 |
-
|
262 |
-
$form_guid = $this->request['guid'];
|
263 |
-
|
264 |
-
$data = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
|
265 |
-
|
266 |
-
$token = $data['mf_hubsopt_token'];
|
267 |
-
|
268 |
-
$fields = json_decode(file_get_contents('https://api.hubapi.com/forms/v2/fields/' . $form_guid . '?hapikey=' . $token));
|
269 |
-
return $fields;
|
270 |
-
|
271 |
-
}
|
272 |
-
|
273 |
-
public function get_get_fields_data()
|
274 |
-
{
|
275 |
-
|
276 |
-
$form_id = $this->request['id'];
|
277 |
-
$input_widgets = \Metform\Widgets\Manifest::instance()->get_input_widgets();
|
278 |
-
|
279 |
-
$widget_input_data = get_post_meta($form_id, '_elementor_data', true);
|
280 |
-
$widget_input_data = json_decode($widget_input_data);
|
281 |
-
|
282 |
-
return Map_El::data($widget_input_data, $input_widgets)->get_el();
|
283 |
-
}
|
284 |
-
|
285 |
-
public function get_get_mailster_forms()
|
286 |
-
{
|
287 |
-
return (new \MetForm_Pro\Core\Integrations\Email\Mailster\Api())->get_forms();
|
288 |
-
}
|
289 |
-
|
290 |
-
public function get_get_mailster_form()
|
291 |
-
{
|
292 |
-
$form_id = $this->request['id'];
|
293 |
-
return (new \MetForm_Pro\Core\Integrations\Email\Mailster\Api())->get_form($form_id);
|
294 |
-
}
|
295 |
-
|
296 |
-
public function get_get_mailster_form_data()
|
297 |
-
{
|
298 |
-
$form_id = $this->request['id'];
|
299 |
-
return get_option('mf_mailster_form_data_' . $form_id);
|
300 |
-
}
|
301 |
-
|
302 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/base.php
DELETED
@@ -1,38 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Forms;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Base extends \MetForm\Base\Common{
|
6 |
-
|
7 |
-
use \MetForm\Traits\Singleton;
|
8 |
-
|
9 |
-
public $form;
|
10 |
-
|
11 |
-
public $api;
|
12 |
-
|
13 |
-
public function get_dir(){
|
14 |
-
return dirname(__FILE__);
|
15 |
-
}
|
16 |
-
|
17 |
-
public function __construct(){
|
18 |
-
|
19 |
-
}
|
20 |
-
|
21 |
-
public function init(){
|
22 |
-
$this->form = new Cpt();
|
23 |
-
$this->api = new Api();
|
24 |
-
Hooks::instance()->Init();
|
25 |
-
\MetForm\Base\Shortcode::instance();
|
26 |
-
|
27 |
-
add_action('admin_footer', [$this, 'modal_view']);
|
28 |
-
}
|
29 |
-
|
30 |
-
public function modal_view(){
|
31 |
-
|
32 |
-
$screen = get_current_screen();
|
33 |
-
|
34 |
-
if($screen->id == 'edit-metform-form' || $screen->id == 'metform_page_mt-form-settings'){
|
35 |
-
include_once 'views/modal-editor.php';
|
36 |
-
}
|
37 |
-
}
|
38 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/builder.php
DELETED
@@ -1,56 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Forms;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
Class Builder{
|
6 |
-
|
7 |
-
use \MetForm\Traits\Singleton;
|
8 |
-
|
9 |
-
public function get_editor( $form_id ){
|
10 |
-
$builder_form_id = get_post($form_id);
|
11 |
-
$builder_form_id = $builder_form_id->ID;
|
12 |
-
|
13 |
-
$url = get_admin_url() . '/post.php?post='.$builder_form_id.'&action=elementor';
|
14 |
-
wp_redirect( $url );
|
15 |
-
exit;
|
16 |
-
}
|
17 |
-
|
18 |
-
public function create_form($title, $template_id = 0, $data = []){
|
19 |
-
$template_id = 'template-' . (($template_id == '') ? 0 : $template_id);
|
20 |
-
$title = ($title == '' ? 'New Form # ' . time() : $title);
|
21 |
-
$template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
|
22 |
-
|
23 |
-
$user_id = get_current_user_id();
|
24 |
-
|
25 |
-
$defaults = array(
|
26 |
-
'post_author' => $user_id,
|
27 |
-
'post_content' => '',
|
28 |
-
'post_title' => $title,
|
29 |
-
'post_status' => 'publish',
|
30 |
-
'post_type' => 'metform-form',
|
31 |
-
);
|
32 |
-
$builder_form_id = wp_insert_post($defaults);
|
33 |
-
|
34 |
-
$default_settings = array_map(function(){
|
35 |
-
return '';
|
36 |
-
}, \MetForm\Core\Forms\Base::instance()->form->get_form_settings_fields());
|
37 |
-
|
38 |
-
$default_settings['success_message'] = esc_html('Thank you! Form submitted successfully.');
|
39 |
-
$default_settings['store_entries'] = '1';
|
40 |
-
$default_settings['form_title'] = $defaults['post_title'];
|
41 |
-
|
42 |
-
update_post_meta( $builder_form_id, '_wp_page_template', 'elementor_canvas' );
|
43 |
-
update_post_meta( $builder_form_id, \MetForm\Core\Forms\Base::instance()->form->get_key_form_settings(), $default_settings );
|
44 |
-
update_post_meta( $builder_form_id, '_elementor_edit_mode', 'builder');
|
45 |
-
|
46 |
-
if($data != ''){
|
47 |
-
update_post_meta( $builder_form_id, '_metform_cloned_id', $template_id);
|
48 |
-
}
|
49 |
-
|
50 |
-
if($template_content != null){
|
51 |
-
update_post_meta($builder_form_id, '_elementor_data', json_encode($template_content));
|
52 |
-
}
|
53 |
-
|
54 |
-
return $builder_form_id;
|
55 |
-
}
|
56 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/cpt.php
DELETED
@@ -1,414 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Forms;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Cpt extends \MetForm\Base\Cpt
|
8 |
-
{
|
9 |
-
|
10 |
-
|
11 |
-
public function get_name()
|
12 |
-
{
|
13 |
-
return 'metform-form';
|
14 |
-
}
|
15 |
-
|
16 |
-
public function get_key_form_settings()
|
17 |
-
{
|
18 |
-
return 'metform_form__form_setting';
|
19 |
-
}
|
20 |
-
|
21 |
-
public function get_form_settings_fields()
|
22 |
-
{
|
23 |
-
|
24 |
-
|
25 |
-
$cpt = [
|
26 |
-
|
27 |
-
'form_title' => [
|
28 |
-
'name' => 'form_title',
|
29 |
-
],
|
30 |
-
'success_message' => [
|
31 |
-
'name' => 'success_message',
|
32 |
-
],
|
33 |
-
'store_entries' => [
|
34 |
-
'name' => 'store_entries',
|
35 |
-
],
|
36 |
-
|
37 |
-
'entry_title' => [
|
38 |
-
'name' => 'entry_title',
|
39 |
-
],
|
40 |
-
'hide_form_after_submission' => [
|
41 |
-
'name' => 'hide_form_after_submission',
|
42 |
-
],
|
43 |
-
'redirect_to' => [
|
44 |
-
'name' => 'redirect_to',
|
45 |
-
],
|
46 |
-
'success_url' => [
|
47 |
-
'name' => 'success_url',
|
48 |
-
],
|
49 |
-
'failed_cancel_url' => [
|
50 |
-
'name' => 'failed_cancel_url',
|
51 |
-
],
|
52 |
-
'require_login' => [
|
53 |
-
'name' => 'require_login',
|
54 |
-
],
|
55 |
-
'limit_total_entries_status' => [
|
56 |
-
'name' => 'limit_total_entries_status',
|
57 |
-
],
|
58 |
-
'limit_total_entries' => [
|
59 |
-
'name' => 'limit_total_entries',
|
60 |
-
],
|
61 |
-
'count_views' => [
|
62 |
-
'name' => 'count_views',
|
63 |
-
],
|
64 |
-
'mf_stop_vertical_scrolling' => [
|
65 |
-
'name' => 'mf_stop_vertical_scrolling',
|
66 |
-
],
|
67 |
-
'multiple_submission' => [
|
68 |
-
'name' => 'multiple_submission',
|
69 |
-
],
|
70 |
-
'enable_recaptcha' => [
|
71 |
-
'name' => 'enable_recaptcha',
|
72 |
-
],
|
73 |
-
'capture_user_browser_data' => [
|
74 |
-
'name' => 'capture_user_browser_data',
|
75 |
-
],
|
76 |
-
'enable_user_notification' => [
|
77 |
-
'name' => 'enable_user_notification',
|
78 |
-
],
|
79 |
-
'user_email_subject' => [
|
80 |
-
'name' => 'user_email_subject',
|
81 |
-
],
|
82 |
-
'user_email_from' => [
|
83 |
-
'name' => 'user_email_from',
|
84 |
-
],
|
85 |
-
'user_email_reply_to' => [
|
86 |
-
'name' => 'user_email_reply_to',
|
87 |
-
],
|
88 |
-
'user_email_body' => [
|
89 |
-
'name' => 'user_email_body',
|
90 |
-
],
|
91 |
-
'user_email_attach_submission_copy' => [
|
92 |
-
'name' => 'user_email_attach_submission_copy',
|
93 |
-
],
|
94 |
-
'enable_admin_notification' => [
|
95 |
-
'name' => 'enable_admin_notification',
|
96 |
-
],
|
97 |
-
'admin_email_subject' => [
|
98 |
-
'name' => 'admin_email_subject',
|
99 |
-
],
|
100 |
-
'admin_email_from' => [
|
101 |
-
'name' => 'admin_email_from',
|
102 |
-
],
|
103 |
-
'admin_email_to' => [
|
104 |
-
'name' => 'admin_email_to',
|
105 |
-
],
|
106 |
-
'admin_email_reply_to' => [
|
107 |
-
'name' => 'admin_email_reply_to',
|
108 |
-
],
|
109 |
-
'admin_email_body' => [
|
110 |
-
'name' => 'admin_email_body',
|
111 |
-
],
|
112 |
-
'admin_email_attach_submission_copy' => [
|
113 |
-
'name' => 'admin_email_attach_submission_copy',
|
114 |
-
],
|
115 |
-
'mf_mail_chimp' => [
|
116 |
-
'name' => 'mf_mail_chimp',
|
117 |
-
],
|
118 |
-
|
119 |
-
'mf_get_response' => [
|
120 |
-
'name' => 'mf_get_response',
|
121 |
-
],
|
122 |
-
'mf_get_reponse_api_key' => [
|
123 |
-
'name' => 'mf_get_reponse_api_key'
|
124 |
-
],
|
125 |
-
'mf_get_response_list_id' => [
|
126 |
-
'name' => 'mf_get_response_list_id'
|
127 |
-
],
|
128 |
-
'mf_active_campaign' => [
|
129 |
-
'name' => 'mf_active_campaign'
|
130 |
-
],
|
131 |
-
|
132 |
-
'mf_rest_api' => [
|
133 |
-
'name' => 'mf_rest_api',
|
134 |
-
],
|
135 |
-
'mf_rest_api_url' => [
|
136 |
-
'name' => 'mf_rest_api_url',
|
137 |
-
],
|
138 |
-
'mf_rest_api_method' => [
|
139 |
-
'name' => 'mf_rest_api_method',
|
140 |
-
],
|
141 |
-
'mf_mailchimp_api_key' => [
|
142 |
-
'name' => 'mf_mailchimp_api_key',
|
143 |
-
],
|
144 |
-
'mf_active_campaign_api_key' => [
|
145 |
-
'name' => 'mf_active_campaign_api_key'
|
146 |
-
],
|
147 |
-
'mf_active_campaign_url' => [
|
148 |
-
'name' => 'mf_active_campaign_url'
|
149 |
-
],
|
150 |
-
'mf_mailchimp_list_id' => [
|
151 |
-
'name' => 'mf_mailchimp_list_id',
|
152 |
-
],
|
153 |
-
'mf_zapier' => [
|
154 |
-
'name' => 'mf_zapier',
|
155 |
-
],
|
156 |
-
'mf_zapier_webhook' => [
|
157 |
-
'name' => 'mf_zapier_webhook',
|
158 |
-
],
|
159 |
-
'mf_slack' => [
|
160 |
-
'name' => 'mf_slack',
|
161 |
-
],
|
162 |
-
'mf_slack_webhook' => [
|
163 |
-
'name' => 'mf_slack_webhook',
|
164 |
-
],
|
165 |
-
|
166 |
-
'mf_thank_you_page' => [
|
167 |
-
'name' => 'mf_thank_you_page'
|
168 |
-
],
|
169 |
-
'mf_paypal' => [
|
170 |
-
'name' => 'mf_paypal',
|
171 |
-
],
|
172 |
-
'mf_paypal_email' => [
|
173 |
-
'name' => 'mf_paypal_email',
|
174 |
-
],
|
175 |
-
'mf_paypal_token' => [
|
176 |
-
'name' => 'mf_paypal_token',
|
177 |
-
],
|
178 |
-
'mf_paypal_sandbox' => [
|
179 |
-
'name' => 'mf_paypal_sandbox',
|
180 |
-
],
|
181 |
-
'mf_stripe' => [
|
182 |
-
'name' => 'mf_stripe',
|
183 |
-
],
|
184 |
-
'mf_stripe_image_url' => [
|
185 |
-
'name' => 'mf_stripe_image_url',
|
186 |
-
],
|
187 |
-
'mf_stripe_live_publishiable_key' => [
|
188 |
-
'name' => 'mf_stripe_live_publishiable_key',
|
189 |
-
],
|
190 |
-
'mf_stripe_live_secret_key' => [
|
191 |
-
'name' => 'mf_stripe_live_secret_key',
|
192 |
-
],
|
193 |
-
'mf_stripe_sandbox' => [
|
194 |
-
'name' => 'mf_stripe_sandbox',
|
195 |
-
],
|
196 |
-
'mf_stripe_test_publishiable_key' => [
|
197 |
-
'name' => 'mf_stripe_test_publishiable_key',
|
198 |
-
],
|
199 |
-
'mf_stripe_test_secret_key' => [
|
200 |
-
'name' => 'mf_stripe_test_secret_key',
|
201 |
-
],
|
202 |
-
'mf_google_map_api_key' => [
|
203 |
-
'name' => 'mf_google_map_api_key',
|
204 |
-
],
|
205 |
-
'mf_recaptcha' => [
|
206 |
-
'name' => 'mf_recaptcha',
|
207 |
-
],
|
208 |
-
'mf_recaptcha_version' => [
|
209 |
-
'name' => 'mf_recaptcha_version',
|
210 |
-
],
|
211 |
-
'mf_recaptcha_site_key' => [
|
212 |
-
'name' => 'mf_recaptcha_site_key',
|
213 |
-
],
|
214 |
-
'mf_recaptcha_secret_key' => [
|
215 |
-
'name' => 'mf_recaptcha_secret_key',
|
216 |
-
],
|
217 |
-
'mf_recaptcha_site_key_v3' => [
|
218 |
-
'name' => 'mf_recaptcha_site_key_v3',
|
219 |
-
],
|
220 |
-
'mf_recaptcha_secret_key_v3' => [
|
221 |
-
'name' => 'mf_recaptcha_secret_key_v3',
|
222 |
-
],
|
223 |
-
|
224 |
-
'mf_convert_kit' => [
|
225 |
-
'name' => 'mf_convert_kit',
|
226 |
-
],
|
227 |
-
'mf_ckit_list_id' => [
|
228 |
-
'name' => 'mf_ckit_list_id',
|
229 |
-
],
|
230 |
-
'mf_ckit_api_key' => [
|
231 |
-
'name' => 'mf_ckit_api_key',
|
232 |
-
],
|
233 |
-
'mf_ckit_sec_key' => [
|
234 |
-
'name' => 'mf_ckit_sec_key',
|
235 |
-
],
|
236 |
-
|
237 |
-
'mf_aweber_dev_api_key' => [
|
238 |
-
'name' => 'mf_aweber_dev_api_key',
|
239 |
-
],
|
240 |
-
'mf_aweber_dev_api_sec' => [
|
241 |
-
'name' => 'mf_aweber_dev_api_sec',
|
242 |
-
],
|
243 |
-
'mf_mail_aweber' => [
|
244 |
-
'name' => 'mf_mail_aweber',
|
245 |
-
],
|
246 |
-
'mf_aweber_list_id' => [
|
247 |
-
'name' => 'mf_aweber_list_id',
|
248 |
-
],
|
249 |
-
|
250 |
-
#checkBox
|
251 |
-
'mf_mail_poet' => [
|
252 |
-
'name' => 'mf_mail_poet',
|
253 |
-
],
|
254 |
-
#SelectBox
|
255 |
-
'mf_mail_poet_list_id' => [
|
256 |
-
'name' => 'mf_mail_poet_list_id',
|
257 |
-
],
|
258 |
-
|
259 |
-
// Hubsopt
|
260 |
-
|
261 |
-
'mf_hubspot' => [
|
262 |
-
'name' => 'mf_hubspot',
|
263 |
-
],
|
264 |
-
|
265 |
-
'mf_hubspot_forms' => [
|
266 |
-
'name' => 'mf_hubspot_forms',
|
267 |
-
],
|
268 |
-
|
269 |
-
'mf_hubsopt_token' => [
|
270 |
-
'name' => 'mf_hubsopt_token',
|
271 |
-
],
|
272 |
-
'mf_hubspot_form_guid' => [
|
273 |
-
'name' => 'mf_hubspot_form_guid'
|
274 |
-
],
|
275 |
-
'mf_hubspot_form_portalId' => [
|
276 |
-
'name' => 'mf_hubspot_form_portalId'
|
277 |
-
],
|
278 |
-
|
279 |
-
// Zoho
|
280 |
-
|
281 |
-
'mf_zoho' => [
|
282 |
-
'name' => 'mf_zoho'
|
283 |
-
],
|
284 |
-
|
285 |
-
'mf_zoho_token' => [
|
286 |
-
'name' => 'mf_zoho_token'
|
287 |
-
],
|
288 |
-
|
289 |
-
// Auth
|
290 |
-
|
291 |
-
'mf_registration' => [
|
292 |
-
'name' => 'mf_registration'
|
293 |
-
],
|
294 |
-
|
295 |
-
'mf_login' => [
|
296 |
-
'name' => 'mf_login'
|
297 |
-
],
|
298 |
-
|
299 |
-
// Post
|
300 |
-
|
301 |
-
'mf_form_to_post' => [
|
302 |
-
'name' => 'mf_form_to_post'
|
303 |
-
],
|
304 |
-
|
305 |
-
// Mailster
|
306 |
-
|
307 |
-
'mf_mailster' => [
|
308 |
-
'name' => 'mf_mailster'
|
309 |
-
],
|
310 |
-
|
311 |
-
'mf_mailster_list_id' => [
|
312 |
-
'name' => 'mf_mailster_list_id'
|
313 |
-
],
|
314 |
-
'mf_mailster_fields' => [
|
315 |
-
'name' => 'mf_mailster_fields'
|
316 |
-
],
|
317 |
-
|
318 |
-
// Post submission
|
319 |
-
'mf_post_submission_post_type' => [
|
320 |
-
'name' => 'mf_post_submission_post_type'
|
321 |
-
],
|
322 |
-
'mf_post_submission_title' => [
|
323 |
-
'name' => 'mf_post_submission_title',
|
324 |
-
],
|
325 |
-
'mf_post_submission_content' => [
|
326 |
-
'name' => 'mf_post_submission_content'
|
327 |
-
],
|
328 |
-
'mf_post_submission_author' => [
|
329 |
-
'name' => 'mf_post_submission_author'
|
330 |
-
],
|
331 |
-
'mf_post_submission_featured_image' => [
|
332 |
-
'name' => 'mf_post_submission_featured_image'
|
333 |
-
],
|
334 |
-
|
335 |
-
];
|
336 |
-
|
337 |
-
|
338 |
-
return $cpt;
|
339 |
-
}
|
340 |
-
|
341 |
-
public function post_type()
|
342 |
-
{
|
343 |
-
$labels = array(
|
344 |
-
'name' => esc_html_x('Forms', 'Post Type General Name', 'metform'),
|
345 |
-
'singular_name' => esc_html_x('Form', 'Post Type Singular Name', 'metform'),
|
346 |
-
'menu_name' => esc_html__('Form', 'metform'),
|
347 |
-
'name_admin_bar' => esc_html__('Form', 'metform'),
|
348 |
-
'archives' => esc_html__('Form Archives', 'metform'),
|
349 |
-
'attributes' => esc_html__('Form Attributes', 'metform'),
|
350 |
-
'parent_item_colon' => esc_html__('Parent Item:', 'metform'),
|
351 |
-
'all_items' => esc_html__('Forms', 'metform'),
|
352 |
-
'add_new_item' => esc_html__('Add New Form', 'metform'),
|
353 |
-
'add_new' => esc_html__('Add New', 'metform'),
|
354 |
-
'new_item' => esc_html__('New Form', 'metform'),
|
355 |
-
'edit_item' => esc_html__('Edit Form', 'metform'),
|
356 |
-
'update_item' => esc_html__('Update Form', 'metform'),
|
357 |
-
'view_item' => esc_html__('View Form', 'metform'),
|
358 |
-
'view_items' => esc_html__('View Forms', 'metform'),
|
359 |
-
'search_items' => esc_html__('Search Forms', 'metform'),
|
360 |
-
'not_found' => esc_html__('Not found', 'metform'),
|
361 |
-
'not_found_in_trash' => esc_html__('Not found in Trash', 'metform'),
|
362 |
-
'featured_image' => esc_html__('Featured Image', 'metform'),
|
363 |
-
'set_featured_image' => esc_html__('Set featured image', 'metform'),
|
364 |
-
'remove_featured_image' => esc_html__('Remove featured image', 'metform'),
|
365 |
-
'use_featured_image' => esc_html__('Use as featured image', 'metform'),
|
366 |
-
'insert_into_item' => esc_html__('Insert into form', 'metform'),
|
367 |
-
'uploaded_to_this_item' => esc_html__('Uploaded to this form', 'metform'),
|
368 |
-
'items_list' => esc_html__('Forms list', 'metform'),
|
369 |
-
'items_list_navigation' => esc_html__('Forms list navigation', 'metform'),
|
370 |
-
'filter_items_list' => esc_html__('Filter froms list', 'metform'),
|
371 |
-
);
|
372 |
-
$rewrite = array(
|
373 |
-
'slug' => 'metform-form',
|
374 |
-
'with_front' => true,
|
375 |
-
'pages' => false,
|
376 |
-
'feeds' => false,
|
377 |
-
);
|
378 |
-
$args = array(
|
379 |
-
'label' => esc_html__('Forms', 'metform'),
|
380 |
-
'description' => esc_html__('metform form', 'metform'),
|
381 |
-
'labels' => $labels,
|
382 |
-
'supports' => array('title', 'editor', 'elementor', 'permalink'),
|
383 |
-
'hierarchical' => true,
|
384 |
-
'public' => true,
|
385 |
-
'show_ui' => true,
|
386 |
-
'show_in_menu' => "metform-menu",
|
387 |
-
'menu_icon' => 'dashicons-text-page',
|
388 |
-
'menu_position' => 5,
|
389 |
-
'show_in_admin_bar' => false,
|
390 |
-
'show_in_nav_menus' => false,
|
391 |
-
'can_export' => true,
|
392 |
-
'has_archive' => false,
|
393 |
-
'publicly_queryable' => true,
|
394 |
-
'rewrite' => $rewrite,
|
395 |
-
'query_var' => true,
|
396 |
-
'exclude_from_search' => true,
|
397 |
-
'publicly_queryable' => true,
|
398 |
-
'capability_type' => 'page',
|
399 |
-
'show_in_rest' => false,
|
400 |
-
'rest_base' => $this->get_name(),
|
401 |
-
);
|
402 |
-
|
403 |
-
return $args;
|
404 |
-
}
|
405 |
-
|
406 |
-
public function flush_rewrites()
|
407 |
-
{
|
408 |
-
$name = $this->get_name();
|
409 |
-
$args = $this->post_type();
|
410 |
-
register_post_type($name, $args);
|
411 |
-
|
412 |
-
flush_rewrite_rules();
|
413 |
-
}
|
414 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/hooks.php
DELETED
@@ -1,82 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Forms;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
Class Hooks{
|
5 |
-
|
6 |
-
use \MetForm\Traits\Singleton;
|
7 |
-
|
8 |
-
public function Init(){
|
9 |
-
add_filter( 'the_content', [ $this, 'get_form_content_on_preview' ] );
|
10 |
-
add_action( 'admin_init', [ $this, 'add_author_support' ], 10 );
|
11 |
-
add_filter( 'manage_metform-form_posts_columns', [ $this, 'set_columns' ] );
|
12 |
-
add_action( 'manage_metform-form_posts_custom_column', [ $this, 'render_column' ], 10, 2 );
|
13 |
-
}
|
14 |
-
|
15 |
-
public function get_form_content_on_preview($content) {
|
16 |
-
|
17 |
-
if ($GLOBALS['post']->post_type == 'metform-form') {
|
18 |
-
return \MetForm\Utils\Util::render_form_content($content, get_the_ID());
|
19 |
-
}
|
20 |
-
return $content;
|
21 |
-
}
|
22 |
-
|
23 |
-
public function add_author_support(){
|
24 |
-
add_post_type_support( 'metform-form', 'author' );
|
25 |
-
}
|
26 |
-
|
27 |
-
public function set_columns( $columns ) {
|
28 |
-
|
29 |
-
$date_column = $columns['date'];
|
30 |
-
$author_column = $columns['author'];
|
31 |
-
|
32 |
-
unset( $columns['date'] );
|
33 |
-
unset( $columns['author'] );
|
34 |
-
|
35 |
-
$columns['shortcode'] = esc_html__( 'Shortcode', 'metform' );
|
36 |
-
$columns['count'] = esc_html__( 'Entries', 'metform' );
|
37 |
-
$columns['views_conversion'] = esc_html__( 'Views/ Conversion', 'metform' );
|
38 |
-
$columns['author'] = esc_html( $author_column );
|
39 |
-
$columns['date'] = esc_html( $date_column );
|
40 |
-
|
41 |
-
return $columns;
|
42 |
-
}
|
43 |
-
|
44 |
-
public function render_column( $column, $post_id ) {
|
45 |
-
switch ( $column ) {
|
46 |
-
case 'shortcode':
|
47 |
-
echo '<input class="wp-ui-text-highlight code" type="text" onfocus="this.select();" readonly="readonly" value="'.esc_attr('[metform form_id="'.$post_id.'"]').'" style="width:99%">';
|
48 |
-
break;
|
49 |
-
case 'count':
|
50 |
-
$count = \MetForm\Core\Entries\Action::instance()->get_entry_count($post_id);
|
51 |
-
|
52 |
-
global $wp;
|
53 |
-
$current_url = admin_url();
|
54 |
-
$current_url .="edit.php?post_type=metform-entry&form_id=".esc_attr($post_id);
|
55 |
-
|
56 |
-
$rest_url = get_rest_url();
|
57 |
-
$mf_ex_nonce = wp_create_nonce('wp_rest');
|
58 |
-
$url = $rest_url."metform/v1/entries/export/".$post_id;
|
59 |
-
$export_url = \MetForm\Utils\Util::add_param_url($url, "_wpnonce", $mf_ex_nonce);
|
60 |
-
|
61 |
-
echo "<a data-metform-form-id=".esc_attr($post_id)." class='attr-btn attr-btn-primary mf-entry-filter' href=".esc_url($current_url).">".esc_html($count)."</a>";
|
62 |
-
echo "<a class='attr-btn attr-btn-info mf-entry-export-csv' href=".esc_url($export_url).">".esc_html__('Export CSV', 'metform')."</a>";
|
63 |
-
break;
|
64 |
-
case 'views_conversion':
|
65 |
-
$views = \MetForm\Core\Forms\Action::instance()->get_count_views($post_id);
|
66 |
-
$views = (int)$views;
|
67 |
-
|
68 |
-
$count = \MetForm\Core\Entries\Action::instance()->get_entry_count($post_id);
|
69 |
-
$count = (int)$count;
|
70 |
-
|
71 |
-
if($views != 0){
|
72 |
-
$conversion = ($count*100)/$views;
|
73 |
-
$conversion = round($conversion, 2);
|
74 |
-
}else{
|
75 |
-
$conversion = 0;
|
76 |
-
}
|
77 |
-
echo esc_html($views."/ ".$conversion."%");
|
78 |
-
break;
|
79 |
-
}
|
80 |
-
}
|
81 |
-
|
82 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/forms/views/modal-editor.php
DELETED
@@ -1,761 +0,0 @@
|
|
1 |
-
<?php defined('ABSPATH') || exit; ?>
|
2 |
-
|
3 |
-
<div class="attr-modal attr-fade" id="metform_form_modal" tabindex="-1" role="dialog"
|
4 |
-
aria-labelledby="metform_form_modalLabel" style="display:none;">
|
5 |
-
<div class="attr-modal-dialog attr-modal-dialog-centered" id="metform-form-modalinput-form" role="document">
|
6 |
-
<form action="" mathod="post" id="metform-form-modalinput-settings" data-open-editor="0"
|
7 |
-
data-editor-url="<?php echo get_admin_url(); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest'); ?>">
|
8 |
-
<input type="hidden" name="post_author" value="<?php echo get_current_user_id(); ?>">
|
9 |
-
<div class="attr-modal-content">
|
10 |
-
<div class="attr-modal-header">
|
11 |
-
<button type="button" class="attr-close" data-dismiss="modal" aria-label="Close"><span
|
12 |
-
aria-hidden="true">×</span></button>
|
13 |
-
<h4 class="attr-modal-title" id="metform_form_modalLabel">
|
14 |
-
<?php esc_html_e('Form Settings', 'metform'); ?></h4>
|
15 |
-
<div id="message" style="display:none" class="attr-alert attr-alert-success mf-success-msg"></div>
|
16 |
-
<ul class="attr-nav attr-nav-tabs" role="tablist">
|
17 |
-
<li role="presentation" class="attr-active"><a href="#mf-general" aria-controls="general"
|
18 |
-
role="tab"
|
19 |
-
data-toggle="tab"><?php esc_html_e('General', 'metform'); ?></a>
|
20 |
-
</li>
|
21 |
-
<li role="presentation"><a href="#mf-confirmation" aria-controls="confirmation" role="tab"
|
22 |
-
data-toggle="tab"><?php esc_html_e('Confirmation', 'metform'); ?></a>
|
23 |
-
</li>
|
24 |
-
<li role="presentation"><a href="#mf-notification" aria-controls="notification" role="tab"
|
25 |
-
data-toggle="tab"><?php esc_html_e('Notification', 'metform'); ?></a>
|
26 |
-
</li>
|
27 |
-
<li role="presentation"><a href="#mf-integration" aria-controls="integration" role="tab"
|
28 |
-
data-toggle="tab"><?php esc_html_e('Integration', 'metform'); ?></a>
|
29 |
-
</li>
|
30 |
-
<?php if (class_exists('MetForm_Pro\Base\Package')): ?>
|
31 |
-
<li role="presentation"><a href="#mf-payment" aria-controls="payment" role="tab"
|
32 |
-
data-toggle="tab"><?php esc_html_e('Payment', 'metform'); ?></a>
|
33 |
-
</li>
|
34 |
-
<li role="presentation"><a href="#mf-crm" aria-controls="crm" role="tab"
|
35 |
-
data-toggle="tab"><?php esc_html_e('CRM', 'metform'); ?></a></li>
|
36 |
-
<?php endif; ?>
|
37 |
-
|
38 |
-
<?php do_action('mf_form_settings_tab'); ?>
|
39 |
-
</ul>
|
40 |
-
</div>
|
41 |
-
|
42 |
-
<div class="attr-tab-content">
|
43 |
-
<div role="tabpanel" class="attr-tab-pane attr-active" id="mf-general">
|
44 |
-
|
45 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
46 |
-
<div class="mf-input-group">
|
47 |
-
<label for="attr-input-label"
|
48 |
-
class="attr-input-label"><?php esc_html_e('Title:', 'metform'); ?></label>
|
49 |
-
<input type="text" name="form_title" class="mf-form-modalinput-title attr-form-control"
|
50 |
-
data-default-value="<?php echo esc_html__('New Form # ', 'meform') . time(); ?>">
|
51 |
-
<span
|
52 |
-
class='mf-input-help'><?php esc_html_e('This is the form title', 'metform'); ?></span>
|
53 |
-
</div>
|
54 |
-
|
55 |
-
<div class="mf-input-group">
|
56 |
-
<label for="attr-input-label"
|
57 |
-
class="attr-input-label"><?php esc_html_e('Success Message:', 'metform'); ?></label>
|
58 |
-
<input type="text" name="success_message"
|
59 |
-
class="mf-form-modalinput-success_message attr-form-control"
|
60 |
-
data-default-value="<?php esc_html_e('Thank you! Form submitted successfully.', 'metform'); ?>">
|
61 |
-
<span
|
62 |
-
class='mf-input-help'><?php esc_html_e('This mesage will be shown after a successful submission.', 'metform'); ?></span>
|
63 |
-
</div>
|
64 |
-
|
65 |
-
<div class="mf-input-group">
|
66 |
-
<label class="attr-input-label">
|
67 |
-
<input type="checkbox" value="1" name="require_login"
|
68 |
-
class="mf-admin-control-input mf-form-modalinput-require_login">
|
69 |
-
<span><?php esc_html_e('Required Login:', 'metform'); ?></span>
|
70 |
-
</label>
|
71 |
-
<span
|
72 |
-
class='mf-input-help'><?php esc_html_e('Without login, users can\'t submit the form.', 'metform'); ?></span>
|
73 |
-
</div>
|
74 |
-
|
75 |
-
<div class="mf-input-group">
|
76 |
-
<label class="attr-input-label">
|
77 |
-
<input type="checkbox" value="1" name="capture_user_browser_data"
|
78 |
-
class="mf-admin-control-input mf-form-modalinput-capture_user_browser_data">
|
79 |
-
<span><?php esc_html_e('Capture User Browser Data:', 'metform'); ?></span>
|
80 |
-
</label>
|
81 |
-
<span
|
82 |
-
class='mf-input-help'><?php esc_html_e('Store user\'s browser data (ip, browser name, etc)', 'metform'); ?></span>
|
83 |
-
</div>
|
84 |
-
|
85 |
-
<div class="mf-input-group">
|
86 |
-
<label class="attr-input-label">
|
87 |
-
<input type="checkbox" value="1" name="hide_form_after_submission"
|
88 |
-
class="mf-admin-control-input mf-form-modalinput-hide_form_after_submission">
|
89 |
-
<span><?php esc_html_e('Hide Form After Submission:', 'metform'); ?></span>
|
90 |
-
</label>
|
91 |
-
<span
|
92 |
-
class='mf-input-help'><?php esc_html_e('After submission, hide the form for preventing multiple submission.', 'metform'); ?></span>
|
93 |
-
</div>
|
94 |
-
|
95 |
-
<div class="mf-input-group">
|
96 |
-
<label class="attr-input-label">
|
97 |
-
<input type="checkbox" value="1" name="store_entries"
|
98 |
-
class="mf-admin-control-input mf-form-modalinput-store_entries">
|
99 |
-
<span><?php esc_html_e('Store Entries:', 'metform'); ?></span>
|
100 |
-
</label>
|
101 |
-
<span
|
102 |
-
class='mf-input-help'><?php esc_html_e('Save submitted form data to database.', 'metform'); ?></span>
|
103 |
-
</div>
|
104 |
-
|
105 |
-
<div class="mf-input-group mf-entry-title">
|
106 |
-
<label for="attr-input-label"
|
107 |
-
class="attr-input-label"><?php esc_html_e('Entry Title', 'metform'); ?></label>
|
108 |
-
<input type="text" name="entry_title" class="mf-entry-title-input attr-form-control"
|
109 |
-
placeholder="Entry Title">
|
110 |
-
<span
|
111 |
-
class="mf-input-help"><?php esc_html_e('Enter here title of this form entries.', 'metform'); ?></span>
|
112 |
-
</div>
|
113 |
-
|
114 |
-
<div class="mf-input-group">
|
115 |
-
<div class="mf-input-group-inner">
|
116 |
-
<label class="attr-input-label">
|
117 |
-
<input type="checkbox" value="1" name="limit_total_entries_status"
|
118 |
-
class="mf-admin-control-input mf-form-modalinput-limit_status">
|
119 |
-
<span><?php esc_html_e('Limit Total Entries:', 'metform'); ?></span>
|
120 |
-
</label>
|
121 |
-
<div class="mf-input-group" id='limit_status'>
|
122 |
-
<input type="number" min="1" name="limit_total_entries"
|
123 |
-
class="mf-form-modalinput-limit_total_entries attr-form-control">
|
124 |
-
</div>
|
125 |
-
</div>
|
126 |
-
<span
|
127 |
-
class='mf-input-help'><?php esc_html_e('Limit the total number of submissions for this form.', 'metform'); ?></span>
|
128 |
-
</div>
|
129 |
-
|
130 |
-
<div class="mf-input-group">
|
131 |
-
<label class="attr-input-label">
|
132 |
-
<input type="checkbox" value="1" name="count_views"
|
133 |
-
class="mf-admin-control-input mf-form-modalinput-count_views">
|
134 |
-
<span><?php esc_html_e('Count views:', 'metform'); ?></span>
|
135 |
-
</label>
|
136 |
-
<span class='mf-input-help'><?php esc_html_e('Track form views.', 'metform'); ?></span>
|
137 |
-
</div>
|
138 |
-
|
139 |
-
<div class="mf-input-group">
|
140 |
-
<label class="attr-input-label">
|
141 |
-
<input type="checkbox" value="1" name="mf_stop_vertical_scrolling"
|
142 |
-
class="mf-admin-control-input mf-form-modalinput-stop_vertical_scrolling">
|
143 |
-
<span><?php esc_html_e('Stop Vertical Scrolling:', 'metform'); ?></span>
|
144 |
-
</label>
|
145 |
-
<span
|
146 |
-
class='mf-input-help'><?php esc_html_e('Stop scrolling effect when submitting the form.', 'metform'); ?></span>
|
147 |
-
</div>
|
148 |
-
|
149 |
-
<div class="mf-input-group">
|
150 |
-
<label for="attr-input-label"
|
151 |
-
class="attr-input-label"><?php esc_html_e('Redirect To:', 'metform'); ?></label>
|
152 |
-
<input type="text" name="redirect_to"
|
153 |
-
class="mf-form-modalinput-redirect_to attr-form-control"
|
154 |
-
placeholder="<?php esc_html_e('Redirection link', 'metform'); ?>">
|
155 |
-
<span
|
156 |
-
class='mf-input-help'><?php esc_html_e('Users will be redirected to the this link after submission.', 'metform'); ?></span>
|
157 |
-
</div>
|
158 |
-
|
159 |
-
|
160 |
-
</div>
|
161 |
-
|
162 |
-
</div>
|
163 |
-
<div role="tabpanel" class="attr-tab-pane" id="mf-confirmation">
|
164 |
-
|
165 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
166 |
-
|
167 |
-
<div class="mf-input-group">
|
168 |
-
<label class="attr-input-label">
|
169 |
-
<input type="checkbox" value="1" name="enable_user_notification"
|
170 |
-
class="mf-admin-control-input mf-form-user-enable">
|
171 |
-
<span><?php esc_html_e('Confirmation mail to user :', 'metform'); ?></span>
|
172 |
-
</label>
|
173 |
-
<span
|
174 |
-
class='mf-input-help'><?php esc_html_e('Want to send a submission copy to user by email? Active this one.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required.', 'metform'); ?></strong></span>
|
175 |
-
</div>
|
176 |
-
|
177 |
-
<div class="mf-input-group mf-form-user-confirmation">
|
178 |
-
<label for="attr-input-label"
|
179 |
-
class="attr-input-label"><?php esc_html_e('Email Subject:', 'metform'); ?></label>
|
180 |
-
<input type="text" name="user_email_subject"
|
181 |
-
class="mf-form-user-email-subject attr-form-control"
|
182 |
-
placeholder="<?php esc_html_e('Email subject', 'metform'); ?>">
|
183 |
-
<span
|
184 |
-
class='mf-input-help'><?php esc_html_e('Enter here email subject.', 'metform'); ?></span>
|
185 |
-
</div>
|
186 |
-
|
187 |
-
<div class="mf-input-group mf-form-user-confirmation">
|
188 |
-
<label for="attr-input-label"
|
189 |
-
class="attr-input-label"><?php esc_html_e('Email From:', 'metform'); ?></label>
|
190 |
-
<input type="email" name="user_email_from"
|
191 |
-
class="mf-form-user-email-from attr-form-control"
|
192 |
-
placeholder="<?php esc_html_e('From email', 'metform'); ?>">
|
193 |
-
<span
|
194 |
-
class='mf-input-help'><?php esc_html_e('Enter the email by which you want to send email to user.', 'metform'); ?></span>
|
195 |
-
</div>
|
196 |
-
|
197 |
-
<div class="mf-input-group mf-form-user-confirmation">
|
198 |
-
<label for="attr-input-label"
|
199 |
-
class="attr-input-label"><?php esc_html_e('Email Reply To:', 'metform'); ?></label>
|
200 |
-
<input type="email" name="user_email_reply_to"
|
201 |
-
class="mf-form-user-reply-to attr-form-control"
|
202 |
-
placeholder="<?php esc_html_e('Reply to email', 'metform'); ?>">
|
203 |
-
<span
|
204 |
-
class='mf-input-help'><?php esc_html_e('Enter email where user can reply/ you want to get reply.', 'metform'); ?></span>
|
205 |
-
</div>
|
206 |
-
|
207 |
-
<div class="mf-input-group mf-form-user-confirmation">
|
208 |
-
<label for="attr-input-label"
|
209 |
-
class="attr-input-label"><?php esc_html_e('Thank you message :', 'metform'); ?></label>
|
210 |
-
<textarea name="user_email_body" id="" class="mf-form-user-email-body attr-form-control"
|
211 |
-
cols="30" rows="5"
|
212 |
-
placeholder="<?php esc_html_e('Thank you message!', 'metform'); ?>"></textarea>
|
213 |
-
<span
|
214 |
-
class='mf-input-help'><?php esc_html_e('Enter here your message to include it in email body. Which will be send to user.', 'metform'); ?></span>
|
215 |
-
</div>
|
216 |
-
|
217 |
-
<!-- <div class="mf-input-group">
|
218 |
-
<label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Email Attached Submission Copy:', 'metform'); ?></label>
|
219 |
-
<input type="checkbox" value="1" name="user_email_attach_submission_copy" class="mf-admin-control-input mf-form-user-submission-copy">
|
220 |
-
</div> -->
|
221 |
-
|
222 |
-
</div>
|
223 |
-
|
224 |
-
</div>
|
225 |
-
<div role="tabpanel" class="attr-tab-pane" id="mf-notification">
|
226 |
-
|
227 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
228 |
-
|
229 |
-
<div class="mf-input-group">
|
230 |
-
<label class="attr-input-label">
|
231 |
-
<input type="checkbox" value="1" name="enable_admin_notification"
|
232 |
-
class="mf-admin-control-input mf-form-admin-enable">
|
233 |
-
<span><?php esc_html_e('Notification mail to admin :', 'metform'); ?></span>
|
234 |
-
</label>
|
235 |
-
<span
|
236 |
-
class='mf-input-help'><?php esc_html_e('Want to send a submission copy to admin by email? Active this one.', 'metform'); ?></span>
|
237 |
-
</div>
|
238 |
-
|
239 |
-
<div class="mf-input-group mf-form-admin-notification">
|
240 |
-
<label for="attr-input-label"
|
241 |
-
class="attr-input-label"><?php esc_html_e('Email Subject:', 'metform'); ?></label>
|
242 |
-
<input type="text" name="admin_email_subject"
|
243 |
-
class="mf-form-admin-email-subject attr-form-control"
|
244 |
-
placeholder="<?php esc_html_e('Email subject', 'metform'); ?>">
|
245 |
-
<span
|
246 |
-
class='mf-input-help'><?php esc_html_e('Enter here email subject.', 'metform'); ?></span>
|
247 |
-
</div>
|
248 |
-
|
249 |
-
<div class="mf-input-group mf-form-admin-notification">
|
250 |
-
<label for="attr-input-label"
|
251 |
-
class="attr-input-label"><?php esc_html_e('Email To:', 'metform'); ?></label>
|
252 |
-
<input type="text" name="admin_email_to"
|
253 |
-
class="mf-form-admin-email-to attr-form-control"
|
254 |
-
placeholder="<?php esc_html_e('example@mail.com, example@email.com', 'metform'); ?>">
|
255 |
-
<span
|
256 |
-
class='mf-input-help'><?php esc_html_e('Enter admin email where you want to send mail.', 'metform'); ?><strong><?php esc_html_e(' for multiple email addresses please use "," separator.', 'metform'); ?></strong></span>
|
257 |
-
</div>
|
258 |
-
|
259 |
-
<div class="mf-input-group mf-form-admin-notification">
|
260 |
-
<label for="attr-input-label"
|
261 |
-
class="attr-input-label"><?php esc_html_e('Email From:', 'metform'); ?></label>
|
262 |
-
<input type="text" name="admin_email_from"
|
263 |
-
class="mf-form-admin-email-from attr-form-control"
|
264 |
-
placeholder="<?php esc_html_e('Email from', 'metform'); ?>">
|
265 |
-
<span
|
266 |
-
class='mf-input-help'><?php esc_html_e('Enter the email by which you want to send email to admin.', 'metform'); ?></span>
|
267 |
-
</div>
|
268 |
-
|
269 |
-
<div class="mf-input-group mf-form-admin-notification">
|
270 |
-
<label for="attr-input-label"
|
271 |
-
class="attr-input-label"><?php esc_html_e('Email Reply To:', 'metform'); ?></label>
|
272 |
-
<input type="text" name="admin_email_reply_to"
|
273 |
-
class="mf-form-admin-reply-to attr-form-control"
|
274 |
-
placeholder="<?php esc_html_e('Email reply to', 'metform'); ?>">
|
275 |
-
<span
|
276 |
-
class='mf-input-help'><?php esc_html_e('Enter email where admin can reply/ you want to get reply.', 'metform'); ?></span>
|
277 |
-
</div>
|
278 |
-
|
279 |
-
<div class="mf-input-group mf-form-admin-notification">
|
280 |
-
<label for="attr-input-label"
|
281 |
-
class="attr-input-label"><?php esc_html_e('Admin Note : ', 'metform'); ?></label>
|
282 |
-
<textarea name="admin_email_body" class="mf-form-admin-email-body attr-form-control"
|
283 |
-
cols="30" rows="5"
|
284 |
-
placeholder="<?php esc_html_e('Admin note!', 'metform'); ?>"></textarea>
|
285 |
-
<span
|
286 |
-
class='mf-input-help'><?php esc_html_e('Enter here your email body. Which will be send to admin.', 'metform'); ?></span>
|
287 |
-
</div>
|
288 |
-
</div>
|
289 |
-
|
290 |
-
</div>
|
291 |
-
<div role="tabpanel" class="attr-tab-pane" id="mf-integration">
|
292 |
-
|
293 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
294 |
-
|
295 |
-
<?php if (class_exists('MetForm_Pro\Core\Integrations\Rest_Api')): ?>
|
296 |
-
<div class="mf-input-group mf-input-group-inner">
|
297 |
-
<label class="attr-input-label">
|
298 |
-
<input type="checkbox" value="1" name="mf_rest_api"
|
299 |
-
class="mf-admin-control-input mf-form-modalinput-rest_api">
|
300 |
-
<span><?php esc_html_e('REST API:', 'metform'); ?></span>
|
301 |
-
</label>
|
302 |
-
<span
|
303 |
-
class='mf-input-help'><?php esc_html_e('Send entry data to third party api/webhook', 'metform'); ?></span>
|
304 |
-
</div>
|
305 |
-
|
306 |
-
<div class="mf-input-group mf-input-rest-api-group">
|
307 |
-
<div class="mf-rest-api">
|
308 |
-
<label for="attr-input-label"
|
309 |
-
class="attr-input-label"><?php esc_html_e('URL/Webhook:', 'metform'); ?></label>
|
310 |
-
<input type="text" name="mf_rest_api_url"
|
311 |
-
class="mf-rest-api-url attr-form-control"
|
312 |
-
placeholder="<?php esc_html_e('Rest api url/webhook', 'metform'); ?>">
|
313 |
-
<span
|
314 |
-
class='mf-input-help'><?php esc_html_e('Enter rest api url/webhook here.', 'metform'); ?></span>
|
315 |
-
</div>
|
316 |
-
<div class="mf-rest-api-key">
|
317 |
-
<div id='rest_api_method'>
|
318 |
-
<select name="mf_rest_api_method"
|
319 |
-
class="mf-rest-api-method attr-form-control">
|
320 |
-
<option value="POST"><?php esc_html_e('POST', 'metform'); ?></option>
|
321 |
-
<option value="GET"><?php esc_html_e('GET', 'metform'); ?></option>
|
322 |
-
</select>
|
323 |
-
</div>
|
324 |
-
</div>
|
325 |
-
|
326 |
-
</div>
|
327 |
-
|
328 |
-
<?php endif ?>
|
329 |
-
|
330 |
-
<?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')): ?>
|
331 |
-
<div class="mf-input-group">
|
332 |
-
<label class="attr-input-label">
|
333 |
-
<input type="checkbox" value="1" name="mf_mail_chimp"
|
334 |
-
class="mf-admin-control-input mf-form-modalinput-mail_chimp">
|
335 |
-
<span><?php esc_html_e('Mail Chimp:', 'metform'); ?></span>
|
336 |
-
</label>
|
337 |
-
<span
|
338 |
-
class='mf-input-help'><?php esc_html_e('Integrate mailchimp with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?><a
|
339 |
-
target="_blank"
|
340 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure Mail Chimp.', 'metform'); ?></a></strong></span>
|
341 |
-
</div>
|
342 |
-
|
343 |
-
<div class="mf-input-group mf-mailchimp">
|
344 |
-
<label for="attr-input-label"
|
345 |
-
class="attr-input-label"><?php esc_html_e('MailChimp List ID:', 'metform'); ?>
|
346 |
-
<span
|
347 |
-
class="dashicons dashicons-update metfrom-btn-refresh-mailchimp-list"></span></label>
|
348 |
-
|
349 |
-
<select class="attr-form-control mailchimp_list">
|
350 |
-
|
351 |
-
</select>
|
352 |
-
|
353 |
-
<input type="hidden" name="mf_mailchimp_list_id"
|
354 |
-
class="mf-mailchimp-list-id attr-form-control"
|
355 |
-
placeholder="<?php esc_html_e('Mailchimp contact list id', 'metform'); ?>">
|
356 |
-
|
357 |
-
</div>
|
358 |
-
|
359 |
-
<?php endif ?>
|
360 |
-
|
361 |
-
|
362 |
-
<?php if (did_action('xpd_metform_pro/plugin_loaded')):
|
363 |
-
|
364 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Mail_Poet')): ?>
|
365 |
-
|
366 |
-
<div class="mf-input-group">
|
367 |
-
<label class="attr-input-label">
|
368 |
-
<input type="checkbox" value="1" name="mf_mail_poet"
|
369 |
-
class="mf-admin-control-input mf-form-modalinput-mail_poet">
|
370 |
-
<span><?php esc_html_e('MailPoet:', 'metform'); ?></span>
|
371 |
-
</label>
|
372 |
-
<span class='mf-input-help'>
|
373 |
-
<?php esc_html_e('Integrate MailPoet with this form.', 'metform'); ?>
|
374 |
-
<strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?>
|
375 |
-
<a target="_blank"
|
376 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings#mf-newsletter_integration'; ?>">
|
377 |
-
<?php esc_html_e('Configure MailPoet.', 'metform'); ?>
|
378 |
-
</a>
|
379 |
-
</strong>
|
380 |
-
</span>
|
381 |
-
</div>
|
382 |
-
|
383 |
-
<div class="mf-input-group mf-mail-poet">
|
384 |
-
<label for="attr-input-label"
|
385 |
-
class="attr-input-label"><?php esc_html_e('MailPoet List ID:', 'metform'); ?></label>
|
386 |
-
|
387 |
-
<select name="mf_mail_poet_list_id"
|
388 |
-
class="mf-mail-poet-list-id attr-form-control">
|
389 |
-
<option value=""> None</option>
|
390 |
-
</select>
|
391 |
-
|
392 |
-
<span
|
393 |
-
class='mf-input-help'><?php esc_html_e('Enter here MailPoet list id. ', 'metform'); ?>
|
394 |
-
<a id="met_form_mail_poet_get_list"
|
395 |
-
href="#"><?php esc_html_e('Refresh List', 'metform'); ?></a>
|
396 |
-
<span id="mf_mail_poet_info"></span>
|
397 |
-
</span>
|
398 |
-
</div>
|
399 |
-
|
400 |
-
|
401 |
-
<?php endif; ?>
|
402 |
-
|
403 |
-
<div class="mf-input-group">
|
404 |
-
<label class="attr-input-label">
|
405 |
-
<input type="checkbox" value="1" name="mf_mail_aweber"
|
406 |
-
class="mf-admin-control-input mf-form-modalinput-mail_aweber">
|
407 |
-
<span><?php esc_html_e('Aweber:', 'metform'); ?></span>
|
408 |
-
</label>
|
409 |
-
<span
|
410 |
-
class='mf-input-help'><?php esc_html_e('Integrate aweber with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?><a
|
411 |
-
target="_blank"
|
412 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings#mf-newsletter_integration'; ?>"><?php esc_html_e('Configure aweber.', 'metform'); ?></a></strong></span>
|
413 |
-
</div>
|
414 |
-
|
415 |
-
<div class="mf-input-group mf-aweber">
|
416 |
-
<label for="attr-input-label"
|
417 |
-
class="attr-input-label"><?php esc_html_e('Aweber List ID:', 'metform'); ?></label>
|
418 |
-
|
419 |
-
<select name="mf_aweber_list_id" class="mf-aweber-list-id attr-form-control">
|
420 |
-
<option value=""> None</option>
|
421 |
-
</select>
|
422 |
-
|
423 |
-
<span
|
424 |
-
class='mf-input-help'><?php esc_html_e('Enter here aweber list id. ', 'metform'); ?>
|
425 |
-
<a id="met_form_aweber_get_list"
|
426 |
-
href="#"><?php esc_html_e('Refresh List', 'metform'); ?></a>
|
427 |
-
<span id="mf_aweber_info"></span>
|
428 |
-
</span>
|
429 |
-
</div>
|
430 |
-
|
431 |
-
|
432 |
-
<div class="mf-input-group">
|
433 |
-
<label class="attr-input-label">
|
434 |
-
<input type="checkbox" value="1" name="mf_convert_kit"
|
435 |
-
class="mf-admin-control-input mf-form-modalinput-ckit"/>
|
436 |
-
<span><?php esc_html_e('ConvertKit:', 'metform'); ?></span>
|
437 |
-
</label>
|
438 |
-
<span
|
439 |
-
class='mf-input-help'><?php esc_html_e('Integrate convertKit with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?><a
|
440 |
-
target="_blank"
|
441 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure ConvertKit.', 'metform'); ?></a></strong></span>
|
442 |
-
</div>
|
443 |
-
|
444 |
-
<div class="mf-input-group mf-ckit">
|
445 |
-
<label for="attr-input-label"
|
446 |
-
class="attr-input-label"><?php esc_html_e('ConvertKit Forms ID:', 'metform'); ?></label>
|
447 |
-
|
448 |
-
<select name="mf_ckit_list_id" class="attr-form-control mf-ckit-list-id">
|
449 |
-
<option value=""> None</option>
|
450 |
-
</select>
|
451 |
-
|
452 |
-
<span
|
453 |
-
class='mf-input-help'><?php esc_html_e('Enter here ConvertKit form id. ', 'metform'); ?>
|
454 |
-
<a id="met_form_ckit_get_list" href="#">
|
455 |
-
<?php esc_html_e('Refresh List', 'metform'); ?>
|
456 |
-
</a>
|
457 |
-
</span>
|
458 |
-
</div>
|
459 |
-
|
460 |
-
|
461 |
-
<?php endif ?>
|
462 |
-
|
463 |
-
|
464 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')): ?>
|
465 |
-
<div class="mf-input-group">
|
466 |
-
<label class="attr-input-label">
|
467 |
-
<input type="checkbox" value="1" name="mf_get_response"
|
468 |
-
class="mf-admin-control-input mf-form-modalinput-get_response">
|
469 |
-
<span><?php esc_html_e('GetResponse:', 'metform'); ?></span>
|
470 |
-
</label>
|
471 |
-
|
472 |
-
<span
|
473 |
-
class='mf-input-help'><?php esc_html_e('Integrate GetResponse with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?><a
|
474 |
-
target="_blank"
|
475 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure GetResponse.', 'metform'); ?></a></strong></span>
|
476 |
-
|
477 |
-
</div>
|
478 |
-
|
479 |
-
|
480 |
-
<div class="mf-input-group mf-get_response">
|
481 |
-
<label for="attr-input-label"
|
482 |
-
class="attr-input-label"><?php esc_html_e('GetResponse List ID:', 'metform'); ?>
|
483 |
-
<span
|
484 |
-
class="dashicons dashicons-update metfrom-btn-refresh-get-response-list"></span></label>
|
485 |
-
|
486 |
-
|
487 |
-
<select class="attr-form-control get-response-campaign-list">
|
488 |
-
|
489 |
-
</select>
|
490 |
-
|
491 |
-
<input type="hidden" name="mf_get_response_list_id"
|
492 |
-
class="mf-get_response-list-id attr-form-control"
|
493 |
-
placeholder="<?php esc_html_e('GetResponse contact list id', 'metform'); ?>">
|
494 |
-
<span
|
495 |
-
class='mf-input-help'><?php esc_html_e('Enter here GetResponse list id. ', 'metform'); ?></span>
|
496 |
-
</div>
|
497 |
-
|
498 |
-
<?php endif; ?>
|
499 |
-
|
500 |
-
|
501 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign')): ?>
|
502 |
-
|
503 |
-
<div class="mf-input-group">
|
504 |
-
<label class="attr-input-label">
|
505 |
-
<input type="checkbox" value="1" name="mf_active_campaign"
|
506 |
-
class="mf-admin-control-input mf-form-modalinput-active_campaign">
|
507 |
-
<span><?php esc_html_e('ActiveCampaign:', 'metform'); ?></span>
|
508 |
-
</label>
|
509 |
-
<span
|
510 |
-
class='mf-input-help'><?php esc_html_e('Integrate ActiveCampaign with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?><a
|
511 |
-
target="_blank"
|
512 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure ActiveCampaign.', 'metform'); ?></a></strong></span>
|
513 |
-
|
514 |
-
</div>
|
515 |
-
|
516 |
-
|
517 |
-
<?php endif ?>
|
518 |
-
|
519 |
-
|
520 |
-
<?php
|
521 |
-
if (function_exists('mailster')) {
|
522 |
-
if (class_exists('\MetForm_Pro\Core\Integrations\Email\Mailster\Mailster')):
|
523 |
-
?>
|
524 |
-
<div class="mf-input-group">
|
525 |
-
|
526 |
-
<label class="attr-input-label">
|
527 |
-
<input type="checkbox" value="1" name="mf_mailster"
|
528 |
-
class="mf-admin-control-input mf-form-modalinput-mailster">
|
529 |
-
<span><?php esc_html_e('Mailster:', 'metform'); ?></span>
|
530 |
-
</label>
|
531 |
-
|
532 |
-
<span class='mf-input-help'><?php esc_html_e('Integrate Mailster with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required. ', 'metform'); ?></strong></span>
|
533 |
-
|
534 |
-
</div>
|
535 |
-
|
536 |
-
|
537 |
-
<div class="mf-input-group mf-mailster-forms">
|
538 |
-
<label for="attr-input-label"
|
539 |
-
class="attr-input-label"><?php esc_html_e('Mailster Forms', 'metform'); ?></label>
|
540 |
-
|
541 |
-
<select name="mf_mailster_list_id"
|
542 |
-
class="mf-mailster-list-id attr-form-control">
|
543 |
-
|
544 |
-
<?php
|
545 |
-
|
546 |
-
$forms = mailster('forms')->get();
|
547 |
-
foreach ($forms as $form):
|
548 |
-
?>
|
549 |
-
<option value="<?php esc_html_e($form->ID); ?>"><?php esc_html_e($form->name); ?></option>
|
550 |
-
<?php
|
551 |
-
endforeach;
|
552 |
-
|
553 |
-
?>
|
554 |
-
</select>
|
555 |
-
</div>
|
556 |
-
<div class="mf-input-group mf-mailster-settings-section">
|
557 |
-
|
558 |
-
|
559 |
-
</div>
|
560 |
-
|
561 |
-
<?php
|
562 |
-
endif;
|
563 |
-
}
|
564 |
-
?>
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Zapier')): ?>
|
569 |
-
<div class="mf-input-group">
|
570 |
-
<label class="attr-input-label">
|
571 |
-
<input type="checkbox" value="1" name="mf_zapier"
|
572 |
-
class="mf-admin-control-input mf-form-modalinput-zapier">
|
573 |
-
<span><?php esc_html_e('Zapier:', 'metform'); ?></span>
|
574 |
-
</label>
|
575 |
-
<span
|
576 |
-
class='mf-input-help'><?php esc_html_e('Integrate zapier with this form.', 'metform'); ?><strong><?php esc_html_e('The form must have at least one Email widget and it should be required.', 'metform'); ?></strong></span>
|
577 |
-
</div>
|
578 |
-
|
579 |
-
<div class="mf-input-group mf-zapier">
|
580 |
-
<label for="attr-input-label"
|
581 |
-
class="attr-input-label"><?php esc_html_e('Zapier webhook:', 'metform'); ?></label>
|
582 |
-
<input type="text" name="mf_zapier_webhook"
|
583 |
-
class="mf-zapier-web-hook attr-form-control"
|
584 |
-
placeholder="<?php esc_html_e('Zapier webhook', 'metform'); ?>">
|
585 |
-
<span
|
586 |
-
class='mf-input-help'><?php esc_html_e('Enter here zapier web hook.', 'metform'); ?></span>
|
587 |
-
</div>
|
588 |
-
|
589 |
-
<?php endif ?>
|
590 |
-
|
591 |
-
<?php if (class_exists('\MetForm\Core\Integrations\Slack')): ?>
|
592 |
-
<div class="mf-input-group">
|
593 |
-
<label class="attr-input-label">
|
594 |
-
<input type="checkbox" value="1" name="mf_slack"
|
595 |
-
class="mf-admin-control-input mf-form-modalinput-slack">
|
596 |
-
<span><?php esc_html_e('Slack:', 'metform'); ?></span>
|
597 |
-
</label>
|
598 |
-
<span
|
599 |
-
class='mf-input-help'><?php esc_html_e('Integrate slack with this form.', 'metform'); ?><strong><?php esc_html_e('slack info.', 'metform'); ?></strong></span>
|
600 |
-
</div>
|
601 |
-
|
602 |
-
<div class="mf-input-group mf-slack">
|
603 |
-
<label for="attr-input-label"
|
604 |
-
class="attr-input-label"><?php esc_html_e('Slack webhook:', 'metform'); ?></label>
|
605 |
-
<input type="text" name="mf_slack_webhook"
|
606 |
-
class="mf-slack-web-hook attr-form-control"
|
607 |
-
placeholder="<?php esc_html_e('Slack webhook', 'metform'); ?>">
|
608 |
-
<span
|
609 |
-
class='mf-input-help'><?php esc_html_e('Enter here slack web hook.', 'metform'); ?><a
|
610 |
-
href="http://slack.com/apps/A0F7XDUAZ-incoming-webhooks"><?php esc_html_e('create from here', 'metform'); ?></a></span>
|
611 |
-
</div>
|
612 |
-
|
613 |
-
<?php endif ?>
|
614 |
-
|
615 |
-
</div>
|
616 |
-
|
617 |
-
</div>
|
618 |
-
|
619 |
-
<?php if (class_exists('MetForm_Pro\Base\Package')): ?>
|
620 |
-
<div role="tabpanel" class="attr-tab-pane" id="mf-payment">
|
621 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
622 |
-
<!-- <div class="mf-input-group">
|
623 |
-
<label for="attr-input-label"
|
624 |
-
class="attr-input-label"><?php esc_html_e('Success url:', 'metform'); ?></label>
|
625 |
-
<input type="text" name="success_url"
|
626 |
-
class="mf-form-modalinput-success_url attr-form-control"
|
627 |
-
placeholder="<?php esc_html_e('Success url', 'metform'); ?>">
|
628 |
-
<span
|
629 |
-
class='mf-input-help'><?php esc_html_e('Users will be redirected to the this link after successfully form submission.', 'metform'); ?></span>
|
630 |
-
</div>
|
631 |
-
|
632 |
-
<div class="mf-input-group">
|
633 |
-
<label for="attr-input-label"
|
634 |
-
class="attr-input-label"><?php esc_html_e('Failed/ Cancel url:', 'metform'); ?></label>
|
635 |
-
<input type="text" name="mf_payment_failed_cancel_url"
|
636 |
-
class="mf-form-modalinput-mf_payment_failed_cancel_url attr-form-control"
|
637 |
-
placeholder="<?php esc_html_e('Failed/Cancel url', 'metform'); ?>">
|
638 |
-
<span
|
639 |
-
class='mf-input-help'><?php esc_html_e('Users will be redirected to the this link after any failure/ cancelation of form submission.', 'metform'); ?></span>
|
640 |
-
</div> -->
|
641 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')): ?>
|
642 |
-
<div class="mf-input-group">
|
643 |
-
<label class="attr-input-label">
|
644 |
-
<input type="checkbox" value="1" name="mf_paypal"
|
645 |
-
class="mf-admin-control-input mf-form-modalinput-paypal">
|
646 |
-
<span><?php esc_html_e('Paypal:', 'metform'); ?></span>
|
647 |
-
</label>
|
648 |
-
<span
|
649 |
-
class='mf-input-help'><?php esc_html_e('Integrate paypal payment with this form.', 'metform'); ?><a
|
650 |
-
target="_blank"
|
651 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure paypal payment.', 'metform'); ?></a></span>
|
652 |
-
</div>
|
653 |
-
<?php endif ?>
|
654 |
-
|
655 |
-
|
656 |
-
<?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')): ?>
|
657 |
-
<div class="mf-input-group">
|
658 |
-
<label class="attr-input-label">
|
659 |
-
<input type="checkbox" value="1" name="mf_stripe"
|
660 |
-
class="mf-admin-control-input mf-form-modalinput-stripe">
|
661 |
-
<span><?php esc_html_e('Stripe:', 'metform'); ?></span>
|
662 |
-
</label>
|
663 |
-
<span
|
664 |
-
class='mf-input-help'><?php esc_html_e('Integrate stripe payment with this form. ', 'metform'); ?><a
|
665 |
-
target="_blank"
|
666 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure stripe payment.', 'metform'); ?></a></span>
|
667 |
-
</div>
|
668 |
-
<?php endif ?>
|
669 |
-
|
670 |
-
|
671 |
-
</div>
|
672 |
-
|
673 |
-
</div>
|
674 |
-
|
675 |
-
<div role="tabpanel" class="attr-tab-pane" id="mf-crm">
|
676 |
-
|
677 |
-
<div class="attr-modal-body" id="metform_form_modal_body">
|
678 |
-
|
679 |
-
<div class="mf-input-group">
|
680 |
-
<label class="attr-input-label">
|
681 |
-
<input type="checkbox" value="1" name="mf_hubspot"
|
682 |
-
class="mf-admin-control-input mf-hubsopt">
|
683 |
-
<span><?php esc_html_e('Hubspot Contact:', 'metform'); ?></span>
|
684 |
-
</label>
|
685 |
-
<span
|
686 |
-
class='mf-input-help'><?php esc_html_e('Integrate hubspot with this form. ', 'metform'); ?><a
|
687 |
-
target="_blank"
|
688 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure Hubspot.', 'metform'); ?></a></span>
|
689 |
-
</div>
|
690 |
-
|
691 |
-
<div class="mf-input-group">
|
692 |
-
|
693 |
-
<label class="attr-input-label">
|
694 |
-
<input type="checkbox" value="1" name="mf_hubspot_forms"
|
695 |
-
class="mf-admin-control-input mf-hubspot-forms">
|
696 |
-
<span><?php esc_html_e('Hubspot Forms:', 'metform'); ?></span>
|
697 |
-
</label>
|
698 |
-
|
699 |
-
|
700 |
-
<div class="hubspot_forms_section">
|
701 |
-
|
702 |
-
<label class="attr-input-label">
|
703 |
-
|
704 |
-
<span><?php esc_html_e('Fetch hubspot forms'); ?><span
|
705 |
-
class="dashicons dashicons-update metfrom-btn-refresh-hubsopt-list"></span></span>
|
706 |
-
</label>
|
707 |
-
|
708 |
-
<select name='hubspot_forms' class="attr-form-control hubspot_forms">
|
709 |
-
|
710 |
-
</select>
|
711 |
-
|
712 |
-
<input type="hidden" class="mf_hubspot_form_guid" name="mf_hubspot_form_guid">
|
713 |
-
<input type="hidden" class="mf_hubspot_form_portalId"
|
714 |
-
name="mf_hubspot_form_portalId">
|
715 |
-
|
716 |
-
<div id="mf-hubsopt-fileds"></div>
|
717 |
-
|
718 |
-
</div>
|
719 |
-
|
720 |
-
|
721 |
-
</div>
|
722 |
-
|
723 |
-
<!-- Zoho integration -->
|
724 |
-
|
725 |
-
|
726 |
-
<div class="mf-input-group">
|
727 |
-
<label class="attr-input-label">
|
728 |
-
<input type="checkbox" value="1" name="mf_zoho"
|
729 |
-
class="mf-admin-control-input mf-zoho">
|
730 |
-
<span><?php esc_html_e('Zoho Contact:', 'metform'); ?></span>
|
731 |
-
</label>
|
732 |
-
<span
|
733 |
-
class='mf-input-help'><?php esc_html_e('Integrate Zoho contacts with this form. ', 'metform'); ?><a
|
734 |
-
target="_blank"
|
735 |
-
href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure Zoho.', 'metform'); ?></a></span>
|
736 |
-
</div>
|
737 |
-
|
738 |
-
</div>
|
739 |
-
|
740 |
-
</div>
|
741 |
-
|
742 |
-
<?php endif; ?>
|
743 |
-
|
744 |
-
<?php do_action('mf_form_settings_tab_content'); ?>
|
745 |
-
|
746 |
-
</div>
|
747 |
-
|
748 |
-
<div class="attr-modal-footer">
|
749 |
-
<button type="button" class="attr-btn attr-btn-default metform-form-save-btn-editor"><img
|
750 |
-
class="form-editor-icon"
|
751 |
-
src="<?php echo \MetForm\Plugin::instance()->public_url() . 'assets/img/elementor-edit-logo.png'; ?>"><?php esc_html_e('Edit content', 'metform'); ?>
|
752 |
-
</button>
|
753 |
-
<button type="submit"
|
754 |
-
class="attr-btn attr-btn-primary metform-form-save-btn"><?php esc_html_e('Save changes', 'metform'); ?></button>
|
755 |
-
</div>
|
756 |
-
|
757 |
-
<div class="mf-spinner"></div>
|
758 |
-
</div>
|
759 |
-
</form>
|
760 |
-
</div>
|
761 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/integrations/Mail_Adapter.php
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Integrations;
|
4 |
-
|
5 |
-
|
6 |
-
class Mail_Adapter implements Mail_Adapter_Contract {
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
public function get_token() {
|
11 |
-
|
12 |
-
}
|
13 |
-
|
14 |
-
|
15 |
-
public function get_adapter(){
|
16 |
-
|
17 |
-
}
|
18 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/integrations/Mail_Adapter_Contract.php
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Integrations;
|
4 |
-
|
5 |
-
|
6 |
-
interface Mail_Adapter_Contract {
|
7 |
-
|
8 |
-
|
9 |
-
public function get_token();
|
10 |
-
|
11 |
-
public function get_adapter();
|
12 |
-
|
13 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/integrations/google-recaptcha.php
DELETED
@@ -1,85 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Integrations;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
class Google_Recaptcha {
|
6 |
-
|
7 |
-
use \MetForm\Traits\Singleton;
|
8 |
-
|
9 |
-
private $return;
|
10 |
-
|
11 |
-
public function verify_captcha_v2( $form_data, $form_settings ){
|
12 |
-
|
13 |
-
$secretKey = ((isset($form_settings['mf_recaptcha_secret_key']) && ($form_settings['mf_recaptcha_secret_key'] != '')) ? $form_settings['mf_recaptcha_secret_key'] : '');
|
14 |
-
|
15 |
-
$captcha = (isset($form_data['g-recaptcha-response']) ? $form_data['g-recaptcha-response'] : '');
|
16 |
-
|
17 |
-
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
18 |
-
$data = array(
|
19 |
-
'secret' => $secretKey,
|
20 |
-
'response' => $captcha,
|
21 |
-
'remoteip' => $_SERVER['REMOTE_ADDR']
|
22 |
-
);
|
23 |
-
|
24 |
-
$curlConfig = array(
|
25 |
-
CURLOPT_URL => $url,
|
26 |
-
CURLOPT_POST => true,
|
27 |
-
CURLOPT_RETURNTRANSFER => true,
|
28 |
-
CURLOPT_POSTFIELDS => $data
|
29 |
-
);
|
30 |
-
|
31 |
-
$ch = curl_init();
|
32 |
-
curl_setopt_array($ch, $curlConfig);
|
33 |
-
$response = curl_exec($ch);
|
34 |
-
curl_close($ch);
|
35 |
-
|
36 |
-
$responseKeys = json_decode($response,true);
|
37 |
-
$this->return['responseKeys'] = $responseKeys;
|
38 |
-
|
39 |
-
if($responseKeys["success"]) {
|
40 |
-
$this->return['status'] = 1;
|
41 |
-
} else {
|
42 |
-
$this->return['status'] = 0;
|
43 |
-
$this->return['error'] = esc_html__('Captcha is not verified.','metform');
|
44 |
-
}
|
45 |
-
|
46 |
-
return $this->return;
|
47 |
-
}
|
48 |
-
|
49 |
-
public function verify_captcha_v3( $form_data, $form_settings ){
|
50 |
-
|
51 |
-
$secretKey = ((isset($form_settings['mf_recaptcha_secret_key_v3']) && ($form_settings['mf_recaptcha_secret_key_v3'] != '')) ? $form_settings['mf_recaptcha_secret_key_v3'] : '');
|
52 |
-
|
53 |
-
$captcha = (isset($form_data['g-recaptcha-response-v3']) ? $form_data['g-recaptcha-response-v3'] : '');
|
54 |
-
|
55 |
-
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
56 |
-
$data = array(
|
57 |
-
'secret' => $secretKey,
|
58 |
-
'response' => $captcha,
|
59 |
-
);
|
60 |
-
|
61 |
-
$curlConfig = array(
|
62 |
-
CURLOPT_URL => $url,
|
63 |
-
CURLOPT_POST => true,
|
64 |
-
CURLOPT_POSTFIELDS => $data,
|
65 |
-
CURLOPT_RETURNTRANSFER => true,
|
66 |
-
);
|
67 |
-
|
68 |
-
$ch = curl_init();
|
69 |
-
curl_setopt_array($ch, $curlConfig);
|
70 |
-
$response = curl_exec($ch);
|
71 |
-
curl_close($ch);
|
72 |
-
|
73 |
-
$responseKeys = json_decode($response,true);
|
74 |
-
$this->return['responseKeys'] = $responseKeys;
|
75 |
-
|
76 |
-
if($responseKeys["success"]) {
|
77 |
-
$this->return['status'] = 1;
|
78 |
-
} else {
|
79 |
-
$this->return['status'] = 0;
|
80 |
-
$this->return['error'] = esc_html__('Captcha is not verified.','metform');
|
81 |
-
}
|
82 |
-
|
83 |
-
return $this->return;
|
84 |
-
}
|
85 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/integrations/mail-chimp.php
DELETED
@@ -1,92 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace MetForm\Core\Integrations;
|
4 |
-
|
5 |
-
defined('ABSPATH') || exit;
|
6 |
-
|
7 |
-
class Mail_Chimp
|
8 |
-
{
|
9 |
-
|
10 |
-
public function call_api($form_data, $settings)
|
11 |
-
{
|
12 |
-
|
13 |
-
$return = [];
|
14 |
-
$auth = [
|
15 |
-
'api_key' => ($settings['auth']['mf_mailchimp_api_key'] != '') ? $settings['auth']['mf_mailchimp_api_key'] : null,
|
16 |
-
'list_id' => ($settings['auth']['mf_mailchimp_list_id'] != '') ? $settings['auth']['mf_mailchimp_list_id'] : null,
|
17 |
-
|
18 |
-
];
|
19 |
-
|
20 |
-
$data = [
|
21 |
-
'email_address' => (isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : ''),
|
22 |
-
'status' => 'subscribed',
|
23 |
-
'status_if_new' => 'subscribed',
|
24 |
-
'merge_fields' => [
|
25 |
-
'FNAME' => (isset($form_data['mf-listing-fname']) ? $form_data['mf-listing-fname'] : ''),
|
26 |
-
'LNAME' => (isset($form_data['mf-listing-lname']) ? $form_data['mf-listing-lname'] : ''),
|
27 |
-
// 'PHONE' => (isset($form_data['mf-listing-phone']) ? $form_data['mf-listing-phone'] : ''),
|
28 |
-
],
|
29 |
-
];
|
30 |
-
$server = explode('-', $auth['api_key']);
|
31 |
-
$url = 'https://' . $server[1] . '.api.mailchimp.com/3.0/lists/' . $auth['list_id'] . '/members/';
|
32 |
-
|
33 |
-
$response = wp_remote_post(
|
34 |
-
$url,
|
35 |
-
[
|
36 |
-
'method' => 'POST',
|
37 |
-
'data_format' => 'body',
|
38 |
-
'timeout' => 45,
|
39 |
-
'headers' => [
|
40 |
-
|
41 |
-
'Authorization' => 'apikey ' . $auth['api_key'],
|
42 |
-
'Content-Type' => 'application/json; charset=utf-8'
|
43 |
-
],
|
44 |
-
'body' => json_encode($data)
|
45 |
-
]
|
46 |
-
);
|
47 |
-
|
48 |
-
if (is_wp_error($response)) {
|
49 |
-
$error_message = $response->get_error_message();
|
50 |
-
$return['status'] = 0;
|
51 |
-
$return['msg'] = "Something went wrong: " . esc_html($error_message);
|
52 |
-
} else {
|
53 |
-
$return['status'] = 1;
|
54 |
-
$return['msg'] = esc_html__('Your data inserted on ActiveCampaign.', 'metform');
|
55 |
-
}
|
56 |
-
|
57 |
-
return $return;
|
58 |
-
}
|
59 |
-
|
60 |
-
public static function get_list($api_key){
|
61 |
-
|
62 |
-
$server = explode('-',$api_key);
|
63 |
-
|
64 |
-
$url = 'https://'.$server[1].'.api.mailchimp.com/3.0/lists';
|
65 |
-
|
66 |
-
$response = wp_remote_post( $url, [
|
67 |
-
'method' => 'GET',
|
68 |
-
'data_format' => 'body',
|
69 |
-
'timeout' => 45,
|
70 |
-
'headers' => [
|
71 |
-
|
72 |
-
'Authorization' => 'apikey '.$api_key,
|
73 |
-
'Content-Type' => 'application/json; charset=utf-8'
|
74 |
-
],
|
75 |
-
'body' => ''
|
76 |
-
]
|
77 |
-
);
|
78 |
-
|
79 |
-
return $response;
|
80 |
-
|
81 |
-
// if ( is_wp_error( $response ) ) {
|
82 |
-
// $error_message = $response->get_error_message();
|
83 |
-
// $return['status'] = 0;
|
84 |
-
// $return['msg'] = "Something went wrong: ".esc_html($error_message);
|
85 |
-
// } else {
|
86 |
-
// $return['status'] = 1;
|
87 |
-
// $return['msg'] = esc_html__('Your data inserted on mailchimp.', 'metform');
|
88 |
-
// }
|
89 |
-
|
90 |
-
// return $return;
|
91 |
-
}
|
92 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/core/integrations/provider/aweber/test
DELETED
File without changes
|
trunk/core/integrations/slack.php
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm\Core\Integrations;
|
3 |
-
defined( 'ABSPATH' ) || exit;
|
4 |
-
|
5 |
-
class Slack {
|
6 |
-
|
7 |
-
public function call_webhook( $form_data, $settings ){
|
8 |
-
$msg = [];
|
9 |
-
$data = [
|
10 |
-
"text" => "New form submitted.",
|
11 |
-
"pretext" => "from slack Webhook",
|
12 |
-
"color" => "#36a64f",
|
13 |
-
"fields" => [
|
14 |
-
[
|
15 |
-
"title" => "First Name",
|
16 |
-
"value" => isset($form_data["mf-listing-fname"]) ? $form_data["mf-listing-fname"] : '',
|
17 |
-
],
|
18 |
-
[
|
19 |
-
"title" => "Last Name",
|
20 |
-
"value" => isset($form_data["mf-listing-lname"]) ? $form_data["mf-listing-lname"] : '',
|
21 |
-
],
|
22 |
-
[
|
23 |
-
"title" => "Email",
|
24 |
-
"value" => isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : '',
|
25 |
-
],
|
26 |
-
// [
|
27 |
-
// "title" => "Phone",
|
28 |
-
// "value" => isset($form_data["mf-listing-phone"]) ? $form_data["mf-listing-phone"] : '',
|
29 |
-
// ],
|
30 |
-
],
|
31 |
-
];
|
32 |
-
|
33 |
-
$status = wp_remote_post( $settings['url'], array(
|
34 |
-
'method' => 'POST',
|
35 |
-
'timeout' => 30,
|
36 |
-
'redirection' => 5,
|
37 |
-
'httpversion' => '1.0',
|
38 |
-
'blocking' => true,
|
39 |
-
'headers' => array(),
|
40 |
-
'body' => json_encode($data),
|
41 |
-
'cookies' => array()
|
42 |
-
)
|
43 |
-
);
|
44 |
-
|
45 |
-
if(is_wp_error($status)){
|
46 |
-
$msg['status'] = 0;
|
47 |
-
$msg['msg'] = "Something went wrong : ".$status->get_error_message();
|
48 |
-
}else{
|
49 |
-
$msg['status'] = 1;
|
50 |
-
$msg['msg'] = esc_html__('Your data inserted on slack.', 'metform');
|
51 |
-
}
|
52 |
-
return $msg;
|
53 |
-
}
|
54 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/languages/metform.pot
DELETED
@@ -1,2913 +0,0 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
-
"Project-Id-Version: MetForm\n"
|
6 |
-
"POT-Creation-Date: 2020-05-05 20:23+0600\n"
|
7 |
-
"PO-Revision-Date: 2020-05-05 20:23+0600\n"
|
8 |
-
"Last-Translator: \n"
|
9 |
-
"Language-Team: \n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.3\n"
|
14 |
-
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
-
"X-Poedit-WPHeader: metform.php\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
-
"X-Poedit-SearchPath-0: .\n"
|
22 |
-
"X-Poedit-SearchPathExcluded-0: *.min.js\n"
|
23 |
-
|
24 |
-
#. Plugin Name of the plugin/theme
|
25 |
-
#: controls/form-editor-modal.php:12 plugin.php:242 plugin.php:243
|
26 |
-
#: widgets/form.php:16
|
27 |
-
msgid "MetForm"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: controls/form-editor-modal.php:14
|
31 |
-
msgid "Form settings"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: controls/form-editor-modal.php:15
|
35 |
-
msgid "Update & Close"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: controls/form-editor-modal.php:20 controls/form-editor-modal.php:21
|
39 |
-
#: controls/form-picker-modal.php:93
|
40 |
-
msgid "Close"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: controls/form-editor-modal.php:46
|
44 |
-
msgid "Loading"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: controls/form-picker-modal.php:12
|
48 |
-
msgid "Select Form"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: controls/form-picker-modal.php:13
|
52 |
-
msgid "Select saved form"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: controls/form-picker-modal.php:23
|
56 |
-
msgid "New"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: controls/form-picker-modal.php:24
|
60 |
-
msgid "Create new form"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: controls/form-picker-modal.php:37
|
64 |
-
msgid "Enter a form name"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: controls/form-picker-modal.php:70
|
68 |
-
msgid "Buy Pro"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: controls/form-picker-modal.php:74
|
72 |
-
msgid "Demo"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: controls/form-picker-modal.php:89
|
76 |
-
msgid "Edit form"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: controls/form-picker-modal.php:91
|
80 |
-
msgid "Save & close"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: controls/form-picker-utils.php:33
|
84 |
-
msgid "Edit Form Content"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: controls/form-picker-utils.php:33
|
88 |
-
msgid "Edit"
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: controls/form-picker-utils.php:40
|
92 |
-
msgid "No content is added yet."
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: core/admin/base.php:28 traits/button-controls.php:37
|
96 |
-
#: widgets/checkbox/checkbox.php:217 widgets/date/date.php:52
|
97 |
-
#: widgets/email/email.php:48 widgets/file-upload/file-upload.php:79
|
98 |
-
#: widgets/listing-fname/listing-fname.php:48
|
99 |
-
#: widgets/listing-lname/listing-lname.php:48
|
100 |
-
#: widgets/listing-optin/listing-optin.php:156
|
101 |
-
#: widgets/multi-select/multi-select.php:123 widgets/number/number.php:48
|
102 |
-
#: widgets/password/password.php:48 widgets/radio/radio.php:218
|
103 |
-
#: widgets/range/range.php:48 widgets/rating/rating.php:48
|
104 |
-
#: widgets/select/select.php:123 widgets/summary/summary.php:48
|
105 |
-
#: widgets/switch/switch.php:65 widgets/telephone/telephone.php:48
|
106 |
-
#: widgets/text/text.php:48 widgets/textarea/textarea.php:49
|
107 |
-
#: widgets/time/time.php:52 widgets/url/url.php:49
|
108 |
-
msgid "Settings"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: core/admin/views/settings.php:21 core/admin/views/settings.php:72
|
112 |
-
msgid "Dashboard"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: core/admin/views/settings.php:22
|
116 |
-
msgid "All dashboard info here"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: core/admin/views/settings.php:30 core/admin/views/settings.php:294
|
120 |
-
#: core/forms/views/modal-editor.php:18
|
121 |
-
msgid "General"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: core/admin/views/settings.php:31
|
125 |
-
msgid "All General info here"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: core/admin/views/settings.php:40 core/admin/views/settings.php:406
|
129 |
-
#: core/entries/meta-data.php:221 core/forms/views/modal-editor.php:27
|
130 |
-
msgid "Payment"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: core/admin/views/settings.php:41
|
134 |
-
msgid "All payment info here"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: core/admin/views/settings.php:49 core/admin/views/settings.php:530
|
138 |
-
msgid "Newsletter Integration"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: core/admin/views/settings.php:50
|
142 |
-
msgid "All newsletter integration info here"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: core/admin/views/settings.php:73 core/admin/views/settings.php:295
|
146 |
-
#: core/admin/views/settings.php:407 core/admin/views/settings.php:532
|
147 |
-
msgid "Save Changes"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: core/admin/views/settings.php:83
|
151 |
-
msgid "Top Notch"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: core/admin/views/settings.php:84
|
155 |
-
msgid "Features"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: core/admin/views/settings.php:85 core/admin/views/settings.php:144
|
159 |
-
msgid "features"
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#: core/admin/views/settings.php:87 core/admin/views/settings.php:146
|
163 |
-
#: core/admin/views/settings.php:220
|
164 |
-
msgid ""
|
165 |
-
"Get started by spending some time with the documentation to get familiar "
|
166 |
-
"with ElementsKit."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: core/admin/views/settings.php:95 core/admin/views/settings.php:154
|
170 |
-
msgid "Easy to use"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: core/admin/views/settings.php:97 core/admin/views/settings.php:104
|
174 |
-
#: core/admin/views/settings.php:111 core/admin/views/settings.php:118
|
175 |
-
#: core/admin/views/settings.php:125 core/admin/views/settings.php:132
|
176 |
-
msgid ""
|
177 |
-
"Get started by spending some time with the documentation to get familiar "
|
178 |
-
"with MetForm"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: core/admin/views/settings.php:102
|
182 |
-
msgid "Moden Typography"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: core/admin/views/settings.php:109 core/admin/views/settings.php:160
|
186 |
-
msgid "Perfectly Match"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: core/admin/views/settings.php:116
|
190 |
-
msgid "Dynamic Forms"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: core/admin/views/settings.php:123
|
194 |
-
msgid "Create Faster"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: core/admin/views/settings.php:130
|
198 |
-
msgid "Awesome Layout"
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: core/admin/views/settings.php:142
|
202 |
-
msgid "What included with Free &"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: core/admin/views/settings.php:143
|
206 |
-
msgid "PRO"
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: core/admin/views/settings.php:154 core/admin/views/settings.php:157
|
210 |
-
#: core/admin/views/settings.php:160
|
211 |
-
msgid "Pro"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: core/admin/views/settings.php:157
|
215 |
-
msgid "Modern Typography"
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: core/admin/views/settings.php:169 core/admin/views/settings.php:185
|
219 |
-
#: core/admin/views/settings.php:199
|
220 |
-
msgid ""
|
221 |
-
"Get started by spending some time with the documentation to get familiar "
|
222 |
-
"with MetForm Get started by spending some time with the documentation to get "
|
223 |
-
"notification in real time."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: core/admin/views/settings.php:172 core/admin/views/settings.php:188
|
227 |
-
#: core/admin/views/settings.php:202
|
228 |
-
msgid "Success Message"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: core/admin/views/settings.php:173 core/admin/views/settings.php:189
|
232 |
-
#: core/admin/views/settings.php:203
|
233 |
-
msgid "Required Login"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: core/admin/views/settings.php:174 core/admin/views/settings.php:190
|
237 |
-
#: core/admin/views/settings.php:204
|
238 |
-
msgid "Hide Form After Submission"
|
239 |
-
msgstr ""
|
240 |
-
|
241 |
-
#: core/admin/views/settings.php:176 core/admin/views/settings.php:192
|
242 |
-
#: core/admin/views/settings.php:206
|
243 |
-
msgid "Store Entries"
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: core/admin/views/settings.php:179
|
247 |
-
msgid "View Details"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: core/admin/views/settings.php:217
|
251 |
-
msgid "General Knowledge Base"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: core/admin/views/settings.php:218
|
255 |
-
msgid "FAQ"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: core/admin/views/settings.php:228
|
259 |
-
msgid "1. How to create a Invitation Form using MetForm?"
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: core/admin/views/settings.php:232 core/admin/views/settings.php:243
|
263 |
-
#: core/admin/views/settings.php:254
|
264 |
-
msgid ""
|
265 |
-
"You will get 20+ complete homepages and total 450+ blocks in our layout "
|
266 |
-
"library and we’re continuously updating the numbers there."
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: core/admin/views/settings.php:239
|
270 |
-
msgid "2. How to translate language with WPML?"
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: core/admin/views/settings.php:250
|
274 |
-
msgid "3. How to add custom css in specific section shortcode?"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: core/admin/views/settings.php:261
|
278 |
-
msgid "View all faq’s"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: core/admin/views/settings.php:270
|
282 |
-
msgid "Satisfied!"
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: core/admin/views/settings.php:270
|
286 |
-
msgid "Don’t forget to rate our item."
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#: core/admin/views/settings.php:272
|
290 |
-
msgid "review"
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#: core/admin/views/settings.php:278
|
294 |
-
msgid "Rate it now"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: core/admin/views/settings.php:283
|
298 |
-
msgid "Rate Now Thumb"
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: core/admin/views/settings.php:301
|
302 |
-
msgid "reCaptcha"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: core/admin/views/settings.php:306
|
306 |
-
msgid "Map"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: core/admin/views/settings.php:317
|
310 |
-
msgid "Select version:"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: core/admin/views/settings.php:321
|
314 |
-
msgid "reCAPTCHA V2"
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: core/admin/views/settings.php:324
|
318 |
-
msgid "reCAPTCHA V3"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: core/admin/views/settings.php:329
|
322 |
-
msgid "Select google reCaptcha version which one want to use."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: core/admin/views/settings.php:336 core/admin/views/settings.php:355
|
326 |
-
msgid "Site key:"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: core/admin/views/settings.php:338 core/admin/views/settings.php:357
|
330 |
-
msgid "Insert site key"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: core/admin/views/settings.php:340 core/admin/views/settings.php:359
|
334 |
-
msgid "Create google reCaptcha site key from reCaptcha admin panel. "
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: core/admin/views/settings.php:340 core/admin/views/settings.php:348
|
338 |
-
#: core/admin/views/settings.php:359 core/admin/views/settings.php:367
|
339 |
-
#: core/admin/views/settings.php:385 core/admin/views/settings.php:433
|
340 |
-
#: core/admin/views/settings.php:441 core/admin/views/settings.php:473
|
341 |
-
#: core/admin/views/settings.php:481 core/admin/views/settings.php:500
|
342 |
-
#: core/admin/views/settings.php:507
|
343 |
-
msgid "Create from here"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: core/admin/views/settings.php:344 core/admin/views/settings.php:363
|
347 |
-
msgid "Secret key:"
|
348 |
-
msgstr ""
|
349 |
-
|
350 |
-
#: core/admin/views/settings.php:346 core/admin/views/settings.php:365
|
351 |
-
msgid "Insert secret key"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: core/admin/views/settings.php:348 core/admin/views/settings.php:367
|
355 |
-
msgid "Create google reCaptcha secret key from reCaptcha admin panel. "
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: core/admin/views/settings.php:381
|
359 |
-
msgid "API:"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: core/admin/views/settings.php:383
|
363 |
-
msgid "Insert map api key"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: core/admin/views/settings.php:385
|
367 |
-
msgid "Create google map api key from google developer console. "
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: core/admin/views/settings.php:413
|
371 |
-
msgid "Paypal"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: core/admin/views/settings.php:418
|
375 |
-
msgid "Stripe"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: core/admin/views/settings.php:430
|
379 |
-
msgid "Paypal email:"
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#: core/admin/views/settings.php:431
|
383 |
-
msgid "Paypal email"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: core/admin/views/settings.php:433
|
387 |
-
msgid "Enter here your paypal email. "
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: core/admin/views/settings.php:438
|
391 |
-
msgid "Paypal token:"
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
#: core/admin/views/settings.php:439
|
395 |
-
msgid "Paypal token"
|
396 |
-
msgstr ""
|
397 |
-
|
398 |
-
#: core/admin/views/settings.php:441
|
399 |
-
msgid "Enter here your paypal token. This is optional. "
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
#: core/admin/views/settings.php:446 core/admin/views/settings.php:487
|
403 |
-
msgid "Enable sandbox mode:"
|
404 |
-
msgstr ""
|
405 |
-
|
406 |
-
#: core/admin/views/settings.php:449
|
407 |
-
msgid "Enable this for testing payment method. "
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: core/admin/views/settings.php:462
|
411 |
-
msgid "Image url:"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: core/admin/views/settings.php:463
|
415 |
-
msgid "Stripe image url"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: core/admin/views/settings.php:465
|
419 |
-
msgid ""
|
420 |
-
"Enter here your stripe image url. This image will show on stripe payment pop "
|
421 |
-
"up modal. "
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: core/admin/views/settings.php:470
|
425 |
-
msgid "Live publishiable key:"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: core/admin/views/settings.php:471
|
429 |
-
msgid "Stripe live publishiable key"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: core/admin/views/settings.php:473
|
433 |
-
msgid "Enter here your stripe live publishiable key. "
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
#: core/admin/views/settings.php:478
|
437 |
-
msgid "Live secret key:"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: core/admin/views/settings.php:479
|
441 |
-
msgid "Stripe live secret key"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: core/admin/views/settings.php:481
|
445 |
-
msgid "Enter here your stripe live secret key. "
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: core/admin/views/settings.php:490
|
449 |
-
msgid "Enable this for testing your payment system. "
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: core/admin/views/settings.php:497
|
453 |
-
msgid "Test publishiable key:"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: core/admin/views/settings.php:498
|
457 |
-
msgid "Stripe test publishiable key"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: core/admin/views/settings.php:500
|
461 |
-
msgid "Enter here your test publishiable key. "
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: core/admin/views/settings.php:504
|
465 |
-
msgid "Test secret key:"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: core/admin/views/settings.php:505
|
469 |
-
msgid "Stripe test secret key"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: core/admin/views/settings.php:507
|
473 |
-
msgid "Enter here your test secret key. "
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: core/admin/views/settings.php:539
|
477 |
-
msgid "MailChimp"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: core/admin/views/settings.php:544
|
481 |
-
msgid "Aweber"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: core/admin/views/settings.php:548
|
485 |
-
msgid "ActiveCampaign"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: core/admin/views/settings.php:552
|
489 |
-
msgid "Get Response"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: core/admin/views/settings.php:556
|
493 |
-
msgid "ConvertKit"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: core/admin/views/settings.php:569 core/admin/views/settings.php:666
|
497 |
-
#: core/admin/views/settings.php:718 core/admin/views/settings.php:745
|
498 |
-
msgid "API Key:"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: core/admin/views/settings.php:570
|
502 |
-
msgid "Mailchimp api key"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: core/admin/views/settings.php:572
|
506 |
-
msgid "Enter here your Mailchimp api key. "
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: core/admin/views/settings.php:572 core/admin/views/settings.php:606
|
510 |
-
#: core/admin/views/settings.php:614 core/admin/views/settings.php:669
|
511 |
-
#: core/admin/views/settings.php:678 core/admin/views/settings.php:713
|
512 |
-
#: core/admin/views/settings.php:721 core/admin/views/settings.php:748
|
513 |
-
msgid "Get API."
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: core/admin/views/settings.php:581 core/admin/views/settings.php:646
|
517 |
-
#: core/admin/views/settings.php:688 core/admin/views/settings.php:729
|
518 |
-
#: core/admin/views/settings.php:756 core/admin/views/settings.php:789
|
519 |
-
#: core/admin/views/settings.php:816
|
520 |
-
msgid "How To"
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
-
#: core/admin/views/settings.php:582 core/admin/views/settings.php:647
|
524 |
-
#: core/admin/views/settings.php:689 core/admin/views/settings.php:730
|
525 |
-
#: core/admin/views/settings.php:757 core/admin/views/settings.php:790
|
526 |
-
#: core/admin/views/settings.php:817
|
527 |
-
msgid ""
|
528 |
-
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. "
|
529 |
-
"Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse "
|
530 |
-
"urna nibh, viverra non, semper suscipit, posuere a, pede."
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: core/admin/views/settings.php:585 core/admin/views/settings.php:650
|
534 |
-
#: core/admin/views/settings.php:692 core/admin/views/settings.php:733
|
535 |
-
#: core/admin/views/settings.php:760 core/admin/views/settings.php:793
|
536 |
-
#: core/admin/views/settings.php:820
|
537 |
-
msgid "Item 1"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: core/admin/views/settings.php:586 core/admin/views/settings.php:651
|
541 |
-
#: core/admin/views/settings.php:693 core/admin/views/settings.php:734
|
542 |
-
#: core/admin/views/settings.php:761 core/admin/views/settings.php:794
|
543 |
-
#: core/admin/views/settings.php:821
|
544 |
-
msgid "Item 2"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: core/admin/views/settings.php:587 core/admin/views/settings.php:652
|
548 |
-
#: core/admin/views/settings.php:694 core/admin/views/settings.php:735
|
549 |
-
#: core/admin/views/settings.php:762 core/admin/views/settings.php:795
|
550 |
-
#: core/admin/views/settings.php:822
|
551 |
-
msgid "Item 3"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: core/admin/views/settings.php:590 core/admin/views/settings.php:655
|
555 |
-
#: core/admin/views/settings.php:697 core/admin/views/settings.php:738
|
556 |
-
#: core/admin/views/settings.php:765 core/admin/views/settings.php:798
|
557 |
-
#: core/admin/views/settings.php:825
|
558 |
-
msgid "View Documentation"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: core/admin/views/settings.php:603
|
562 |
-
msgid "Developer App ID:"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: core/admin/views/settings.php:604
|
566 |
-
msgid "Aweber developer clientId key"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: core/admin/views/settings.php:606
|
570 |
-
msgid "Enter here your Aweber developer app key. "
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: core/admin/views/settings.php:611
|
574 |
-
msgid "Developer App Secret:"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: core/admin/views/settings.php:612
|
578 |
-
msgid "Aweber developer secret key"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: core/admin/views/settings.php:614
|
582 |
-
msgid "Enter here your Aweber developer secret key. "
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: core/admin/views/settings.php:619
|
586 |
-
msgid "Redirect url:"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: core/admin/views/settings.php:667 core/admin/views/settings.php:676
|
590 |
-
msgid "ConvertKit api key"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: core/admin/views/settings.php:669 core/admin/views/settings.php:678
|
594 |
-
msgid "Enter here your ConvertKit api key. "
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: core/admin/views/settings.php:675
|
598 |
-
msgid "Secret Key:"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: core/admin/views/settings.php:710
|
602 |
-
msgid "API URL:"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: core/admin/views/settings.php:711
|
606 |
-
msgid "ActiveCampaign API URL"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: core/admin/views/settings.php:713 core/admin/views/settings.php:721
|
610 |
-
#: core/admin/views/settings.php:748
|
611 |
-
msgid "Enter here your ActiveCampaign api key. "
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: core/admin/views/settings.php:719 core/admin/views/settings.php:746
|
615 |
-
msgid "ActiveCampaign api key"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: core/admin/views/settings.php:779 core/admin/views/settings.php:806
|
619 |
-
msgid "GetResponse API Key:"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: core/admin/views/settings.php:780 core/admin/views/settings.php:807
|
623 |
-
msgid "GetResponse api key"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: core/entries/action.php:39
|
627 |
-
msgid "Some thing went wrong."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: core/entries/action.php:77
|
631 |
-
msgid "Unauthorized submission."
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: core/entries/action.php:92 core/entries/action.php:122
|
635 |
-
msgid "Please solve the recaptcha."
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: core/entries/action.php:98
|
639 |
-
msgid "Google captcha token not found."
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: core/entries/action.php:144
|
643 |
-
msgid "Time out of this captcha. Please reload or choose another one."
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: core/entries/action.php:153
|
647 |
-
msgid "Enter correct captcha."
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: core/entries/action.php:163
|
651 |
-
msgid "You must be logged in to submit form."
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: core/entries/action.php:173
|
655 |
-
msgid "Form submission limit execed."
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: core/entries/action.php:479
|
659 |
-
msgid " Please wait... Redirecting to paypal."
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: core/entries/action.php:517
|
663 |
-
msgid " Please wait... Open a Stripe Popup Box."
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: core/entries/action.php:645
|
667 |
-
msgid "Mail not found."
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: core/entries/action.php:687
|
671 |
-
msgid "Admin mail not found to send email."
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: core/entries/action.php:754
|
675 |
-
msgid "There was an error uploading your file. The error is: "
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: core/entries/cpt.php:14
|
679 |
-
msgctxt "Post Type General Name"
|
680 |
-
msgid "Entries"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: core/entries/cpt.php:15
|
684 |
-
msgctxt "Post Type Singular Name"
|
685 |
-
msgid "Entry"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: core/entries/cpt.php:16 core/entries/cpt.php:17
|
689 |
-
msgid "Entry"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: core/entries/cpt.php:18
|
693 |
-
msgid "Entry Archives"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: core/entries/cpt.php:19
|
697 |
-
msgid "Entry Attributes"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: core/entries/cpt.php:20 core/forms/cpt.php:320
|
701 |
-
msgid "Parent Item:"
|
702 |
-
msgstr ""
|
703 |
-
|
704 |
-
#: core/entries/cpt.php:21 core/forms/hooks.php:36
|
705 |
-
msgid "Entries"
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
#: core/entries/cpt.php:22
|
709 |
-
msgid "Add New Item"
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#: core/entries/cpt.php:23 core/forms/cpt.php:323
|
713 |
-
msgid "Add New"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: core/entries/cpt.php:24
|
717 |
-
msgid "New Item"
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: core/entries/cpt.php:25
|
721 |
-
msgid "Edit Item"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: core/entries/cpt.php:26
|
725 |
-
msgid "Update Item"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: core/entries/cpt.php:27
|
729 |
-
msgid "View Item"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: core/entries/cpt.php:28
|
733 |
-
msgid "View Items"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: core/entries/cpt.php:29
|
737 |
-
msgid "Search Item"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: core/entries/cpt.php:30 core/forms/cpt.php:330
|
741 |
-
msgid "Not found"
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
#: core/entries/cpt.php:31 core/forms/cpt.php:331
|
745 |
-
msgid "Not found in Trash"
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: core/entries/cpt.php:32 core/forms/cpt.php:332
|
749 |
-
msgid "Featured Image"
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: core/entries/cpt.php:33 core/forms/cpt.php:333
|
753 |
-
msgid "Set featured image"
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: core/entries/cpt.php:34 core/forms/cpt.php:334
|
757 |
-
msgid "Remove featured image"
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: core/entries/cpt.php:35 core/forms/cpt.php:335
|
761 |
-
msgid "Use as featured image"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: core/entries/cpt.php:36
|
765 |
-
msgid "Insert into item"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: core/entries/cpt.php:37
|
769 |
-
msgid "Uploaded to this item"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: core/entries/cpt.php:38
|
773 |
-
msgid "Form entries list"
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: core/entries/cpt.php:39
|
777 |
-
msgid "Form entries list navigation"
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: core/entries/cpt.php:40
|
781 |
-
msgid "Filter from entry list"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: core/entries/cpt.php:44
|
785 |
-
msgid "Form entry"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: core/entries/cpt.php:45
|
789 |
-
msgid "metform-entry"
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: core/entries/hooks.php:27
|
793 |
-
msgid "Form Name"
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: core/entries/hooks.php:29
|
797 |
-
msgid "Referral"
|
798 |
-
msgstr ""
|
799 |
-
|
800 |
-
#: core/entries/meta-data.php:35
|
801 |
-
msgid "Info"
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
#: core/entries/meta-data.php:58
|
805 |
-
msgid "Form Name "
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: core/entries/meta-data.php:64
|
809 |
-
msgid "Entry ID"
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: core/entries/meta-data.php:81
|
813 |
-
msgid "Data"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: core/entries/meta-data.php:103
|
817 |
-
msgid "Browser Data"
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: core/entries/meta-data.php:135
|
821 |
-
msgid "Browser data not captured."
|
822 |
-
msgstr ""
|
823 |
-
|
824 |
-
#: core/entries/meta-data.php:151
|
825 |
-
msgid "Files"
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: core/entries/meta-data.php:182
|
829 |
-
msgid "Download"
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: core/entries/meta-data.php:183
|
833 |
-
msgid "View"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: core/entries/meta-data.php:185
|
837 |
-
msgid "This file is not uploaded."
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: core/forms/action.php:78 core/forms/action.php:102
|
841 |
-
msgid "Form settings inserted"
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: core/forms/action.php:106
|
845 |
-
msgid ""
|
846 |
-
"You must active at least one field of these fields \"store entry/ "
|
847 |
-
"Confirmation/ Notification/ MailChimp/ Zapier\". "
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: core/forms/action.php:110 core/forms/action.php:146
|
851 |
-
msgid "You must enable \"store entries\" for integrating payment method."
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: core/forms/cpt.php:314
|
855 |
-
msgctxt "Post Type General Name"
|
856 |
-
msgid "Forms"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: core/forms/cpt.php:315
|
860 |
-
msgctxt "Post Type Singular Name"
|
861 |
-
msgid "Form"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: core/forms/cpt.php:316 core/forms/cpt.php:317
|
865 |
-
msgid "Form"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: core/forms/cpt.php:318
|
869 |
-
msgid "Form Archives"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: core/forms/cpt.php:319
|
873 |
-
msgid "Form Attributes"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: core/forms/cpt.php:321 core/forms/cpt.php:349
|
877 |
-
msgid "Forms"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: core/forms/cpt.php:322
|
881 |
-
msgid "Add New Form"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: core/forms/cpt.php:324
|
885 |
-
msgid "New Form"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: core/forms/cpt.php:325
|
889 |
-
msgid "Edit Form"
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: core/forms/cpt.php:326
|
893 |
-
msgid "Update Form"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: core/forms/cpt.php:327
|
897 |
-
msgid "View Form"
|
898 |
-
msgstr ""
|
899 |
-
|
900 |
-
#: core/forms/cpt.php:328
|
901 |
-
msgid "View Forms"
|
902 |
-
msgstr ""
|
903 |
-
|
904 |
-
#: core/forms/cpt.php:329
|
905 |
-
msgid "Search Forms"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: core/forms/cpt.php:336
|
909 |
-
msgid "Insert into form"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
#: core/forms/cpt.php:337
|
913 |
-
msgid "Uploaded to this form"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: core/forms/cpt.php:338
|
917 |
-
msgid "Forms list"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: core/forms/cpt.php:339
|
921 |
-
msgid "Forms list navigation"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: core/forms/cpt.php:340
|
925 |
-
msgid "Filter froms list"
|
926 |
-
msgstr ""
|
927 |
-
|
928 |
-
#: core/forms/cpt.php:350
|
929 |
-
msgid "metform form"
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: core/forms/hooks.php:35
|
933 |
-
msgid "Shortcode"
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
#: core/forms/hooks.php:37
|
937 |
-
msgid "Views/ Conversion"
|
938 |
-
msgstr ""
|
939 |
-
|
940 |
-
#: core/forms/hooks.php:62
|
941 |
-
msgid "Export CSV"
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
#: core/forms/views/modal-editor.php:14
|
945 |
-
msgid "Form Settings"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: core/forms/views/modal-editor.php:20
|
949 |
-
msgid "Confirmation"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: core/forms/views/modal-editor.php:22
|
953 |
-
msgid "Notification"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: core/forms/views/modal-editor.php:24
|
957 |
-
msgid "Integration"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: core/forms/views/modal-editor.php:29
|
961 |
-
msgid "CRM"
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#: core/forms/views/modal-editor.php:42
|
965 |
-
msgid "Title:"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: core/forms/views/modal-editor.php:44
|
969 |
-
msgid "New Form # "
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: core/forms/views/modal-editor.php:46
|
973 |
-
msgid "This is the form title"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: core/forms/views/modal-editor.php:51
|
977 |
-
msgid "Success Message:"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: core/forms/views/modal-editor.php:54
|
981 |
-
msgid "Thank you! Form submitted successfully."
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: core/forms/views/modal-editor.php:56
|
985 |
-
msgid "This mesage will be shown after a successful submission."
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: core/forms/views/modal-editor.php:63
|
989 |
-
msgid "Required Login:"
|
990 |
-
msgstr ""
|
991 |
-
|
992 |
-
#: core/forms/views/modal-editor.php:66
|
993 |
-
msgid "Without login, users can't submit the form."
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#: core/forms/views/modal-editor.php:73
|
997 |
-
msgid "Capture User Browser Data:"
|
998 |
-
msgstr ""
|
999 |
-
|
1000 |
-
#: core/forms/views/modal-editor.php:76
|
1001 |
-
msgid "Store user's browser data (ip, browser name, etc)"
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#: core/forms/views/modal-editor.php:83
|
1005 |
-
msgid "Hide Form After Submission:"
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#: core/forms/views/modal-editor.php:86
|
1009 |
-
msgid "After submission, hide the form for preventing multiple submission."
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: core/forms/views/modal-editor.php:93
|
1013 |
-
msgid "Store Entries:"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: core/forms/views/modal-editor.php:96
|
1017 |
-
msgid "Save submitted form data to database."
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: core/forms/views/modal-editor.php:101
|
1021 |
-
msgid "Entry Title"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: core/forms/views/modal-editor.php:105
|
1025 |
-
msgid "Enter here title of this form entries."
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: core/forms/views/modal-editor.php:113
|
1029 |
-
msgid "Limit Total Entries:"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
#: core/forms/views/modal-editor.php:121
|
1033 |
-
msgid "Limit the total number of submissions for this form."
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: core/forms/views/modal-editor.php:128
|
1037 |
-
msgid "Count views:"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: core/forms/views/modal-editor.php:130
|
1041 |
-
msgid "Track form views."
|
1042 |
-
msgstr ""
|
1043 |
-
|
1044 |
-
#: core/forms/views/modal-editor.php:137
|
1045 |
-
msgid "Stop Vertical Scrolling:"
|
1046 |
-
msgstr ""
|
1047 |
-
|
1048 |
-
#: core/forms/views/modal-editor.php:140
|
1049 |
-
msgid "Stop scrolling effect when submitting the form."
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: core/forms/views/modal-editor.php:145
|
1053 |
-
msgid "Redirect To:"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: core/forms/views/modal-editor.php:148
|
1057 |
-
msgid "Redirection link"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: core/forms/views/modal-editor.php:150
|
1061 |
-
msgid "Users will be redirected to the this link after submission."
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: core/forms/views/modal-editor.php:165
|
1065 |
-
msgid "Confirmation mail to user :"
|
1066 |
-
msgstr ""
|
1067 |
-
|
1068 |
-
#: core/forms/views/modal-editor.php:168
|
1069 |
-
msgid "Want to send a submission copy to user by email? Active this one."
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: core/forms/views/modal-editor.php:168 core/forms/views/modal-editor.php:520
|
1073 |
-
msgid "The form must have at least one Email widget and it should be required."
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: core/forms/views/modal-editor.php:173 core/forms/views/modal-editor.php:235
|
1077 |
-
msgid "Email Subject:"
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: core/forms/views/modal-editor.php:176 core/forms/views/modal-editor.php:238
|
1081 |
-
msgid "Email subject"
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: core/forms/views/modal-editor.php:178 core/forms/views/modal-editor.php:240
|
1085 |
-
msgid "Enter here email subject."
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: core/forms/views/modal-editor.php:183 core/forms/views/modal-editor.php:255
|
1089 |
-
msgid "Email From:"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: core/forms/views/modal-editor.php:186
|
1093 |
-
msgid "From email"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: core/forms/views/modal-editor.php:188
|
1097 |
-
msgid "Enter the email by which you want to send email to user."
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: core/forms/views/modal-editor.php:193 core/forms/views/modal-editor.php:265
|
1101 |
-
msgid "Email Reply To:"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: core/forms/views/modal-editor.php:196
|
1105 |
-
msgid "Reply to email"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: core/forms/views/modal-editor.php:198
|
1109 |
-
msgid "Enter email where user can reply/ you want to get reply."
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: core/forms/views/modal-editor.php:203
|
1113 |
-
msgid "Thank you message :"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: core/forms/views/modal-editor.php:206
|
1117 |
-
msgid "Thank you message!"
|
1118 |
-
msgstr ""
|
1119 |
-
|
1120 |
-
#: core/forms/views/modal-editor.php:208
|
1121 |
-
msgid ""
|
1122 |
-
"Enter here your message to include it in email body. Which will be send to "
|
1123 |
-
"user."
|
1124 |
-
msgstr ""
|
1125 |
-
|
1126 |
-
#: core/forms/views/modal-editor.php:212
|
1127 |
-
msgid "Email Attached Submission Copy:"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: core/forms/views/modal-editor.php:227
|
1131 |
-
msgid "Notification mail to admin :"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: core/forms/views/modal-editor.php:230
|
1135 |
-
msgid "Want to send a submission copy to admin by email? Active this one."
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: core/forms/views/modal-editor.php:245
|
1139 |
-
msgid "Email To:"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: core/forms/views/modal-editor.php:248
|
1143 |
-
msgid "example@mail.com, example@email.com"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: core/forms/views/modal-editor.php:250
|
1147 |
-
msgid "Enter admin email where you want to send mail."
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: core/forms/views/modal-editor.php:250
|
1151 |
-
msgid " for multiple email addresses please use \",\" separator."
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: core/forms/views/modal-editor.php:258
|
1155 |
-
msgid "Email from"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: core/forms/views/modal-editor.php:260
|
1159 |
-
msgid "Enter the email by which you want to send email to admin."
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: core/forms/views/modal-editor.php:268
|
1163 |
-
msgid "Email reply to"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: core/forms/views/modal-editor.php:270
|
1167 |
-
msgid "Enter email where admin can reply/ you want to get reply."
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: core/forms/views/modal-editor.php:275
|
1171 |
-
msgid "Admin Note : "
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: core/forms/views/modal-editor.php:278
|
1175 |
-
msgid "Admin note!"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: core/forms/views/modal-editor.php:280
|
1179 |
-
msgid "Enter here your email body. Which will be send to admin."
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: core/forms/views/modal-editor.php:294
|
1183 |
-
msgid "REST API:"
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: core/forms/views/modal-editor.php:297
|
1187 |
-
msgid "Send entry data to third party api/webhook"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: core/forms/views/modal-editor.php:303
|
1191 |
-
msgid "URL/Webhook:"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: core/forms/views/modal-editor.php:305
|
1195 |
-
msgid "Rest api url/webhook"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: core/forms/views/modal-editor.php:307
|
1199 |
-
msgid "Enter rest api url/webhook here."
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: core/forms/views/modal-editor.php:312
|
1203 |
-
msgid "POST"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: core/forms/views/modal-editor.php:313
|
1207 |
-
msgid "GET"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: core/forms/views/modal-editor.php:327
|
1211 |
-
msgid "Mail Chimp:"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: core/forms/views/modal-editor.php:330
|
1215 |
-
msgid "Integrate mailchimp with this form."
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: core/forms/views/modal-editor.php:330 core/forms/views/modal-editor.php:365
|
1219 |
-
#: core/forms/views/modal-editor.php:400 core/forms/views/modal-editor.php:429
|
1220 |
-
#: core/forms/views/modal-editor.php:463 core/forms/views/modal-editor.php:500
|
1221 |
-
msgid ""
|
1222 |
-
"The form must have at least one Email widget and it should be required. "
|
1223 |
-
msgstr ""
|
1224 |
-
|
1225 |
-
#: core/forms/views/modal-editor.php:332
|
1226 |
-
msgid "Configure Mail Chimp."
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: core/forms/views/modal-editor.php:337
|
1230 |
-
msgid "MailChimp List ID:"
|
1231 |
-
msgstr ""
|
1232 |
-
|
1233 |
-
#: core/forms/views/modal-editor.php:346
|
1234 |
-
msgid "Mailchimp contact list id"
|
1235 |
-
msgstr ""
|
1236 |
-
|
1237 |
-
#: core/forms/views/modal-editor.php:361
|
1238 |
-
msgid "MailPoet:"
|
1239 |
-
msgstr ""
|
1240 |
-
|
1241 |
-
#: core/forms/views/modal-editor.php:364
|
1242 |
-
msgid "Integrate MailPoet with this form."
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: core/forms/views/modal-editor.php:368
|
1246 |
-
msgid "Configure MailPoet."
|
1247 |
-
msgstr ""
|
1248 |
-
|
1249 |
-
#: core/forms/views/modal-editor.php:376
|
1250 |
-
msgid "MailPoet List ID:"
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: core/forms/views/modal-editor.php:383
|
1254 |
-
msgid "Enter here MailPoet list id. "
|
1255 |
-
msgstr ""
|
1256 |
-
|
1257 |
-
#: core/forms/views/modal-editor.php:385 core/forms/views/modal-editor.php:416
|
1258 |
-
#: core/forms/views/modal-editor.php:445
|
1259 |
-
msgid "Refresh List"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: core/forms/views/modal-editor.php:397
|
1263 |
-
msgid "Aweber:"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: core/forms/views/modal-editor.php:400
|
1267 |
-
msgid "Integrate aweber with this form."
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: core/forms/views/modal-editor.php:402
|
1271 |
-
msgid "Configure aweber."
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: core/forms/views/modal-editor.php:407
|
1275 |
-
msgid "Aweber List ID:"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: core/forms/views/modal-editor.php:414
|
1279 |
-
msgid "Enter here aweber list id. "
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: core/forms/views/modal-editor.php:426
|
1283 |
-
msgid "ConvertKit:"
|
1284 |
-
msgstr ""
|
1285 |
-
|
1286 |
-
#: core/forms/views/modal-editor.php:429
|
1287 |
-
msgid "Integrate convertKit with this form."
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: core/forms/views/modal-editor.php:431
|
1291 |
-
msgid "Configure ConvertKit."
|
1292 |
-
msgstr ""
|
1293 |
-
|
1294 |
-
#: core/forms/views/modal-editor.php:436
|
1295 |
-
msgid "ConvertKit Forms ID:"
|
1296 |
-
msgstr ""
|
1297 |
-
|
1298 |
-
#: core/forms/views/modal-editor.php:443
|
1299 |
-
msgid "Enter here ConvertKit form id. "
|
1300 |
-
msgstr ""
|
1301 |
-
|
1302 |
-
#: core/forms/views/modal-editor.php:459
|
1303 |
-
msgid "GetResponse:"
|
1304 |
-
msgstr ""
|
1305 |
-
|
1306 |
-
#: core/forms/views/modal-editor.php:463
|
1307 |
-
msgid "Integrate GetResponse with this form."
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: core/forms/views/modal-editor.php:465
|
1311 |
-
msgid "Configure GetResponse."
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#: core/forms/views/modal-editor.php:472
|
1315 |
-
msgid "GetResponse List ID:"
|
1316 |
-
msgstr ""
|
1317 |
-
|
1318 |
-
#: core/forms/views/modal-editor.php:483
|
1319 |
-
msgid "GetResponse contact list id"
|
1320 |
-
msgstr ""
|
1321 |
-
|
1322 |
-
#: core/forms/views/modal-editor.php:485
|
1323 |
-
msgid "Enter here GetResponse list id. "
|
1324 |
-
msgstr ""
|
1325 |
-
|
1326 |
-
#: core/forms/views/modal-editor.php:497
|
1327 |
-
msgid "ActiveCampaign:"
|
1328 |
-
msgstr ""
|
1329 |
-
|
1330 |
-
#: core/forms/views/modal-editor.php:500
|
1331 |
-
msgid "Integrate ActiveCampaign with this form."
|
1332 |
-
msgstr ""
|
1333 |
-
|
1334 |
-
#: core/forms/views/modal-editor.php:502
|
1335 |
-
msgid "Configure ActiveCampaign."
|
1336 |
-
msgstr ""
|
1337 |
-
|
1338 |
-
#: core/forms/views/modal-editor.php:517
|
1339 |
-
msgid "Zapier:"
|
1340 |
-
msgstr ""
|
1341 |
-
|
1342 |
-
#: core/forms/views/modal-editor.php:520
|
1343 |
-
msgid "Integrate zapier with this form."
|
1344 |
-
msgstr ""
|
1345 |
-
|
1346 |
-
#: core/forms/views/modal-editor.php:525
|
1347 |
-
msgid "Zapier webhook:"
|
1348 |
-
msgstr ""
|
1349 |
-
|
1350 |
-
#: core/forms/views/modal-editor.php:527
|
1351 |
-
msgid "Zapier webhook"
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: core/forms/views/modal-editor.php:529
|
1355 |
-
msgid "Enter here zapier web hook."
|
1356 |
-
msgstr ""
|
1357 |
-
|
1358 |
-
#: core/forms/views/modal-editor.php:539
|
1359 |
-
msgid "Slack:"
|
1360 |
-
msgstr ""
|
1361 |
-
|
1362 |
-
#: core/forms/views/modal-editor.php:542
|
1363 |
-
msgid "Integrate slack with this form."
|
1364 |
-
msgstr ""
|
1365 |
-
|
1366 |
-
#: core/forms/views/modal-editor.php:542
|
1367 |
-
msgid "slack info."
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: core/forms/views/modal-editor.php:547
|
1371 |
-
msgid "Slack webhook:"
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
#: core/forms/views/modal-editor.php:549
|
1375 |
-
msgid "Slack webhook"
|
1376 |
-
msgstr ""
|
1377 |
-
|
1378 |
-
#: core/forms/views/modal-editor.php:551
|
1379 |
-
msgid "Enter here slack web hook."
|
1380 |
-
msgstr ""
|
1381 |
-
|
1382 |
-
#: core/forms/views/modal-editor.php:552
|
1383 |
-
msgid "create from here"
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
#: core/forms/views/modal-editor.php:566
|
1387 |
-
msgid "Success url:"
|
1388 |
-
msgstr ""
|
1389 |
-
|
1390 |
-
#: core/forms/views/modal-editor.php:569
|
1391 |
-
msgid "Success url"
|
1392 |
-
msgstr ""
|
1393 |
-
|
1394 |
-
#: core/forms/views/modal-editor.php:571
|
1395 |
-
msgid ""
|
1396 |
-
"Users will be redirected to the this link after successfully form submission."
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: core/forms/views/modal-editor.php:576
|
1400 |
-
msgid "Failed/ Cancel url:"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: core/forms/views/modal-editor.php:579
|
1404 |
-
msgid "Failed/Cancel url"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: core/forms/views/modal-editor.php:581
|
1408 |
-
msgid ""
|
1409 |
-
"Users will be redirected to the this link after any failure/ cancelation of "
|
1410 |
-
"form submission."
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: core/forms/views/modal-editor.php:588
|
1414 |
-
msgid "Paypal:"
|
1415 |
-
msgstr ""
|
1416 |
-
|
1417 |
-
#: core/forms/views/modal-editor.php:591
|
1418 |
-
msgid "Integrate paypal payment with this form."
|
1419 |
-
msgstr ""
|
1420 |
-
|
1421 |
-
#: core/forms/views/modal-editor.php:593
|
1422 |
-
msgid "Configure paypal payment."
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
#: core/forms/views/modal-editor.php:603
|
1426 |
-
msgid "Stripe:"
|
1427 |
-
msgstr ""
|
1428 |
-
|
1429 |
-
#: core/forms/views/modal-editor.php:606
|
1430 |
-
msgid "Integrate stripe payment with this form. "
|
1431 |
-
msgstr ""
|
1432 |
-
|
1433 |
-
#: core/forms/views/modal-editor.php:608
|
1434 |
-
msgid "Configure stripe payment."
|
1435 |
-
msgstr ""
|
1436 |
-
|
1437 |
-
#: core/forms/views/modal-editor.php:625
|
1438 |
-
msgid "Hubsopt Contact:"
|
1439 |
-
msgstr ""
|
1440 |
-
|
1441 |
-
#: core/forms/views/modal-editor.php:628
|
1442 |
-
msgid "Integrate hubsopt with this form. "
|
1443 |
-
msgstr ""
|
1444 |
-
|
1445 |
-
#: core/forms/views/modal-editor.php:630
|
1446 |
-
msgid "Configure Hubsopt."
|
1447 |
-
msgstr ""
|
1448 |
-
|
1449 |
-
#: core/forms/views/modal-editor.php:638
|
1450 |
-
msgid "Hubsopt Forms:"
|
1451 |
-
msgstr ""
|
1452 |
-
|
1453 |
-
#: core/forms/views/modal-editor.php:646
|
1454 |
-
msgid "Fetch hubsopt forms"
|
1455 |
-
msgstr ""
|
1456 |
-
|
1457 |
-
#: core/forms/views/modal-editor.php:671
|
1458 |
-
msgid "Zoho Contact:"
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: core/forms/views/modal-editor.php:674
|
1462 |
-
msgid "Integrate Zoho contacts with this form. "
|
1463 |
-
msgstr ""
|
1464 |
-
|
1465 |
-
#: core/forms/views/modal-editor.php:676
|
1466 |
-
msgid "Configure Zoho."
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: core/forms/views/modal-editor.php:692
|
1470 |
-
msgid "Edit content"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: core/forms/views/modal-editor.php:694
|
1474 |
-
msgid "Save changes"
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: core/integrations/google-recaptcha.php:43
|
1478 |
-
#: core/integrations/google-recaptcha.php:80
|
1479 |
-
msgid "Captcha is not verified."
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
#: core/integrations/mail-chimp.php:54
|
1483 |
-
msgid "Your data inserted on ActiveCampaign."
|
1484 |
-
msgstr ""
|
1485 |
-
|
1486 |
-
#: core/integrations/slack.php:50
|
1487 |
-
msgid "Your data inserted on slack."
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: plugin.php:258
|
1491 |
-
msgid "Activate Elementor"
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
#: plugin.php:261
|
1495 |
-
msgid "Install Elementor"
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#: plugin.php:271 plugin.php:306
|
1499 |
-
#, php-format
|
1500 |
-
msgid ""
|
1501 |
-
"MetForm requires Elementor version %1$s+, which is currently NOT RUNNING."
|
1502 |
-
msgstr ""
|
1503 |
-
|
1504 |
-
#: plugin.php:281
|
1505 |
-
msgid "MetForm Pro"
|
1506 |
-
msgstr ""
|
1507 |
-
|
1508 |
-
#: plugin.php:290
|
1509 |
-
msgid "We have MetForm Pro version. Check out our pro feature."
|
1510 |
-
msgstr ""
|
1511 |
-
|
1512 |
-
#: plugin.php:297
|
1513 |
-
msgid "Update Elementor"
|
1514 |
-
msgstr ""
|
1515 |
-
|
1516 |
-
#: traits/button-controls.php:24 widgets/date/date.php:321
|
1517 |
-
#: widgets/email/email.php:64 widgets/file-upload/file-upload.php:170
|
1518 |
-
#: widgets/listing-fname/listing-fname.php:64
|
1519 |
-
#: widgets/listing-lname/listing-lname.php:64
|
1520 |
-
#: widgets/multi-select/multi-select.php:148 widgets/number/number.php:64
|
1521 |
-
#: widgets/password/password.php:64 widgets/range/range.php:133
|
1522 |
-
#: widgets/rating/rating.php:85 widgets/recaptcha/recaptcha.php:59
|
1523 |
-
#: widgets/select/select.php:148 widgets/simple-captcha/simple-captcha.php:123
|
1524 |
-
#: widgets/summary/summary.php:69 widgets/switch/switch.php:91
|
1525 |
-
#: widgets/telephone/telephone.php:64 widgets/text/text.php:64
|
1526 |
-
#: widgets/textarea/textarea.php:65 widgets/time/time.php:89
|
1527 |
-
#: widgets/url/url.php:74
|
1528 |
-
msgid "Label"
|
1529 |
-
msgstr ""
|
1530 |
-
|
1531 |
-
#: traits/button-controls.php:46
|
1532 |
-
msgid "Button alignment"
|
1533 |
-
msgstr ""
|
1534 |
-
|
1535 |
-
#: traits/button-controls.php:50 traits/common-controls.php:47
|
1536 |
-
#: widgets/checkbox/checkbox.php:69 widgets/gdpr-consent/gdpr-consent.php:62
|
1537 |
-
#: widgets/listing-optin/listing-optin.php:62 widgets/radio/radio.php:70
|
1538 |
-
#: widgets/simple-captcha/simple-captcha.php:67
|
1539 |
-
msgid "Left"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#: traits/button-controls.php:54
|
1543 |
-
msgid "Center"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: traits/button-controls.php:58 widgets/file-upload/file-upload.php:251
|
1547 |
-
msgid "Right"
|
1548 |
-
msgstr ""
|
1549 |
-
|
1550 |
-
#: traits/button-controls.php:72 widgets/button/button.php:104
|
1551 |
-
msgid "Icon"
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
#: traits/button-controls.php:81
|
1555 |
-
msgid "Icon Position"
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: traits/button-controls.php:85 widgets/file-upload/file-upload.php:60
|
1559 |
-
msgid "Before"
|
1560 |
-
msgstr ""
|
1561 |
-
|
1562 |
-
#: traits/button-controls.php:86 widgets/file-upload/file-upload.php:61
|
1563 |
-
msgid "After"
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: traits/button-controls.php:97
|
1567 |
-
msgid "Class"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: traits/button-controls.php:99
|
1571 |
-
msgid "Class Name"
|
1572 |
-
msgstr ""
|
1573 |
-
|
1574 |
-
#: traits/button-controls.php:106
|
1575 |
-
msgid "id"
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
#: traits/button-controls.php:108
|
1579 |
-
msgid "ID"
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: traits/button-controls.php:119
|
1583 |
-
msgid "Input Name : "
|
1584 |
-
msgstr ""
|
1585 |
-
|
1586 |
-
#: traits/button-controls.php:127 widgets/multi-select/multi-select.php:58
|
1587 |
-
#: widgets/select/select.php:58
|
1588 |
-
msgid "Input Value"
|
1589 |
-
msgstr ""
|
1590 |
-
|
1591 |
-
#: traits/button-controls.php:136
|
1592 |
-
msgid "Input Class"
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: traits/button-controls.php:145
|
1596 |
-
msgid "Input List"
|
1597 |
-
msgstr ""
|
1598 |
-
|
1599 |
-
#: traits/button-controls.php:157 traits/common-controls.php:341
|
1600 |
-
#: traits/common-controls.php:405 traits/common-controls.php:749
|
1601 |
-
#: widgets/checkbox/checkbox.php:283 widgets/checkbox/checkbox.php:341
|
1602 |
-
#: widgets/checkbox/checkbox.php:534 widgets/file-upload/file-upload.php:336
|
1603 |
-
#: widgets/gdpr-consent/gdpr-consent.php:202
|
1604 |
-
#: widgets/gdpr-consent/gdpr-consent.php:269
|
1605 |
-
#: widgets/listing-optin/listing-optin.php:222
|
1606 |
-
#: widgets/listing-optin/listing-optin.php:292 widgets/radio/radio.php:284
|
1607 |
-
#: widgets/radio/radio.php:354 widgets/radio/radio.php:547
|
1608 |
-
#: widgets/rating/rating.php:108 widgets/simple-captcha/simple-captcha.php:192
|
1609 |
-
#: widgets/simple-captcha/simple-captcha.php:248 widgets/switch/switch.php:208
|
1610 |
-
#: widgets/switch/switch.php:250
|
1611 |
-
msgid "Padding"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: traits/button-controls.php:177 traits/common-controls.php:330
|
1615 |
-
#: traits/common-controls.php:632 traits/common-controls.php:685
|
1616 |
-
#: traits/common-controls.php:724 widgets/checkbox/checkbox.php:272
|
1617 |
-
#: widgets/checkbox/checkbox.php:509 widgets/gdpr-consent/gdpr-consent.php:191
|
1618 |
-
#: widgets/listing-optin/listing-optin.php:211 widgets/radio/radio.php:273
|
1619 |
-
#: widgets/radio/radio.php:522 widgets/rating/rating.php:250
|
1620 |
-
#: widgets/simple-captcha/simple-captcha.php:181 widgets/switch/switch.php:200
|
1621 |
-
#: widgets/switch/switch.php:242
|
1622 |
-
msgid "Typography"
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: traits/button-controls.php:195 traits/button-controls.php:293
|
1626 |
-
#: traits/common-controls.php:437 widgets/checkbox/checkbox.php:383
|
1627 |
-
#: widgets/file-upload/file-upload.php:264
|
1628 |
-
#: widgets/gdpr-consent/gdpr-consent.php:311
|
1629 |
-
#: widgets/listing-optin/listing-optin.php:334 widgets/radio/radio.php:395
|
1630 |
-
#: widgets/rating/rating.php:141
|
1631 |
-
msgid "Normal"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: traits/button-controls.php:202 traits/button-controls.php:231
|
1635 |
-
#: widgets/checkbox/checkbox.php:364 widgets/gdpr-consent/gdpr-consent.php:292
|
1636 |
-
#: widgets/listing-optin/listing-optin.php:315 widgets/radio/radio.php:377
|
1637 |
-
#: widgets/switch/switch.php:187 widgets/switch/switch.php:229
|
1638 |
-
msgid "Text Color"
|
1639 |
-
msgstr ""
|
1640 |
-
|
1641 |
-
#: traits/button-controls.php:224 traits/button-controls.php:317
|
1642 |
-
#: traits/common-controls.php:501 widgets/file-upload/file-upload.php:295
|
1643 |
-
msgid "Hover"
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: traits/button-controls.php:257
|
1647 |
-
msgctxt "Border Control"
|
1648 |
-
msgid "Border Type"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: traits/button-controls.php:260 traits/common-controls.php:141
|
1652 |
-
msgid "None"
|
1653 |
-
msgstr ""
|
1654 |
-
|
1655 |
-
#: traits/button-controls.php:261
|
1656 |
-
msgctxt "Border Control"
|
1657 |
-
msgid "Solid"
|
1658 |
-
msgstr ""
|
1659 |
-
|
1660 |
-
#: traits/button-controls.php:262
|
1661 |
-
msgctxt "Border Control"
|
1662 |
-
msgid "Double"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: traits/button-controls.php:263
|
1666 |
-
msgctxt "Border Control"
|
1667 |
-
msgid "Dotted"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: traits/button-controls.php:264
|
1671 |
-
msgctxt "Border Control"
|
1672 |
-
msgid "Dashed"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: traits/button-controls.php:265
|
1676 |
-
msgctxt "Border Control"
|
1677 |
-
msgid "Groove"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
#: traits/button-controls.php:277
|
1681 |
-
msgctxt "Border Control"
|
1682 |
-
msgid "Width"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: traits/button-controls.php:303 traits/button-controls.php:326
|
1686 |
-
msgctxt "Border Control"
|
1687 |
-
msgid "Color"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: traits/button-controls.php:342 traits/common-controls.php:247
|
1691 |
-
#: traits/common-controls.php:643 widgets/file-upload/file-upload.php:369
|
1692 |
-
#: widgets/range/range.php:199 widgets/rating/rating.php:212
|
1693 |
-
msgid "Border Radius"
|
1694 |
-
msgstr ""
|
1695 |
-
|
1696 |
-
#: traits/button-controls.php:373
|
1697 |
-
msgid "Icon Color"
|
1698 |
-
msgstr ""
|
1699 |
-
|
1700 |
-
#: traits/button-controls.php:389
|
1701 |
-
msgid "Font Size"
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
#: traits/button-controls.php:409
|
1705 |
-
msgid "Padding Right"
|
1706 |
-
msgstr ""
|
1707 |
-
|
1708 |
-
#: traits/button-controls.php:435
|
1709 |
-
msgid "Padding Left"
|
1710 |
-
msgstr ""
|
1711 |
-
|
1712 |
-
#: traits/button-controls.php:461
|
1713 |
-
msgid "Vertical Align"
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
#: traits/common-controls.php:29 widgets/checkbox/checkbox.php:51
|
1717 |
-
#: widgets/gdpr-consent/gdpr-consent.php:44
|
1718 |
-
#: widgets/listing-optin/listing-optin.php:44 widgets/radio/radio.php:52
|
1719 |
-
#: widgets/simple-captcha/simple-captcha.php:49
|
1720 |
-
msgid "Show Label"
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: traits/common-controls.php:31 widgets/checkbox/checkbox.php:53
|
1724 |
-
#: widgets/gdpr-consent/gdpr-consent.php:46
|
1725 |
-
#: widgets/listing-optin/listing-optin.php:46 widgets/radio/radio.php:54
|
1726 |
-
#: widgets/simple-captcha/simple-captcha.php:51
|
1727 |
-
msgid "Show"
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: traits/common-controls.php:32 widgets/checkbox/checkbox.php:54
|
1731 |
-
#: widgets/gdpr-consent/gdpr-consent.php:47
|
1732 |
-
#: widgets/listing-optin/listing-optin.php:47 widgets/radio/radio.php:55
|
1733 |
-
#: widgets/simple-captcha/simple-captcha.php:52
|
1734 |
-
msgid "Hide"
|
1735 |
-
msgstr ""
|
1736 |
-
|
1737 |
-
#: traits/common-controls.php:35 widgets/checkbox/checkbox.php:57
|
1738 |
-
#: widgets/gdpr-consent/gdpr-consent.php:50
|
1739 |
-
#: widgets/listing-optin/listing-optin.php:50 widgets/radio/radio.php:58
|
1740 |
-
#: widgets/simple-captcha/simple-captcha.php:55
|
1741 |
-
msgid ""
|
1742 |
-
"for adding label on input turn it on. Don't want to use label? turn it off."
|
1743 |
-
msgstr ""
|
1744 |
-
|
1745 |
-
#: traits/common-controls.php:42 widgets/checkbox/checkbox.php:64
|
1746 |
-
#: widgets/file-upload/file-upload.php:247
|
1747 |
-
#: widgets/gdpr-consent/gdpr-consent.php:57
|
1748 |
-
#: widgets/listing-optin/listing-optin.php:57 widgets/radio/radio.php:65
|
1749 |
-
msgid "Position"
|
1750 |
-
msgstr ""
|
1751 |
-
|
1752 |
-
#: traits/common-controls.php:46 widgets/checkbox/checkbox.php:68
|
1753 |
-
#: widgets/file-upload/file-upload.php:62
|
1754 |
-
#: widgets/gdpr-consent/gdpr-consent.php:61
|
1755 |
-
#: widgets/listing-optin/listing-optin.php:61 widgets/radio/radio.php:69
|
1756 |
-
#: widgets/simple-captcha/simple-captcha.php:66
|
1757 |
-
msgid "Top"
|
1758 |
-
msgstr ""
|
1759 |
-
|
1760 |
-
#: traits/common-controls.php:55 widgets/checkbox/checkbox.php:78
|
1761 |
-
#: widgets/gdpr-consent/gdpr-consent.php:71
|
1762 |
-
#: widgets/listing-optin/listing-optin.php:71 widgets/radio/radio.php:79
|
1763 |
-
#: widgets/simple-captcha/simple-captcha.php:75
|
1764 |
-
msgid ""
|
1765 |
-
"Select label position. where you want to see it. top of the input or left of "
|
1766 |
-
"the input."
|
1767 |
-
msgstr ""
|
1768 |
-
|
1769 |
-
#: traits/common-controls.php:63 widgets/simple-captcha/simple-captcha.php:98
|
1770 |
-
msgid "Label : "
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
-
#: traits/common-controls.php:66 widgets/checkbox/checkbox.php:89
|
1774 |
-
#: widgets/gdpr-consent/gdpr-consent.php:82
|
1775 |
-
#: widgets/listing-optin/listing-optin.php:82 widgets/radio/radio.php:90
|
1776 |
-
#: widgets/simple-captcha/simple-captcha.php:101
|
1777 |
-
msgid "Enter here label of input"
|
1778 |
-
msgstr ""
|
1779 |
-
|
1780 |
-
#: traits/common-controls.php:77 widgets/gdpr-consent/gdpr-consent.php:92
|
1781 |
-
#: widgets/listing-optin/listing-optin.php:92
|
1782 |
-
msgid "Name : "
|
1783 |
-
msgstr ""
|
1784 |
-
|
1785 |
-
#: traits/common-controls.php:89 widgets/checkbox/checkbox.php:99
|
1786 |
-
#: widgets/radio/radio.php:100
|
1787 |
-
msgid "Name"
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: traits/common-controls.php:92 widgets/checkbox/checkbox.php:102
|
1791 |
-
#: widgets/radio/radio.php:103
|
1792 |
-
msgid "Enter here name of the input"
|
1793 |
-
msgstr ""
|
1794 |
-
|
1795 |
-
#: traits/common-controls.php:93 widgets/checkbox/checkbox.php:103
|
1796 |
-
msgid ""
|
1797 |
-
"Name is must required. Enter name without space or any special character. "
|
1798 |
-
"use only underscore/ hyphen (_/-) for multiple word. Name must be different."
|
1799 |
-
msgstr ""
|
1800 |
-
|
1801 |
-
#: traits/common-controls.php:103
|
1802 |
-
msgid "Place holder"
|
1803 |
-
msgstr ""
|
1804 |
-
|
1805 |
-
#: traits/common-controls.php:106
|
1806 |
-
msgid "Enter here place holder"
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
#: traits/common-controls.php:114 widgets/checkbox/checkbox.php:205
|
1810 |
-
#: widgets/gdpr-consent/gdpr-consent.php:145
|
1811 |
-
#: widgets/listing-optin/listing-optin.php:144 widgets/radio/radio.php:206
|
1812 |
-
#: widgets/simple-captcha/simple-captcha.php:111
|
1813 |
-
msgid "Help Text : "
|
1814 |
-
msgstr ""
|
1815 |
-
|
1816 |
-
#: traits/common-controls.php:117 widgets/checkbox/checkbox.php:208
|
1817 |
-
#: widgets/gdpr-consent/gdpr-consent.php:148
|
1818 |
-
#: widgets/listing-optin/listing-optin.php:147 widgets/radio/radio.php:209
|
1819 |
-
#: widgets/simple-captcha/simple-captcha.php:114
|
1820 |
-
msgid "Type your help text here"
|
1821 |
-
msgstr ""
|
1822 |
-
|
1823 |
-
#: traits/common-controls.php:129
|
1824 |
-
msgid "Required ?"
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
#: traits/common-controls.php:131 widgets/date/date.php:119
|
1828 |
-
#: widgets/date/date.php:131 widgets/date/date.php:143
|
1829 |
-
#: widgets/date/date.php:155 widgets/date/date.php:305
|
1830 |
-
#: widgets/multi-select/multi-select.php:83 widgets/range/range.php:97
|
1831 |
-
#: widgets/select/select.php:83 widgets/switch/switch.php:48
|
1832 |
-
#: widgets/time/time.php:73
|
1833 |
-
msgid "Yes"
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: traits/common-controls.php:132 widgets/date/date.php:120
|
1837 |
-
#: widgets/date/date.php:132 widgets/date/date.php:144
|
1838 |
-
#: widgets/date/date.php:156 widgets/date/date.php:306
|
1839 |
-
#: widgets/multi-select/multi-select.php:84 widgets/range/range.php:98
|
1840 |
-
#: widgets/select/select.php:84 widgets/switch/switch.php:56
|
1841 |
-
#: widgets/time/time.php:74
|
1842 |
-
msgid "No"
|
1843 |
-
msgstr ""
|
1844 |
-
|
1845 |
-
#: traits/common-controls.php:135
|
1846 |
-
msgid "Is this field is required for submit the form?. Make it \"Yes\"."
|
1847 |
-
msgstr ""
|
1848 |
-
|
1849 |
-
#: traits/common-controls.php:142
|
1850 |
-
msgid "By character length"
|
1851 |
-
msgstr ""
|
1852 |
-
|
1853 |
-
#: traits/common-controls.php:143
|
1854 |
-
msgid "By Word length"
|
1855 |
-
msgstr ""
|
1856 |
-
|
1857 |
-
#: traits/common-controls.php:147
|
1858 |
-
msgid "By expression based"
|
1859 |
-
msgstr ""
|
1860 |
-
|
1861 |
-
#: traits/common-controls.php:154
|
1862 |
-
msgid "Validation type"
|
1863 |
-
msgstr ""
|
1864 |
-
|
1865 |
-
#: traits/common-controls.php:165 widgets/range/range.php:67
|
1866 |
-
msgid "Min Length"
|
1867 |
-
msgstr ""
|
1868 |
-
|
1869 |
-
#: traits/common-controls.php:176 widgets/range/range.php:76
|
1870 |
-
msgid "Max Length"
|
1871 |
-
msgstr ""
|
1872 |
-
|
1873 |
-
#: traits/common-controls.php:189
|
1874 |
-
msgid "Expression for validate "
|
1875 |
-
msgstr ""
|
1876 |
-
|
1877 |
-
#: traits/common-controls.php:192
|
1878 |
-
msgid "Ex: [a-zA-Z]+ "
|
1879 |
-
msgstr ""
|
1880 |
-
|
1881 |
-
#: traits/common-controls.php:203 traits/common-controls.php:205
|
1882 |
-
msgid "Warning message"
|
1883 |
-
msgstr ""
|
1884 |
-
|
1885 |
-
#: traits/common-controls.php:206 widgets/checkbox/checkbox.php:557
|
1886 |
-
#: widgets/date/date.php:430 widgets/email/email.php:128
|
1887 |
-
#: widgets/file-upload/file-upload.php:419
|
1888 |
-
#: widgets/gdpr-consent/gdpr-consent.php:448
|
1889 |
-
#: widgets/listing-fname/listing-fname.php:141
|
1890 |
-
#: widgets/listing-lname/listing-lname.php:141
|
1891 |
-
#: widgets/listing-optin/listing-optin.php:471
|
1892 |
-
#: widgets/multi-select/multi-select.php:208 widgets/number/number.php:127
|
1893 |
-
#: widgets/password/password.php:141 widgets/radio/radio.php:570
|
1894 |
-
#: widgets/rating/rating.php:295 widgets/select/select.php:218
|
1895 |
-
#: widgets/switch/switch.php:291 widgets/telephone/telephone.php:127
|
1896 |
-
#: widgets/text/text.php:127 widgets/textarea/textarea.php:151
|
1897 |
-
#: widgets/time/time.php:161 widgets/url/url.php:137
|
1898 |
-
msgid "This field is required."
|
1899 |
-
msgstr ""
|
1900 |
-
|
1901 |
-
#: traits/common-controls.php:232 traits/common-controls.php:673
|
1902 |
-
#: widgets/gdpr-consent/gdpr-consent.php:232
|
1903 |
-
#: widgets/listing-optin/listing-optin.php:252 widgets/radio/radio.php:314
|
1904 |
-
#: widgets/rating/rating.php:261
|
1905 |
-
msgid "Box Shadow"
|
1906 |
-
msgstr ""
|
1907 |
-
|
1908 |
-
#: traits/common-controls.php:240 traits/common-controls.php:489
|
1909 |
-
#: traits/common-controls.php:547 traits/common-controls.php:610
|
1910 |
-
#: widgets/button/button.php:80 widgets/file-upload/file-upload.php:361
|
1911 |
-
#: widgets/rating/rating.php:165 widgets/rating/rating.php:199
|
1912 |
-
msgid "Border"
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: traits/common-controls.php:280 widgets/range/range.php:168
|
1916 |
-
#: widgets/simple-captcha/simple-captcha.php:134 widgets/switch/switch.php:115
|
1917 |
-
msgid "Width"
|
1918 |
-
msgstr ""
|
1919 |
-
|
1920 |
-
#: traits/common-controls.php:311 traits/common-controls.php:694
|
1921 |
-
#: traits/common-controls.php:733 widgets/checkbox/checkbox.php:253
|
1922 |
-
#: widgets/checkbox/checkbox.php:518 widgets/file-upload/file-upload.php:271
|
1923 |
-
#: widgets/file-upload/file-upload.php:302
|
1924 |
-
#: widgets/gdpr-consent/gdpr-consent.php:172
|
1925 |
-
#: widgets/listing-optin/listing-optin.php:192 widgets/radio/radio.php:254
|
1926 |
-
#: widgets/radio/radio.php:531 widgets/simple-captcha/simple-captcha.php:162
|
1927 |
-
#: widgets/simple-captcha/simple-captcha.php:272
|
1928 |
-
msgid "Color"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: traits/common-controls.php:355 traits/common-controls.php:420
|
1932 |
-
#: widgets/checkbox/checkbox.php:297 widgets/checkbox/checkbox.php:352
|
1933 |
-
#: widgets/file-upload/file-upload.php:348
|
1934 |
-
#: widgets/gdpr-consent/gdpr-consent.php:216
|
1935 |
-
#: widgets/gdpr-consent/gdpr-consent.php:280
|
1936 |
-
#: widgets/listing-optin/listing-optin.php:236
|
1937 |
-
#: widgets/listing-optin/listing-optin.php:303 widgets/radio/radio.php:298
|
1938 |
-
#: widgets/radio/radio.php:365 widgets/rating/rating.php:120
|
1939 |
-
#: widgets/simple-captcha/simple-captcha.php:206
|
1940 |
-
#: widgets/simple-captcha/simple-captcha.php:260
|
1941 |
-
msgid "Margin"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: traits/common-controls.php:370 widgets/checkbox/checkbox.php:312
|
1945 |
-
#: widgets/gdpr-consent/gdpr-consent.php:243
|
1946 |
-
#: widgets/listing-optin/listing-optin.php:263 widgets/radio/radio.php:325
|
1947 |
-
#: widgets/recaptcha/recaptcha.php:66
|
1948 |
-
#: widgets/simple-captcha/simple-captcha.php:221
|
1949 |
-
msgid "Required Indicator Color:"
|
1950 |
-
msgstr ""
|
1951 |
-
|
1952 |
-
#: traits/common-controls.php:444 traits/common-controls.php:508
|
1953 |
-
#: traits/common-controls.php:567 widgets/rating/rating.php:148
|
1954 |
-
#: widgets/rating/rating.php:182
|
1955 |
-
msgid "Input Color"
|
1956 |
-
msgstr ""
|
1957 |
-
|
1958 |
-
#: traits/common-controls.php:476 traits/common-controls.php:535
|
1959 |
-
#: traits/common-controls.php:596 widgets/file-upload/file-upload.php:284
|
1960 |
-
#: widgets/file-upload/file-upload.php:315
|
1961 |
-
msgid "Background"
|
1962 |
-
msgstr ""
|
1963 |
-
|
1964 |
-
#: traits/common-controls.php:560
|
1965 |
-
msgid "Focus"
|
1966 |
-
msgstr ""
|
1967 |
-
|
1968 |
-
#: traits/conditional-controls.php:25
|
1969 |
-
msgid "Conditional logic"
|
1970 |
-
msgstr ""
|
1971 |
-
|
1972 |
-
#: traits/conditional-controls.php:33 widgets/multi-select/multi-select.php:70
|
1973 |
-
#: widgets/select/select.php:70
|
1974 |
-
msgid "Enable"
|
1975 |
-
msgstr ""
|
1976 |
-
|
1977 |
-
#: traits/conditional-controls.php:36
|
1978 |
-
msgid "This feature only works on the frontend."
|
1979 |
-
msgstr ""
|
1980 |
-
|
1981 |
-
#: traits/conditional-controls.php:47
|
1982 |
-
msgid "Condition match criteria"
|
1983 |
-
msgstr ""
|
1984 |
-
|
1985 |
-
#: traits/conditional-controls.php:52
|
1986 |
-
msgid "AND"
|
1987 |
-
msgstr ""
|
1988 |
-
|
1989 |
-
#: traits/conditional-controls.php:53
|
1990 |
-
msgid "OR"
|
1991 |
-
msgstr ""
|
1992 |
-
|
1993 |
-
#: traits/conditional-controls.php:65
|
1994 |
-
msgid "Action"
|
1995 |
-
msgstr ""
|
1996 |
-
|
1997 |
-
#: traits/conditional-controls.php:87
|
1998 |
-
msgid "If"
|
1999 |
-
msgstr ""
|
2000 |
-
|
2001 |
-
#: traits/conditional-controls.php:90
|
2002 |
-
msgid "Input field name"
|
2003 |
-
msgstr ""
|
2004 |
-
|
2005 |
-
#: traits/conditional-controls.php:97
|
2006 |
-
msgid "Match ( comparison )"
|
2007 |
-
msgstr ""
|
2008 |
-
|
2009 |
-
#: traits/conditional-controls.php:101
|
2010 |
-
msgid "not empty"
|
2011 |
-
msgstr ""
|
2012 |
-
|
2013 |
-
#: traits/conditional-controls.php:102
|
2014 |
-
msgid "empty"
|
2015 |
-
msgstr ""
|
2016 |
-
|
2017 |
-
#: traits/conditional-controls.php:103
|
2018 |
-
msgid "equals"
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: traits/conditional-controls.php:104
|
2022 |
-
msgid "not equals"
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: traits/conditional-controls.php:105
|
2026 |
-
msgid "greater than"
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: traits/conditional-controls.php:106
|
2030 |
-
msgid "greater than equal"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: traits/conditional-controls.php:107
|
2034 |
-
msgid "smaller than"
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: traits/conditional-controls.php:108
|
2038 |
-
msgid "smaller than equal"
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: traits/conditional-controls.php:117
|
2042 |
-
msgid "Match value"
|
2043 |
-
msgstr ""
|
2044 |
-
|
2045 |
-
#: traits/conditional-controls.php:120
|
2046 |
-
msgid "50"
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
#: traits/conditional-controls.php:132
|
2050 |
-
msgid "Value for set"
|
2051 |
-
msgstr ""
|
2052 |
-
|
2053 |
-
#: traits/conditional-controls.php:134
|
2054 |
-
msgid "Enter value for set"
|
2055 |
-
msgstr ""
|
2056 |
-
|
2057 |
-
#: traits/conditional-controls.php:135
|
2058 |
-
msgid "E.g 100, name, anything"
|
2059 |
-
msgstr ""
|
2060 |
-
|
2061 |
-
#: widgets/button/button.php:16
|
2062 |
-
msgid "Submit Button"
|
2063 |
-
msgstr ""
|
2064 |
-
|
2065 |
-
#: widgets/button/button.php:36 widgets/checkbox/checkbox.php:43
|
2066 |
-
#: widgets/date/date.php:40 widgets/email/email.php:36
|
2067 |
-
#: widgets/file-upload/file-upload.php:37 widgets/form-basic.php:49
|
2068 |
-
#: widgets/form.php:36 widgets/gdpr-consent/gdpr-consent.php:36
|
2069 |
-
#: widgets/listing-fname/listing-fname.php:36
|
2070 |
-
#: widgets/listing-lname/listing-lname.php:36
|
2071 |
-
#: widgets/listing-optin/listing-optin.php:36
|
2072 |
-
#: widgets/multi-select/multi-select.php:36 widgets/number/number.php:36
|
2073 |
-
#: widgets/password/password.php:36 widgets/radio/radio.php:44
|
2074 |
-
#: widgets/range/range.php:36 widgets/rating/rating.php:36
|
2075 |
-
#: widgets/recaptcha/recaptcha.php:32 widgets/select/select.php:36
|
2076 |
-
#: widgets/simple-captcha/simple-captcha.php:41 widgets/summary/summary.php:36
|
2077 |
-
#: widgets/switch/switch.php:36 widgets/telephone/telephone.php:36
|
2078 |
-
#: widgets/text/text.php:36 widgets/textarea/textarea.php:37
|
2079 |
-
#: widgets/time/time.php:40 widgets/url/url.php:37
|
2080 |
-
msgid "Content"
|
2081 |
-
msgstr ""
|
2082 |
-
|
2083 |
-
#: widgets/button/button.php:52
|
2084 |
-
msgid "Hidden"
|
2085 |
-
msgstr ""
|
2086 |
-
|
2087 |
-
#: widgets/button/button.php:65
|
2088 |
-
msgid "Button"
|
2089 |
-
msgstr ""
|
2090 |
-
|
2091 |
-
#: widgets/button/button.php:92
|
2092 |
-
msgid "Shadow"
|
2093 |
-
msgstr ""
|
2094 |
-
|
2095 |
-
#: widgets/checkbox/checkbox.php:24 widgets/checkbox/checkbox.php:333
|
2096 |
-
#: widgets/gdpr-consent/gdpr-consent.php:261
|
2097 |
-
#: widgets/listing-optin/listing-optin.php:284
|
2098 |
-
msgid "Checkbox"
|
2099 |
-
msgstr ""
|
2100 |
-
|
2101 |
-
#: widgets/checkbox/checkbox.php:86 widgets/gdpr-consent/gdpr-consent.php:79
|
2102 |
-
#: widgets/listing-optin/listing-optin.php:79 widgets/radio/radio.php:87
|
2103 |
-
msgid "Input Label : "
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: widgets/checkbox/checkbox.php:111 widgets/gdpr-consent/gdpr-consent.php:102
|
2107 |
-
#: widgets/listing-optin/listing-optin.php:102 widgets/radio/radio.php:112
|
2108 |
-
msgid "Option Display : "
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
#: widgets/checkbox/checkbox.php:115 widgets/gdpr-consent/gdpr-consent.php:106
|
2112 |
-
#: widgets/listing-optin/listing-optin.php:106 widgets/radio/radio.php:116
|
2113 |
-
msgid "Horizontal"
|
2114 |
-
msgstr ""
|
2115 |
-
|
2116 |
-
#: widgets/checkbox/checkbox.php:116 widgets/gdpr-consent/gdpr-consent.php:107
|
2117 |
-
#: widgets/listing-optin/listing-optin.php:107 widgets/radio/radio.php:117
|
2118 |
-
msgid "Vertical"
|
2119 |
-
msgstr ""
|
2120 |
-
|
2121 |
-
#: widgets/checkbox/checkbox.php:122 widgets/gdpr-consent/gdpr-consent.php:113
|
2122 |
-
#: widgets/listing-optin/listing-optin.php:113
|
2123 |
-
msgid "Checkbox option display style. "
|
2124 |
-
msgstr ""
|
2125 |
-
|
2126 |
-
#: widgets/checkbox/checkbox.php:129 widgets/gdpr-consent/gdpr-consent.php:120
|
2127 |
-
#: widgets/listing-optin/listing-optin.php:120 widgets/radio/radio.php:130
|
2128 |
-
msgid "Option Text Position : "
|
2129 |
-
msgstr ""
|
2130 |
-
|
2131 |
-
#: widgets/checkbox/checkbox.php:132 widgets/gdpr-consent/gdpr-consent.php:123
|
2132 |
-
#: widgets/listing-optin/listing-optin.php:123
|
2133 |
-
msgid "After Checkbox"
|
2134 |
-
msgstr ""
|
2135 |
-
|
2136 |
-
#: widgets/checkbox/checkbox.php:133 widgets/gdpr-consent/gdpr-consent.php:124
|
2137 |
-
#: widgets/listing-optin/listing-optin.php:124
|
2138 |
-
msgid "Before Checkbox"
|
2139 |
-
msgstr ""
|
2140 |
-
|
2141 |
-
#: widgets/checkbox/checkbox.php:136 widgets/gdpr-consent/gdpr-consent.php:127
|
2142 |
-
#: widgets/listing-optin/listing-optin.php:127 widgets/radio/radio.php:137
|
2143 |
-
msgid "Where do you want to label?"
|
2144 |
-
msgstr ""
|
2145 |
-
|
2146 |
-
#: widgets/checkbox/checkbox.php:144 widgets/gdpr-consent/gdpr-consent.php:133
|
2147 |
-
#: widgets/listing-optin/listing-optin.php:133
|
2148 |
-
msgid "Checkbox Option Text"
|
2149 |
-
msgstr ""
|
2150 |
-
|
2151 |
-
#: widgets/checkbox/checkbox.php:146 widgets/radio/radio.php:147
|
2152 |
-
msgid "Option Text"
|
2153 |
-
msgstr ""
|
2154 |
-
|
2155 |
-
#: widgets/checkbox/checkbox.php:148 widgets/radio/radio.php:149
|
2156 |
-
msgid "Select option text that will be show to user."
|
2157 |
-
msgstr ""
|
2158 |
-
|
2159 |
-
#: widgets/checkbox/checkbox.php:153 widgets/checkbox/checkbox.php:155
|
2160 |
-
#: widgets/radio/radio.php:154 widgets/radio/radio.php:156
|
2161 |
-
msgid "Option Value"
|
2162 |
-
msgstr ""
|
2163 |
-
|
2164 |
-
#: widgets/checkbox/checkbox.php:157 widgets/radio/radio.php:158
|
2165 |
-
msgid "Select option value that will be store/mail to desired person."
|
2166 |
-
msgstr ""
|
2167 |
-
|
2168 |
-
#: widgets/checkbox/checkbox.php:162 widgets/radio/radio.php:163
|
2169 |
-
msgid "Option Status"
|
2170 |
-
msgstr ""
|
2171 |
-
|
2172 |
-
#: widgets/checkbox/checkbox.php:165 widgets/radio/radio.php:166
|
2173 |
-
#: widgets/rating/rating.php:175 widgets/switch/switch.php:222
|
2174 |
-
msgid "Active"
|
2175 |
-
msgstr ""
|
2176 |
-
|
2177 |
-
#: widgets/checkbox/checkbox.php:166 widgets/multi-select/multi-select.php:71
|
2178 |
-
#: widgets/radio/radio.php:167 widgets/select/select.php:71
|
2179 |
-
msgid "Disable"
|
2180 |
-
msgstr ""
|
2181 |
-
|
2182 |
-
#: widgets/checkbox/checkbox.php:170 widgets/multi-select/multi-select.php:73
|
2183 |
-
#: widgets/radio/radio.php:171 widgets/select/select.php:73
|
2184 |
-
msgid ""
|
2185 |
-
"Want to make a option? which user can see the option but can't select it. "
|
2186 |
-
"make it disable."
|
2187 |
-
msgstr ""
|
2188 |
-
|
2189 |
-
#: widgets/checkbox/checkbox.php:177
|
2190 |
-
msgid "Checkbox Options"
|
2191 |
-
msgstr ""
|
2192 |
-
|
2193 |
-
#: widgets/checkbox/checkbox.php:198 widgets/multi-select/multi-select.php:114
|
2194 |
-
#: widgets/radio/radio.php:199 widgets/select/select.php:114
|
2195 |
-
msgid "You can add/edit here your selector options."
|
2196 |
-
msgstr ""
|
2197 |
-
|
2198 |
-
#: widgets/checkbox/checkbox.php:227 widgets/date/date.php:62
|
2199 |
-
#: widgets/file-upload/file-upload.php:89
|
2200 |
-
#: widgets/listing-optin/listing-optin.php:166
|
2201 |
-
#: widgets/multi-select/multi-select.php:133 widgets/radio/radio.php:228
|
2202 |
-
#: widgets/range/range.php:58 widgets/rating/rating.php:58
|
2203 |
-
#: widgets/select/select.php:133 widgets/summary/summary.php:58
|
2204 |
-
#: widgets/switch/switch.php:76 widgets/time/time.php:62 widgets/url/url.php:59
|
2205 |
-
msgid "Validation Type"
|
2206 |
-
msgstr ""
|
2207 |
-
|
2208 |
-
#: widgets/checkbox/checkbox.php:242 widgets/gdpr-consent/gdpr-consent.php:161
|
2209 |
-
#: widgets/listing-optin/listing-optin.php:181 widgets/radio/radio.php:243
|
2210 |
-
msgid "Input Label"
|
2211 |
-
msgstr ""
|
2212 |
-
|
2213 |
-
#: widgets/checkbox/checkbox.php:390 widgets/checkbox/checkbox.php:415
|
2214 |
-
#: widgets/gdpr-consent/gdpr-consent.php:318
|
2215 |
-
#: widgets/gdpr-consent/gdpr-consent.php:343
|
2216 |
-
#: widgets/listing-optin/listing-optin.php:341
|
2217 |
-
#: widgets/listing-optin/listing-optin.php:366
|
2218 |
-
msgid "Checkbox Color"
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
#: widgets/checkbox/checkbox.php:408 widgets/gdpr-consent/gdpr-consent.php:336
|
2222 |
-
#: widgets/listing-optin/listing-optin.php:359 widgets/radio/radio.php:420
|
2223 |
-
msgid "Checked"
|
2224 |
-
msgstr ""
|
2225 |
-
|
2226 |
-
#: widgets/checkbox/checkbox.php:435 widgets/gdpr-consent/gdpr-consent.php:363
|
2227 |
-
#: widgets/listing-optin/listing-optin.php:386 widgets/radio/radio.php:447
|
2228 |
-
msgid "Horizontal position of icon"
|
2229 |
-
msgstr ""
|
2230 |
-
|
2231 |
-
#: widgets/checkbox/checkbox.php:458 widgets/gdpr-consent/gdpr-consent.php:386
|
2232 |
-
#: widgets/listing-optin/listing-optin.php:409
|
2233 |
-
msgid "Add space after checkbox"
|
2234 |
-
msgstr ""
|
2235 |
-
|
2236 |
-
#: widgets/checkbox/checkbox.php:474 widgets/gdpr-consent/gdpr-consent.php:402
|
2237 |
-
#: widgets/listing-optin/listing-optin.php:425 widgets/radio/radio.php:487
|
2238 |
-
msgid "Typography for icon"
|
2239 |
-
msgstr ""
|
2240 |
-
|
2241 |
-
#: widgets/checkbox/checkbox.php:485 widgets/gdpr-consent/gdpr-consent.php:413
|
2242 |
-
#: widgets/listing-optin/listing-optin.php:436 widgets/radio/radio.php:498
|
2243 |
-
msgid "Typography for text"
|
2244 |
-
msgstr ""
|
2245 |
-
|
2246 |
-
#: widgets/checkbox/checkbox.php:497 widgets/date/date.php:371
|
2247 |
-
#: widgets/email/email.php:103 widgets/file-upload/file-upload.php:384
|
2248 |
-
#: widgets/gdpr-consent/gdpr-consent.php:424
|
2249 |
-
#: widgets/listing-fname/listing-fname.php:103
|
2250 |
-
#: widgets/listing-lname/listing-lname.php:103
|
2251 |
-
#: widgets/listing-optin/listing-optin.php:447
|
2252 |
-
#: widgets/multi-select/multi-select.php:175 widgets/number/number.php:103
|
2253 |
-
#: widgets/password/password.php:103 widgets/radio/radio.php:510
|
2254 |
-
#: widgets/range/range.php:214 widgets/rating/rating.php:271
|
2255 |
-
#: widgets/select/select.php:185 widgets/simple-captcha/simple-captcha.php:290
|
2256 |
-
#: widgets/summary/summary.php:96 widgets/switch/switch.php:267
|
2257 |
-
#: widgets/telephone/telephone.php:103 widgets/text/text.php:103
|
2258 |
-
#: widgets/textarea/textarea.php:127 widgets/time/time.php:128
|
2259 |
-
#: widgets/url/url.php:113
|
2260 |
-
msgid "Help Text"
|
2261 |
-
msgstr ""
|
2262 |
-
|
2263 |
-
#: widgets/date/date.php:20
|
2264 |
-
msgid "Date"
|
2265 |
-
msgstr ""
|
2266 |
-
|
2267 |
-
#: widgets/date/date.php:71
|
2268 |
-
msgid "Set minimum date:"
|
2269 |
-
msgstr ""
|
2270 |
-
|
2271 |
-
#: widgets/date/date.php:82
|
2272 |
-
msgid "Set maximum date:"
|
2273 |
-
msgstr ""
|
2274 |
-
|
2275 |
-
#: widgets/date/date.php:95
|
2276 |
-
msgid "Disable date : "
|
2277 |
-
msgstr ""
|
2278 |
-
|
2279 |
-
#: widgets/date/date.php:106
|
2280 |
-
msgid "Disable date List"
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
#: widgets/date/date.php:117
|
2284 |
-
msgid "Range date input ?"
|
2285 |
-
msgstr ""
|
2286 |
-
|
2287 |
-
#: widgets/date/date.php:129
|
2288 |
-
msgid "Year input ?"
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: widgets/date/date.php:141
|
2292 |
-
msgid "Month input ?"
|
2293 |
-
msgstr ""
|
2294 |
-
|
2295 |
-
#: widgets/date/date.php:153
|
2296 |
-
msgid "Date input ?"
|
2297 |
-
msgstr ""
|
2298 |
-
|
2299 |
-
#: widgets/date/date.php:165 widgets/date/date.php:201
|
2300 |
-
#: widgets/date/date.php:235 widgets/date/date.php:269
|
2301 |
-
msgid "Date format : "
|
2302 |
-
msgstr ""
|
2303 |
-
|
2304 |
-
#: widgets/date/date.php:169
|
2305 |
-
msgid "YYYY-MM-DD"
|
2306 |
-
msgstr ""
|
2307 |
-
|
2308 |
-
#: widgets/date/date.php:170
|
2309 |
-
msgid "DD-MM-YYYY"
|
2310 |
-
msgstr ""
|
2311 |
-
|
2312 |
-
#: widgets/date/date.php:171
|
2313 |
-
msgid "MM-DD-YYYY"
|
2314 |
-
msgstr ""
|
2315 |
-
|
2316 |
-
#: widgets/date/date.php:172
|
2317 |
-
msgid "YYYY.MM.DD"
|
2318 |
-
msgstr ""
|
2319 |
-
|
2320 |
-
#: widgets/date/date.php:173
|
2321 |
-
msgid "DD.MM.YYYY"
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
#: widgets/date/date.php:174
|
2325 |
-
msgid "MM.DD.YYYY"
|
2326 |
-
msgstr ""
|
2327 |
-
|
2328 |
-
#: widgets/date/date.php:205
|
2329 |
-
msgid "MM-DD"
|
2330 |
-
msgstr ""
|
2331 |
-
|
2332 |
-
#: widgets/date/date.php:206
|
2333 |
-
msgid "DD-MM"
|
2334 |
-
msgstr ""
|
2335 |
-
|
2336 |
-
#: widgets/date/date.php:207
|
2337 |
-
msgid "MM.DD"
|
2338 |
-
msgstr ""
|
2339 |
-
|
2340 |
-
#: widgets/date/date.php:208
|
2341 |
-
msgid "DD.MM"
|
2342 |
-
msgstr ""
|
2343 |
-
|
2344 |
-
#: widgets/date/date.php:239
|
2345 |
-
msgid "MM-YY"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: widgets/date/date.php:240
|
2349 |
-
msgid "YY-MM"
|
2350 |
-
msgstr ""
|
2351 |
-
|
2352 |
-
#: widgets/date/date.php:241
|
2353 |
-
msgid "MM.YY"
|
2354 |
-
msgstr ""
|
2355 |
-
|
2356 |
-
#: widgets/date/date.php:242
|
2357 |
-
msgid "YY.MM"
|
2358 |
-
msgstr ""
|
2359 |
-
|
2360 |
-
#: widgets/date/date.php:273
|
2361 |
-
msgid "DD-YY"
|
2362 |
-
msgstr ""
|
2363 |
-
|
2364 |
-
#: widgets/date/date.php:274
|
2365 |
-
msgid "YY-DD"
|
2366 |
-
msgstr ""
|
2367 |
-
|
2368 |
-
#: widgets/date/date.php:275
|
2369 |
-
msgid "DD.YY"
|
2370 |
-
msgstr ""
|
2371 |
-
|
2372 |
-
#: widgets/date/date.php:276
|
2373 |
-
msgid "YY.DD"
|
2374 |
-
msgstr ""
|
2375 |
-
|
2376 |
-
#: widgets/date/date.php:303
|
2377 |
-
msgid "Want to input time with it ?"
|
2378 |
-
msgstr ""
|
2379 |
-
|
2380 |
-
#: widgets/date/date.php:336 widgets/email/email.php:79
|
2381 |
-
#: widgets/file-upload/file-upload.php:185
|
2382 |
-
#: widgets/listing-fname/listing-fname.php:79
|
2383 |
-
#: widgets/listing-lname/listing-lname.php:79
|
2384 |
-
#: widgets/multi-select/multi-select.php:163 widgets/number/number.php:79
|
2385 |
-
#: widgets/password/password.php:79 widgets/rating/rating.php:100
|
2386 |
-
#: widgets/summary/summary.php:84 widgets/switch/switch.php:107
|
2387 |
-
#: widgets/telephone/telephone.php:79 widgets/text/text.php:79
|
2388 |
-
#: widgets/textarea/textarea.php:80 widgets/time/time.php:104
|
2389 |
-
#: widgets/url/url.php:89
|
2390 |
-
msgid "Input"
|
2391 |
-
msgstr ""
|
2392 |
-
|
2393 |
-
#: widgets/date/date.php:347
|
2394 |
-
msgid "Calendar Typography"
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
#: widgets/date/date.php:359 widgets/email/email.php:91
|
2398 |
-
#: widgets/listing-fname/listing-fname.php:91
|
2399 |
-
#: widgets/listing-lname/listing-lname.php:91 widgets/number/number.php:91
|
2400 |
-
#: widgets/password/password.php:91 widgets/select/select.php:173
|
2401 |
-
#: widgets/simple-captcha/simple-captcha.php:305
|
2402 |
-
#: widgets/telephone/telephone.php:91 widgets/text/text.php:91
|
2403 |
-
#: widgets/textarea/textarea.php:115 widgets/time/time.php:116
|
2404 |
-
#: widgets/url/url.php:101
|
2405 |
-
msgid "Place Holder"
|
2406 |
-
msgstr ""
|
2407 |
-
|
2408 |
-
#: widgets/email/email.php:16
|
2409 |
-
msgid "Email"
|
2410 |
-
msgstr ""
|
2411 |
-
|
2412 |
-
#: widgets/email/email.php:129
|
2413 |
-
msgid "Please enter a valid Email address"
|
2414 |
-
msgstr ""
|
2415 |
-
|
2416 |
-
#: widgets/file-upload/file-upload.php:16
|
2417 |
-
msgid "File Upload"
|
2418 |
-
msgstr ""
|
2419 |
-
|
2420 |
-
#: widgets/file-upload/file-upload.php:47
|
2421 |
-
msgid "File Upload Icon:"
|
2422 |
-
msgstr ""
|
2423 |
-
|
2424 |
-
#: widgets/file-upload/file-upload.php:56
|
2425 |
-
msgid "File Upload Icon Position"
|
2426 |
-
msgstr ""
|
2427 |
-
|
2428 |
-
#: widgets/file-upload/file-upload.php:98
|
2429 |
-
msgid "File Size Limit : "
|
2430 |
-
msgstr ""
|
2431 |
-
|
2432 |
-
#: widgets/file-upload/file-upload.php:109
|
2433 |
-
msgid "Maximum File Size (KB) : "
|
2434 |
-
msgstr ""
|
2435 |
-
|
2436 |
-
#: widgets/file-upload/file-upload.php:111
|
2437 |
-
msgid "128"
|
2438 |
-
msgstr ""
|
2439 |
-
|
2440 |
-
#: widgets/file-upload/file-upload.php:121
|
2441 |
-
msgid "File Types : "
|
2442 |
-
msgstr ""
|
2443 |
-
|
2444 |
-
#: widgets/file-upload/file-upload.php:125
|
2445 |
-
msgid ".jpg"
|
2446 |
-
msgstr ""
|
2447 |
-
|
2448 |
-
#: widgets/file-upload/file-upload.php:126
|
2449 |
-
msgid ".jpeg"
|
2450 |
-
msgstr ""
|
2451 |
-
|
2452 |
-
#: widgets/file-upload/file-upload.php:127
|
2453 |
-
msgid ".gif"
|
2454 |
-
msgstr ""
|
2455 |
-
|
2456 |
-
#: widgets/file-upload/file-upload.php:128
|
2457 |
-
msgid ".png"
|
2458 |
-
msgstr ""
|
2459 |
-
|
2460 |
-
#: widgets/file-upload/file-upload.php:129
|
2461 |
-
msgid ".ico"
|
2462 |
-
msgstr ""
|
2463 |
-
|
2464 |
-
#: widgets/file-upload/file-upload.php:130
|
2465 |
-
msgid ".pdf"
|
2466 |
-
msgstr ""
|
2467 |
-
|
2468 |
-
#: widgets/file-upload/file-upload.php:131
|
2469 |
-
msgid ".doc"
|
2470 |
-
msgstr ""
|
2471 |
-
|
2472 |
-
#: widgets/file-upload/file-upload.php:132
|
2473 |
-
msgid ".docx"
|
2474 |
-
msgstr ""
|
2475 |
-
|
2476 |
-
#: widgets/file-upload/file-upload.php:133
|
2477 |
-
msgid ".ppt"
|
2478 |
-
msgstr ""
|
2479 |
-
|
2480 |
-
#: widgets/file-upload/file-upload.php:134
|
2481 |
-
msgid ".pptx"
|
2482 |
-
msgstr ""
|
2483 |
-
|
2484 |
-
#: widgets/file-upload/file-upload.php:135
|
2485 |
-
msgid ".pps"
|
2486 |
-
msgstr ""
|
2487 |
-
|
2488 |
-
#: widgets/file-upload/file-upload.php:136
|
2489 |
-
msgid ".ppsx"
|
2490 |
-
msgstr ""
|
2491 |
-
|
2492 |
-
#: widgets/file-upload/file-upload.php:137
|
2493 |
-
msgid ".odt"
|
2494 |
-
msgstr ""
|
2495 |
-
|
2496 |
-
#: widgets/file-upload/file-upload.php:138
|
2497 |
-
msgid ".xls"
|
2498 |
-
msgstr ""
|
2499 |
-
|
2500 |
-
#: widgets/file-upload/file-upload.php:139
|
2501 |
-
msgid ".xlsx"
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
#: widgets/file-upload/file-upload.php:140
|
2505 |
-
msgid ".psd"
|
2506 |
-
msgstr ""
|
2507 |
-
|
2508 |
-
#: widgets/file-upload/file-upload.php:141
|
2509 |
-
msgid ".mp3"
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: widgets/file-upload/file-upload.php:142
|
2513 |
-
msgid ".m4a"
|
2514 |
-
msgstr ""
|
2515 |
-
|
2516 |
-
#: widgets/file-upload/file-upload.php:143
|
2517 |
-
msgid ".ogg"
|
2518 |
-
msgstr ""
|
2519 |
-
|
2520 |
-
#: widgets/file-upload/file-upload.php:144
|
2521 |
-
msgid ".wav"
|
2522 |
-
msgstr ""
|
2523 |
-
|
2524 |
-
#: widgets/file-upload/file-upload.php:145
|
2525 |
-
msgid ".mp4"
|
2526 |
-
msgstr ""
|
2527 |
-
|
2528 |
-
#: widgets/file-upload/file-upload.php:146
|
2529 |
-
msgid ".m4v"
|
2530 |
-
msgstr ""
|
2531 |
-
|
2532 |
-
#: widgets/file-upload/file-upload.php:147
|
2533 |
-
msgid ".mov"
|
2534 |
-
msgstr ""
|
2535 |
-
|
2536 |
-
#: widgets/file-upload/file-upload.php:148
|
2537 |
-
msgid ".wmv"
|
2538 |
-
msgstr ""
|
2539 |
-
|
2540 |
-
#: widgets/file-upload/file-upload.php:149
|
2541 |
-
msgid ".avi"
|
2542 |
-
msgstr ""
|
2543 |
-
|
2544 |
-
#: widgets/file-upload/file-upload.php:150
|
2545 |
-
msgid ".mpg"
|
2546 |
-
msgstr ""
|
2547 |
-
|
2548 |
-
#: widgets/file-upload/file-upload.php:151
|
2549 |
-
msgid ".ogv"
|
2550 |
-
msgstr ""
|
2551 |
-
|
2552 |
-
#: widgets/file-upload/file-upload.php:152
|
2553 |
-
msgid ".3gp"
|
2554 |
-
msgstr ""
|
2555 |
-
|
2556 |
-
#: widgets/file-upload/file-upload.php:153
|
2557 |
-
msgid ".3g2"
|
2558 |
-
msgstr ""
|
2559 |
-
|
2560 |
-
#: widgets/file-upload/file-upload.php:154
|
2561 |
-
msgid ".zip"
|
2562 |
-
msgstr ""
|
2563 |
-
|
2564 |
-
#: widgets/file-upload/file-upload.php:155
|
2565 |
-
msgid ".csv"
|
2566 |
-
msgstr ""
|
2567 |
-
|
2568 |
-
#: widgets/file-upload/file-upload.php:195
|
2569 |
-
msgid "Icon Size"
|
2570 |
-
msgstr ""
|
2571 |
-
|
2572 |
-
#: widgets/file-upload/file-upload.php:223
|
2573 |
-
msgid "Icon Spacing"
|
2574 |
-
msgstr ""
|
2575 |
-
|
2576 |
-
#: widgets/file-upload/file-upload.php:238
|
2577 |
-
msgid "File Name:"
|
2578 |
-
msgstr ""
|
2579 |
-
|
2580 |
-
#: widgets/file-upload/file-upload.php:252
|
2581 |
-
msgid "Bottom"
|
2582 |
-
msgstr ""
|
2583 |
-
|
2584 |
-
#: widgets/file-upload/file-upload.php:446
|
2585 |
-
msgid "Choose a file"
|
2586 |
-
msgstr ""
|
2587 |
-
|
2588 |
-
#: widgets/file-upload/file-upload.php:452
|
2589 |
-
msgid "No file chosen."
|
2590 |
-
msgstr ""
|
2591 |
-
|
2592 |
-
#: widgets/form-basic.php:12
|
2593 |
-
msgid "MetForm Basic"
|
2594 |
-
msgstr ""
|
2595 |
-
|
2596 |
-
#: widgets/form-basic.php:58
|
2597 |
-
msgid "Select Form : "
|
2598 |
-
msgstr ""
|
2599 |
-
|
2600 |
-
#: widgets/form.php:51
|
2601 |
-
msgid "Select Form: "
|
2602 |
-
msgstr ""
|
2603 |
-
|
2604 |
-
#: widgets/form.php:54
|
2605 |
-
msgid "Click on the \"red\" edit icon to edit form content."
|
2606 |
-
msgstr ""
|
2607 |
-
|
2608 |
-
#: widgets/gdpr-consent/gdpr-consent.php:16
|
2609 |
-
msgid "GDPR Consent"
|
2610 |
-
msgstr ""
|
2611 |
-
|
2612 |
-
#: widgets/gdpr-consent/gdpr-consent.php:138
|
2613 |
-
#: widgets/listing-optin/listing-optin.php:137
|
2614 |
-
msgid "Select option name that will be show to user."
|
2615 |
-
msgstr ""
|
2616 |
-
|
2617 |
-
#: widgets/listing-fname/listing-fname.php:16
|
2618 |
-
msgid "First Name (Listing)"
|
2619 |
-
msgstr ""
|
2620 |
-
|
2621 |
-
#: widgets/listing-lname/listing-lname.php:16
|
2622 |
-
msgid "Last Name (Listing)"
|
2623 |
-
msgstr ""
|
2624 |
-
|
2625 |
-
#: widgets/listing-optin/listing-optin.php:16
|
2626 |
-
msgid "Opt in ( Listing )"
|
2627 |
-
msgstr ""
|
2628 |
-
|
2629 |
-
#: widgets/listing-optin/listing-optin.php:135
|
2630 |
-
msgid "Subscribe to ours newsletter."
|
2631 |
-
msgstr ""
|
2632 |
-
|
2633 |
-
#: widgets/manifest.php:116
|
2634 |
-
msgid "Metform"
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: widgets/multi-select/multi-select.php:16
|
2638 |
-
msgid "Multi Select"
|
2639 |
-
msgstr ""
|
2640 |
-
|
2641 |
-
#: widgets/multi-select/multi-select.php:47 widgets/select/select.php:47
|
2642 |
-
msgid "Input Field Text"
|
2643 |
-
msgstr ""
|
2644 |
-
|
2645 |
-
#: widgets/multi-select/multi-select.php:49 widgets/select/select.php:49
|
2646 |
-
msgid "Input Text"
|
2647 |
-
msgstr ""
|
2648 |
-
|
2649 |
-
#: widgets/multi-select/multi-select.php:51 widgets/select/select.php:51
|
2650 |
-
msgid "Select list text that will be show to user."
|
2651 |
-
msgstr ""
|
2652 |
-
|
2653 |
-
#: widgets/multi-select/multi-select.php:56 widgets/select/select.php:56
|
2654 |
-
msgid "Input Field Value"
|
2655 |
-
msgstr ""
|
2656 |
-
|
2657 |
-
#: widgets/multi-select/multi-select.php:60 widgets/select/select.php:60
|
2658 |
-
msgid "Select list value that will be store/mail to desired person."
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
#: widgets/multi-select/multi-select.php:66 widgets/select/select.php:66
|
2662 |
-
msgid "Status"
|
2663 |
-
msgstr ""
|
2664 |
-
|
2665 |
-
#: widgets/multi-select/multi-select.php:79 widgets/select/select.php:79
|
2666 |
-
msgid "Select it default ? "
|
2667 |
-
msgstr ""
|
2668 |
-
|
2669 |
-
#: widgets/multi-select/multi-select.php:86 widgets/select/select.php:86
|
2670 |
-
msgid "Make this option default selected"
|
2671 |
-
msgstr ""
|
2672 |
-
|
2673 |
-
#: widgets/multi-select/multi-select.php:93
|
2674 |
-
msgid "Multi Select List"
|
2675 |
-
msgstr ""
|
2676 |
-
|
2677 |
-
#: widgets/number/number.php:16
|
2678 |
-
msgid "Number"
|
2679 |
-
msgstr ""
|
2680 |
-
|
2681 |
-
#: widgets/password/password.php:16
|
2682 |
-
msgid "Password"
|
2683 |
-
msgstr ""
|
2684 |
-
|
2685 |
-
#: widgets/radio/radio.php:24 widgets/radio/radio.php:346
|
2686 |
-
msgid "Radio"
|
2687 |
-
msgstr ""
|
2688 |
-
|
2689 |
-
#: widgets/radio/radio.php:104
|
2690 |
-
msgid ""
|
2691 |
-
"Name is must required. Enter name without space or any special character. "
|
2692 |
-
"use only underscore/ hyphen (_/-) for multiple word."
|
2693 |
-
msgstr ""
|
2694 |
-
|
2695 |
-
#: widgets/radio/radio.php:123
|
2696 |
-
msgid "Radio option display style."
|
2697 |
-
msgstr ""
|
2698 |
-
|
2699 |
-
#: widgets/radio/radio.php:133
|
2700 |
-
msgid "After Radio"
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
#: widgets/radio/radio.php:134
|
2704 |
-
msgid "Before Radio"
|
2705 |
-
msgstr ""
|
2706 |
-
|
2707 |
-
#: widgets/radio/radio.php:145
|
2708 |
-
msgid "Radio Option Text"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: widgets/radio/radio.php:178
|
2712 |
-
msgid "Radio Options"
|
2713 |
-
msgstr ""
|
2714 |
-
|
2715 |
-
#: widgets/radio/radio.php:402 widgets/radio/radio.php:427
|
2716 |
-
msgid "Radio Color"
|
2717 |
-
msgstr ""
|
2718 |
-
|
2719 |
-
#: widgets/radio/radio.php:471
|
2720 |
-
msgid "Add space after radio"
|
2721 |
-
msgstr ""
|
2722 |
-
|
2723 |
-
#: widgets/range/range.php:16
|
2724 |
-
msgid "Range Slider"
|
2725 |
-
msgstr ""
|
2726 |
-
|
2727 |
-
#: widgets/range/range.php:86
|
2728 |
-
msgid "Steps"
|
2729 |
-
msgstr ""
|
2730 |
-
|
2731 |
-
#: widgets/range/range.php:95
|
2732 |
-
msgid "Dual range input:"
|
2733 |
-
msgstr ""
|
2734 |
-
|
2735 |
-
#: widgets/range/range.php:108
|
2736 |
-
msgid ""
|
2737 |
-
"<strong>Important Note : </strong> For taking dual range input, You have to "
|
2738 |
-
"enter dual default value in the field Value (Exactly bottom of this notice "
|
2739 |
-
"field. ). Example: Min:10, Max:20"
|
2740 |
-
msgstr ""
|
2741 |
-
|
2742 |
-
#: widgets/range/range.php:119
|
2743 |
-
msgid "Value"
|
2744 |
-
msgstr ""
|
2745 |
-
|
2746 |
-
#: widgets/range/range.php:148
|
2747 |
-
msgid "Range"
|
2748 |
-
msgstr ""
|
2749 |
-
|
2750 |
-
#: widgets/range/range.php:160
|
2751 |
-
msgid "Counter"
|
2752 |
-
msgstr ""
|
2753 |
-
|
2754 |
-
#: widgets/range/range.php:183 widgets/switch/switch.php:132
|
2755 |
-
#: widgets/textarea/textarea.php:88
|
2756 |
-
msgid "Height"
|
2757 |
-
msgstr ""
|
2758 |
-
|
2759 |
-
#: widgets/rating/rating.php:16
|
2760 |
-
msgid "Rating"
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
#: widgets/rating/rating.php:67
|
2764 |
-
msgid "Number of rating star : "
|
2765 |
-
msgstr ""
|
2766 |
-
|
2767 |
-
#: widgets/recaptcha/recaptcha.php:13
|
2768 |
-
msgid "reCAPTCHA"
|
2769 |
-
msgstr ""
|
2770 |
-
|
2771 |
-
#: widgets/recaptcha/recaptcha.php:40
|
2772 |
-
msgid "reCAPTCHA configure: "
|
2773 |
-
msgstr ""
|
2774 |
-
|
2775 |
-
#: widgets/recaptcha/recaptcha.php:50
|
2776 |
-
msgid "Add Extra Class Name : "
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
-
#: widgets/recaptcha/recaptcha.php:91
|
2780 |
-
msgid "reCAPTCHA is required."
|
2781 |
-
msgstr ""
|
2782 |
-
|
2783 |
-
#: widgets/recaptcha/recaptcha.php:127 widgets/recaptcha/recaptcha.php:144
|
2784 |
-
msgid "reCAPTCHA will be shown on preview."
|
2785 |
-
msgstr ""
|
2786 |
-
|
2787 |
-
#: widgets/select/select.php:16 widgets/select/select.php:163
|
2788 |
-
msgid "Select"
|
2789 |
-
msgstr ""
|
2790 |
-
|
2791 |
-
#: widgets/select/select.php:93
|
2792 |
-
msgid "Dropdown List"
|
2793 |
-
msgstr ""
|
2794 |
-
|
2795 |
-
#: widgets/simple-captcha/simple-captcha.php:22
|
2796 |
-
msgid "Simple Captcha"
|
2797 |
-
msgstr ""
|
2798 |
-
|
2799 |
-
#: widgets/simple-captcha/simple-captcha.php:62
|
2800 |
-
msgid "Label Position"
|
2801 |
-
msgstr ""
|
2802 |
-
|
2803 |
-
#: widgets/simple-captcha/simple-captcha.php:83
|
2804 |
-
msgid "Input captcha display"
|
2805 |
-
msgstr ""
|
2806 |
-
|
2807 |
-
#: widgets/simple-captcha/simple-captcha.php:87
|
2808 |
-
msgid "Block"
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#: widgets/simple-captcha/simple-captcha.php:88
|
2812 |
-
msgid "Inline"
|
2813 |
-
msgstr ""
|
2814 |
-
|
2815 |
-
#: widgets/simple-captcha/simple-captcha.php:90
|
2816 |
-
msgid "Select input and captcha display property."
|
2817 |
-
msgstr ""
|
2818 |
-
|
2819 |
-
#: widgets/simple-captcha/simple-captcha.php:240
|
2820 |
-
msgid "Refresh Captcha"
|
2821 |
-
msgstr ""
|
2822 |
-
|
2823 |
-
#: widgets/simple-captcha/simple-captcha.php:333
|
2824 |
-
msgid "Captcha didn't matched."
|
2825 |
-
msgstr ""
|
2826 |
-
|
2827 |
-
#: widgets/simple-captcha/simple-captcha.php:366
|
2828 |
-
msgid "Entry captcha from the picture"
|
2829 |
-
msgstr ""
|
2830 |
-
|
2831 |
-
#: widgets/summary/summary.php:16
|
2832 |
-
msgid "Summary"
|
2833 |
-
msgstr ""
|
2834 |
-
|
2835 |
-
#: widgets/summary/summary.php:141
|
2836 |
-
msgid "Summary will be shown on preview."
|
2837 |
-
msgstr ""
|
2838 |
-
|
2839 |
-
#: widgets/switch/switch.php:16
|
2840 |
-
msgid "Switch"
|
2841 |
-
msgstr ""
|
2842 |
-
|
2843 |
-
#: widgets/switch/switch.php:46
|
2844 |
-
msgid "Active Text"
|
2845 |
-
msgstr ""
|
2846 |
-
|
2847 |
-
#: widgets/switch/switch.php:54
|
2848 |
-
msgid "Inactive Text"
|
2849 |
-
msgstr ""
|
2850 |
-
|
2851 |
-
#: widgets/switch/switch.php:148
|
2852 |
-
msgid "Input Active Color"
|
2853 |
-
msgstr ""
|
2854 |
-
|
2855 |
-
#: widgets/switch/switch.php:168
|
2856 |
-
msgid "Active and Inactive Text:"
|
2857 |
-
msgstr ""
|
2858 |
-
|
2859 |
-
#: widgets/switch/switch.php:180
|
2860 |
-
msgid "Inactive"
|
2861 |
-
msgstr ""
|
2862 |
-
|
2863 |
-
#: widgets/telephone/telephone.php:16
|
2864 |
-
msgid "Telephone"
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#: widgets/text/text.php:16
|
2868 |
-
msgid "Text"
|
2869 |
-
msgstr ""
|
2870 |
-
|
2871 |
-
#: widgets/textarea/textarea.php:17
|
2872 |
-
msgid "Textarea"
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: widgets/time/time.php:20
|
2876 |
-
msgid "Time"
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#: widgets/time/time.php:71
|
2880 |
-
msgid "Use time 24H"
|
2881 |
-
msgstr ""
|
2882 |
-
|
2883 |
-
#: widgets/url/url.php:16
|
2884 |
-
msgid "URL"
|
2885 |
-
msgstr ""
|
2886 |
-
|
2887 |
-
#: widgets/url/url.php:138
|
2888 |
-
msgid "Please enter a valid URL"
|
2889 |
-
msgstr ""
|
2890 |
-
|
2891 |
-
#: widgets/widget-notice.php:18
|
2892 |
-
msgid "Go Pro for More Features"
|
2893 |
-
msgstr ""
|
2894 |
-
|
2895 |
-
#: widgets/widget-notice.php:25
|
2896 |
-
msgid "Unlock more possibilities"
|
2897 |
-
msgstr ""
|
2898 |
-
|
2899 |
-
#. Plugin URI of the plugin/theme
|
2900 |
-
msgid "http://products.wpmet.com/metform/"
|
2901 |
-
msgstr ""
|
2902 |
-
|
2903 |
-
#. Description of the plugin/theme
|
2904 |
-
msgid "Most flexible and design friendly form builder for Elementor"
|
2905 |
-
msgstr ""
|
2906 |
-
|
2907 |
-
#. Author of the plugin/theme
|
2908 |
-
msgid "Wpmet"
|
2909 |
-
msgstr ""
|
2910 |
-
|
2911 |
-
#. Author URI of the plugin/theme
|
2912 |
-
msgid "https://wpmet.com"
|
2913 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/metform.php
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
defined( 'ABSPATH' ) || exit;
|
3 |
-
|
4 |
-
/**
|
5 |
-
* Plugin Name: MetForm
|
6 |
-
* Plugin URI: http://products.wpmet.com/metform/
|
7 |
-
* Description: Most flexible and design friendly form builder for Elementor
|
8 |
-
* Version: 1.3.13
|
9 |
-
* Author: Wpmet
|
10 |
-
* Author URI: https://wpmet.com
|
11 |
-
* Text Domain: metform
|
12 |
-
* License: GPL-2.0+
|
13 |
-
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
14 |
-
*/
|
15 |
-
|
16 |
-
require_once plugin_dir_path( __FILE__ ) . '/utils/notice/notice.php';
|
17 |
-
require_once plugin_dir_path( __FILE__ ) . '/utils/banner/init.php';
|
18 |
-
|
19 |
-
require plugin_dir_path( __FILE__ ) .'autoloader.php';
|
20 |
-
require plugin_dir_path( __FILE__ ) .'plugin.php';
|
21 |
-
|
22 |
-
// init notice class
|
23 |
-
\Oxaim\Libs\Notice::init();
|
24 |
-
|
25 |
-
register_activation_hook( __FILE__, [ MetForm\Plugin::instance(), 'flush_rewrites'] );
|
26 |
-
|
27 |
-
add_action( 'plugins_loaded', function(){
|
28 |
-
do_action('metform/before_load');
|
29 |
-
MetForm\Plugin::instance()->init();
|
30 |
-
do_action('metform/after_load');
|
31 |
-
}, 111);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/plugin.php
DELETED
@@ -1,403 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
namespace MetForm;
|
3 |
-
|
4 |
-
|
5 |
-
defined( 'ABSPATH' ) || exit;
|
6 |
-
|
7 |
-
final class Plugin{
|
8 |
-
|
9 |
-
private static $instance;
|
10 |
-
|
11 |
-
private $entries;
|
12 |
-
private $global_settings;
|
13 |
-
|
14 |
-
public function __construct(){
|
15 |
-
Autoloader::run();
|
16 |
-
}
|
17 |
-
|
18 |
-
public function version(){
|
19 |
-
return '1.3.13';
|
20 |
-
}
|
21 |
-
|
22 |
-
public function package_type(){
|
23 |
-
return 'free';
|
24 |
-
}
|
25 |
-
|
26 |
-
public function plugin_url(){
|
27 |
-
return trailingslashit(plugin_dir_url( __FILE__ ));
|
28 |
-
}
|
29 |
-
|
30 |
-
public function plugin_dir(){
|
31 |
-
return trailingslashit(plugin_dir_path( __FILE__ ));
|
32 |
-
}
|
33 |
-
|
34 |
-
public function core_url(){
|
35 |
-
return $this->plugin_url() . 'core/';
|
36 |
-
}
|
37 |
-
|
38 |
-
public function core_dir(){
|
39 |
-
return $this->plugin_dir() . 'core/';
|
40 |
-
}
|
41 |
-
|
42 |
-
public function base_url(){
|
43 |
-
return $this->plugin_url() . 'base/';
|
44 |
-
}
|
45 |
-
|
46 |
-
public function base_dir(){
|
47 |
-
return $this->plugin_dir() . 'base/';
|
48 |
-
}
|
49 |
-
|
50 |
-
public function utils_url(){
|
51 |
-
return $this->plugin_url() . 'utils/';
|
52 |
-
}
|
53 |
-
|
54 |
-
public function utils_dir(){
|
55 |
-
return $this->plugin_dir() . 'utils/';
|
56 |
-
}
|
57 |
-
|
58 |
-
public function widgets_url(){
|
59 |
-
return $this->plugin_url() . 'widgets/';
|
60 |
-
}
|
61 |
-
|
62 |
-
public function widgets_dir(){
|
63 |
-
return $this->plugin_dir() . 'widgets/';
|
64 |
-
}
|
65 |
-
|
66 |
-
public function public_url(){
|
67 |
-
return $this->plugin_url() . 'public/';
|
68 |
-
}
|
69 |
-
|
70 |
-
public function public_dir(){
|
71 |
-
return $this->plugin_dir() . 'public/';
|
72 |
-
}
|
73 |
-
|
74 |
-
public function i18n() {
|
75 |
-
load_plugin_textdomain( 'metform', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
76 |
-
}
|
77 |
-
|
78 |
-
public function init(){
|
79 |
-
|
80 |
-
new Utils\Notice();
|
81 |
-
|
82 |
-
/**
|
83 |
-
* Ask for rating
|
84 |
-
*/
|
85 |
-
require_once 'utils/rating.php';
|
86 |
-
require_once 'utils/announcements/init.php';
|
87 |
-
require_once 'utils/pro-awareness/init.php';
|
88 |
-
|
89 |
-
(new \Wpmet\Rating\Rating())
|
90 |
-
->plugin_name('metform')
|
91 |
-
->first_appear_day(7)
|
92 |
-
->rating_url('https://wordpress.org/plugins/metform/')
|
93 |
-
->init();
|
94 |
-
|
95 |
-
// banner
|
96 |
-
add_action('admin_head', function() {
|
97 |
-
|
98 |
-
\Wpmet\Libs\Banner\Init::instance('metform')
|
99 |
-
->set_api_url('https://api.wpmet.com/public/jhanda/index.php')
|
100 |
-
->set_plugin_screens('edit-metform-form')
|
101 |
-
->set_plugin_screens('edit-metform-entry')
|
102 |
-
->set_plugin_screens('metform_page_metform-menu-settings')
|
103 |
-
->call();
|
104 |
-
});
|
105 |
-
|
106 |
-
/**
|
107 |
-
* Show WPMET announcements widget in dashboard
|
108 |
-
*/
|
109 |
-
\Wpmet\Libs\Announcements\Init::instance('metform')
|
110 |
-
->set_plugin('Metform', 'https://wpmet.com/plugin/metform')
|
111 |
-
->set_api_url('https://api.wpmet.com/public/announcements/index.php')
|
112 |
-
->call();
|
113 |
-
|
114 |
-
|
115 |
-
/**
|
116 |
-
* Pro awareness feature;
|
117 |
-
*/
|
118 |
-
|
119 |
-
\Wpmet\Libs\Pro_Awareness\Init::init();
|
120 |
-
\Wpmet\Libs\Pro_Awareness\Init::instance('metform')
|
121 |
-
->set_parent_menu_slug('metform-menu')
|
122 |
-
->set_pro_link(
|
123 |
-
(in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
|
124 |
-
'https://wpmet.com/plugin/metform/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro_menu')
|
125 |
-
->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
|
126 |
-
->set_grid([
|
127 |
-
'url' => 'https://go.wpmet.com/facebook-group',
|
128 |
-
'title' => 'Join the Community',
|
129 |
-
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
|
130 |
-
])
|
131 |
-
->set_grid([
|
132 |
-
'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
|
133 |
-
'title' => 'Video Tutorials',
|
134 |
-
'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
|
135 |
-
])
|
136 |
-
->call();
|
137 |
-
|
138 |
-
|
139 |
-
// Check if Elementor installed and activated.
|
140 |
-
if ( ! did_action( 'elementor/loaded' ) ) {
|
141 |
-
add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
|
142 |
-
return;
|
143 |
-
}
|
144 |
-
// Check for required Elementor version.
|
145 |
-
if ( ! version_compare( ELEMENTOR_VERSION, '2.6.0', '>=' ) ) {
|
146 |
-
add_action( 'admin_notices', array( $this, 'failed_elementor_version' ) );
|
147 |
-
return;
|
148 |
-
}
|
149 |
-
|
150 |
-
// pro available notice
|
151 |
-
if( !file_exists( WP_PLUGIN_DIR . '/metform-pro/metform-pro.php' ) ){
|
152 |
-
add_action( 'admin_notices', [ $this, 'available_metform_pro'] );
|
153 |
-
}
|
154 |
-
|
155 |
-
if(current_user_can('manage_options')){
|
156 |
-
add_action( 'admin_menu',[$this,'admin_menu']);
|
157 |
-
}
|
158 |
-
|
159 |
-
add_action( 'elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts'] );
|
160 |
-
|
161 |
-
add_action( 'init', array( $this, 'i18n' ) );
|
162 |
-
|
163 |
-
add_action('admin_enqueue_scripts', [$this,'js_css_admin']);
|
164 |
-
add_action('wp_enqueue_scripts', [$this,'js_css_public']);
|
165 |
-
add_action( 'elementor/frontend/before_enqueue_scripts', [$this, 'elementor_js'] );
|
166 |
-
|
167 |
-
add_action( 'elementor/editor/before_enqueue_styles', [ $this, 'elementor_css' ] );
|
168 |
-
|
169 |
-
add_action('admin_footer', [$this, 'footer_data']);
|
170 |
-
|
171 |
-
Core\Forms\Base::instance()->init();
|
172 |
-
Controls\Base::instance()->init();
|
173 |
-
$this->entries = Core\Entries\Base::instance();
|
174 |
-
|
175 |
-
Widgets\Manifest::instance()->init();
|
176 |
-
|
177 |
-
// Add banner class
|
178 |
-
include $this->utils_dir() . 'banner.php';
|
179 |
-
|
180 |
-
// settings page
|
181 |
-
Core\Admin\Base::instance()->init();
|
182 |
-
|
183 |
-
add_action('admin_notices', function(){
|
184 |
-
\WpMet_Banner::run();
|
185 |
-
});
|
186 |
-
}
|
187 |
-
|
188 |
-
function js_css_public(){
|
189 |
-
$is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->preview->is_preview_mode();
|
190 |
-
|
191 |
-
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
192 |
-
wp_enqueue_style('metform-style', $this->public_url().'assets/css/style.css', false, $this->version());
|
193 |
-
|
194 |
-
wp_register_style('asRange', $this->public_url().'assets/css/asRange.min.css', false, $this->version());
|
195 |
-
wp_register_script('asRange', $this->public_url().'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
|
196 |
-
|
197 |
-
wp_register_style('mf-select2', $this->public_url().'assets/css/select2.min.css', false, $this->version());
|
198 |
-
wp_register_script('mf-select2', $this->public_url().'assets/js/select2.min.js', array(), $this->version(), true);
|
199 |
-
|
200 |
-
wp_register_script('recaptcha-v2', 'https://google.com/recaptcha/api.js', array(), null, true);
|
201 |
-
|
202 |
-
$this->global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
|
203 |
-
|
204 |
-
if(isset($this->global_settings['mf_recaptcha_version']) && ( $this->global_settings['mf_recaptcha_version'] == 'recaptcha-v3' ) && isset($this->global_settings['mf_recaptcha_site_key_v3']) && ( $this->global_settings['mf_recaptcha_site_key_v3'] != '' ) ){
|
205 |
-
wp_register_script('recaptcha-v3', 'https://www.google.com/recaptcha/api.js?render='. $this->global_settings['mf_recaptcha_site_key_v3'], array(), $this->version(), false);
|
206 |
-
}
|
207 |
-
|
208 |
-
if(isset($this->global_settings['mf_google_map_api_key']) && ( $this->global_settings['mf_google_map_api_key'] != '' ) ){
|
209 |
-
wp_register_script( 'maps-api', 'https://maps.googleapis.com/maps/api/js?key='.$this->global_settings['mf_google_map_api_key'].'&libraries=places&&callback=mfMapLocation', array(), '', true );
|
210 |
-
}
|
211 |
-
|
212 |
-
wp_deregister_style('flatpickr'); // flatpickr stylesheet
|
213 |
-
wp_register_style('flatpickr', $this->public_url().'assets/css/flatpickr.min.css', false, $this->version()); // flatpickr stylesheet
|
214 |
-
|
215 |
-
wp_enqueue_script('htm', $this->public_url().'assets/js/htm.js', null, $this->version(), true);
|
216 |
-
|
217 |
-
wp_enqueue_script('metform-app', $this->public_url().'assets/js/app.js', array('htm', 'jquery', 'wp-element'), $this->version(), true);
|
218 |
-
wp_localize_script('metform-app', 'mf', array(
|
219 |
-
'postType' => get_post_type(),
|
220 |
-
'restURI' => get_rest_url( null, 'metform/v1/forms/views/')
|
221 |
-
));
|
222 |
-
|
223 |
-
do_action('metform/onload/enqueue_scripts');
|
224 |
-
}
|
225 |
-
|
226 |
-
public function edit_view_scripts(){
|
227 |
-
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
228 |
-
wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
|
229 |
-
|
230 |
-
|
231 |
-
wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
|
232 |
-
wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
|
233 |
-
|
234 |
-
wp_add_inline_script('metform-admin-script', "
|
235 |
-
var metform_api = {
|
236 |
-
resturl: '". get_rest_url() ."'
|
237 |
-
}
|
238 |
-
");
|
239 |
-
}
|
240 |
-
|
241 |
-
public function elementor_js() {
|
242 |
-
}
|
243 |
-
|
244 |
-
public function elementor_css(){
|
245 |
-
if('metform-form' == get_post_type()){
|
246 |
-
wp_enqueue_style('metform-category-top', $this->public_url().'assets/css/category-top.css', false, $this->version());
|
247 |
-
}
|
248 |
-
}
|
249 |
-
|
250 |
-
function js_css_admin(){
|
251 |
-
|
252 |
-
$screen = get_current_screen();
|
253 |
-
|
254 |
-
if(in_array($screen->id, ['edit-metform-form','metform_page_mt-form-settings', 'metform-entry', 'metform_page_metform-menu-settings'])){
|
255 |
-
wp_enqueue_style('metform-admin-fonts', $this->public_url().'assets/admin-fonts.css', false, $this->version());
|
256 |
-
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
257 |
-
wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
|
258 |
-
|
259 |
-
wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
|
260 |
-
wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
|
261 |
-
wp_localize_script('metform-admin-script', 'metform_api', array('resturl' => get_rest_url(), 'admin_url' => get_admin_url()));
|
262 |
-
}
|
263 |
-
|
264 |
-
if($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry'){
|
265 |
-
wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
|
266 |
-
wp_enqueue_script('metform-entry-script', $this->public_url().'assets/js/admin-entry-script.js', array(), $this->version(), true);
|
267 |
-
}
|
268 |
-
|
269 |
-
}
|
270 |
-
|
271 |
-
public function footer_data(){
|
272 |
-
|
273 |
-
$screen = get_current_screen();
|
274 |
-
|
275 |
-
if($screen->id == 'edit-metform-entry'){
|
276 |
-
$args = array(
|
277 |
-
'post_type' => 'metform-form',
|
278 |
-
'post_status' => 'publish',
|
279 |
-
);
|
280 |
-
|
281 |
-
$forms = get_posts( $args );
|
282 |
-
|
283 |
-
$get_form_id = isset($_GET['form_id']) ? sanitize_key($_GET['form_id']) : '';
|
284 |
-
?>
|
285 |
-
<div id='metform-formlist' style='display:none;'><select name='form_id' id='metform-form_id'>
|
286 |
-
<option value='all' <?php echo esc_attr(((($get_form_id == 'all') || ($get_form_id == '')) ? 'selected=selected' : '')); ?>>All</option>
|
287 |
-
<?php
|
288 |
-
|
289 |
-
foreach($forms as $form){
|
290 |
-
$form_list[$form->ID] = $form->post_title;
|
291 |
-
?>
|
292 |
-
<option value="<?php echo esc_attr($form->ID); ?>" <?php echo esc_attr(($get_form_id == $form->ID) ? 'selected=selected' : ''); ?> ><?php echo esc_html($form->post_title); ?></option>
|
293 |
-
<?php
|
294 |
-
}
|
295 |
-
echo "</select></div>";
|
296 |
-
}
|
297 |
-
}
|
298 |
-
|
299 |
-
function admin_menu() {
|
300 |
-
add_menu_page(
|
301 |
-
esc_html__('MetForm'),
|
302 |
-
esc_html__('MetForm'),
|
303 |
-
'read',
|
304 |
-
'metform-menu',
|
305 |
-
'',
|
306 |
-
'dashicons-feedback',
|
307 |
-
5
|
308 |
-
);
|
309 |
-
}
|
310 |
-
|
311 |
-
public function missing_elementor() {
|
312 |
-
if ( isset( $_GET['activate'] ) ) {
|
313 |
-
unset( $_GET['activate'] );
|
314 |
-
}
|
315 |
-
|
316 |
-
if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
|
317 |
-
$btn['label'] = esc_html__('Activate Elementor', 'metform');
|
318 |
-
$btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
|
319 |
-
} else {
|
320 |
-
$btn['label'] = esc_html__('Install Elementor', 'metform');
|
321 |
-
$btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
|
322 |
-
}
|
323 |
-
|
324 |
-
Utils\Notice::push(
|
325 |
-
[
|
326 |
-
'id' => 'unsupported-elementor-version',
|
327 |
-
'type' => 'error',
|
328 |
-
'dismissible' => true,
|
329 |
-
'btn' => $btn,
|
330 |
-
'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
|
331 |
-
]
|
332 |
-
);
|
333 |
-
}
|
334 |
-
|
335 |
-
public function available_metform_pro() {
|
336 |
-
if ( isset( $_GET['activate'] ) ) {
|
337 |
-
unset( $_GET['activate'] );
|
338 |
-
}
|
339 |
-
|
340 |
-
$btn['label'] = esc_html__('MetForm Pro', 'metform');
|
341 |
-
$btn['url'] = esc_url( 'https://products.wpmet.com/metform/');
|
342 |
-
|
343 |
-
if(!$this->should_show_pro_banner())
|
344 |
-
return;
|
345 |
-
|
346 |
-
Utils\Notice::push(
|
347 |
-
[
|
348 |
-
'id' => 'unsupported-metform-pro-version',
|
349 |
-
'type' => 'success',
|
350 |
-
'dismissible' => true,
|
351 |
-
'btn' => $btn,
|
352 |
-
'message' => sprintf( esc_html__( 'We have MetForm Pro version. Check out our pro feature.', 'metform' ), '2.6.0' ),
|
353 |
-
]
|
354 |
-
);
|
355 |
-
}
|
356 |
-
|
357 |
-
/**
|
358 |
-
* Check the admin screen and show the pro banner if eligible
|
359 |
-
*/
|
360 |
-
public function should_show_pro_banner() {
|
361 |
-
$current_screen = (get_current_screen())->base;
|
362 |
-
$current_post_type = ( get_current_screen())->post_type;
|
363 |
-
$eligible_post_type = ['metform-form','metform-entry'];
|
364 |
-
$eligible_screens = ['plugins','dashboard','metform_page_metform-menu-settings','themes'];
|
365 |
-
|
366 |
-
if(in_array($current_post_type,$eligible_post_type))
|
367 |
-
return true;
|
368 |
-
|
369 |
-
if(in_array($current_screen,$eligible_screens))
|
370 |
-
return true;
|
371 |
-
|
372 |
-
return false;
|
373 |
-
}
|
374 |
-
|
375 |
-
public function failed_elementor_version(){
|
376 |
-
|
377 |
-
$btn['label'] = esc_html__('Update Elementor', 'metform');
|
378 |
-
$btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=elementor' ), 'upgrade-plugin_elementor' );
|
379 |
-
|
380 |
-
Utils\Notice::push(
|
381 |
-
[
|
382 |
-
'id' => 'unsupported-elementor-version',
|
383 |
-
'type' => 'error',
|
384 |
-
'dismissible' => true,
|
385 |
-
'btn' => $btn,
|
386 |
-
'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
|
387 |
-
]
|
388 |
-
);
|
389 |
-
}
|
390 |
-
|
391 |
-
public function flush_rewrites(){
|
392 |
-
$form_cpt = new Core\Forms\Cpt();
|
393 |
-
$form_cpt->flush_rewrites();
|
394 |
-
}
|
395 |
-
|
396 |
-
public static function instance(){
|
397 |
-
if (!self::$instance){
|
398 |
-
self::$instance = new self();
|
399 |
-
}
|
400 |
-
return self::$instance;
|
401 |
-
}
|
402 |
-
|
403 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/admin-fonts.css
DELETED
@@ -1,2747 +0,0 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'metform';
|
3 |
-
src:
|
4 |
-
url('fonts/metform.ttf?eis82y') format('truetype'),
|
5 |
-
url('fonts/metform.woff?eis82y') format('woff'),
|
6 |
-
url('fonts/metform.svg?eis82y#metform') format('svg');
|
7 |
-
font-weight: normal;
|
8 |
-
font-style: normal;
|
9 |
-
font-display: block;
|
10 |
-
}
|
11 |
-
|
12 |
-
.mf {
|
13 |
-
/* use !important to prevent issues with browser extensions that change fonts */
|
14 |
-
font-family: 'metform' !important;
|
15 |
-
speak: none;
|
16 |
-
font-style: normal;
|
17 |
-
font-weight: normal;
|
18 |
-
font-variant: normal;
|
19 |
-
text-transform: none;
|
20 |
-
line-height: 1;
|
21 |
-
|
22 |
-
/* Better Font Rendering =========== */
|
23 |
-
-webkit-font-smoothing: antialiased;
|
24 |
-
-moz-osx-font-smoothing: grayscale;
|
25 |
-
}
|
26 |
-
|
27 |
-
.mf-icon-checked-fillpng:before {
|
28 |
-
content: "\e9c8";
|
29 |
-
}
|
30 |
-
.mf-question:before {
|
31 |
-
content: "\eb1e";
|
32 |
-
}
|
33 |
-
.mf-home:before {
|
34 |
-
content: "\e800";
|
35 |
-
}
|
36 |
-
.mf-apartment1:before {
|
37 |
-
content: "\e801";
|
38 |
-
}
|
39 |
-
.mf-pencil:before {
|
40 |
-
content: "\e802";
|
41 |
-
}
|
42 |
-
.mf-magic-wand:before {
|
43 |
-
content: "\e803";
|
44 |
-
}
|
45 |
-
.mf-drop:before {
|
46 |
-
content: "\e804";
|
47 |
-
}
|
48 |
-
.mf-lighter:before {
|
49 |
-
content: "\e805";
|
50 |
-
}
|
51 |
-
.mf-poop:before {
|
52 |
-
content: "\e806";
|
53 |
-
}
|
54 |
-
.mf-sun:before {
|
55 |
-
content: "\e807";
|
56 |
-
}
|
57 |
-
.mf-moon:before {
|
58 |
-
content: "\e808";
|
59 |
-
}
|
60 |
-
.mf-cloud1:before {
|
61 |
-
content: "\e809";
|
62 |
-
}
|
63 |
-
.mf-cloud-upload:before {
|
64 |
-
content: "\e80a";
|
65 |
-
}
|
66 |
-
.mf-cloud-download:before {
|
67 |
-
content: "\e80b";
|
68 |
-
}
|
69 |
-
.mf-cloud-sync:before {
|
70 |
-
content: "\e80c";
|
71 |
-
}
|
72 |
-
.mf-cloud-check:before {
|
73 |
-
content: "\e80d";
|
74 |
-
}
|
75 |
-
.mf-database1:before {
|
76 |
-
content: "\e80e";
|
77 |
-
}
|
78 |
-
.mf-lock:before {
|
79 |
-
content: "\e80f";
|
80 |
-
}
|
81 |
-
.mf-cog:before {
|
82 |
-
content: "\e810";
|
83 |
-
}
|
84 |
-
.mf-trash:before {
|
85 |
-
content: "\e811";
|
86 |
-
}
|
87 |
-
.mf-dice:before {
|
88 |
-
content: "\e812";
|
89 |
-
}
|
90 |
-
.mf-heart1:before {
|
91 |
-
content: "\e813";
|
92 |
-
}
|
93 |
-
.mf-star1:before {
|
94 |
-
content: "\e814";
|
95 |
-
}
|
96 |
-
.mf-star-half:before {
|
97 |
-
content: "\e815";
|
98 |
-
}
|
99 |
-
.mf-star-empty:before {
|
100 |
-
content: "\e816";
|
101 |
-
}
|
102 |
-
.mf-flag:before {
|
103 |
-
content: "\e817";
|
104 |
-
}
|
105 |
-
.mf-envelope1:before {
|
106 |
-
content: "\e818";
|
107 |
-
}
|
108 |
-
.mf-paperclip:before {
|
109 |
-
content: "\e819";
|
110 |
-
}
|
111 |
-
.mf-inbox:before {
|
112 |
-
content: "\e81a";
|
113 |
-
}
|
114 |
-
.mf-eye:before {
|
115 |
-
content: "\e81b";
|
116 |
-
}
|
117 |
-
.mf-printer:before {
|
118 |
-
content: "\e81c";
|
119 |
-
}
|
120 |
-
.mf-file-empty:before {
|
121 |
-
content: "\e81d";
|
122 |
-
}
|
123 |
-
.mf-file-add:before {
|
124 |
-
content: "\e81e";
|
125 |
-
}
|
126 |
-
.mf-enter:before {
|
127 |
-
content: "\e81f";
|
128 |
-
}
|
129 |
-
.mf-exit:before {
|
130 |
-
content: "\e820";
|
131 |
-
}
|
132 |
-
.mf-graduation-hat:before {
|
133 |
-
content: "\e821";
|
134 |
-
}
|
135 |
-
.mf-license:before {
|
136 |
-
content: "\e822";
|
137 |
-
}
|
138 |
-
.mf-music-note:before {
|
139 |
-
content: "\e823";
|
140 |
-
}
|
141 |
-
.mf-film-play:before {
|
142 |
-
content: "\e824";
|
143 |
-
}
|
144 |
-
.mf-camera-video:before {
|
145 |
-
content: "\e825";
|
146 |
-
}
|
147 |
-
.mf-camera:before {
|
148 |
-
content: "\e826";
|
149 |
-
}
|
150 |
-
.mf-picture:before {
|
151 |
-
content: "\e827";
|
152 |
-
}
|
153 |
-
.mf-book:before {
|
154 |
-
content: "\e828";
|
155 |
-
}
|
156 |
-
.mf-bookmark:before {
|
157 |
-
content: "\e829";
|
158 |
-
}
|
159 |
-
.mf-user:before {
|
160 |
-
content: "\e82a";
|
161 |
-
}
|
162 |
-
.mf-users:before {
|
163 |
-
content: "\e82b";
|
164 |
-
}
|
165 |
-
.mf-shirt:before {
|
166 |
-
content: "\e82c";
|
167 |
-
}
|
168 |
-
.mf-store:before {
|
169 |
-
content: "\e82d";
|
170 |
-
}
|
171 |
-
.mf-cart2:before {
|
172 |
-
content: "\e82e";
|
173 |
-
}
|
174 |
-
.mf-tag:before {
|
175 |
-
content: "\e82f";
|
176 |
-
}
|
177 |
-
.mf-phone-handset:before {
|
178 |
-
content: "\e830";
|
179 |
-
}
|
180 |
-
.mf-phone:before {
|
181 |
-
content: "\e831";
|
182 |
-
}
|
183 |
-
.mf-pushpin:before {
|
184 |
-
content: "\e832";
|
185 |
-
}
|
186 |
-
.mf-map-marker:before {
|
187 |
-
content: "\e833";
|
188 |
-
}
|
189 |
-
.mf-map:before {
|
190 |
-
content: "\e834";
|
191 |
-
}
|
192 |
-
.mf-location:before {
|
193 |
-
content: "\e835";
|
194 |
-
}
|
195 |
-
.mf-calendar-full:before {
|
196 |
-
content: "\e836";
|
197 |
-
}
|
198 |
-
.mf-keyboard:before {
|
199 |
-
content: "\e837";
|
200 |
-
}
|
201 |
-
.mf-spell-check:before {
|
202 |
-
content: "\e838";
|
203 |
-
}
|
204 |
-
.mf-screen:before {
|
205 |
-
content: "\e839";
|
206 |
-
}
|
207 |
-
.mf-smartphone:before {
|
208 |
-
content: "\e83a";
|
209 |
-
}
|
210 |
-
.mf-tablet:before {
|
211 |
-
content: "\e83b";
|
212 |
-
}
|
213 |
-
.mf-laptop:before {
|
214 |
-
content: "\e83c";
|
215 |
-
}
|
216 |
-
.mf-laptop-phone:before {
|
217 |
-
content: "\e83d";
|
218 |
-
}
|
219 |
-
.mf-power-switch:before {
|
220 |
-
content: "\e83e";
|
221 |
-
}
|
222 |
-
.mf-bubble:before {
|
223 |
-
content: "\e83f";
|
224 |
-
}
|
225 |
-
.mf-heart-pulse:before {
|
226 |
-
content: "\e840";
|
227 |
-
}
|
228 |
-
.mf-construction:before {
|
229 |
-
content: "\e841";
|
230 |
-
}
|
231 |
-
.mf-pie-chart:before {
|
232 |
-
content: "\e842";
|
233 |
-
}
|
234 |
-
.mf-chart-bars:before {
|
235 |
-
content: "\e843";
|
236 |
-
}
|
237 |
-
.mf-gift1:before {
|
238 |
-
content: "\e844";
|
239 |
-
}
|
240 |
-
.mf-diamond1:before {
|
241 |
-
content: "\e845";
|
242 |
-
}
|
243 |
-
.mf-dinner:before {
|
244 |
-
content: "\e847";
|
245 |
-
}
|
246 |
-
.mf-coffee-cup:before {
|
247 |
-
content: "\e848";
|
248 |
-
}
|
249 |
-
.mf-leaf:before {
|
250 |
-
content: "\e849";
|
251 |
-
}
|
252 |
-
.mf-paw:before {
|
253 |
-
content: "\e84a";
|
254 |
-
}
|
255 |
-
.mf-rocket:before {
|
256 |
-
content: "\e84b";
|
257 |
-
}
|
258 |
-
.mf-briefcase:before {
|
259 |
-
content: "\e84c";
|
260 |
-
}
|
261 |
-
.mf-bus:before {
|
262 |
-
content: "\e84d";
|
263 |
-
}
|
264 |
-
.mf-car1:before {
|
265 |
-
content: "\e84e";
|
266 |
-
}
|
267 |
-
.mf-train:before {
|
268 |
-
content: "\e84f";
|
269 |
-
}
|
270 |
-
.mf-bicycle:before {
|
271 |
-
content: "\e850";
|
272 |
-
}
|
273 |
-
.mf-wheelchair:before {
|
274 |
-
content: "\e851";
|
275 |
-
}
|
276 |
-
.mf-select:before {
|
277 |
-
content: "\e852";
|
278 |
-
}
|
279 |
-
.mf-earth:before {
|
280 |
-
content: "\e853";
|
281 |
-
}
|
282 |
-
.mf-smile:before {
|
283 |
-
content: "\e854";
|
284 |
-
}
|
285 |
-
.mf-sad:before {
|
286 |
-
content: "\e855";
|
287 |
-
}
|
288 |
-
.mf-neutral:before {
|
289 |
-
content: "\e856";
|
290 |
-
}
|
291 |
-
.mf-mustache:before {
|
292 |
-
content: "\e857";
|
293 |
-
}
|
294 |
-
.mf-alarm:before {
|
295 |
-
content: "\e858";
|
296 |
-
}
|
297 |
-
.mf-bullhorn:before {
|
298 |
-
content: "\e859";
|
299 |
-
}
|
300 |
-
.mf-volume-high:before {
|
301 |
-
content: "\e85a";
|
302 |
-
}
|
303 |
-
.mf-volume-medium:before {
|
304 |
-
content: "\e85b";
|
305 |
-
}
|
306 |
-
.mf-volume-low:before {
|
307 |
-
content: "\e85c";
|
308 |
-
}
|
309 |
-
.mf-volume:before {
|
310 |
-
content: "\e85d";
|
311 |
-
}
|
312 |
-
.mf-mic:before {
|
313 |
-
content: "\e85e";
|
314 |
-
}
|
315 |
-
.mf-hourglass:before {
|
316 |
-
content: "\e85f";
|
317 |
-
}
|
318 |
-
.mf-undo:before {
|
319 |
-
content: "\e860";
|
320 |
-
}
|
321 |
-
.mf-redo:before {
|
322 |
-
content: "\e861";
|
323 |
-
}
|
324 |
-
.mf-sync:before {
|
325 |
-
content: "\e862";
|
326 |
-
}
|
327 |
-
.mf-history:before {
|
328 |
-
content: "\e863";
|
329 |
-
}
|
330 |
-
.mf-clock1:before {
|
331 |
-
content: "\e864";
|
332 |
-
}
|
333 |
-
.mf-download:before {
|
334 |
-
content: "\e865";
|
335 |
-
}
|
336 |
-
.mf-upload:before {
|
337 |
-
content: "\e866";
|
338 |
-
}
|
339 |
-
.mf-enter-down:before {
|
340 |
-
content: "\e867";
|
341 |
-
}
|
342 |
-
.mf-exit-up:before {
|
343 |
-
content: "\e868";
|
344 |
-
}
|
345 |
-
.mf-bug:before {
|
346 |
-
content: "\e869";
|
347 |
-
}
|
348 |
-
.mf-code:before {
|
349 |
-
content: "\e86a";
|
350 |
-
}
|
351 |
-
.mf-link:before {
|
352 |
-
content: "\e86b";
|
353 |
-
}
|
354 |
-
.mf-unlink:before {
|
355 |
-
content: "\e86c";
|
356 |
-
}
|
357 |
-
.mf-thumbs-up:before {
|
358 |
-
content: "\e86d";
|
359 |
-
}
|
360 |
-
.mf-thumbs-down:before {
|
361 |
-
content: "\e86e";
|
362 |
-
}
|
363 |
-
.mf-magnifier:before {
|
364 |
-
content: "\e86f";
|
365 |
-
}
|
366 |
-
.mf-cross:before {
|
367 |
-
content: "\e870";
|
368 |
-
}
|
369 |
-
.mf-chevron-up:before {
|
370 |
-
content: "\e873";
|
371 |
-
}
|
372 |
-
.mf-chevron-down:before {
|
373 |
-
content: "\e874";
|
374 |
-
}
|
375 |
-
.mf-chevron-left:before {
|
376 |
-
content: "\e875";
|
377 |
-
}
|
378 |
-
.mf-chevron-right:before {
|
379 |
-
content: "\e876";
|
380 |
-
}
|
381 |
-
.mf-arrow-up:before {
|
382 |
-
content: "\e877";
|
383 |
-
}
|
384 |
-
.mf-arrow-down:before {
|
385 |
-
content: "\e878";
|
386 |
-
}
|
387 |
-
.mf-arrow-left:before {
|
388 |
-
content: "\e879";
|
389 |
-
}
|
390 |
-
.mf-arrow-right:before {
|
391 |
-
content: "\e87a";
|
392 |
-
}
|
393 |
-
.mf-right-arrow:before {
|
394 |
-
content: "\e9c5";
|
395 |
-
}
|
396 |
-
.mf-left-arrow:before {
|
397 |
-
content: "\e94a";
|
398 |
-
}
|
399 |
-
.mf-download-arrow:before {
|
400 |
-
content: "\e94b";
|
401 |
-
}
|
402 |
-
.mf-up-arrow:before {
|
403 |
-
content: "\e9c3";
|
404 |
-
}
|
405 |
-
.mf-arrows:before {
|
406 |
-
content: "\e9c4";
|
407 |
-
}
|
408 |
-
.mf-double-angle-pointing-to-right:before {
|
409 |
-
content: "\e949";
|
410 |
-
}
|
411 |
-
.mf-double-left-chevron:before {
|
412 |
-
content: "\e948";
|
413 |
-
}
|
414 |
-
.mf-left-arrow2:before {
|
415 |
-
content: "\e94c";
|
416 |
-
}
|
417 |
-
.mf-right-arrow2:before {
|
418 |
-
content: "\e94d";
|
419 |
-
}
|
420 |
-
.mf-warning:before {
|
421 |
-
content: "\e87c";
|
422 |
-
}
|
423 |
-
.mf-down-arrow1:before {
|
424 |
-
content: "\e994";
|
425 |
-
}
|
426 |
-
.mf-up-arrow1:before {
|
427 |
-
content: "\e995";
|
428 |
-
}
|
429 |
-
.mf-right-arrow1:before {
|
430 |
-
content: "\e996";
|
431 |
-
}
|
432 |
-
.mf-left-arrows:before {
|
433 |
-
content: "\e997";
|
434 |
-
}
|
435 |
-
.mf-question-circle:before {
|
436 |
-
content: "\e87d";
|
437 |
-
}
|
438 |
-
.mf-menu-circle:before {
|
439 |
-
content: "\e87e";
|
440 |
-
}
|
441 |
-
.mf-checkmark-circle:before {
|
442 |
-
content: "\e87f";
|
443 |
-
}
|
444 |
-
.mf-cross-circle:before {
|
445 |
-
content: "\e880";
|
446 |
-
}
|
447 |
-
.mf-plus-circle:before {
|
448 |
-
content: "\e881";
|
449 |
-
}
|
450 |
-
.mf-move:before {
|
451 |
-
content: "\e87b";
|
452 |
-
}
|
453 |
-
.mf-circle-minus:before {
|
454 |
-
content: "\e882";
|
455 |
-
}
|
456 |
-
.mf-arrow-up-circle:before {
|
457 |
-
content: "\e883";
|
458 |
-
}
|
459 |
-
.mf-arrow-down-circle:before {
|
460 |
-
content: "\e884";
|
461 |
-
}
|
462 |
-
.mf-arrow-left-circle:before {
|
463 |
-
content: "\e885";
|
464 |
-
}
|
465 |
-
.mf-arrow-right-circle:before {
|
466 |
-
content: "\e886";
|
467 |
-
}
|
468 |
-
.mf-chevron-up-circle:before {
|
469 |
-
content: "\e887";
|
470 |
-
}
|
471 |
-
.mf-chevron-down-circle:before {
|
472 |
-
content: "\e888";
|
473 |
-
}
|
474 |
-
.mf-chevron-left-circle:before {
|
475 |
-
content: "\e889";
|
476 |
-
}
|
477 |
-
.mf-chevron-right-circle:before {
|
478 |
-
content: "\e88a";
|
479 |
-
}
|
480 |
-
.mf-crop:before {
|
481 |
-
content: "\e88b";
|
482 |
-
}
|
483 |
-
.mf-frame-expand:before {
|
484 |
-
content: "\e88c";
|
485 |
-
}
|
486 |
-
.mf-frame-contract:before {
|
487 |
-
content: "\e88d";
|
488 |
-
}
|
489 |
-
.mf-layers:before {
|
490 |
-
content: "\e88e";
|
491 |
-
}
|
492 |
-
.mf-funnel:before {
|
493 |
-
content: "\e88f";
|
494 |
-
}
|
495 |
-
.mf-text-format:before {
|
496 |
-
content: "\e890";
|
497 |
-
}
|
498 |
-
.mf-text-size:before {
|
499 |
-
content: "\e892";
|
500 |
-
}
|
501 |
-
.mf-bold:before {
|
502 |
-
content: "\e893";
|
503 |
-
}
|
504 |
-
.mf-italic:before {
|
505 |
-
content: "\e894";
|
506 |
-
}
|
507 |
-
.mf-underline:before {
|
508 |
-
content: "\e895";
|
509 |
-
}
|
510 |
-
.mf-strikethrough:before {
|
511 |
-
content: "\e896";
|
512 |
-
}
|
513 |
-
.mf-highlight:before {
|
514 |
-
content: "\e897";
|
515 |
-
}
|
516 |
-
.mf-text-align-left:before {
|
517 |
-
content: "\e898";
|
518 |
-
}
|
519 |
-
.mf-text-align-center:before {
|
520 |
-
content: "\e899";
|
521 |
-
}
|
522 |
-
.mf-text-align-right:before {
|
523 |
-
content: "\e89a";
|
524 |
-
}
|
525 |
-
.mf-text-align-justify:before {
|
526 |
-
content: "\e89b";
|
527 |
-
}
|
528 |
-
.mf-line-spacing:before {
|
529 |
-
content: "\e89c";
|
530 |
-
}
|
531 |
-
.mf-indent-increase:before {
|
532 |
-
content: "\e89d";
|
533 |
-
}
|
534 |
-
.mf-indent-decrease:before {
|
535 |
-
content: "\e89e";
|
536 |
-
}
|
537 |
-
.mf-page-break:before {
|
538 |
-
content: "\e8a2";
|
539 |
-
}
|
540 |
-
.mf-hand:before {
|
541 |
-
content: "\e8a5";
|
542 |
-
}
|
543 |
-
.mf-pointer-up:before {
|
544 |
-
content: "\e8a6";
|
545 |
-
}
|
546 |
-
.mf-pointer-right:before {
|
547 |
-
content: "\e8a7";
|
548 |
-
}
|
549 |
-
.mf-pointer-down:before {
|
550 |
-
content: "\e8a8";
|
551 |
-
}
|
552 |
-
.mf-pointer-left:before {
|
553 |
-
content: "\e8a9";
|
554 |
-
}
|
555 |
-
.mf-burger:before {
|
556 |
-
content: "\e94e";
|
557 |
-
}
|
558 |
-
.mf-cakes:before {
|
559 |
-
content: "\e94f";
|
560 |
-
}
|
561 |
-
.mf-cheese:before {
|
562 |
-
content: "\e950";
|
563 |
-
}
|
564 |
-
.mf-drink-glass:before {
|
565 |
-
content: "\e951";
|
566 |
-
}
|
567 |
-
.mf-pizza:before {
|
568 |
-
content: "\e952";
|
569 |
-
}
|
570 |
-
.mf-vplay:before {
|
571 |
-
content: "\e953";
|
572 |
-
}
|
573 |
-
.mf-newsletter:before {
|
574 |
-
content: "\e954";
|
575 |
-
}
|
576 |
-
.mf-coins-2:before {
|
577 |
-
content: "\e955";
|
578 |
-
}
|
579 |
-
.mf-commerce-2:before {
|
580 |
-
content: "\e956";
|
581 |
-
}
|
582 |
-
.mf-monitor:before {
|
583 |
-
content: "\e957";
|
584 |
-
}
|
585 |
-
.mf-business:before {
|
586 |
-
content: "\e958";
|
587 |
-
}
|
588 |
-
.mf-graphic-2:before {
|
589 |
-
content: "\e959";
|
590 |
-
}
|
591 |
-
.mf-commerce-1:before {
|
592 |
-
content: "\e95a";
|
593 |
-
}
|
594 |
-
.mf-hammer:before {
|
595 |
-
content: "\e95b";
|
596 |
-
}
|
597 |
-
.mf-justice-1:before {
|
598 |
-
content: "\e95c";
|
599 |
-
}
|
600 |
-
.mf-line:before {
|
601 |
-
content: "\e95d";
|
602 |
-
}
|
603 |
-
.mf-money-3:before {
|
604 |
-
content: "\e95e";
|
605 |
-
}
|
606 |
-
.mf-commerce:before {
|
607 |
-
content: "\e95f";
|
608 |
-
}
|
609 |
-
.mf-agenda:before {
|
610 |
-
content: "\e960";
|
611 |
-
}
|
612 |
-
.mf-justice:before {
|
613 |
-
content: "\e961";
|
614 |
-
}
|
615 |
-
.mf-technology:before {
|
616 |
-
content: "\e962";
|
617 |
-
}
|
618 |
-
.mf-coins-1:before {
|
619 |
-
content: "\e963";
|
620 |
-
}
|
621 |
-
.mf-bank:before {
|
622 |
-
content: "\e964";
|
623 |
-
}
|
624 |
-
.mf-calculator:before {
|
625 |
-
content: "\e965";
|
626 |
-
}
|
627 |
-
.mf-soundcloud:before {
|
628 |
-
content: "\e966";
|
629 |
-
}
|
630 |
-
.mf-chart2:before {
|
631 |
-
content: "\e967";
|
632 |
-
}
|
633 |
-
.mf-checked:before {
|
634 |
-
content: "\e968";
|
635 |
-
}
|
636 |
-
.mf-clock11:before {
|
637 |
-
content: "\e969";
|
638 |
-
}
|
639 |
-
.mf-comment2:before {
|
640 |
-
content: "\e96a";
|
641 |
-
}
|
642 |
-
.mf-comments:before {
|
643 |
-
content: "\e96b";
|
644 |
-
}
|
645 |
-
.mf-consult:before {
|
646 |
-
content: "\e96c";
|
647 |
-
}
|
648 |
-
.mf-consut2:before {
|
649 |
-
content: "\e96d";
|
650 |
-
}
|
651 |
-
.mf-deal:before {
|
652 |
-
content: "\e96e";
|
653 |
-
}
|
654 |
-
.mf-envelope11:before {
|
655 |
-
content: "\e96f";
|
656 |
-
}
|
657 |
-
.mf-folder:before {
|
658 |
-
content: "\e970";
|
659 |
-
}
|
660 |
-
.mf-folder2:before {
|
661 |
-
content: "\ea6a";
|
662 |
-
}
|
663 |
-
.mf-invest:before {
|
664 |
-
content: "\e971";
|
665 |
-
}
|
666 |
-
.mf-loan:before {
|
667 |
-
content: "\e972";
|
668 |
-
}
|
669 |
-
.mf-menu1:before {
|
670 |
-
content: "\e871";
|
671 |
-
}
|
672 |
-
.mf-list1:before {
|
673 |
-
content: "\e872";
|
674 |
-
}
|
675 |
-
.mf-map-marker1:before {
|
676 |
-
content: "\e973";
|
677 |
-
}
|
678 |
-
.mf-mutual-fund:before {
|
679 |
-
content: "\e974";
|
680 |
-
}
|
681 |
-
.mf-google-plus:before {
|
682 |
-
content: "\e975";
|
683 |
-
}
|
684 |
-
.mf-phone1:before {
|
685 |
-
content: "\e976";
|
686 |
-
}
|
687 |
-
.mf-pie-chart1:before {
|
688 |
-
content: "\e977";
|
689 |
-
}
|
690 |
-
.mf-play:before {
|
691 |
-
content: "\e978";
|
692 |
-
}
|
693 |
-
.mf-savings:before {
|
694 |
-
content: "\e979";
|
695 |
-
}
|
696 |
-
.mf-search2:before {
|
697 |
-
content: "\e97a";
|
698 |
-
}
|
699 |
-
.mf-tag1:before {
|
700 |
-
content: "\e97b";
|
701 |
-
}
|
702 |
-
.mf-tags:before {
|
703 |
-
content: "\e97c";
|
704 |
-
}
|
705 |
-
.mf-instagram1:before {
|
706 |
-
content: "\e97d";
|
707 |
-
}
|
708 |
-
.mf-quote:before {
|
709 |
-
content: "\e97e";
|
710 |
-
}
|
711 |
-
.mf-arrow-point-to-down:before {
|
712 |
-
content: "\e97f";
|
713 |
-
}
|
714 |
-
.mf-play-button:before {
|
715 |
-
content: "\e980";
|
716 |
-
}
|
717 |
-
.mf-minus:before {
|
718 |
-
content: "\e981";
|
719 |
-
}
|
720 |
-
.mf-plus:before {
|
721 |
-
content: "\e982";
|
722 |
-
}
|
723 |
-
.mf-tick:before {
|
724 |
-
content: "\e983";
|
725 |
-
}
|
726 |
-
.mf-check:before {
|
727 |
-
content: "\eaaf";
|
728 |
-
}
|
729 |
-
.mf-edit:before {
|
730 |
-
content: "\e984";
|
731 |
-
}
|
732 |
-
.mf-reply:before {
|
733 |
-
content: "\e985";
|
734 |
-
}
|
735 |
-
.mf-cogwheel-outline:before {
|
736 |
-
content: "\e986";
|
737 |
-
}
|
738 |
-
.mf-abacus:before {
|
739 |
-
content: "\e987";
|
740 |
-
}
|
741 |
-
.mf-abacus1:before {
|
742 |
-
content: "\e988";
|
743 |
-
}
|
744 |
-
.mf-agenda1:before {
|
745 |
-
content: "\e989";
|
746 |
-
}
|
747 |
-
.mf-shopping-basket:before {
|
748 |
-
content: "\e98a";
|
749 |
-
}
|
750 |
-
.mf-users1:before {
|
751 |
-
content: "\e98b";
|
752 |
-
}
|
753 |
-
.mf-man:before {
|
754 |
-
content: "\e98c";
|
755 |
-
}
|
756 |
-
.mf-support1:before {
|
757 |
-
content: "\e98d";
|
758 |
-
}
|
759 |
-
.mf-favorites:before {
|
760 |
-
content: "\e98e";
|
761 |
-
}
|
762 |
-
.mf-calendar:before {
|
763 |
-
content: "\e98f";
|
764 |
-
}
|
765 |
-
.mf-paper-plane:before {
|
766 |
-
content: "\e990";
|
767 |
-
}
|
768 |
-
.mf-placeholder:before {
|
769 |
-
content: "\e991";
|
770 |
-
}
|
771 |
-
.mf-phone-call:before {
|
772 |
-
content: "\e992";
|
773 |
-
}
|
774 |
-
.mf-contact:before {
|
775 |
-
content: "\e993";
|
776 |
-
}
|
777 |
-
.mf-email:before {
|
778 |
-
content: "\e998";
|
779 |
-
}
|
780 |
-
.mf-internet:before {
|
781 |
-
content: "\e999";
|
782 |
-
}
|
783 |
-
.mf-quote1:before {
|
784 |
-
content: "\e99a";
|
785 |
-
}
|
786 |
-
.mf-medical:before {
|
787 |
-
content: "\e99b";
|
788 |
-
}
|
789 |
-
.mf-eye1:before {
|
790 |
-
content: "\e99c";
|
791 |
-
}
|
792 |
-
.mf-full-screen:before {
|
793 |
-
content: "\e99d";
|
794 |
-
}
|
795 |
-
.mf-tools:before {
|
796 |
-
content: "\e99e";
|
797 |
-
}
|
798 |
-
.mf-pie-chart2:before {
|
799 |
-
content: "\e99f";
|
800 |
-
}
|
801 |
-
.mf-diamond11:before {
|
802 |
-
content: "\e9a0";
|
803 |
-
}
|
804 |
-
.mf-valentines-heart:before {
|
805 |
-
content: "\e9a1";
|
806 |
-
}
|
807 |
-
.mf-like:before {
|
808 |
-
content: "\e9a2";
|
809 |
-
}
|
810 |
-
.mf-team:before {
|
811 |
-
content: "\e9a3";
|
812 |
-
}
|
813 |
-
.mf-tshirt:before {
|
814 |
-
content: "\e9a4";
|
815 |
-
}
|
816 |
-
.mf-cancel:before {
|
817 |
-
content: "\e9a5";
|
818 |
-
}
|
819 |
-
.mf-drink:before {
|
820 |
-
content: "\e9a6";
|
821 |
-
}
|
822 |
-
.mf-home1:before {
|
823 |
-
content: "\e9a7";
|
824 |
-
}
|
825 |
-
.mf-music:before {
|
826 |
-
content: "\e9a8";
|
827 |
-
}
|
828 |
-
.mf-rich:before {
|
829 |
-
content: "\e9a9";
|
830 |
-
}
|
831 |
-
.mf-brush:before {
|
832 |
-
content: "\e9aa";
|
833 |
-
}
|
834 |
-
.mf-opposite-way:before {
|
835 |
-
content: "\e9ab";
|
836 |
-
}
|
837 |
-
.mf-cloud-computing1:before {
|
838 |
-
content: "\e9ac";
|
839 |
-
}
|
840 |
-
.mf-technology-1:before {
|
841 |
-
content: "\e9ad";
|
842 |
-
}
|
843 |
-
.mf-rotate:before {
|
844 |
-
content: "\e9ae";
|
845 |
-
}
|
846 |
-
.mf-medical1:before {
|
847 |
-
content: "\e9af";
|
848 |
-
}
|
849 |
-
.mf-flash-1:before {
|
850 |
-
content: "\e9b0";
|
851 |
-
}
|
852 |
-
.mf-flash:before {
|
853 |
-
content: "\e9b1";
|
854 |
-
}
|
855 |
-
.mf-uturn:before {
|
856 |
-
content: "\e9b2";
|
857 |
-
}
|
858 |
-
.mf-down-arrow:before {
|
859 |
-
content: "\e9b3";
|
860 |
-
}
|
861 |
-
.mf-hours-support:before {
|
862 |
-
content: "\e9b4";
|
863 |
-
}
|
864 |
-
.mf-bag:before {
|
865 |
-
content: "\e9b5";
|
866 |
-
}
|
867 |
-
.mf-photo-camera:before {
|
868 |
-
content: "\e9b6";
|
869 |
-
}
|
870 |
-
.mf-school:before {
|
871 |
-
content: "\e9b7";
|
872 |
-
}
|
873 |
-
.mf-settings:before {
|
874 |
-
content: "\e9b8";
|
875 |
-
}
|
876 |
-
.mf-smartphone1:before {
|
877 |
-
content: "\e9b9";
|
878 |
-
}
|
879 |
-
.mf-technology-11:before {
|
880 |
-
content: "\e9ba";
|
881 |
-
}
|
882 |
-
.mf-tool:before {
|
883 |
-
content: "\e9bb";
|
884 |
-
}
|
885 |
-
.mf-business1:before {
|
886 |
-
content: "\e9bc";
|
887 |
-
}
|
888 |
-
.mf-shuffle-arrow:before {
|
889 |
-
content: "\e9bd";
|
890 |
-
}
|
891 |
-
.mf-van-1:before {
|
892 |
-
content: "\e9be";
|
893 |
-
}
|
894 |
-
.mf-van:before {
|
895 |
-
content: "\e9bf";
|
896 |
-
}
|
897 |
-
.mf-vegetables:before {
|
898 |
-
content: "\e9c0";
|
899 |
-
}
|
900 |
-
.mf-women:before {
|
901 |
-
content: "\e9c1";
|
902 |
-
}
|
903 |
-
.mf-vintage:before {
|
904 |
-
content: "\e9c2";
|
905 |
-
}
|
906 |
-
.mf-team-1:before {
|
907 |
-
content: "\e9c6";
|
908 |
-
}
|
909 |
-
.mf-team1:before {
|
910 |
-
content: "\e9c7";
|
911 |
-
}
|
912 |
-
.mf-apple:before {
|
913 |
-
content: "\e9c9";
|
914 |
-
}
|
915 |
-
.mf-watch:before {
|
916 |
-
content: "\e9ca";
|
917 |
-
}
|
918 |
-
.mf-cogwheel:before {
|
919 |
-
content: "\e9cb";
|
920 |
-
}
|
921 |
-
.mf-light-bulb:before {
|
922 |
-
content: "\e9cc";
|
923 |
-
}
|
924 |
-
.mf-light-bulb-1:before {
|
925 |
-
content: "\e9cd";
|
926 |
-
}
|
927 |
-
.mf-heart-shape-outline:before {
|
928 |
-
content: "\e9ce";
|
929 |
-
}
|
930 |
-
.mf-online-shopping-cart:before {
|
931 |
-
content: "\e9cf";
|
932 |
-
}
|
933 |
-
.mf-shopping-cart1:before {
|
934 |
-
content: "\e9d0";
|
935 |
-
}
|
936 |
-
.mf-star2:before {
|
937 |
-
content: "\e9d1";
|
938 |
-
}
|
939 |
-
.mf-star-1:before {
|
940 |
-
content: "\e9d2";
|
941 |
-
}
|
942 |
-
.mf-favorite1:before {
|
943 |
-
content: "\e9d3";
|
944 |
-
}
|
945 |
-
.mf-agenda2:before {
|
946 |
-
content: "\e9d4";
|
947 |
-
}
|
948 |
-
.mf-agenda-1:before {
|
949 |
-
content: "\e9d5";
|
950 |
-
}
|
951 |
-
.mf-alarm-clock:before {
|
952 |
-
content: "\e9d6";
|
953 |
-
}
|
954 |
-
.mf-alarm-clock1:before {
|
955 |
-
content: "\e9d7";
|
956 |
-
}
|
957 |
-
.mf-atomic:before {
|
958 |
-
content: "\e9d8";
|
959 |
-
}
|
960 |
-
.mf-auction:before {
|
961 |
-
content: "\e9d9";
|
962 |
-
}
|
963 |
-
.mf-balance:before {
|
964 |
-
content: "\e9da";
|
965 |
-
}
|
966 |
-
.mf-balance1:before {
|
967 |
-
content: "\e9db";
|
968 |
-
}
|
969 |
-
.mf-bank1:before {
|
970 |
-
content: "\e9dc";
|
971 |
-
}
|
972 |
-
.mf-bar-chart:before {
|
973 |
-
content: "\e9dd";
|
974 |
-
}
|
975 |
-
.mf-barrier:before {
|
976 |
-
content: "\e9de";
|
977 |
-
}
|
978 |
-
.mf-battery:before {
|
979 |
-
content: "\e9df";
|
980 |
-
}
|
981 |
-
.mf-battery-1:before {
|
982 |
-
content: "\e9e0";
|
983 |
-
}
|
984 |
-
.mf-bell:before {
|
985 |
-
content: "\e9e1";
|
986 |
-
}
|
987 |
-
.mf-bluetooth:before {
|
988 |
-
content: "\e9e2";
|
989 |
-
}
|
990 |
-
.mf-book1:before {
|
991 |
-
content: "\e9e3";
|
992 |
-
}
|
993 |
-
.mf-briefcase1:before {
|
994 |
-
content: "\e9e4";
|
995 |
-
}
|
996 |
-
.mf-briefcase-1:before {
|
997 |
-
content: "\e9e5";
|
998 |
-
}
|
999 |
-
.mf-briefcase-2:before {
|
1000 |
-
content: "\e9e6";
|
1001 |
-
}
|
1002 |
-
.mf-calculator1:before {
|
1003 |
-
content: "\e9e7";
|
1004 |
-
}
|
1005 |
-
.mf-calculator2:before {
|
1006 |
-
content: "\e9e8";
|
1007 |
-
}
|
1008 |
-
.mf-calculator-1:before {
|
1009 |
-
content: "\e9e9";
|
1010 |
-
}
|
1011 |
-
.mf-calendar1:before {
|
1012 |
-
content: "\e9ea";
|
1013 |
-
}
|
1014 |
-
.mf-calendar2:before {
|
1015 |
-
content: "\e9eb";
|
1016 |
-
}
|
1017 |
-
.mf-calendar-1:before {
|
1018 |
-
content: "\e9ec";
|
1019 |
-
}
|
1020 |
-
.mf-calendar-page-empty:before {
|
1021 |
-
content: "\eaac";
|
1022 |
-
}
|
1023 |
-
.mf-calendar3:before {
|
1024 |
-
content: "\eb9c";
|
1025 |
-
}
|
1026 |
-
.mf-car11:before {
|
1027 |
-
content: "\e9ed";
|
1028 |
-
}
|
1029 |
-
.mf-carrier:before {
|
1030 |
-
content: "\e9ee";
|
1031 |
-
}
|
1032 |
-
.mf-cash:before {
|
1033 |
-
content: "\e9ef";
|
1034 |
-
}
|
1035 |
-
.mf-chat:before {
|
1036 |
-
content: "\e9f0";
|
1037 |
-
}
|
1038 |
-
.mf-chat-1:before {
|
1039 |
-
content: "\e9f1";
|
1040 |
-
}
|
1041 |
-
.mf-checked1:before {
|
1042 |
-
content: "\e9f2";
|
1043 |
-
}
|
1044 |
-
.mf-clip:before {
|
1045 |
-
content: "\e9f3";
|
1046 |
-
}
|
1047 |
-
.mf-clip1:before {
|
1048 |
-
content: "\e9f4";
|
1049 |
-
}
|
1050 |
-
.mf-clipboard1:before {
|
1051 |
-
content: "\e9f5";
|
1052 |
-
}
|
1053 |
-
.mf-clipboard11:before {
|
1054 |
-
content: "\e9f6";
|
1055 |
-
}
|
1056 |
-
.mf-clock2:before {
|
1057 |
-
content: "\e9f7";
|
1058 |
-
}
|
1059 |
-
.mf-clock-1:before {
|
1060 |
-
content: "\e9f8";
|
1061 |
-
}
|
1062 |
-
.mf-cloud11:before {
|
1063 |
-
content: "\e9f9";
|
1064 |
-
}
|
1065 |
-
.mf-cloud-computing11:before {
|
1066 |
-
content: "\e9fa";
|
1067 |
-
}
|
1068 |
-
.mf-cloud-computing-1:before {
|
1069 |
-
content: "\e9fb";
|
1070 |
-
}
|
1071 |
-
.mf-cogwheel1:before {
|
1072 |
-
content: "\e9fc";
|
1073 |
-
}
|
1074 |
-
.mf-coins1:before {
|
1075 |
-
content: "\e9fd";
|
1076 |
-
}
|
1077 |
-
.mf-compass:before {
|
1078 |
-
content: "\e9fe";
|
1079 |
-
}
|
1080 |
-
.mf-contract:before {
|
1081 |
-
content: "\e9ff";
|
1082 |
-
}
|
1083 |
-
.mf-conversation:before {
|
1084 |
-
content: "\ea00";
|
1085 |
-
}
|
1086 |
-
.mf-crane1:before {
|
1087 |
-
content: "\ea01";
|
1088 |
-
}
|
1089 |
-
.mf-crane-2:before {
|
1090 |
-
content: "\ea02";
|
1091 |
-
}
|
1092 |
-
.mf-credit-card:before {
|
1093 |
-
content: "\ea03";
|
1094 |
-
}
|
1095 |
-
.mf-credit-card1:before {
|
1096 |
-
content: "\ea04";
|
1097 |
-
}
|
1098 |
-
.mf-cursor:before {
|
1099 |
-
content: "\ea05";
|
1100 |
-
}
|
1101 |
-
.mf-customer-service:before {
|
1102 |
-
content: "\ea06";
|
1103 |
-
}
|
1104 |
-
.mf-cutlery:before {
|
1105 |
-
content: "\ea07";
|
1106 |
-
}
|
1107 |
-
.mf-dart-board:before {
|
1108 |
-
content: "\ea08";
|
1109 |
-
}
|
1110 |
-
.mf-decision-making:before {
|
1111 |
-
content: "\ea09";
|
1112 |
-
}
|
1113 |
-
.mf-desk-chair:before {
|
1114 |
-
content: "\ea0a";
|
1115 |
-
}
|
1116 |
-
.mf-desk-lamp:before {
|
1117 |
-
content: "\ea0b";
|
1118 |
-
}
|
1119 |
-
.mf-diamond2:before {
|
1120 |
-
content: "\ea0c";
|
1121 |
-
}
|
1122 |
-
.mf-direction:before {
|
1123 |
-
content: "\ea0d";
|
1124 |
-
}
|
1125 |
-
.mf-document:before {
|
1126 |
-
content: "\ea0e";
|
1127 |
-
}
|
1128 |
-
.mf-dollar-bill:before {
|
1129 |
-
content: "\ea0f";
|
1130 |
-
}
|
1131 |
-
.mf-download1:before {
|
1132 |
-
content: "\ea10";
|
1133 |
-
}
|
1134 |
-
.mf-edit1:before {
|
1135 |
-
content: "\ea11";
|
1136 |
-
}
|
1137 |
-
.mf-email1:before {
|
1138 |
-
content: "\ea12";
|
1139 |
-
}
|
1140 |
-
.mf-envelope2:before {
|
1141 |
-
content: "\ea13";
|
1142 |
-
}
|
1143 |
-
.mf-envelope3:before {
|
1144 |
-
content: "\ea14";
|
1145 |
-
}
|
1146 |
-
.mf-eraser:before {
|
1147 |
-
content: "\ea15";
|
1148 |
-
}
|
1149 |
-
.mf-eye2:before {
|
1150 |
-
content: "\ea16";
|
1151 |
-
}
|
1152 |
-
.mf-factory:before {
|
1153 |
-
content: "\ea17";
|
1154 |
-
}
|
1155 |
-
.mf-fast-forward:before {
|
1156 |
-
content: "\ea18";
|
1157 |
-
}
|
1158 |
-
.mf-favorites1:before {
|
1159 |
-
content: "\ea19";
|
1160 |
-
}
|
1161 |
-
.mf-file:before {
|
1162 |
-
content: "\ea1a";
|
1163 |
-
}
|
1164 |
-
.mf-file-1:before {
|
1165 |
-
content: "\ea1b";
|
1166 |
-
}
|
1167 |
-
.mf-file-2:before {
|
1168 |
-
content: "\ea1c";
|
1169 |
-
}
|
1170 |
-
.mf-file-3:before {
|
1171 |
-
content: "\ea1d";
|
1172 |
-
}
|
1173 |
-
.mf-filter:before {
|
1174 |
-
content: "\ea1e";
|
1175 |
-
}
|
1176 |
-
.mf-finance-book:before {
|
1177 |
-
content: "\ea1f";
|
1178 |
-
}
|
1179 |
-
.mf-flag1:before {
|
1180 |
-
content: "\ea20";
|
1181 |
-
}
|
1182 |
-
.mf-folder1:before {
|
1183 |
-
content: "\ea21";
|
1184 |
-
}
|
1185 |
-
.mf-folder-1:before {
|
1186 |
-
content: "\ea22";
|
1187 |
-
}
|
1188 |
-
.mf-folders:before {
|
1189 |
-
content: "\ea23";
|
1190 |
-
}
|
1191 |
-
.mf-folders1:before {
|
1192 |
-
content: "\ea24";
|
1193 |
-
}
|
1194 |
-
.mf-gamepad:before {
|
1195 |
-
content: "\ea25";
|
1196 |
-
}
|
1197 |
-
.mf-gift11:before {
|
1198 |
-
content: "\ea26";
|
1199 |
-
}
|
1200 |
-
.mf-growth:before {
|
1201 |
-
content: "\ea27";
|
1202 |
-
}
|
1203 |
-
.mf-heart11:before {
|
1204 |
-
content: "\ea28";
|
1205 |
-
}
|
1206 |
-
.mf-home2:before {
|
1207 |
-
content: "\ea29";
|
1208 |
-
}
|
1209 |
-
.mf-house:before {
|
1210 |
-
content: "\ea2a";
|
1211 |
-
}
|
1212 |
-
.mf-house-1:before {
|
1213 |
-
content: "\ea2b";
|
1214 |
-
}
|
1215 |
-
.mf-house-2:before {
|
1216 |
-
content: "\ea2c";
|
1217 |
-
}
|
1218 |
-
.mf-id-card:before {
|
1219 |
-
content: "\ea2d";
|
1220 |
-
}
|
1221 |
-
.mf-id-card1:before {
|
1222 |
-
content: "\ea2e";
|
1223 |
-
}
|
1224 |
-
.mf-id-card-1:before {
|
1225 |
-
content: "\ea2f";
|
1226 |
-
}
|
1227 |
-
.mf-idea1:before {
|
1228 |
-
content: "\ea30";
|
1229 |
-
}
|
1230 |
-
.mf-image:before {
|
1231 |
-
content: "\ea31";
|
1232 |
-
}
|
1233 |
-
.mf-improvement:before {
|
1234 |
-
content: "\ea32";
|
1235 |
-
}
|
1236 |
-
.mf-inbox1:before {
|
1237 |
-
content: "\ea33";
|
1238 |
-
}
|
1239 |
-
.mf-information:before {
|
1240 |
-
content: "\ea34";
|
1241 |
-
}
|
1242 |
-
.mf-key:before {
|
1243 |
-
content: "\ea35";
|
1244 |
-
}
|
1245 |
-
.mf-key1:before {
|
1246 |
-
content: "\ea36";
|
1247 |
-
}
|
1248 |
-
.mf-laptop1:before {
|
1249 |
-
content: "\ea37";
|
1250 |
-
}
|
1251 |
-
.mf-layers1:before {
|
1252 |
-
content: "\ea38";
|
1253 |
-
}
|
1254 |
-
.mf-light-bulb1:before {
|
1255 |
-
content: "\ea39";
|
1256 |
-
}
|
1257 |
-
.mf-like1:before {
|
1258 |
-
content: "\ea3a";
|
1259 |
-
}
|
1260 |
-
.mf-line-chart1:before {
|
1261 |
-
content: "\ea3b";
|
1262 |
-
}
|
1263 |
-
.mf-mail:before {
|
1264 |
-
content: "\ea3c";
|
1265 |
-
}
|
1266 |
-
.mf-manager:before {
|
1267 |
-
content: "\ea3d";
|
1268 |
-
}
|
1269 |
-
.mf-map1:before {
|
1270 |
-
content: "\ea3e";
|
1271 |
-
}
|
1272 |
-
.mf-medal1:before {
|
1273 |
-
content: "\ea3f";
|
1274 |
-
}
|
1275 |
-
.mf-megaphone:before {
|
1276 |
-
content: "\ea40";
|
1277 |
-
}
|
1278 |
-
.mf-megaphone1:before {
|
1279 |
-
content: "\ea41";
|
1280 |
-
}
|
1281 |
-
.mf-message:before {
|
1282 |
-
content: "\ea42";
|
1283 |
-
}
|
1284 |
-
.mf-message-1:before {
|
1285 |
-
content: "\ea43";
|
1286 |
-
}
|
1287 |
-
.mf-message-2:before {
|
1288 |
-
content: "\ea44";
|
1289 |
-
}
|
1290 |
-
.mf-microphone:before {
|
1291 |
-
content: "\ea45";
|
1292 |
-
}
|
1293 |
-
.mf-money1:before {
|
1294 |
-
content: "\ea46";
|
1295 |
-
}
|
1296 |
-
.mf-money-bag1:before {
|
1297 |
-
content: "\ea47";
|
1298 |
-
}
|
1299 |
-
.mf-monitor1:before {
|
1300 |
-
content: "\ea48";
|
1301 |
-
}
|
1302 |
-
.mf-music1:before {
|
1303 |
-
content: "\ea49";
|
1304 |
-
}
|
1305 |
-
.mf-next:before {
|
1306 |
-
content: "\ea4a";
|
1307 |
-
}
|
1308 |
-
.mf-open-book1:before {
|
1309 |
-
content: "\ea4b";
|
1310 |
-
}
|
1311 |
-
.mf-padlock:before {
|
1312 |
-
content: "\ea4c";
|
1313 |
-
}
|
1314 |
-
.mf-padlock-1:before {
|
1315 |
-
content: "\ea4d";
|
1316 |
-
}
|
1317 |
-
.mf-paint-brush:before {
|
1318 |
-
content: "\ea4e";
|
1319 |
-
}
|
1320 |
-
.mf-pause:before {
|
1321 |
-
content: "\ea4f";
|
1322 |
-
}
|
1323 |
-
.mf-pen:before {
|
1324 |
-
content: "\ea50";
|
1325 |
-
}
|
1326 |
-
.mf-pencil1:before {
|
1327 |
-
content: "\ea51";
|
1328 |
-
}
|
1329 |
-
.mf-percentage:before {
|
1330 |
-
content: "\ea52";
|
1331 |
-
}
|
1332 |
-
.mf-phone-call1:before {
|
1333 |
-
content: "\ea53";
|
1334 |
-
}
|
1335 |
-
.mf-phone-call2:before {
|
1336 |
-
content: "\ea54";
|
1337 |
-
}
|
1338 |
-
.mf-photo-camera1:before {
|
1339 |
-
content: "\ea55";
|
1340 |
-
}
|
1341 |
-
.mf-pie-chart3:before {
|
1342 |
-
content: "\ea56";
|
1343 |
-
}
|
1344 |
-
.mf-pipe:before {
|
1345 |
-
content: "\ea57";
|
1346 |
-
}
|
1347 |
-
.mf-placeholder1:before {
|
1348 |
-
content: "\ea58";
|
1349 |
-
}
|
1350 |
-
.mf-placeholder2:before {
|
1351 |
-
content: "\ea59";
|
1352 |
-
}
|
1353 |
-
.mf-planet-earth:before {
|
1354 |
-
content: "\ea5a";
|
1355 |
-
}
|
1356 |
-
.mf-play-button1:before {
|
1357 |
-
content: "\ea5b";
|
1358 |
-
}
|
1359 |
-
.mf-power-button:before {
|
1360 |
-
content: "\ea5c";
|
1361 |
-
}
|
1362 |
-
.mf-presentation:before {
|
1363 |
-
content: "\ea5d";
|
1364 |
-
}
|
1365 |
-
.mf-presentation1:before {
|
1366 |
-
content: "\ea5e";
|
1367 |
-
}
|
1368 |
-
.mf-printer1:before {
|
1369 |
-
content: "\ea5f";
|
1370 |
-
}
|
1371 |
-
.mf-push-pin:before {
|
1372 |
-
content: "\ea60";
|
1373 |
-
}
|
1374 |
-
.mf-push-pin1:before {
|
1375 |
-
content: "\ea61";
|
1376 |
-
}
|
1377 |
-
.mf-refresh:before {
|
1378 |
-
content: "\ea62";
|
1379 |
-
}
|
1380 |
-
.mf-reload:before {
|
1381 |
-
content: "\ea63";
|
1382 |
-
}
|
1383 |
-
.mf-return:before {
|
1384 |
-
content: "\ea64";
|
1385 |
-
}
|
1386 |
-
.mf-rocket-ship:before {
|
1387 |
-
content: "\ea65";
|
1388 |
-
}
|
1389 |
-
.mf-rss1:before {
|
1390 |
-
content: "\ea66";
|
1391 |
-
}
|
1392 |
-
.mf-safebox:before {
|
1393 |
-
content: "\ea67";
|
1394 |
-
}
|
1395 |
-
.mf-safebox1:before {
|
1396 |
-
content: "\ea68";
|
1397 |
-
}
|
1398 |
-
.mf-settings1:before {
|
1399 |
-
content: "\ea69";
|
1400 |
-
}
|
1401 |
-
.mf-settings-2:before {
|
1402 |
-
content: "\ea6b";
|
1403 |
-
}
|
1404 |
-
.mf-sewing-machine:before {
|
1405 |
-
content: "\ea6c";
|
1406 |
-
}
|
1407 |
-
.mf-share2:before {
|
1408 |
-
content: "\ea6d";
|
1409 |
-
}
|
1410 |
-
.mf-shield1:before {
|
1411 |
-
content: "\ea6e";
|
1412 |
-
}
|
1413 |
-
.mf-shield11:before {
|
1414 |
-
content: "\ea6f";
|
1415 |
-
}
|
1416 |
-
.mf-shopping:before {
|
1417 |
-
content: "\ea70";
|
1418 |
-
}
|
1419 |
-
.mf-shopping-bag:before {
|
1420 |
-
content: "\ea71";
|
1421 |
-
}
|
1422 |
-
.mf-shopping-bag-1:before {
|
1423 |
-
content: "\ea72";
|
1424 |
-
}
|
1425 |
-
.mf-shopping-bag-2:before {
|
1426 |
-
content: "\ea73";
|
1427 |
-
}
|
1428 |
-
.mf-shopping-cart11:before {
|
1429 |
-
content: "\ea74";
|
1430 |
-
}
|
1431 |
-
.mf-shopping-cart2:before {
|
1432 |
-
content: "\ea75";
|
1433 |
-
}
|
1434 |
-
.mf-shopping-cart-1:before {
|
1435 |
-
content: "\ea76";
|
1436 |
-
}
|
1437 |
-
.mf-shopping-cart-2:before {
|
1438 |
-
content: "\ea77";
|
1439 |
-
}
|
1440 |
-
.mf-shopping-cart-3:before {
|
1441 |
-
content: "\ea78";
|
1442 |
-
}
|
1443 |
-
.mf-smartphone2:before {
|
1444 |
-
content: "\ea79";
|
1445 |
-
}
|
1446 |
-
.mf-speaker:before {
|
1447 |
-
content: "\ea7a";
|
1448 |
-
}
|
1449 |
-
.mf-speakers:before {
|
1450 |
-
content: "\ea7b";
|
1451 |
-
}
|
1452 |
-
.mf-stats:before {
|
1453 |
-
content: "\ea7c";
|
1454 |
-
}
|
1455 |
-
.mf-stats-1:before {
|
1456 |
-
content: "\ea7d";
|
1457 |
-
}
|
1458 |
-
.mf-stats-2:before {
|
1459 |
-
content: "\ea7e";
|
1460 |
-
}
|
1461 |
-
.mf-stats-3:before {
|
1462 |
-
content: "\ea7f";
|
1463 |
-
}
|
1464 |
-
.mf-stats-4:before {
|
1465 |
-
content: "\ea80";
|
1466 |
-
}
|
1467 |
-
.mf-stats-5:before {
|
1468 |
-
content: "\ea81";
|
1469 |
-
}
|
1470 |
-
.mf-stats-6:before {
|
1471 |
-
content: "\ea82";
|
1472 |
-
}
|
1473 |
-
.mf-sticky-note:before {
|
1474 |
-
content: "\ea83";
|
1475 |
-
}
|
1476 |
-
.mf-store1:before {
|
1477 |
-
content: "\ea84";
|
1478 |
-
}
|
1479 |
-
.mf-store-1:before {
|
1480 |
-
content: "\ea85";
|
1481 |
-
}
|
1482 |
-
.mf-suitcase:before {
|
1483 |
-
content: "\ea86";
|
1484 |
-
}
|
1485 |
-
.mf-suitcase-1:before {
|
1486 |
-
content: "\ea87";
|
1487 |
-
}
|
1488 |
-
.mf-tag2:before {
|
1489 |
-
content: "\ea88";
|
1490 |
-
}
|
1491 |
-
.mf-target:before {
|
1492 |
-
content: "\ea89";
|
1493 |
-
}
|
1494 |
-
.mf-team2:before {
|
1495 |
-
content: "\ea8a";
|
1496 |
-
}
|
1497 |
-
.mf-tie:before {
|
1498 |
-
content: "\ea8b";
|
1499 |
-
}
|
1500 |
-
.mf-trash1:before {
|
1501 |
-
content: "\ea8c";
|
1502 |
-
}
|
1503 |
-
.mf-trolley:before {
|
1504 |
-
content: "\ea8d";
|
1505 |
-
}
|
1506 |
-
.mf-trolley-1:before {
|
1507 |
-
content: "\ea8e";
|
1508 |
-
}
|
1509 |
-
.mf-trolley-2:before {
|
1510 |
-
content: "\ea8f";
|
1511 |
-
}
|
1512 |
-
.mf-trophy1:before {
|
1513 |
-
content: "\ea90";
|
1514 |
-
}
|
1515 |
-
.mf-truck1:before {
|
1516 |
-
content: "\ea91";
|
1517 |
-
}
|
1518 |
-
.mf-truck-1:before {
|
1519 |
-
content: "\ea92";
|
1520 |
-
}
|
1521 |
-
.mf-truck-2:before {
|
1522 |
-
content: "\ea93";
|
1523 |
-
}
|
1524 |
-
.mf-umbrella:before {
|
1525 |
-
content: "\ea94";
|
1526 |
-
}
|
1527 |
-
.mf-upload1:before {
|
1528 |
-
content: "\ea95";
|
1529 |
-
}
|
1530 |
-
.mf-user1:before {
|
1531 |
-
content: "\ea96";
|
1532 |
-
}
|
1533 |
-
.mf-user-1:before {
|
1534 |
-
content: "\ea97";
|
1535 |
-
}
|
1536 |
-
.mf-user-2:before {
|
1537 |
-
content: "\ea98";
|
1538 |
-
}
|
1539 |
-
.mf-user-3:before {
|
1540 |
-
content: "\ea99";
|
1541 |
-
}
|
1542 |
-
.mf-users2:before {
|
1543 |
-
content: "\ea9a";
|
1544 |
-
}
|
1545 |
-
.mf-video-camera:before {
|
1546 |
-
content: "\ea9b";
|
1547 |
-
}
|
1548 |
-
.mf-voucher:before {
|
1549 |
-
content: "\ea9c";
|
1550 |
-
}
|
1551 |
-
.mf-voucher-1:before {
|
1552 |
-
content: "\ea9d";
|
1553 |
-
}
|
1554 |
-
.mf-voucher-2:before {
|
1555 |
-
content: "\ea9e";
|
1556 |
-
}
|
1557 |
-
.mf-voucher-3:before {
|
1558 |
-
content: "\ea9f";
|
1559 |
-
}
|
1560 |
-
.mf-voucher-4:before {
|
1561 |
-
content: "\eaa0";
|
1562 |
-
}
|
1563 |
-
.mf-wallet:before {
|
1564 |
-
content: "\eaa1";
|
1565 |
-
}
|
1566 |
-
.mf-wallet1:before {
|
1567 |
-
content: "\eaa2";
|
1568 |
-
}
|
1569 |
-
.mf-wifi:before {
|
1570 |
-
content: "\eaa3";
|
1571 |
-
}
|
1572 |
-
.mf-worker:before {
|
1573 |
-
content: "\eaa4";
|
1574 |
-
}
|
1575 |
-
.mf-zoom-in:before {
|
1576 |
-
content: "\eaa5";
|
1577 |
-
}
|
1578 |
-
.mf-zoom-out:before {
|
1579 |
-
content: "\eaa6";
|
1580 |
-
}
|
1581 |
-
.mf-burger-menu:before {
|
1582 |
-
content: "\eab8";
|
1583 |
-
}
|
1584 |
-
.mf-squares:before {
|
1585 |
-
content: "\eaa7";
|
1586 |
-
}
|
1587 |
-
.mf-options:before {
|
1588 |
-
content: "\eaa8";
|
1589 |
-
}
|
1590 |
-
.mf-apps:before {
|
1591 |
-
content: "\eaa9";
|
1592 |
-
}
|
1593 |
-
.mf-menu-11:before {
|
1594 |
-
content: "\eaaa";
|
1595 |
-
}
|
1596 |
-
.mf-menu11:before {
|
1597 |
-
content: "\eaab";
|
1598 |
-
}
|
1599 |
-
.mf-back_up:before {
|
1600 |
-
content: "\eaad";
|
1601 |
-
}
|
1602 |
-
.mf-cart11:before {
|
1603 |
-
content: "\eaae";
|
1604 |
-
}
|
1605 |
-
.mf-checkmark:before {
|
1606 |
-
content: "\eab0";
|
1607 |
-
}
|
1608 |
-
.mf-dollar:before {
|
1609 |
-
content: "\eab1";
|
1610 |
-
}
|
1611 |
-
.mf-domian:before {
|
1612 |
-
content: "\eab2";
|
1613 |
-
}
|
1614 |
-
.mf-hosting1:before {
|
1615 |
-
content: "\eab3";
|
1616 |
-
}
|
1617 |
-
.mf-key2:before {
|
1618 |
-
content: "\eab4";
|
1619 |
-
}
|
1620 |
-
.mf-migration:before {
|
1621 |
-
content: "\eab5";
|
1622 |
-
}
|
1623 |
-
.mf-play1:before {
|
1624 |
-
content: "\eab6";
|
1625 |
-
}
|
1626 |
-
.mf-quote2:before {
|
1627 |
-
content: "\eab7";
|
1628 |
-
}
|
1629 |
-
.mf-api_setup:before {
|
1630 |
-
content: "\eab9";
|
1631 |
-
}
|
1632 |
-
.mf-coin:before {
|
1633 |
-
content: "\eaba";
|
1634 |
-
}
|
1635 |
-
.mf-hand_shake:before {
|
1636 |
-
content: "\eabb";
|
1637 |
-
}
|
1638 |
-
.mf-idea_generate:before {
|
1639 |
-
content: "\eabc";
|
1640 |
-
}
|
1641 |
-
.mf-page_search:before {
|
1642 |
-
content: "\eabd";
|
1643 |
-
}
|
1644 |
-
.mf-pen_shape:before {
|
1645 |
-
content: "\eabe";
|
1646 |
-
}
|
1647 |
-
.mf-pencil_art:before {
|
1648 |
-
content: "\eabf";
|
1649 |
-
}
|
1650 |
-
.mf-review:before {
|
1651 |
-
content: "\eac0";
|
1652 |
-
}
|
1653 |
-
.mf-star:before {
|
1654 |
-
content: "\eac1";
|
1655 |
-
}
|
1656 |
-
.mf-timing:before {
|
1657 |
-
content: "\eac2";
|
1658 |
-
}
|
1659 |
-
.mf-trophy:before {
|
1660 |
-
content: "\eac3";
|
1661 |
-
}
|
1662 |
-
.mf-communication:before {
|
1663 |
-
content: "\eac4";
|
1664 |
-
}
|
1665 |
-
.mf-money-bag2:before {
|
1666 |
-
content: "\eac5";
|
1667 |
-
}
|
1668 |
-
.mf-dentist:before {
|
1669 |
-
content: "\eac6";
|
1670 |
-
}
|
1671 |
-
.mf-bill:before {
|
1672 |
-
content: "\eac7";
|
1673 |
-
}
|
1674 |
-
.mf-label:before {
|
1675 |
-
content: "\eac8";
|
1676 |
-
}
|
1677 |
-
.mf-money:before {
|
1678 |
-
content: "\eac9";
|
1679 |
-
}
|
1680 |
-
.mf-shield:before {
|
1681 |
-
content: "\eaca";
|
1682 |
-
}
|
1683 |
-
.mf-support:before {
|
1684 |
-
content: "\eacb";
|
1685 |
-
}
|
1686 |
-
.mf-one:before {
|
1687 |
-
content: "\eacc";
|
1688 |
-
}
|
1689 |
-
.mf-clock:before {
|
1690 |
-
content: "\eacd";
|
1691 |
-
}
|
1692 |
-
.mf-cart:before {
|
1693 |
-
content: "\eace";
|
1694 |
-
}
|
1695 |
-
.mf-globe:before {
|
1696 |
-
content: "\eacf";
|
1697 |
-
}
|
1698 |
-
.mf-tooth:before {
|
1699 |
-
content: "\ead0";
|
1700 |
-
}
|
1701 |
-
.mf-tooth-1:before {
|
1702 |
-
content: "\ead1";
|
1703 |
-
}
|
1704 |
-
.mf-tooth-2:before {
|
1705 |
-
content: "\ead2";
|
1706 |
-
}
|
1707 |
-
.mf-brain:before {
|
1708 |
-
content: "\ead3";
|
1709 |
-
}
|
1710 |
-
.mf-view:before {
|
1711 |
-
content: "\ead4";
|
1712 |
-
}
|
1713 |
-
.mf-doctor:before {
|
1714 |
-
content: "\ead5";
|
1715 |
-
}
|
1716 |
-
.mf-heart:before {
|
1717 |
-
content: "\ead6";
|
1718 |
-
}
|
1719 |
-
.mf-medicine:before {
|
1720 |
-
content: "\ead7";
|
1721 |
-
}
|
1722 |
-
.mf-stethoscope:before {
|
1723 |
-
content: "\ead8";
|
1724 |
-
}
|
1725 |
-
.mf-hospital:before {
|
1726 |
-
content: "\ead9";
|
1727 |
-
}
|
1728 |
-
.mf-clipboard:before {
|
1729 |
-
content: "\eada";
|
1730 |
-
}
|
1731 |
-
.mf-medicine-1:before {
|
1732 |
-
content: "\eadb";
|
1733 |
-
}
|
1734 |
-
.mf-hospital-1:before {
|
1735 |
-
content: "\eadc";
|
1736 |
-
}
|
1737 |
-
.mf-customer-support:before {
|
1738 |
-
content: "\eadd";
|
1739 |
-
}
|
1740 |
-
.mf-brickwall:before {
|
1741 |
-
content: "\eade";
|
1742 |
-
}
|
1743 |
-
.mf-crane2:before {
|
1744 |
-
content: "\eadf";
|
1745 |
-
}
|
1746 |
-
.mf-valve:before {
|
1747 |
-
content: "\eae1";
|
1748 |
-
}
|
1749 |
-
.mf-safety:before {
|
1750 |
-
content: "\eae2";
|
1751 |
-
}
|
1752 |
-
.mf-energy-saving:before {
|
1753 |
-
content: "\eae3";
|
1754 |
-
}
|
1755 |
-
.mf-paint-roller:before {
|
1756 |
-
content: "\eae4";
|
1757 |
-
}
|
1758 |
-
.mf-paint-brushes:before {
|
1759 |
-
content: "\eae5";
|
1760 |
-
}
|
1761 |
-
.mf-construction-tool-vehicle-with-crane-lifting-materials:before {
|
1762 |
-
content: "\eae6";
|
1763 |
-
}
|
1764 |
-
.mf-trowel:before {
|
1765 |
-
content: "\eae7";
|
1766 |
-
}
|
1767 |
-
.mf-bucket:before {
|
1768 |
-
content: "\eae8";
|
1769 |
-
}
|
1770 |
-
.mf-smart:before {
|
1771 |
-
content: "\eae9";
|
1772 |
-
}
|
1773 |
-
.mf-repair:before {
|
1774 |
-
content: "\eaea";
|
1775 |
-
}
|
1776 |
-
.mf-saw:before {
|
1777 |
-
content: "\eaeb";
|
1778 |
-
}
|
1779 |
-
.mf-cutter:before {
|
1780 |
-
content: "\eaec";
|
1781 |
-
}
|
1782 |
-
.mf-plier:before {
|
1783 |
-
content: "\eaed";
|
1784 |
-
}
|
1785 |
-
.mf-drill:before {
|
1786 |
-
content: "\eaee";
|
1787 |
-
}
|
1788 |
-
.mf-save-money:before {
|
1789 |
-
content: "\eaef";
|
1790 |
-
}
|
1791 |
-
.mf-planting:before {
|
1792 |
-
content: "\eaf0";
|
1793 |
-
}
|
1794 |
-
.mf-line-chart:before {
|
1795 |
-
content: "\eaf1";
|
1796 |
-
}
|
1797 |
-
.mf-open-book:before {
|
1798 |
-
content: "\eaf2";
|
1799 |
-
}
|
1800 |
-
.mf-money-bag3:before {
|
1801 |
-
content: "\eaf3";
|
1802 |
-
}
|
1803 |
-
.mf-server:before {
|
1804 |
-
content: "\eaf4";
|
1805 |
-
}
|
1806 |
-
.mf-server-1:before {
|
1807 |
-
content: "\eaf5";
|
1808 |
-
}
|
1809 |
-
.mf-server-2:before {
|
1810 |
-
content: "\eaf6";
|
1811 |
-
}
|
1812 |
-
.mf-cloud-computing:before {
|
1813 |
-
content: "\eaf7";
|
1814 |
-
}
|
1815 |
-
.mf-cloud:before {
|
1816 |
-
content: "\eaf8";
|
1817 |
-
}
|
1818 |
-
.mf-database:before {
|
1819 |
-
content: "\eaf9";
|
1820 |
-
}
|
1821 |
-
.mf-computer:before {
|
1822 |
-
content: "\eafa";
|
1823 |
-
}
|
1824 |
-
.mf-server-3:before {
|
1825 |
-
content: "\eafb";
|
1826 |
-
}
|
1827 |
-
.mf-server-4:before {
|
1828 |
-
content: "\eafc";
|
1829 |
-
}
|
1830 |
-
.mf-server-5:before {
|
1831 |
-
content: "\eafd";
|
1832 |
-
}
|
1833 |
-
.mf-server-6:before {
|
1834 |
-
content: "\eafe";
|
1835 |
-
}
|
1836 |
-
.mf-server-7:before {
|
1837 |
-
content: "\eaff";
|
1838 |
-
}
|
1839 |
-
.mf-cloud-1:before {
|
1840 |
-
content: "\eb00";
|
1841 |
-
}
|
1842 |
-
.mf-server-8:before {
|
1843 |
-
content: "\eb01";
|
1844 |
-
}
|
1845 |
-
.mf-business-and-finance:before {
|
1846 |
-
content: "\eb02";
|
1847 |
-
}
|
1848 |
-
.mf-cloud-2:before {
|
1849 |
-
content: "\eb03";
|
1850 |
-
}
|
1851 |
-
.mf-server-9:before {
|
1852 |
-
content: "\eb04";
|
1853 |
-
}
|
1854 |
-
.mf-hosting:before {
|
1855 |
-
content: "\eb05";
|
1856 |
-
}
|
1857 |
-
.mf-car:before {
|
1858 |
-
content: "\eb06";
|
1859 |
-
}
|
1860 |
-
.mf-car-frontal-view:before {
|
1861 |
-
content: "\eb07";
|
1862 |
-
}
|
1863 |
-
.mf-car-1:before {
|
1864 |
-
content: "\eb08";
|
1865 |
-
}
|
1866 |
-
.mf-racing:before {
|
1867 |
-
content: "\eb09";
|
1868 |
-
}
|
1869 |
-
.mf-car-wheel:before {
|
1870 |
-
content: "\eb0a";
|
1871 |
-
}
|
1872 |
-
.mf-steering-wheel:before {
|
1873 |
-
content: "\eb0b";
|
1874 |
-
}
|
1875 |
-
.mf-frontal-taxi-cab:before {
|
1876 |
-
content: "\eb0c";
|
1877 |
-
}
|
1878 |
-
.mf-taxi:before {
|
1879 |
-
content: "\eb0d";
|
1880 |
-
}
|
1881 |
-
.mf-cosmetics:before {
|
1882 |
-
content: "\eb0e";
|
1883 |
-
}
|
1884 |
-
.mf-flower:before {
|
1885 |
-
content: "\eb0f";
|
1886 |
-
}
|
1887 |
-
.mf-mirror:before {
|
1888 |
-
content: "\eb10";
|
1889 |
-
}
|
1890 |
-
.mf-itunes:before {
|
1891 |
-
content: "\eb6b";
|
1892 |
-
}
|
1893 |
-
.mf-salon:before {
|
1894 |
-
content: "\eb11";
|
1895 |
-
}
|
1896 |
-
.mf-hair-dryer:before {
|
1897 |
-
content: "\eb12";
|
1898 |
-
}
|
1899 |
-
.mf-shampoo:before {
|
1900 |
-
content: "\eb13";
|
1901 |
-
}
|
1902 |
-
.mf-download-button:before {
|
1903 |
-
content: "\e90b";
|
1904 |
-
}
|
1905 |
-
.mf-list:before {
|
1906 |
-
content: "\eb14";
|
1907 |
-
}
|
1908 |
-
.mf-loupe:before {
|
1909 |
-
content: "\eb15";
|
1910 |
-
}
|
1911 |
-
.mf-search:before {
|
1912 |
-
content: "\eb16";
|
1913 |
-
}
|
1914 |
-
.mf-search-1:before {
|
1915 |
-
content: "\eb17";
|
1916 |
-
}
|
1917 |
-
.mf-shopping-cart:before {
|
1918 |
-
content: "\eb18";
|
1919 |
-
}
|
1920 |
-
.mf-menu:before {
|
1921 |
-
content: "\eb19";
|
1922 |
-
}
|
1923 |
-
.mf-menu-1:before {
|
1924 |
-
content: "\eb1a";
|
1925 |
-
}
|
1926 |
-
.mf-menu-button-of-three-horizontal-lines:before {
|
1927 |
-
content: "\eb1b";
|
1928 |
-
}
|
1929 |
-
.mf-menu-2:before {
|
1930 |
-
content: "\eb1c";
|
1931 |
-
}
|
1932 |
-
.mf-menu-3:before {
|
1933 |
-
content: "\eb1d";
|
1934 |
-
}
|
1935 |
-
.mf-menu-5:before {
|
1936 |
-
content: "\eb1f";
|
1937 |
-
}
|
1938 |
-
.mf-menu-button:before {
|
1939 |
-
content: "\eb20";
|
1940 |
-
}
|
1941 |
-
.mf-list-1:before {
|
1942 |
-
content: "\eb21";
|
1943 |
-
}
|
1944 |
-
.mf-menu-6:before {
|
1945 |
-
content: "\eb22";
|
1946 |
-
}
|
1947 |
-
.mf-menu-7:before {
|
1948 |
-
content: "\eb23";
|
1949 |
-
}
|
1950 |
-
.mf-menu-8:before {
|
1951 |
-
content: "\eb24";
|
1952 |
-
}
|
1953 |
-
.mf-list-2:before {
|
1954 |
-
content: "\eb25";
|
1955 |
-
}
|
1956 |
-
.mf-dot:before {
|
1957 |
-
content: "\eb26";
|
1958 |
-
}
|
1959 |
-
.mf-menu-9:before {
|
1960 |
-
content: "\eb27";
|
1961 |
-
}
|
1962 |
-
.mf-search11:before {
|
1963 |
-
content: "\eb28";
|
1964 |
-
}
|
1965 |
-
.mf-search-minus:before {
|
1966 |
-
content: "\eb29";
|
1967 |
-
}
|
1968 |
-
.mf-search-11:before {
|
1969 |
-
content: "\eb2a";
|
1970 |
-
}
|
1971 |
-
.mf-search-2:before {
|
1972 |
-
content: "\eb2b";
|
1973 |
-
}
|
1974 |
-
.mf-search-3:before {
|
1975 |
-
content: "\eb2c";
|
1976 |
-
}
|
1977 |
-
.mf-magnifying-glass-search:before {
|
1978 |
-
content: "\eb2d";
|
1979 |
-
}
|
1980 |
-
.mf-loupe1:before {
|
1981 |
-
content: "\eb2e";
|
1982 |
-
}
|
1983 |
-
.mf-speed:before {
|
1984 |
-
content: "\eb2f";
|
1985 |
-
}
|
1986 |
-
.mf-search21:before {
|
1987 |
-
content: "\eb30";
|
1988 |
-
}
|
1989 |
-
.mf-search-4:before {
|
1990 |
-
content: "\eb31";
|
1991 |
-
}
|
1992 |
-
.mf-search-5:before {
|
1993 |
-
content: "\eb32";
|
1994 |
-
}
|
1995 |
-
.mf-detective:before {
|
1996 |
-
content: "\eb33";
|
1997 |
-
}
|
1998 |
-
.mf-cart1:before {
|
1999 |
-
content: "\eb34";
|
2000 |
-
}
|
2001 |
-
.mf-buying-on-smartphone:before {
|
2002 |
-
content: "\eb35";
|
2003 |
-
}
|
2004 |
-
.mf-badge:before {
|
2005 |
-
content: "\eb36";
|
2006 |
-
}
|
2007 |
-
.mf-basket1:before {
|
2008 |
-
content: "\eb37";
|
2009 |
-
}
|
2010 |
-
.mf-commerce-and-shopping:before {
|
2011 |
-
content: "\eb38";
|
2012 |
-
}
|
2013 |
-
.mf-comment:before {
|
2014 |
-
content: "\eb39";
|
2015 |
-
}
|
2016 |
-
.mf-comment-1:before {
|
2017 |
-
content: "\eb3a";
|
2018 |
-
}
|
2019 |
-
.mf-share:before {
|
2020 |
-
content: "\eb3b";
|
2021 |
-
}
|
2022 |
-
.mf-share-1:before {
|
2023 |
-
content: "\eb3c";
|
2024 |
-
}
|
2025 |
-
.mf-share-2:before {
|
2026 |
-
content: "\eb3d";
|
2027 |
-
}
|
2028 |
-
.mf-share-3:before {
|
2029 |
-
content: "\eb3e";
|
2030 |
-
}
|
2031 |
-
.mf-comment1:before {
|
2032 |
-
content: "\eb3f";
|
2033 |
-
}
|
2034 |
-
.mf-favorite:before {
|
2035 |
-
content: "\eb40";
|
2036 |
-
}
|
2037 |
-
.mf-retweet:before {
|
2038 |
-
content: "\eb41";
|
2039 |
-
}
|
2040 |
-
.mf-share1:before {
|
2041 |
-
content: "\eb42";
|
2042 |
-
}
|
2043 |
-
.mf-facebook:before {
|
2044 |
-
content: "\eb43";
|
2045 |
-
}
|
2046 |
-
.mf-twitter:before {
|
2047 |
-
content: "\eb44";
|
2048 |
-
}
|
2049 |
-
.mf-linkedin:before {
|
2050 |
-
content: "\eb45";
|
2051 |
-
}
|
2052 |
-
.mf-whatsapp-1:before {
|
2053 |
-
content: "\eb46";
|
2054 |
-
}
|
2055 |
-
.mf-dribbble:before {
|
2056 |
-
content: "\eb47";
|
2057 |
-
}
|
2058 |
-
.mf-facebook-2:before {
|
2059 |
-
content: "\eb48";
|
2060 |
-
}
|
2061 |
-
.mf-twitter1:before {
|
2062 |
-
content: "\eb49";
|
2063 |
-
}
|
2064 |
-
.mf-vk:before {
|
2065 |
-
content: "\eb4a";
|
2066 |
-
}
|
2067 |
-
.mf-youtube-v:before {
|
2068 |
-
content: "\eb4b";
|
2069 |
-
}
|
2070 |
-
.mf-vimeo:before {
|
2071 |
-
content: "\eae0";
|
2072 |
-
}
|
2073 |
-
.mf-youtube:before {
|
2074 |
-
content: "\eb4c";
|
2075 |
-
}
|
2076 |
-
.mf-snapchat-1:before {
|
2077 |
-
content: "\eb4d";
|
2078 |
-
}
|
2079 |
-
.mf-behance:before {
|
2080 |
-
content: "\eb4e";
|
2081 |
-
}
|
2082 |
-
.mf-github:before {
|
2083 |
-
content: "\eb4f";
|
2084 |
-
}
|
2085 |
-
.mf-pinterest:before {
|
2086 |
-
content: "\eb50";
|
2087 |
-
}
|
2088 |
-
.mf-spotify:before {
|
2089 |
-
content: "\eb51";
|
2090 |
-
}
|
2091 |
-
.mf-soundcloud-1:before {
|
2092 |
-
content: "\eb52";
|
2093 |
-
}
|
2094 |
-
.mf-skype-1:before {
|
2095 |
-
content: "\eb53";
|
2096 |
-
}
|
2097 |
-
.mf-rss:before {
|
2098 |
-
content: "\eb54";
|
2099 |
-
}
|
2100 |
-
.mf-reddit-1:before {
|
2101 |
-
content: "\eb55";
|
2102 |
-
}
|
2103 |
-
.mf-dribbble-1:before {
|
2104 |
-
content: "\eb56";
|
2105 |
-
}
|
2106 |
-
.mf-wordpress-1:before {
|
2107 |
-
content: "\eb57";
|
2108 |
-
}
|
2109 |
-
.mf-logo:before {
|
2110 |
-
content: "\eb58";
|
2111 |
-
}
|
2112 |
-
.mf-dropbox-1:before {
|
2113 |
-
content: "\eb59";
|
2114 |
-
}
|
2115 |
-
.mf-blogger-1:before {
|
2116 |
-
content: "\eb5a";
|
2117 |
-
}
|
2118 |
-
.mf-photo:before {
|
2119 |
-
content: "\eb5b";
|
2120 |
-
}
|
2121 |
-
.mf-hangouts:before {
|
2122 |
-
content: "\eb5c";
|
2123 |
-
}
|
2124 |
-
.mf-xing:before {
|
2125 |
-
content: "\eb5d";
|
2126 |
-
}
|
2127 |
-
.mf-myspace:before {
|
2128 |
-
content: "\eb5e";
|
2129 |
-
}
|
2130 |
-
.mf-flickr-1:before {
|
2131 |
-
content: "\eb5f";
|
2132 |
-
}
|
2133 |
-
.mf-envato:before {
|
2134 |
-
content: "\eb60";
|
2135 |
-
}
|
2136 |
-
.mf-picasa-1:before {
|
2137 |
-
content: "\eb61";
|
2138 |
-
}
|
2139 |
-
.mf-wattpad:before {
|
2140 |
-
content: "\eb62";
|
2141 |
-
}
|
2142 |
-
.mf-emoji:before {
|
2143 |
-
content: "\eb63";
|
2144 |
-
}
|
2145 |
-
.mf-deviantart-1:before {
|
2146 |
-
content: "\eb64";
|
2147 |
-
}
|
2148 |
-
.mf-yahoo-1:before {
|
2149 |
-
content: "\eb65";
|
2150 |
-
}
|
2151 |
-
.mf-vine-1:before {
|
2152 |
-
content: "\eb66";
|
2153 |
-
}
|
2154 |
-
.mf-delicious:before {
|
2155 |
-
content: "\eb67";
|
2156 |
-
}
|
2157 |
-
.mf-kickstarter-1:before {
|
2158 |
-
content: "\eb68";
|
2159 |
-
}
|
2160 |
-
.mf-stumbleupon-1:before {
|
2161 |
-
content: "\eb69";
|
2162 |
-
}
|
2163 |
-
.mf-brands-and-logotypes:before {
|
2164 |
-
content: "\eb6a";
|
2165 |
-
}
|
2166 |
-
.mf-instagram-1:before {
|
2167 |
-
content: "\eb6c";
|
2168 |
-
}
|
2169 |
-
.mf-facebook-1:before {
|
2170 |
-
content: "\eb6d";
|
2171 |
-
}
|
2172 |
-
.mf-instagram-2:before {
|
2173 |
-
content: "\eb6e";
|
2174 |
-
}
|
2175 |
-
.mf-twitter-1:before {
|
2176 |
-
content: "\eb6f";
|
2177 |
-
}
|
2178 |
-
.mf-whatsapp-2:before {
|
2179 |
-
content: "\eb70";
|
2180 |
-
}
|
2181 |
-
.mf-youtube-1:before {
|
2182 |
-
content: "\eb71";
|
2183 |
-
}
|
2184 |
-
.mf-linkedin-1:before {
|
2185 |
-
content: "\eb72";
|
2186 |
-
}
|
2187 |
-
.mf-telegram:before {
|
2188 |
-
content: "\eb73";
|
2189 |
-
}
|
2190 |
-
.mf-github-1:before {
|
2191 |
-
content: "\eb74";
|
2192 |
-
}
|
2193 |
-
.mf-vk-1:before {
|
2194 |
-
content: "\eb75";
|
2195 |
-
}
|
2196 |
-
.mf-pinterest-1:before {
|
2197 |
-
content: "\eb76";
|
2198 |
-
}
|
2199 |
-
.mf-rss-1:before {
|
2200 |
-
content: "\eb77";
|
2201 |
-
}
|
2202 |
-
.mf-twitch:before {
|
2203 |
-
content: "\eb78";
|
2204 |
-
}
|
2205 |
-
.mf-snapchat-2:before {
|
2206 |
-
content: "\eb79";
|
2207 |
-
}
|
2208 |
-
.mf-skype-2:before {
|
2209 |
-
content: "\eb7a";
|
2210 |
-
}
|
2211 |
-
.mf-behance-2:before {
|
2212 |
-
content: "\eb7b";
|
2213 |
-
}
|
2214 |
-
.mf-spotify-1:before {
|
2215 |
-
content: "\eb7c";
|
2216 |
-
}
|
2217 |
-
.mf-periscope:before {
|
2218 |
-
content: "\eb7d";
|
2219 |
-
}
|
2220 |
-
.mf-dribbble-2:before {
|
2221 |
-
content: "\eb7e";
|
2222 |
-
}
|
2223 |
-
.mf-tumblr-1:before {
|
2224 |
-
content: "\eb7f";
|
2225 |
-
}
|
2226 |
-
.mf-soundcloud-2:before {
|
2227 |
-
content: "\eb80";
|
2228 |
-
}
|
2229 |
-
.mf-google-drive-1:before {
|
2230 |
-
content: "\eb81";
|
2231 |
-
}
|
2232 |
-
.mf-dropbox-2:before {
|
2233 |
-
content: "\eb82";
|
2234 |
-
}
|
2235 |
-
.mf-reddit-2:before {
|
2236 |
-
content: "\eb83";
|
2237 |
-
}
|
2238 |
-
.mf-html:before {
|
2239 |
-
content: "\eb84";
|
2240 |
-
}
|
2241 |
-
.mf-vimeo-1:before {
|
2242 |
-
content: "\eb85";
|
2243 |
-
}
|
2244 |
-
.mf-hangout:before {
|
2245 |
-
content: "\eb86";
|
2246 |
-
}
|
2247 |
-
.mf-blogger-2:before {
|
2248 |
-
content: "\eb87";
|
2249 |
-
}
|
2250 |
-
.mf-yahoo-2:before {
|
2251 |
-
content: "\eb88";
|
2252 |
-
}
|
2253 |
-
.mf-path:before {
|
2254 |
-
content: "\eb89";
|
2255 |
-
}
|
2256 |
-
.mf-yelp-1:before {
|
2257 |
-
content: "\eb8a";
|
2258 |
-
}
|
2259 |
-
.mf-slideshare:before {
|
2260 |
-
content: "\eb8b";
|
2261 |
-
}
|
2262 |
-
.mf-picasa-2:before {
|
2263 |
-
content: "\eb8c";
|
2264 |
-
}
|
2265 |
-
.mf-myspace-1:before {
|
2266 |
-
content: "\eb8d";
|
2267 |
-
}
|
2268 |
-
.mf-flickr-2:before {
|
2269 |
-
content: "\eb8e";
|
2270 |
-
}
|
2271 |
-
.mf-xing-1:before {
|
2272 |
-
content: "\eb8f";
|
2273 |
-
}
|
2274 |
-
.mf-envato-1:before {
|
2275 |
-
content: "\eb90";
|
2276 |
-
}
|
2277 |
-
.mf-swarm:before {
|
2278 |
-
content: "\eb91";
|
2279 |
-
}
|
2280 |
-
.mf-wattpad-1:before {
|
2281 |
-
content: "\eb92";
|
2282 |
-
}
|
2283 |
-
.mf-foursquare:before {
|
2284 |
-
content: "\eb93";
|
2285 |
-
}
|
2286 |
-
.mf-deviantart-2:before {
|
2287 |
-
content: "\eb94";
|
2288 |
-
}
|
2289 |
-
.mf-kickstarter-2:before {
|
2290 |
-
content: "\eb95";
|
2291 |
-
}
|
2292 |
-
.mf-delicious-1:before {
|
2293 |
-
content: "\eb96";
|
2294 |
-
}
|
2295 |
-
.mf-vine-2:before {
|
2296 |
-
content: "\eb97";
|
2297 |
-
}
|
2298 |
-
.mf-digg:before {
|
2299 |
-
content: "\eb98";
|
2300 |
-
}
|
2301 |
-
.mf-bebo:before {
|
2302 |
-
content: "\eb99";
|
2303 |
-
}
|
2304 |
-
.mf-stumbleupon-2:before {
|
2305 |
-
content: "\eb9a";
|
2306 |
-
}
|
2307 |
-
.mf-forrst:before {
|
2308 |
-
content: "\eb9b";
|
2309 |
-
}
|
2310 |
-
.mf-eye3:before {
|
2311 |
-
content: "\eb9d";
|
2312 |
-
}
|
2313 |
-
.mf-microscope:before {
|
2314 |
-
content: "\eb9e";
|
2315 |
-
}
|
2316 |
-
.mf-Anti-Lock:before {
|
2317 |
-
content: "\eb9f";
|
2318 |
-
}
|
2319 |
-
.mf-apartment:before {
|
2320 |
-
content: "\eba0";
|
2321 |
-
}
|
2322 |
-
.mf-app:before {
|
2323 |
-
content: "\eba2";
|
2324 |
-
}
|
2325 |
-
.mf-Aroma:before {
|
2326 |
-
content: "\eba3";
|
2327 |
-
}
|
2328 |
-
.mf-bamboo-Leaf:before {
|
2329 |
-
content: "\eba5";
|
2330 |
-
}
|
2331 |
-
.mf-basket:before {
|
2332 |
-
content: "\eba6";
|
2333 |
-
}
|
2334 |
-
.mf-Battery:before {
|
2335 |
-
content: "\eba7";
|
2336 |
-
}
|
2337 |
-
.mf-Bettery:before {
|
2338 |
-
content: "\eba8";
|
2339 |
-
}
|
2340 |
-
.mf-building:before {
|
2341 |
-
content: "\eba9";
|
2342 |
-
}
|
2343 |
-
.mf-car-2:before {
|
2344 |
-
content: "\ebaa";
|
2345 |
-
}
|
2346 |
-
.mf-Car:before {
|
2347 |
-
content: "\ebab";
|
2348 |
-
}
|
2349 |
-
.mf-Child:before {
|
2350 |
-
content: "\ebac";
|
2351 |
-
}
|
2352 |
-
.mf-cityscape:before {
|
2353 |
-
content: "\ebad";
|
2354 |
-
}
|
2355 |
-
.mf-cleaner:before {
|
2356 |
-
content: "\ebae";
|
2357 |
-
}
|
2358 |
-
.mf-Coffee-cup:before {
|
2359 |
-
content: "\ebaf";
|
2360 |
-
}
|
2361 |
-
.mf-coins:before {
|
2362 |
-
content: "\ebb0";
|
2363 |
-
}
|
2364 |
-
.mf-Computer:before {
|
2365 |
-
content: "\ebb1";
|
2366 |
-
}
|
2367 |
-
.mf-Consultancy:before {
|
2368 |
-
content: "\ebb2";
|
2369 |
-
}
|
2370 |
-
.mf-cottage:before {
|
2371 |
-
content: "\ebb3";
|
2372 |
-
}
|
2373 |
-
.mf-crane:before {
|
2374 |
-
content: "\ebb4";
|
2375 |
-
}
|
2376 |
-
.mf-Custom-api:before {
|
2377 |
-
content: "\ebb5";
|
2378 |
-
}
|
2379 |
-
.mf-customer-support-2:before {
|
2380 |
-
content: "\ebb6";
|
2381 |
-
}
|
2382 |
-
.mf-Design-2:before {
|
2383 |
-
content: "\ebb7";
|
2384 |
-
}
|
2385 |
-
.mf-Design-3:before {
|
2386 |
-
content: "\ebb8";
|
2387 |
-
}
|
2388 |
-
.mf-design:before {
|
2389 |
-
content: "\ebb9";
|
2390 |
-
}
|
2391 |
-
.mf-diamond:before {
|
2392 |
-
content: "\ebba";
|
2393 |
-
}
|
2394 |
-
.mf-diploma:before {
|
2395 |
-
content: "\ebbb";
|
2396 |
-
}
|
2397 |
-
.mf-Document-Search:before {
|
2398 |
-
content: "\ebbc";
|
2399 |
-
}
|
2400 |
-
.mf-Download:before {
|
2401 |
-
content: "\ebbd";
|
2402 |
-
}
|
2403 |
-
.mf-drilling:before {
|
2404 |
-
content: "\ebbe";
|
2405 |
-
}
|
2406 |
-
.mf-engine:before {
|
2407 |
-
content: "\ebbf";
|
2408 |
-
}
|
2409 |
-
.mf-engineer:before {
|
2410 |
-
content: "\ebc0";
|
2411 |
-
}
|
2412 |
-
.mf-envelope:before {
|
2413 |
-
content: "\ebc1";
|
2414 |
-
}
|
2415 |
-
.mf-Family:before {
|
2416 |
-
content: "\ebc2";
|
2417 |
-
}
|
2418 |
-
.mf-friendship:before {
|
2419 |
-
content: "\ebc3";
|
2420 |
-
}
|
2421 |
-
.mf-gift:before {
|
2422 |
-
content: "\ebc4";
|
2423 |
-
}
|
2424 |
-
.mf-graph-2:before {
|
2425 |
-
content: "\ebc5";
|
2426 |
-
}
|
2427 |
-
.mf-graph:before {
|
2428 |
-
content: "\ebc6";
|
2429 |
-
}
|
2430 |
-
.mf-hamburger-2:before {
|
2431 |
-
content: "\ebc7";
|
2432 |
-
}
|
2433 |
-
.mf-handshake:before {
|
2434 |
-
content: "\ebc8";
|
2435 |
-
}
|
2436 |
-
.mf-Helmet:before {
|
2437 |
-
content: "\ebc9";
|
2438 |
-
}
|
2439 |
-
.mf-hot-Stone-2:before {
|
2440 |
-
content: "\ebca";
|
2441 |
-
}
|
2442 |
-
.mf-hot-stone:before {
|
2443 |
-
content: "\ebcb";
|
2444 |
-
}
|
2445 |
-
.mf-idea:before {
|
2446 |
-
content: "\ebcc";
|
2447 |
-
}
|
2448 |
-
.mf-Leaf:before {
|
2449 |
-
content: "\ebcd";
|
2450 |
-
}
|
2451 |
-
.mf-management:before {
|
2452 |
-
content: "\ebce";
|
2453 |
-
}
|
2454 |
-
.mf-Massage-table:before {
|
2455 |
-
content: "\ebcf";
|
2456 |
-
}
|
2457 |
-
.mf-Mechanic:before {
|
2458 |
-
content: "\ebd0";
|
2459 |
-
}
|
2460 |
-
.mf-Money-2:before {
|
2461 |
-
content: "\ebd2";
|
2462 |
-
}
|
2463 |
-
.mf-money-bag:before {
|
2464 |
-
content: "\ebd3";
|
2465 |
-
}
|
2466 |
-
.mf-Money:before {
|
2467 |
-
content: "\ebd4";
|
2468 |
-
}
|
2469 |
-
.mf-oil-bottle:before {
|
2470 |
-
content: "\ebd5";
|
2471 |
-
}
|
2472 |
-
.mf-Physiotherapy:before {
|
2473 |
-
content: "\ebd6";
|
2474 |
-
}
|
2475 |
-
.mf-Profile:before {
|
2476 |
-
content: "\ebd7";
|
2477 |
-
}
|
2478 |
-
.mf-Rating:before {
|
2479 |
-
content: "\ebd8";
|
2480 |
-
}
|
2481 |
-
.mf-right-mark:before {
|
2482 |
-
content: "\ebd9";
|
2483 |
-
}
|
2484 |
-
.mf-rings:before {
|
2485 |
-
content: "\ebda";
|
2486 |
-
}
|
2487 |
-
.mf-Safe-house:before {
|
2488 |
-
content: "\ebdb";
|
2489 |
-
}
|
2490 |
-
.mf-Scan:before {
|
2491 |
-
content: "\ebdc";
|
2492 |
-
}
|
2493 |
-
.mf-social-care:before {
|
2494 |
-
content: "\ebdd";
|
2495 |
-
}
|
2496 |
-
.mf-Speed-Clock:before {
|
2497 |
-
content: "\ebde";
|
2498 |
-
}
|
2499 |
-
.mf-stopwatch:before {
|
2500 |
-
content: "\ebdf";
|
2501 |
-
}
|
2502 |
-
.mf-Support-2:before {
|
2503 |
-
content: "\ebe0";
|
2504 |
-
}
|
2505 |
-
.mf-target-2:before {
|
2506 |
-
content: "\ebe1";
|
2507 |
-
}
|
2508 |
-
.mf-Target:before {
|
2509 |
-
content: "\ebe2";
|
2510 |
-
}
|
2511 |
-
.mf-tripod:before {
|
2512 |
-
content: "\ebe3";
|
2513 |
-
}
|
2514 |
-
.mf-truck:before {
|
2515 |
-
content: "\ebe4";
|
2516 |
-
}
|
2517 |
-
.mf-university:before {
|
2518 |
-
content: "\ebe5";
|
2519 |
-
}
|
2520 |
-
.mf-User:before {
|
2521 |
-
content: "\ebe6";
|
2522 |
-
}
|
2523 |
-
.mf-Web-Portals:before {
|
2524 |
-
content: "\ebe7";
|
2525 |
-
}
|
2526 |
-
.mf-window:before {
|
2527 |
-
content: "\ebe8";
|
2528 |
-
}
|
2529 |
-
.mf-ek_line_icon:before {
|
2530 |
-
content: "\ebe9";
|
2531 |
-
}
|
2532 |
-
.mf-ek_stroke_icon:before {
|
2533 |
-
content: "\eba1";
|
2534 |
-
}
|
2535 |
-
.mf-ekit:before {
|
2536 |
-
content: "\e947";
|
2537 |
-
}
|
2538 |
-
.mf-elements-kit-logo:before {
|
2539 |
-
content: "\e90d";
|
2540 |
-
}
|
2541 |
-
.mf-degree-image:before {
|
2542 |
-
content: "\e900";
|
2543 |
-
}
|
2544 |
-
.mf-accordion:before {
|
2545 |
-
content: "\e901";
|
2546 |
-
}
|
2547 |
-
.mf-animated-flip-box:before {
|
2548 |
-
content: "\e902";
|
2549 |
-
}
|
2550 |
-
.mf-animated-text:before {
|
2551 |
-
content: "\e903";
|
2552 |
-
}
|
2553 |
-
.mf-brands:before {
|
2554 |
-
content: "\e904";
|
2555 |
-
}
|
2556 |
-
.mf-business-hour:before {
|
2557 |
-
content: "\e905";
|
2558 |
-
}
|
2559 |
-
.mf-button:before {
|
2560 |
-
content: "\e906";
|
2561 |
-
}
|
2562 |
-
.mf-carousel:before {
|
2563 |
-
content: "\e907";
|
2564 |
-
}
|
2565 |
-
.mf-Circle-progress:before {
|
2566 |
-
content: "\e908";
|
2567 |
-
}
|
2568 |
-
.mf-contact-form:before {
|
2569 |
-
content: "\e909";
|
2570 |
-
}
|
2571 |
-
.mf-countdown-timer:before {
|
2572 |
-
content: "\e90a";
|
2573 |
-
}
|
2574 |
-
.mf-dropbar:before {
|
2575 |
-
content: "\e90c";
|
2576 |
-
}
|
2577 |
-
.mf-faq:before {
|
2578 |
-
content: "\e90e";
|
2579 |
-
}
|
2580 |
-
.mf-full-width-scroll:before {
|
2581 |
-
content: "\e90f";
|
2582 |
-
}
|
2583 |
-
.mf-google-map:before {
|
2584 |
-
content: "\e910";
|
2585 |
-
}
|
2586 |
-
.mf-heading-style:before {
|
2587 |
-
content: "\e911";
|
2588 |
-
}
|
2589 |
-
.mf-help-desk:before {
|
2590 |
-
content: "\e912";
|
2591 |
-
}
|
2592 |
-
.mf-horizontal-timeline:before {
|
2593 |
-
content: "\e913";
|
2594 |
-
}
|
2595 |
-
.mf-iframe:before {
|
2596 |
-
content: "\e914";
|
2597 |
-
}
|
2598 |
-
.mf-image-comparison:before {
|
2599 |
-
content: "\e915";
|
2600 |
-
}
|
2601 |
-
.mf-image-gallery:before {
|
2602 |
-
content: "\e916";
|
2603 |
-
}
|
2604 |
-
.mf-image-justify:before {
|
2605 |
-
content: "\e917";
|
2606 |
-
}
|
2607 |
-
.mf-image-magnifier:before {
|
2608 |
-
content: "\e918";
|
2609 |
-
}
|
2610 |
-
.mf-image-masonry:before {
|
2611 |
-
content: "\e919";
|
2612 |
-
}
|
2613 |
-
.mf-inline-svg:before {
|
2614 |
-
content: "\e91a";
|
2615 |
-
}
|
2616 |
-
.mf-instagram:before {
|
2617 |
-
content: "\e91b";
|
2618 |
-
}
|
2619 |
-
.mf-listing:before {
|
2620 |
-
content: "\e91c";
|
2621 |
-
}
|
2622 |
-
.mf-music-player:before {
|
2623 |
-
content: "\e91d";
|
2624 |
-
}
|
2625 |
-
.mf-news-ticker:before {
|
2626 |
-
content: "\e91e";
|
2627 |
-
}
|
2628 |
-
.mf-off-canvus-menu:before {
|
2629 |
-
content: "\e91f";
|
2630 |
-
}
|
2631 |
-
.mf-parallax:before {
|
2632 |
-
content: "\e920";
|
2633 |
-
}
|
2634 |
-
.mf-portfolio:before {
|
2635 |
-
content: "\e921";
|
2636 |
-
}
|
2637 |
-
.mf-post-banner:before {
|
2638 |
-
content: "\e922";
|
2639 |
-
}
|
2640 |
-
.mf-post-carousel:before {
|
2641 |
-
content: "\e923";
|
2642 |
-
}
|
2643 |
-
.mf-post-grid:before {
|
2644 |
-
content: "\e924";
|
2645 |
-
}
|
2646 |
-
.mf-post-slider:before {
|
2647 |
-
content: "\e925";
|
2648 |
-
}
|
2649 |
-
.mf-pricing-list:before {
|
2650 |
-
content: "\e926";
|
2651 |
-
}
|
2652 |
-
.mf-pricing-table:before {
|
2653 |
-
content: "\e927";
|
2654 |
-
}
|
2655 |
-
.mf-product-featured:before {
|
2656 |
-
content: "\e928";
|
2657 |
-
}
|
2658 |
-
.mf-product-image:before {
|
2659 |
-
content: "\e929";
|
2660 |
-
}
|
2661 |
-
.mf-product-recent:before {
|
2662 |
-
content: "\e92a";
|
2663 |
-
}
|
2664 |
-
.mf-product-sale:before {
|
2665 |
-
content: "\e92b";
|
2666 |
-
}
|
2667 |
-
.mf-product-top-rated:before {
|
2668 |
-
content: "\e92c";
|
2669 |
-
}
|
2670 |
-
.mf-product-top-seller:before {
|
2671 |
-
content: "\e92d";
|
2672 |
-
}
|
2673 |
-
.mf-progress-bar:before {
|
2674 |
-
content: "\e92e";
|
2675 |
-
}
|
2676 |
-
.mf-protected-content-v2:before {
|
2677 |
-
content: "\e92f";
|
2678 |
-
}
|
2679 |
-
.mf-protected-content-v3:before {
|
2680 |
-
content: "\e930";
|
2681 |
-
}
|
2682 |
-
.mf-protected-content:before {
|
2683 |
-
content: "\e931";
|
2684 |
-
}
|
2685 |
-
.mf-qr_code:before {
|
2686 |
-
content: "\e932";
|
2687 |
-
}
|
2688 |
-
.mf-scroll-button:before {
|
2689 |
-
content: "\e933";
|
2690 |
-
}
|
2691 |
-
.mf-search1:before {
|
2692 |
-
content: "\e934";
|
2693 |
-
}
|
2694 |
-
.mf-service:before {
|
2695 |
-
content: "\e935";
|
2696 |
-
}
|
2697 |
-
.mf-slider-image:before {
|
2698 |
-
content: "\e936";
|
2699 |
-
}
|
2700 |
-
.mf-social-share:before {
|
2701 |
-
content: "\e937";
|
2702 |
-
}
|
2703 |
-
.mf-subscribe:before {
|
2704 |
-
content: "\e938";
|
2705 |
-
}
|
2706 |
-
.mf-tab:before {
|
2707 |
-
content: "\e939";
|
2708 |
-
}
|
2709 |
-
.mf-table:before {
|
2710 |
-
content: "\e93a";
|
2711 |
-
}
|
2712 |
-
.mf-team-join:before {
|
2713 |
-
content: "\e93b";
|
2714 |
-
}
|
2715 |
-
.mf-team-member:before {
|
2716 |
-
content: "\e93c";
|
2717 |
-
}
|
2718 |
-
.mf-testimonial-carousel:before {
|
2719 |
-
content: "\e93d";
|
2720 |
-
}
|
2721 |
-
.mf-testimonial-grid:before {
|
2722 |
-
content: "\e93e";
|
2723 |
-
}
|
2724 |
-
.mf-testimonial-quote:before {
|
2725 |
-
content: "\e93f";
|
2726 |
-
}
|
2727 |
-
.mf-testimonial-slider:before {
|
2728 |
-
content: "\e940";
|
2729 |
-
}
|
2730 |
-
.mf-toggle:before {
|
2731 |
-
content: "\e941";
|
2732 |
-
}
|
2733 |
-
.mf-user-login:before {
|
2734 |
-
content: "\e942";
|
2735 |
-
}
|
2736 |
-
.mf-user-registration:before {
|
2737 |
-
content: "\e943";
|
2738 |
-
}
|
2739 |
-
.mf-vertical-timeline:before {
|
2740 |
-
content: "\e944";
|
2741 |
-
}
|
2742 |
-
.mf-video-player:before {
|
2743 |
-
content: "\e945";
|
2744 |
-
}
|
2745 |
-
.mf-weather:before {
|
2746 |
-
content: "\e946";
|
2747 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/css/admin-style.css
DELETED
@@ -1,1401 +0,0 @@
|
|
1 |
-
@charset "UTF-8";
|
2 |
-
body.metform_page_metform-menu-settings {
|
3 |
-
overflow-y: scroll;
|
4 |
-
}
|
5 |
-
|
6 |
-
.mf-settings-dashboard {
|
7 |
-
margin-top: 40px;
|
8 |
-
}
|
9 |
-
.mf-settings-dashboard .attr-row > div {
|
10 |
-
box-sizing: border-box;
|
11 |
-
}
|
12 |
-
.mf-settings-dashboard > .attr-row {
|
13 |
-
margin: 0;
|
14 |
-
}
|
15 |
-
.mf-settings-dashboard .mf-setting-sidebar {
|
16 |
-
position: fixed;
|
17 |
-
width: 415px;
|
18 |
-
}
|
19 |
-
|
20 |
-
.nav-tab-wrapper {
|
21 |
-
border: none;
|
22 |
-
padding: 0;
|
23 |
-
}
|
24 |
-
|
25 |
-
.mf-admin-setting-btn {
|
26 |
-
border: 2px solid #FF433C;
|
27 |
-
color: #FF433C;
|
28 |
-
font-size: 14px;
|
29 |
-
line-height: 16px;
|
30 |
-
color: #FF433C;
|
31 |
-
text-decoration: none;
|
32 |
-
text-transform: uppercase;
|
33 |
-
border-radius: 100px;
|
34 |
-
padding: 10px 23px;
|
35 |
-
transition: all 0.4s;
|
36 |
-
font-weight: bold;
|
37 |
-
cursor: pointer;
|
38 |
-
background-color: #fff;
|
39 |
-
display: inline-block;
|
40 |
-
}
|
41 |
-
.mf-admin-setting-btn span {
|
42 |
-
margin-right: 6px;
|
43 |
-
}
|
44 |
-
.mf-admin-setting-btn.medium {
|
45 |
-
padding: 13px 23px;
|
46 |
-
}
|
47 |
-
.mf-admin-setting-btn.fatty {
|
48 |
-
padding: 17px 23px;
|
49 |
-
}
|
50 |
-
.mf-admin-setting-btn:hover, .mf-admin-setting-btn.active {
|
51 |
-
background-color: #FF433C;
|
52 |
-
color: #fff;
|
53 |
-
}
|
54 |
-
.mf-admin-setting-btn:focus {
|
55 |
-
box-shadow: none;
|
56 |
-
outline: none;
|
57 |
-
}
|
58 |
-
|
59 |
-
.mf-settings-tab {
|
60 |
-
margin-bottom: 40px;
|
61 |
-
}
|
62 |
-
.mf-settings-tab li {
|
63 |
-
box-shadow: none;
|
64 |
-
border: none;
|
65 |
-
margin: 0;
|
66 |
-
background-color: #fff;
|
67 |
-
}
|
68 |
-
.mf-settings-tab li:focus, .mf-settings-tab li:hover {
|
69 |
-
outline: none;
|
70 |
-
box-shadow: none;
|
71 |
-
border: none;
|
72 |
-
}
|
73 |
-
.mf-settings-tab li.nav-tab-active {
|
74 |
-
background-color: #FFFFFF;
|
75 |
-
border-left-color: #FF324D;
|
76 |
-
border-radius: 10px;
|
77 |
-
}
|
78 |
-
.mf-settings-tab li.nav-tab-active .mf-setting-title {
|
79 |
-
color: #FF433C;
|
80 |
-
}
|
81 |
-
.mf-settings-tab li.nav-tab-active .mf-setting-nav-link {
|
82 |
-
background-color: #fff;
|
83 |
-
border-top-left-radius: 10px;
|
84 |
-
border-bottom-left-radius: 10px;
|
85 |
-
}
|
86 |
-
.mf-settings-tab li.nav-tab-active .mf-setting-nav-link:before {
|
87 |
-
content: "";
|
88 |
-
background-color: #FF433C;
|
89 |
-
height: 10px;
|
90 |
-
width: 10px;
|
91 |
-
position: absolute;
|
92 |
-
left: 17px;
|
93 |
-
border-radius: 100px;
|
94 |
-
top: 50%;
|
95 |
-
transform: translateY(-50%);
|
96 |
-
}
|
97 |
-
.mf-settings-tab .mf-setting-nav-link {
|
98 |
-
outline: none;
|
99 |
-
float: none;
|
100 |
-
display: flex;
|
101 |
-
padding: 16px 44px 18px 20px;
|
102 |
-
color: #121116;
|
103 |
-
border: none;
|
104 |
-
transition: all 100ms ease-out;
|
105 |
-
background-color: #f1f1f1;
|
106 |
-
justify-content: space-between;
|
107 |
-
align-items: center;
|
108 |
-
border-radius: 0px;
|
109 |
-
box-shadow: none;
|
110 |
-
position: relative;
|
111 |
-
padding: 23px 40px;
|
112 |
-
text-decoration: none;
|
113 |
-
transition: all 0.4s;
|
114 |
-
}
|
115 |
-
.mf-settings-tab .mf-setting-nav-link:focus, .mf-settings-tab .mf-setting-nav-link:hover {
|
116 |
-
outline: none;
|
117 |
-
box-shadow: none;
|
118 |
-
border: none;
|
119 |
-
}
|
120 |
-
.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.top {
|
121 |
-
border-bottom-right-radius: 20px;
|
122 |
-
}
|
123 |
-
.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.bottom {
|
124 |
-
border-top-right-radius: 20px;
|
125 |
-
}
|
126 |
-
.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-hidden {
|
127 |
-
background-color: #F1F1F1;
|
128 |
-
cursor: default;
|
129 |
-
padding: 15px;
|
130 |
-
}
|
131 |
-
.mf-settings-tab.nav-tab-active.mf-setting-nav-link {
|
132 |
-
border-radius: 10px;
|
133 |
-
background-color: #fff;
|
134 |
-
}
|
135 |
-
.mf-settings-tab .mf-setting-tab-content .mf-setting-title {
|
136 |
-
font-size: 0.8125rem;
|
137 |
-
font-weight: bold;
|
138 |
-
color: #333;
|
139 |
-
display: block;
|
140 |
-
margin-bottom: 2px;
|
141 |
-
line-height: 1;
|
142 |
-
text-transform: uppercase;
|
143 |
-
}
|
144 |
-
.mf-settings-tab .mf-setting-tab-content .mf-setting-subtitle {
|
145 |
-
color: #72777C;
|
146 |
-
font-size: 0.8125rem;
|
147 |
-
transition: all 150ms ease-out;
|
148 |
-
}
|
149 |
-
|
150 |
-
.mf-settings-section {
|
151 |
-
opacity: 0;
|
152 |
-
visibility: hidden;
|
153 |
-
transition: opacity 0.4s;
|
154 |
-
position: absolute;
|
155 |
-
top: -9999px;
|
156 |
-
display: none;
|
157 |
-
}
|
158 |
-
.mf-settings-section.active {
|
159 |
-
opacity: 1;
|
160 |
-
position: static;
|
161 |
-
visibility: visible;
|
162 |
-
display: block;
|
163 |
-
}
|
164 |
-
|
165 |
-
.metform-admin-container {
|
166 |
-
background-color: #FFFFFF;
|
167 |
-
padding: 50px;
|
168 |
-
border-radius: 20px;
|
169 |
-
border: none;
|
170 |
-
min-height: 550px;
|
171 |
-
padding-top: 30px;
|
172 |
-
margin-bottom: 0;
|
173 |
-
}
|
174 |
-
.metform-admin-container--body .mf-settings-single-section--title {
|
175 |
-
margin: 0;
|
176 |
-
margin-top: 0px;
|
177 |
-
color: #FF433C;
|
178 |
-
font-size: 24px;
|
179 |
-
line-height: 28px;
|
180 |
-
font-weight: bold;
|
181 |
-
vertical-align: middle;
|
182 |
-
position: relative;
|
183 |
-
}
|
184 |
-
.metform-admin-container--body .mf-settings-single-section--title span {
|
185 |
-
align-items: center;
|
186 |
-
justify-content: center;
|
187 |
-
display: inline-block;
|
188 |
-
width: 40px;
|
189 |
-
height: 40px;
|
190 |
-
line-height: 40px !important;
|
191 |
-
margin-right: 24px;
|
192 |
-
background-color: rgba(255, 67, 60, 0.1);
|
193 |
-
color: #FF433C;
|
194 |
-
text-align: center;
|
195 |
-
border-radius: 5px;
|
196 |
-
vertical-align: middle;
|
197 |
-
font-size: 18px;
|
198 |
-
speak: none;
|
199 |
-
font-style: normal;
|
200 |
-
font-weight: normal;
|
201 |
-
font-variant: normal;
|
202 |
-
text-transform: none;
|
203 |
-
-webkit-font-smoothing: antialiased;
|
204 |
-
}
|
205 |
-
.metform-admin-container--body .mf-setting-header {
|
206 |
-
display: flex;
|
207 |
-
justify-content: space-between;
|
208 |
-
margin-bottom: 40px;
|
209 |
-
align-items: center;
|
210 |
-
padding-bottom: 17px;
|
211 |
-
position: relative;
|
212 |
-
margin-left: -50px;
|
213 |
-
margin-right: -50px;
|
214 |
-
padding-left: 50px;
|
215 |
-
padding-right: 51px;
|
216 |
-
}
|
217 |
-
.metform-admin-container--body .mf-setting-header:before {
|
218 |
-
content: "";
|
219 |
-
position: absolute;
|
220 |
-
display: block;
|
221 |
-
width: 48px;
|
222 |
-
height: 2px;
|
223 |
-
bottom: -1px;
|
224 |
-
left: 0;
|
225 |
-
background: #FF433C;
|
226 |
-
margin-left: 50px;
|
227 |
-
margin-right: 50px;
|
228 |
-
z-index: 2;
|
229 |
-
}
|
230 |
-
.metform-admin-container--body .mf-setting-header:after {
|
231 |
-
content: "";
|
232 |
-
position: absolute;
|
233 |
-
display: block;
|
234 |
-
width: calc(100% - 100px);
|
235 |
-
height: 1px;
|
236 |
-
bottom: -1px;
|
237 |
-
left: 0;
|
238 |
-
background: #E0E4E9;
|
239 |
-
margin-left: 50px;
|
240 |
-
z-index: 1;
|
241 |
-
}
|
242 |
-
.metform-admin-container--body .mf-setting-header.fixed {
|
243 |
-
position: fixed;
|
244 |
-
top: 0px;
|
245 |
-
padding-top: 20px;
|
246 |
-
background-color: #fff;
|
247 |
-
z-index: 999;
|
248 |
-
}
|
249 |
-
.metform-admin-container--body .mf-setting-header.fixed + div {
|
250 |
-
padding-top: 88px;
|
251 |
-
}
|
252 |
-
.metform-admin-container--body .mf-setting-input {
|
253 |
-
width: 100%;
|
254 |
-
max-width: 100%;
|
255 |
-
margin: 0;
|
256 |
-
box-sizing: border-box;
|
257 |
-
}
|
258 |
-
.metform-admin-container--body .mf-setting-label {
|
259 |
-
display: block;
|
260 |
-
margin-bottom: 8px;
|
261 |
-
color: #101010;
|
262 |
-
font-size: 16px;
|
263 |
-
line-height: 19px;
|
264 |
-
font-weight: 500;
|
265 |
-
}
|
266 |
-
.metform-admin-container--body .mf-admin-control-input {
|
267 |
-
margin: 0;
|
268 |
-
}
|
269 |
-
.metform-admin-container--body .mf-admin-control-input[type=checkbox] {
|
270 |
-
position: relative;
|
271 |
-
box-shadow: none;
|
272 |
-
height: 16px;
|
273 |
-
width: 16px;
|
274 |
-
border: 2px solid #FF5D20;
|
275 |
-
}
|
276 |
-
.metform-admin-container--body .mf-admin-control-input[type=checkbox]:checked:before {
|
277 |
-
content: "";
|
278 |
-
position: absolute;
|
279 |
-
background-color: #FF3747;
|
280 |
-
width: 8px;
|
281 |
-
height: 9px;
|
282 |
-
box-sizing: border-box;
|
283 |
-
left: 2px;
|
284 |
-
border-radius: 2px;
|
285 |
-
text-align: center;
|
286 |
-
margin: 0;
|
287 |
-
top: 1.6px;
|
288 |
-
}
|
289 |
-
.metform-admin-container .mf-setting-input {
|
290 |
-
border-radius: 3px;
|
291 |
-
padding: 5px 15px;
|
292 |
-
height: 40px;
|
293 |
-
box-sizing: border-box;
|
294 |
-
font-size: 14px;
|
295 |
-
line-height: 17px;
|
296 |
-
display: inline-block;
|
297 |
-
color: #555555;
|
298 |
-
box-shadow: none;
|
299 |
-
color: #121116;
|
300 |
-
border: 1px solid #DEE3EA;
|
301 |
-
font-weight: normal;
|
302 |
-
}
|
303 |
-
.metform-admin-container .mf-setting-input:focus, .metform-admin-container .mf-setting-input:active {
|
304 |
-
border-color: #FF324D;
|
305 |
-
box-shadow: none;
|
306 |
-
outline: none;
|
307 |
-
}
|
308 |
-
.metform-admin-container .mf-admin-save-icon {
|
309 |
-
color: #fff;
|
310 |
-
font-size: 14px;
|
311 |
-
margin-right: 6px;
|
312 |
-
height: 14px;
|
313 |
-
width: 14px;
|
314 |
-
}
|
315 |
-
.metform-admin-container .button-primary {
|
316 |
-
text-decoration: none;
|
317 |
-
text-shadow: none;
|
318 |
-
background-color: #FF324D;
|
319 |
-
border-radius: 4px;
|
320 |
-
box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
|
321 |
-
font-size: 14px;
|
322 |
-
line-height: 16px;
|
323 |
-
text-transform: uppercase;
|
324 |
-
color: #fff;
|
325 |
-
font-weight: 500;
|
326 |
-
border: none;
|
327 |
-
padding: 12px 23px;
|
328 |
-
transition: all 0.4s;
|
329 |
-
display: inline-flex;
|
330 |
-
align-items: center;
|
331 |
-
background-image: linear-gradient(45deg, #FF324D, #FF6B11);
|
332 |
-
position: relative;
|
333 |
-
z-index: 9;
|
334 |
-
}
|
335 |
-
.metform-admin-container .button-primary:hover, .metform-admin-container .button-primary:focus {
|
336 |
-
border: none;
|
337 |
-
outline: none;
|
338 |
-
box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
|
339 |
-
}
|
340 |
-
.metform-admin-container .button-primary:before {
|
341 |
-
border-radius: inherit;
|
342 |
-
background-image: linear-gradient(45deg, #FF6B11, #FF324D);
|
343 |
-
content: "";
|
344 |
-
display: block;
|
345 |
-
height: 100%;
|
346 |
-
position: absolute;
|
347 |
-
top: 0;
|
348 |
-
left: 0;
|
349 |
-
opacity: 0;
|
350 |
-
width: 100%;
|
351 |
-
z-index: -1;
|
352 |
-
transition: opacity 0.7s ease-in-out;
|
353 |
-
}
|
354 |
-
.metform-admin-container .button-primary:hover {
|
355 |
-
background-color: #dc0420;
|
356 |
-
}
|
357 |
-
.metform-admin-container .button-primary:hover:before {
|
358 |
-
opacity: 1;
|
359 |
-
}
|
360 |
-
|
361 |
-
.mf-recaptcha-settings {
|
362 |
-
display: none;
|
363 |
-
}
|
364 |
-
|
365 |
-
.mf_setting_logo {
|
366 |
-
padding-top: 25px;
|
367 |
-
}
|
368 |
-
.mf_setting_logo img {
|
369 |
-
max-width: 200px;
|
370 |
-
}
|
371 |
-
|
372 |
-
.mf-setting-dashboard-banner {
|
373 |
-
border-radius: 20px;
|
374 |
-
padding-top: 0;
|
375 |
-
}
|
376 |
-
.mf-setting-dashboard-banner img {
|
377 |
-
width: 100%;
|
378 |
-
}
|
379 |
-
.mf-setting-dashboard-banner--content {
|
380 |
-
padding: 30px;
|
381 |
-
}
|
382 |
-
.mf-setting-dashboard-banner--content h3 {
|
383 |
-
margin: 0;
|
384 |
-
margin-bottom: 15px;
|
385 |
-
}
|
386 |
-
|
387 |
-
.mf-setting-btn {
|
388 |
-
text-decoration: none;
|
389 |
-
background-color: #FF324D;
|
390 |
-
padding: 8px 15px;
|
391 |
-
border: none;
|
392 |
-
box-shadow: none;
|
393 |
-
background-image: linear-gradient(45deg, #FF324D, #FF6B11);
|
394 |
-
font-weight: 500;
|
395 |
-
}
|
396 |
-
|
397 |
-
.mf-setting-btn-link {
|
398 |
-
background-image: none;
|
399 |
-
color: #1F55F8;
|
400 |
-
border-radius: 0;
|
401 |
-
background-color: transparent;
|
402 |
-
border: none;
|
403 |
-
padding: 0;
|
404 |
-
text-decoration: none;
|
405 |
-
border-bottom: 1px solid #1F55F8;
|
406 |
-
font-weight: 600;
|
407 |
-
font-size: 14px;
|
408 |
-
display: inline-block;
|
409 |
-
line-height: 18px;
|
410 |
-
transition: all 0.4s;
|
411 |
-
}
|
412 |
-
.mf-setting-btn-link:hover {
|
413 |
-
color: #507bff;
|
414 |
-
}
|
415 |
-
|
416 |
-
.mf-setting-separator {
|
417 |
-
margin: 50px 0;
|
418 |
-
}
|
419 |
-
|
420 |
-
.mf-setting-input-group {
|
421 |
-
margin-bottom: 30px;
|
422 |
-
}
|
423 |
-
.mf-setting-input-group:last-child {
|
424 |
-
margin-bottom: 0;
|
425 |
-
}
|
426 |
-
.mf-setting-input-group .description {
|
427 |
-
font-weight: normal;
|
428 |
-
font-size: 13px;
|
429 |
-
line-height: 15px;
|
430 |
-
color: #999999;
|
431 |
-
font-style: normal;
|
432 |
-
margin: 0;
|
433 |
-
margin-top: 8px;
|
434 |
-
}
|
435 |
-
|
436 |
-
.mf-setting-input-desc {
|
437 |
-
display: none;
|
438 |
-
padding-right: 100px;
|
439 |
-
}
|
440 |
-
.mf-setting-input-desc .mf-setting-btn-link {
|
441 |
-
margin-top: 15px;
|
442 |
-
}
|
443 |
-
.mf-setting-input-desc--title {
|
444 |
-
margin-top: 0;
|
445 |
-
margin-bottom: 8px;
|
446 |
-
}
|
447 |
-
.mf-setting-input-desc p,
|
448 |
-
.mf-setting-input-desc li {
|
449 |
-
font-size: 14px;
|
450 |
-
line-height: 18px;
|
451 |
-
color: #111111;
|
452 |
-
}
|
453 |
-
|
454 |
-
.mf-setting-tab-nav {
|
455 |
-
margin-bottom: 30px;
|
456 |
-
}
|
457 |
-
.mf-setting-tab-nav li {
|
458 |
-
margin-right: 15px;
|
459 |
-
cursor: pointer;
|
460 |
-
}
|
461 |
-
.mf-setting-tab-nav li:last-child {
|
462 |
-
margin-right: 0;
|
463 |
-
}
|
464 |
-
.mf-setting-tab-nav .attr-nav-tabs {
|
465 |
-
border: none;
|
466 |
-
}
|
467 |
-
.mf-setting-tab-nav .attr-nav-item {
|
468 |
-
border: none;
|
469 |
-
border-radius: 4px;
|
470 |
-
text-decoration: none;
|
471 |
-
text-align: center;
|
472 |
-
color: #111111;
|
473 |
-
font-size: 14px;
|
474 |
-
text-transform: capitalize;
|
475 |
-
font-weight: 600;
|
476 |
-
padding: 8px 14px;
|
477 |
-
border: none;
|
478 |
-
margin-right: 0;
|
479 |
-
border: none;
|
480 |
-
display: inline-block;
|
481 |
-
box-shadow: none;
|
482 |
-
z-index: 2;
|
483 |
-
}
|
484 |
-
.mf-setting-tab-nav .attr-nav-item:hover {
|
485 |
-
color: #fff;
|
486 |
-
background-color: #FF433C;
|
487 |
-
}
|
488 |
-
.mf-setting-tab-nav .attr-active .attr-nav-item {
|
489 |
-
color: #ffffff;
|
490 |
-
background-color: #FF433C;
|
491 |
-
border: none;
|
492 |
-
}
|
493 |
-
.mf-setting-tab-nav .attr-active .attr-nav-item:focus, .mf-setting-tab-nav .attr-active .attr-nav-item:hover, .mf-setting-tab-nav .attr-active .attr-nav-item:active {
|
494 |
-
border: none;
|
495 |
-
box-shadow: none;
|
496 |
-
outline: none;
|
497 |
-
color: #fff;
|
498 |
-
background-color: #FF433C;
|
499 |
-
}
|
500 |
-
|
501 |
-
.mf-setting-input-desc-data {
|
502 |
-
display: none;
|
503 |
-
}
|
504 |
-
|
505 |
-
.mf-setting-select-container {
|
506 |
-
position: relative;
|
507 |
-
}
|
508 |
-
.mf-setting-select-container .mf-setting-input {
|
509 |
-
-webkit-appearance: none;
|
510 |
-
-moz-appearance: none;
|
511 |
-
appearance: none;
|
512 |
-
background: none;
|
513 |
-
}
|
514 |
-
.mf-setting-select-container:before {
|
515 |
-
content: "";
|
516 |
-
width: 0;
|
517 |
-
height: 0;
|
518 |
-
border-left: 5px solid transparent;
|
519 |
-
border-right: 5px solid transparent;
|
520 |
-
border-top: 5px solid #111;
|
521 |
-
position: absolute;
|
522 |
-
right: 15px;
|
523 |
-
transform: translateY(-50%);
|
524 |
-
top: 50%;
|
525 |
-
}
|
526 |
-
|
527 |
-
.mf-setting-refresh-btn {
|
528 |
-
margin: 0 10px;
|
529 |
-
font-size: 18px;
|
530 |
-
line-height: 24px;
|
531 |
-
}
|
532 |
-
|
533 |
-
.mf-set-dash-tab-img {
|
534 |
-
text-align: center;
|
535 |
-
}
|
536 |
-
|
537 |
-
.mf-set-dash-section {
|
538 |
-
padding: 100px 0;
|
539 |
-
}
|
540 |
-
.mf-set-dash-section:not(:first-child):not(:last-child) {
|
541 |
-
padding-bottom: 20px;
|
542 |
-
display: none;
|
543 |
-
}
|
544 |
-
|
545 |
-
#mf-set-dash-rate-now {
|
546 |
-
margin-top: 100px;
|
547 |
-
}
|
548 |
-
|
549 |
-
.mf-setting-dash-section-heading {
|
550 |
-
text-align: center;
|
551 |
-
position: relative;
|
552 |
-
margin: 0 auto;
|
553 |
-
margin-bottom: 32px;
|
554 |
-
}
|
555 |
-
.mf-setting-dash-section-heading--title {
|
556 |
-
font-size: 36px;
|
557 |
-
line-height: 42px;
|
558 |
-
margin: 0;
|
559 |
-
color: #121116;
|
560 |
-
font-weight: bold;
|
561 |
-
letter-spacing: -1px;
|
562 |
-
}
|
563 |
-
.mf-setting-dash-section-heading--title strong {
|
564 |
-
color: #FF433C;
|
565 |
-
}
|
566 |
-
.mf-setting-dash-section-heading--subtitle {
|
567 |
-
color: rgba(0, 0, 0, 0.05);
|
568 |
-
font-size: 60px;
|
569 |
-
line-height: 69px;
|
570 |
-
margin: 0;
|
571 |
-
font-weight: bold;
|
572 |
-
position: absolute;
|
573 |
-
top: -25px;
|
574 |
-
left: 50%;
|
575 |
-
width: 100%;
|
576 |
-
transform: translateX(-50%);
|
577 |
-
}
|
578 |
-
.mf-setting-dash-section-heading--content {
|
579 |
-
width: 440px;
|
580 |
-
margin: 0 auto;
|
581 |
-
margin-top: 8px;
|
582 |
-
}
|
583 |
-
.mf-setting-dash-section-heading--content p {
|
584 |
-
font-size: 16px;
|
585 |
-
line-height: 21px;
|
586 |
-
color: #121116;
|
587 |
-
}
|
588 |
-
.mf-setting-dash-section-heading--content p:first-child {
|
589 |
-
margin-top: 0;
|
590 |
-
}
|
591 |
-
.mf-setting-dash-section-heading--content p:last-child {
|
592 |
-
margin-bottom: 0;
|
593 |
-
}
|
594 |
-
|
595 |
-
.mf-set-dash-top-notch {
|
596 |
-
display: flex;
|
597 |
-
flex-wrap: wrap;
|
598 |
-
border-right: 1px solid #F0F0F0;
|
599 |
-
border-bottom: 1px solid #F0F0F0;
|
600 |
-
}
|
601 |
-
.mf-set-dash-top-notch--item {
|
602 |
-
flex: 0 0 33.33%;
|
603 |
-
border: 1px solid #F0F0F0;
|
604 |
-
box-sizing: border-box;
|
605 |
-
padding: 40px;
|
606 |
-
position: relative;
|
607 |
-
border-right: 0;
|
608 |
-
border-bottom: 0;
|
609 |
-
}
|
610 |
-
.mf-set-dash-top-notch--item__title {
|
611 |
-
font-size: 18px;
|
612 |
-
line-height: 21px;
|
613 |
-
color: #121116;
|
614 |
-
font-weight: 600;
|
615 |
-
margin: 0;
|
616 |
-
margin-bottom: 17px;
|
617 |
-
}
|
618 |
-
.mf-set-dash-top-notch--item__desc {
|
619 |
-
font-weight: 400;
|
620 |
-
font-size: 16px;
|
621 |
-
line-height: 21px;
|
622 |
-
color: #999999;
|
623 |
-
}
|
624 |
-
.mf-set-dash-top-notch--item:before {
|
625 |
-
content: attr(data-count);
|
626 |
-
font-size: 60px;
|
627 |
-
line-height: 69px;
|
628 |
-
position: absolute;
|
629 |
-
top: -5px;
|
630 |
-
right: 5px;
|
631 |
-
-webkit-text-stroke: 2px;
|
632 |
-
-webkit-text-fill-color: transparent;
|
633 |
-
color: #F0F0F0;
|
634 |
-
}
|
635 |
-
|
636 |
-
.mf-set-dash-free-pro-content {
|
637 |
-
display: flex;
|
638 |
-
flex-wrap: wrap;
|
639 |
-
}
|
640 |
-
.mf-set-dash-free-pro-content img {
|
641 |
-
max-width: 100%;
|
642 |
-
}
|
643 |
-
.mf-set-dash-free-pro-content .attr-nav-tabs {
|
644 |
-
display: flex;
|
645 |
-
flex-direction: column;
|
646 |
-
margin: 0;
|
647 |
-
border: 1px solid #F0F0F0;
|
648 |
-
width: 290px;
|
649 |
-
}
|
650 |
-
.mf-set-dash-free-pro-content .attr-nav-link {
|
651 |
-
text-decoration: none;
|
652 |
-
font-size: 16px;
|
653 |
-
line-height: 18px;
|
654 |
-
color: #121116 !important;
|
655 |
-
border: none !important;
|
656 |
-
padding: 20px 23px;
|
657 |
-
margin: 0;
|
658 |
-
border-radius: 0;
|
659 |
-
transition: all 0.4s;
|
660 |
-
}
|
661 |
-
.mf-set-dash-free-pro-content .attr-nav-link:focus {
|
662 |
-
outline: none;
|
663 |
-
box-shadow: none;
|
664 |
-
background-color: transparent;
|
665 |
-
border: none;
|
666 |
-
}
|
667 |
-
.mf-set-dash-free-pro-content .attr-nav-link:hover {
|
668 |
-
background-color: transparent;
|
669 |
-
}
|
670 |
-
.mf-set-dash-free-pro-content .attr-nav-item {
|
671 |
-
border-bottom: 1px solid #F0F0F0;
|
672 |
-
}
|
673 |
-
.mf-set-dash-free-pro-content .attr-nav-item:last-child {
|
674 |
-
border-bottom: 0;
|
675 |
-
}
|
676 |
-
.mf-set-dash-free-pro-content .attr-nav-item:focus {
|
677 |
-
outline: none;
|
678 |
-
box-shadow: none;
|
679 |
-
}
|
680 |
-
.mf-set-dash-free-pro-content .attr-nav-item.attr-active > a {
|
681 |
-
border: none;
|
682 |
-
}
|
683 |
-
.mf-set-dash-free-pro-content .attr-nav-item.attr-active .attr-nav-link {
|
684 |
-
background-color: #FF433C;
|
685 |
-
color: #fff !important;
|
686 |
-
}
|
687 |
-
.mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-icon {
|
688 |
-
color: #fff;
|
689 |
-
}
|
690 |
-
.mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-set-dash-badge {
|
691 |
-
background-color: #fff;
|
692 |
-
}
|
693 |
-
.mf-set-dash-free-pro-content .mf-icon {
|
694 |
-
font-size: 14px;
|
695 |
-
color: #FF433C;
|
696 |
-
margin-right: 7px;
|
697 |
-
}
|
698 |
-
.mf-set-dash-free-pro-content .mf-set-dash-badge {
|
699 |
-
background-color: rgba(242, 41, 91, 0.1);
|
700 |
-
color: #F2295B;
|
701 |
-
font-size: 10px;
|
702 |
-
line-height: 11px;
|
703 |
-
border-radius: 2px;
|
704 |
-
display: inline-block;
|
705 |
-
padding: 3px 6px;
|
706 |
-
margin-left: 18px;
|
707 |
-
font-weight: 600;
|
708 |
-
text-transform: uppercase;
|
709 |
-
}
|
710 |
-
.mf-set-dash-free-pro-content .attr-tab-content {
|
711 |
-
border: 1px solid #F0F0F0;
|
712 |
-
border-left: 0;
|
713 |
-
padding: 50px;
|
714 |
-
box-sizing: border-box;
|
715 |
-
flex: 0 0 calc(100% - 292px);
|
716 |
-
}
|
717 |
-
.mf-set-dash-free-pro-content .attr-tab-content p {
|
718 |
-
font-size: 16px;
|
719 |
-
line-height: 24px;
|
720 |
-
font-weight: 400;
|
721 |
-
color: #444444;
|
722 |
-
}
|
723 |
-
.mf-set-dash-free-pro-content .attr-tab-content ul li {
|
724 |
-
color: #444444;
|
725 |
-
font-size: 16px;
|
726 |
-
line-height: 21px;
|
727 |
-
}
|
728 |
-
.mf-set-dash-free-pro-content .attr-tab-content ul li:before {
|
729 |
-
content: "";
|
730 |
-
height: 5px;
|
731 |
-
width: 5px;
|
732 |
-
background-color: #F2295B;
|
733 |
-
border-radius: 100px;
|
734 |
-
display: inline-block;
|
735 |
-
vertical-align: middle;
|
736 |
-
margin-right: 7px;
|
737 |
-
}
|
738 |
-
.mf-set-dash-free-pro-content .attr-tab-content .mf-admin-setting-btn {
|
739 |
-
margin-top: 35px;
|
740 |
-
}
|
741 |
-
|
742 |
-
.admin-bar .mf-setting-header.fixed {
|
743 |
-
top: 30px;
|
744 |
-
}
|
745 |
-
|
746 |
-
#mf-set-dash-faq {
|
747 |
-
background-color: #F1F1F1;
|
748 |
-
padding-bottom: 100px;
|
749 |
-
margin: 100px 0;
|
750 |
-
text-align: center;
|
751 |
-
margin-left: -50px;
|
752 |
-
margin-right: -50px;
|
753 |
-
}
|
754 |
-
#mf-set-dash-faq .mf-admin-setting-btn {
|
755 |
-
margin-top: 30px;
|
756 |
-
}
|
757 |
-
|
758 |
-
.mf-admin-accordion {
|
759 |
-
max-width: 700px;
|
760 |
-
margin: 0 auto;
|
761 |
-
margin-top: 30px;
|
762 |
-
}
|
763 |
-
|
764 |
-
.mf-admin-single-accordion {
|
765 |
-
background-color: #FFFFFF;
|
766 |
-
box-shadow: 0 7px 15px rgba(0, 0, 0, 0.07);
|
767 |
-
margin: 10px 0;
|
768 |
-
text-align: left;
|
769 |
-
}
|
770 |
-
.mf-admin-single-accordion.active .mf-admin-single-accordion--heading:after {
|
771 |
-
content: "";
|
772 |
-
color: #F2295B;
|
773 |
-
}
|
774 |
-
.mf-admin-single-accordion--heading {
|
775 |
-
cursor: pointer;
|
776 |
-
margin: 0;
|
777 |
-
color: #121116;
|
778 |
-
font-size: 14px;
|
779 |
-
line-height: 20px;
|
780 |
-
padding: 18px 20px;
|
781 |
-
position: relative;
|
782 |
-
}
|
783 |
-
.mf-admin-single-accordion--heading:after {
|
784 |
-
content: "";
|
785 |
-
font-family: "metform";
|
786 |
-
position: absolute;
|
787 |
-
right: 30px;
|
788 |
-
top: 50%;
|
789 |
-
transform: translateY(-50%);
|
790 |
-
font-size: 12px;
|
791 |
-
}
|
792 |
-
.mf-admin-single-accordion--body {
|
793 |
-
padding: 0;
|
794 |
-
display: none;
|
795 |
-
}
|
796 |
-
.mf-admin-single-accordion--body__content {
|
797 |
-
padding: 30px;
|
798 |
-
padding-top: 0;
|
799 |
-
}
|
800 |
-
.mf-admin-single-accordion--body p {
|
801 |
-
margin: 0;
|
802 |
-
}
|
803 |
-
|
804 |
-
#mf-set-dash-rate-now {
|
805 |
-
display: flex;
|
806 |
-
justify-content: space-between;
|
807 |
-
align-items: center;
|
808 |
-
padding-bottom: 0;
|
809 |
-
padding-top: 0;
|
810 |
-
flex-wrap: wrap;
|
811 |
-
}
|
812 |
-
#mf-set-dash-rate-now .mf-setting-dash-section-heading {
|
813 |
-
text-align: left;
|
814 |
-
}
|
815 |
-
#mf-set-dash-rate-now .mf-admin-left-thumb {
|
816 |
-
margin-bottom: -50px;
|
817 |
-
align-self: flex-end;
|
818 |
-
}
|
819 |
-
#mf-set-dash-rate-now > div {
|
820 |
-
flex: 1;
|
821 |
-
}
|
822 |
-
|
823 |
-
.mf-admin-left-thumb img {
|
824 |
-
max-width: 100%;
|
825 |
-
}
|
826 |
-
|
827 |
-
@media (min-width: 768px) {
|
828 |
-
.mf-setting-input-desc-data {
|
829 |
-
display: block;
|
830 |
-
}
|
831 |
-
|
832 |
-
.mf-settings-dashboard > .attr-row > div:last-of-type {
|
833 |
-
padding-left: 0;
|
834 |
-
}
|
835 |
-
|
836 |
-
.mf-settings-dashboard > .attr-row > div:first-of-type {
|
837 |
-
padding-right: 0;
|
838 |
-
}
|
839 |
-
}
|
840 |
-
@media (max-width: 767px) {
|
841 |
-
.mf-setting-dash-section-heading--content {
|
842 |
-
width: 100%;
|
843 |
-
}
|
844 |
-
|
845 |
-
.mf-set-dash-free-pro-content .attr-nav-tabs {
|
846 |
-
min-width: 100%;
|
847 |
-
}
|
848 |
-
.mf-set-dash-free-pro-content .attr-tab-content {
|
849 |
-
border-left: 1px solid #F0F0F0;
|
850 |
-
padding: 20px;
|
851 |
-
flex: 100%;
|
852 |
-
}
|
853 |
-
|
854 |
-
.mf-settings-dashboard .mf-setting-sidebar {
|
855 |
-
position: static;
|
856 |
-
width: 100% !important;
|
857 |
-
}
|
858 |
-
|
859 |
-
.metform-admin-container {
|
860 |
-
padding: 30px;
|
861 |
-
}
|
862 |
-
|
863 |
-
.metform-admin-container--body .mf-setting-header {
|
864 |
-
margin-left: -30px;
|
865 |
-
margin-right: -30px;
|
866 |
-
padding-left: 30px;
|
867 |
-
padding-right: 30px;
|
868 |
-
}
|
869 |
-
.metform-admin-container--body .mf-setting-header:before, .metform-admin-container--body .mf-setting-header:after {
|
870 |
-
margin-left: 30px;
|
871 |
-
margin-right: 30px;
|
872 |
-
}
|
873 |
-
.metform-admin-container--body .mf-setting-header:after {
|
874 |
-
width: calc(100% - 60px);
|
875 |
-
}
|
876 |
-
|
877 |
-
.mf-set-dash-top-notch--item {
|
878 |
-
flex: 0 0 100%;
|
879 |
-
}
|
880 |
-
|
881 |
-
.admin-bar .mf-setting-header.fixed {
|
882 |
-
top: 0px;
|
883 |
-
}
|
884 |
-
|
885 |
-
#mf-set-dash-faq {
|
886 |
-
margin-left: -30px;
|
887 |
-
margin-right: -30px;
|
888 |
-
}
|
889 |
-
|
890 |
-
.mf-admin-left-thumb {
|
891 |
-
margin-bottom: -30px;
|
892 |
-
}
|
893 |
-
|
894 |
-
.mf-admin-left-thumb {
|
895 |
-
text-align: center;
|
896 |
-
width: 100%;
|
897 |
-
margin-top: 15px;
|
898 |
-
}
|
899 |
-
|
900 |
-
.metform-admin-container--body .mf-settings-single-section--title {
|
901 |
-
font-size: 19px;
|
902 |
-
}
|
903 |
-
.metform-admin-container--body .mf-settings-single-section--title span {
|
904 |
-
display: none;
|
905 |
-
}
|
906 |
-
|
907 |
-
.mf-setting-dash-section-heading--title {
|
908 |
-
font-size: 25px;
|
909 |
-
line-height: 30px;
|
910 |
-
}
|
911 |
-
.mf-setting-dash-section-heading--subtitle {
|
912 |
-
font-size: 52px;
|
913 |
-
line-height: 59px;
|
914 |
-
}
|
915 |
-
}
|
916 |
-
.mf-setting-spin {
|
917 |
-
animation-name: rotate;
|
918 |
-
animation-duration: 500ms;
|
919 |
-
animation-iteration-count: infinite;
|
920 |
-
animation-timing-function: linear;
|
921 |
-
}
|
922 |
-
|
923 |
-
@keyframes rotate {
|
924 |
-
from {
|
925 |
-
transform: rotate(0deg);
|
926 |
-
}
|
927 |
-
to {
|
928 |
-
transform: rotate(360deg);
|
929 |
-
}
|
930 |
-
}
|
931 |
-
.loading .attr-modal-content::before {
|
932 |
-
opacity: 0.8;
|
933 |
-
position: absolute;
|
934 |
-
content: "";
|
935 |
-
top: 0;
|
936 |
-
left: 0;
|
937 |
-
height: 100%;
|
938 |
-
width: 100%;
|
939 |
-
background-color: #fff;
|
940 |
-
transition: opaicty 0.5s ease;
|
941 |
-
z-index: 5;
|
942 |
-
border-radius: inherit;
|
943 |
-
}
|
944 |
-
.loading .mf-spinner {
|
945 |
-
display: block;
|
946 |
-
}
|
947 |
-
|
948 |
-
#metform_form_modal {
|
949 |
-
overflow-y: scroll;
|
950 |
-
}
|
951 |
-
|
952 |
-
.elementor-editor-active .metform-form-save-btn-editor {
|
953 |
-
display: none !important;
|
954 |
-
}
|
955 |
-
|
956 |
-
.attr-modal-dialog-centered {
|
957 |
-
display: flex;
|
958 |
-
align-items: center;
|
959 |
-
padding-top: 30px;
|
960 |
-
width: 725px;
|
961 |
-
max-width: 100%;
|
962 |
-
}
|
963 |
-
.attr-modal-dialog-centered .attr-modal-header {
|
964 |
-
padding: 36px 50px;
|
965 |
-
border-bottom: none;
|
966 |
-
}
|
967 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-modal-title {
|
968 |
-
font-size: 20px;
|
969 |
-
font-weight: bold;
|
970 |
-
color: #111111;
|
971 |
-
text-transform: capitalize;
|
972 |
-
margin-bottom: 38px;
|
973 |
-
line-height: 1;
|
974 |
-
}
|
975 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs {
|
976 |
-
border: none;
|
977 |
-
display: flex;
|
978 |
-
flex-wrap: wrap;
|
979 |
-
}
|
980 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li {
|
981 |
-
transition: all 0.4s;
|
982 |
-
}
|
983 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a {
|
984 |
-
text-decoration: none;
|
985 |
-
color: #111111;
|
986 |
-
font-size: 14px;
|
987 |
-
text-transform: capitalize;
|
988 |
-
font-weight: 600;
|
989 |
-
padding: 8px 10px;
|
990 |
-
border: none;
|
991 |
-
margin-right: 0;
|
992 |
-
border: none;
|
993 |
-
transition: all 0.4s;
|
994 |
-
}
|
995 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover {
|
996 |
-
border: none;
|
997 |
-
background-color: transparent;
|
998 |
-
}
|
999 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus {
|
1000 |
-
outline: none;
|
1001 |
-
box-shadow: none;
|
1002 |
-
border: none;
|
1003 |
-
}
|
1004 |
-
.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a {
|
1005 |
-
border: none;
|
1006 |
-
color: #ffffff;
|
1007 |
-
background-color: #1F55F8;
|
1008 |
-
border-radius: 4px;
|
1009 |
-
text-align: center;
|
1010 |
-
}
|
1011 |
-
.attr-modal-dialog-centered .attr-modal-header button.attr-close {
|
1012 |
-
opacity: 0.8;
|
1013 |
-
font-size: inherit;
|
1014 |
-
outline: none;
|
1015 |
-
margin-top: -15px;
|
1016 |
-
margin-right: -25px;
|
1017 |
-
}
|
1018 |
-
.attr-modal-dialog-centered .attr-modal-header button.attr-close span {
|
1019 |
-
color: #e81123;
|
1020 |
-
font-size: 35px;
|
1021 |
-
font-weight: 100;
|
1022 |
-
background-color: #FCE7E9;
|
1023 |
-
height: 36px;
|
1024 |
-
width: 36px;
|
1025 |
-
display: inline-block;
|
1026 |
-
line-height: 36px;
|
1027 |
-
border-radius: 100px;
|
1028 |
-
outline: none;
|
1029 |
-
margin-top: 5px;
|
1030 |
-
font-family: initial;
|
1031 |
-
}
|
1032 |
-
.attr-modal-dialog-centered .attr-tab-content .attr-modal-body {
|
1033 |
-
padding: 40px 50px;
|
1034 |
-
padding-top: 0;
|
1035 |
-
}
|
1036 |
-
.attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input {
|
1037 |
-
display: none;
|
1038 |
-
}
|
1039 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label {
|
1040 |
-
color: #111111;
|
1041 |
-
font-size: 16px;
|
1042 |
-
margin-bottom: 7px;
|
1043 |
-
display: block;
|
1044 |
-
font-weight: 500;
|
1045 |
-
}
|
1046 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group {
|
1047 |
-
border-bottom: 1px solid #f5f5f5;
|
1048 |
-
padding-bottom: 14px;
|
1049 |
-
margin-bottom: 14px;
|
1050 |
-
}
|
1051 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group:last-of-type {
|
1052 |
-
border-bottom: none;
|
1053 |
-
padding-bottom: 0;
|
1054 |
-
}
|
1055 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control {
|
1056 |
-
color: #000;
|
1057 |
-
font-size: 14px;
|
1058 |
-
height: 48px;
|
1059 |
-
padding: 0 22px;
|
1060 |
-
border-color: #ededed;
|
1061 |
-
margin-top: 12px;
|
1062 |
-
max-width: 100%;
|
1063 |
-
background-color: #f9f9f9;
|
1064 |
-
transition: all 0.4s;
|
1065 |
-
}
|
1066 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input:hover, .attr-modal-dialog-centered .attr-tab-content .mf-input-group input:focus, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:hover, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:focus {
|
1067 |
-
background-color: #fff;
|
1068 |
-
}
|
1069 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group textarea {
|
1070 |
-
padding: 22px !important;
|
1071 |
-
}
|
1072 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] {
|
1073 |
-
display: none;
|
1074 |
-
}
|
1075 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span {
|
1076 |
-
position: relative;
|
1077 |
-
display: block;
|
1078 |
-
}
|
1079 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:before {
|
1080 |
-
content: "No";
|
1081 |
-
width: 55px;
|
1082 |
-
height: 25px;
|
1083 |
-
background-color: #EDEDED;
|
1084 |
-
left: 0;
|
1085 |
-
border-radius: 15px;
|
1086 |
-
text-align: right;
|
1087 |
-
color: #fff;
|
1088 |
-
text-transform: uppercase;
|
1089 |
-
font-weight: bold;
|
1090 |
-
font-size: 10px;
|
1091 |
-
padding: 3px;
|
1092 |
-
box-sizing: border-box;
|
1093 |
-
padding-right: 10px;
|
1094 |
-
transition: all 0.4s;
|
1095 |
-
float: right;
|
1096 |
-
line-height: 18px;
|
1097 |
-
cursor: pointer;
|
1098 |
-
}
|
1099 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:after {
|
1100 |
-
content: "";
|
1101 |
-
width: 20px;
|
1102 |
-
height: 20px;
|
1103 |
-
background-color: #fff;
|
1104 |
-
border-radius: 100px;
|
1105 |
-
display: inline-block;
|
1106 |
-
position: absolute;
|
1107 |
-
right: 31px;
|
1108 |
-
top: 2px;
|
1109 |
-
transition: all 0.4s;
|
1110 |
-
}
|
1111 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked + span:before {
|
1112 |
-
content: "Yes";
|
1113 |
-
width: 55px;
|
1114 |
-
height: 25px;
|
1115 |
-
background-color: #1F55F8;
|
1116 |
-
left: 0;
|
1117 |
-
border-radius: 15px;
|
1118 |
-
display: inline-block;
|
1119 |
-
text-align: left;
|
1120 |
-
color: #fff;
|
1121 |
-
text-transform: uppercase;
|
1122 |
-
font-weight: bold;
|
1123 |
-
font-size: 10px;
|
1124 |
-
padding: 3px;
|
1125 |
-
box-sizing: border-box;
|
1126 |
-
padding-left: 10px;
|
1127 |
-
}
|
1128 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked + span:after {
|
1129 |
-
content: "";
|
1130 |
-
width: 20px;
|
1131 |
-
height: 20px;
|
1132 |
-
background-color: #fff;
|
1133 |
-
border-radius: 100px;
|
1134 |
-
display: inline-block;
|
1135 |
-
position: absolute;
|
1136 |
-
right: 2px;
|
1137 |
-
top: 2px;
|
1138 |
-
}
|
1139 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-rest-api-method {
|
1140 |
-
padding: 0 18px;
|
1141 |
-
margin: 0;
|
1142 |
-
}
|
1143 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help {
|
1144 |
-
color: #b7b7b7;
|
1145 |
-
font-style: italic;
|
1146 |
-
font-size: 12px;
|
1147 |
-
}
|
1148 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong {
|
1149 |
-
color: #555;
|
1150 |
-
font-weight: 700;
|
1151 |
-
}
|
1152 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help a {
|
1153 |
-
color: #1F55F8;
|
1154 |
-
text-decoration: none;
|
1155 |
-
font-weight: 700;
|
1156 |
-
}
|
1157 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label {
|
1158 |
-
display: inline-block;
|
1159 |
-
}
|
1160 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status {
|
1161 |
-
width: 100px;
|
1162 |
-
margin: 0;
|
1163 |
-
position: relative;
|
1164 |
-
margin-left: 15px;
|
1165 |
-
float: right;
|
1166 |
-
margin-top: -2px;
|
1167 |
-
}
|
1168 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input {
|
1169 |
-
margin: 0;
|
1170 |
-
}
|
1171 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox] + span:before {
|
1172 |
-
position: relative;
|
1173 |
-
top: -2px;
|
1174 |
-
left: 5px;
|
1175 |
-
}
|
1176 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox] + span:after {
|
1177 |
-
right: 28px;
|
1178 |
-
top: 0px;
|
1179 |
-
}
|
1180 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked + span:after {
|
1181 |
-
right: -2px;
|
1182 |
-
top: 0;
|
1183 |
-
}
|
1184 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline {
|
1185 |
-
display: flex;
|
1186 |
-
flex-wrap: wrap;
|
1187 |
-
align-items: center;
|
1188 |
-
}
|
1189 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label,
|
1190 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs {
|
1191 |
-
flex: 1;
|
1192 |
-
}
|
1193 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label select,
|
1194 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs select {
|
1195 |
-
margin: 0;
|
1196 |
-
}
|
1197 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text] + span,
|
1198 |
-
.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number] + span {
|
1199 |
-
display: block;
|
1200 |
-
margin-top: 5px;
|
1201 |
-
}
|
1202 |
-
.attr-modal-dialog-centered .attr-tab-content #limit_status.show_input {
|
1203 |
-
margin-top: 32px;
|
1204 |
-
}
|
1205 |
-
.attr-modal-dialog-centered .attr-modal-footer {
|
1206 |
-
padding: 30px 50px;
|
1207 |
-
}
|
1208 |
-
.attr-modal-dialog-centered .attr-modal-footer button {
|
1209 |
-
color: #fff;
|
1210 |
-
background-color: #1F55F8;
|
1211 |
-
font-size: 16px;
|
1212 |
-
font-weight: bold;
|
1213 |
-
box-sizing: border-box;
|
1214 |
-
padding: 12px 20px;
|
1215 |
-
box-shadow: none;
|
1216 |
-
border: 1px solid transparent;
|
1217 |
-
transition: all 0.4s;
|
1218 |
-
outline: none;
|
1219 |
-
}
|
1220 |
-
.attr-modal-dialog-centered .attr-modal-footer button:focus {
|
1221 |
-
border: none;
|
1222 |
-
outline: none;
|
1223 |
-
}
|
1224 |
-
.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor {
|
1225 |
-
background-color: #d8d8d8;
|
1226 |
-
color: #111111;
|
1227 |
-
}
|
1228 |
-
.attr-modal-dialog-centered > form {
|
1229 |
-
width: 100%;
|
1230 |
-
}
|
1231 |
-
|
1232 |
-
.modal-backdrop {
|
1233 |
-
position: fixed;
|
1234 |
-
top: 0;
|
1235 |
-
left: 0;
|
1236 |
-
width: 100vw;
|
1237 |
-
height: 100vh;
|
1238 |
-
background-color: rgba(0, 0, 0, 0.5);
|
1239 |
-
}
|
1240 |
-
|
1241 |
-
.modal-backdrop {
|
1242 |
-
z-index: 9999;
|
1243 |
-
}
|
1244 |
-
|
1245 |
-
.attr-modal {
|
1246 |
-
z-index: 10000;
|
1247 |
-
}
|
1248 |
-
|
1249 |
-
.mf_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
1250 |
-
line-height: 1.5;
|
1251 |
-
font-size: 0.9em;
|
1252 |
-
border: none;
|
1253 |
-
border-radius: 0;
|
1254 |
-
color: #6d7882;
|
1255 |
-
}
|
1256 |
-
|
1257 |
-
.mf-headerfooter-status {
|
1258 |
-
display: inline-block;
|
1259 |
-
margin-left: 5px;
|
1260 |
-
padding: 2px 5px 3px;
|
1261 |
-
color: #FFFFFF;
|
1262 |
-
background-color: #9a9a9a;
|
1263 |
-
border-radius: 3px;
|
1264 |
-
font-size: 10px;
|
1265 |
-
line-height: 1;
|
1266 |
-
font-weight: 700;
|
1267 |
-
}
|
1268 |
-
.mf-headerfooter-status-active {
|
1269 |
-
background-color: #00cd00;
|
1270 |
-
}
|
1271 |
-
|
1272 |
-
.irs--round .irs-min, .irs--round .irs-max {
|
1273 |
-
display: none;
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
.irs--round .irs-handle {
|
1277 |
-
cursor: pointer;
|
1278 |
-
}
|
1279 |
-
|
1280 |
-
.mf-success-msg {
|
1281 |
-
position: fixed;
|
1282 |
-
z-index: 9;
|
1283 |
-
text-align: center;
|
1284 |
-
top: 50%;
|
1285 |
-
left: 50%;
|
1286 |
-
transform: translate(-50%, -50%);
|
1287 |
-
box-shadow: 0px 2px 5px rgba(153, 153, 153, 0.2);
|
1288 |
-
min-width: 300px;
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
textarea.attr-form-control {
|
1292 |
-
height: auto !important;
|
1293 |
-
}
|
1294 |
-
|
1295 |
-
.post-type-metform-form .row-actions .inline {
|
1296 |
-
display: none !important;
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
div.metform-entry-data table thead,
|
1300 |
-
div.metform-entry-data table tbody,
|
1301 |
-
div.metform-entry-browser-data table thead,
|
1302 |
-
div.metform-entry-browser-data table tbody {
|
1303 |
-
text-align: left;
|
1304 |
-
}
|
1305 |
-
|
1306 |
-
img.form-editor-icon {
|
1307 |
-
height: 20px;
|
1308 |
-
width: 20px;
|
1309 |
-
margin-right: 5px;
|
1310 |
-
vertical-align: middle;
|
1311 |
-
}
|
1312 |
-
|
1313 |
-
div.mf-file-show button.attr-btn.attr-btn-primary {
|
1314 |
-
margin-left: 10px;
|
1315 |
-
}
|
1316 |
-
|
1317 |
-
.mf-file-show a {
|
1318 |
-
text-decoration: none;
|
1319 |
-
}
|
1320 |
-
|
1321 |
-
.mf-modal-container {
|
1322 |
-
margin-top: 50px;
|
1323 |
-
}
|
1324 |
-
.mf-modal-container .attr-modal-body img {
|
1325 |
-
margin: 0 auto;
|
1326 |
-
}
|
1327 |
-
|
1328 |
-
.mf-entry-label,
|
1329 |
-
.mf-entry-input {
|
1330 |
-
box-sizing: border-box;
|
1331 |
-
}
|
1332 |
-
|
1333 |
-
.mf-entry-filter {
|
1334 |
-
margin-right: 10px;
|
1335 |
-
}
|
1336 |
-
|
1337 |
-
.mf-entry-filter {
|
1338 |
-
min-width: 15%;
|
1339 |
-
}
|
1340 |
-
|
1341 |
-
.mf-entry-export-csv {
|
1342 |
-
min-width: 20%;
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
.metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:before {
|
1346 |
-
line-height: 20px;
|
1347 |
-
}
|
1348 |
-
|
1349 |
-
/* HIDE RADIO */
|
1350 |
-
.mf-image-select-input,
|
1351 |
-
.mf-toggle-select-input {
|
1352 |
-
position: absolute;
|
1353 |
-
opacity: 0;
|
1354 |
-
width: 0;
|
1355 |
-
height: 0;
|
1356 |
-
}
|
1357 |
-
|
1358 |
-
/* IMAGE STYLES */
|
1359 |
-
.mf-image-select-input + img,
|
1360 |
-
.mf-toggle-select-input + p {
|
1361 |
-
cursor: pointer;
|
1362 |
-
}
|
1363 |
-
|
1364 |
-
.mf-input-rest-api-group .mf-rest-api-key {
|
1365 |
-
width: 100px;
|
1366 |
-
display: inline-block;
|
1367 |
-
position: relative;
|
1368 |
-
top: 5px;
|
1369 |
-
}
|
1370 |
-
|
1371 |
-
.mf-input-rest-api-group .mf-rest-api {
|
1372 |
-
width: calc(100% - 110px);
|
1373 |
-
vertical-align: middle;
|
1374 |
-
display: inline-block !important;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
.metform_open_content_editor_modal .mf-rest-api-key {
|
1378 |
-
top: 0;
|
1379 |
-
}
|
1380 |
-
|
1381 |
-
.metform-entry-data table.mf-entry-data {
|
1382 |
-
width: 100%;
|
1383 |
-
background-color: #FFFFFF;
|
1384 |
-
border: 1px solid #EAF2FA;
|
1385 |
-
}
|
1386 |
-
.metform-entry-data table.mf-entry-data tbody tr.mf-data-label {
|
1387 |
-
background-color: #EAF2FA;
|
1388 |
-
}
|
1389 |
-
.metform-entry-data table.mf-entry-data tbody tr.mf-data-value {
|
1390 |
-
background-color: #FFFFFF;
|
1391 |
-
}
|
1392 |
-
.metform-entry-data table.mf-entry-data tbody tr.mf-data-value pre {
|
1393 |
-
margin: 0;
|
1394 |
-
font: inherit;
|
1395 |
-
}
|
1396 |
-
.metform-entry-data table.mf-entry-data tbody tr.mf-data-value td.mf-value-space {
|
1397 |
-
width: 20px;
|
1398 |
-
}
|
1399 |
-
.metform-entry-data table.mf-entry-data tbody tr.mf-data-value .signature-img {
|
1400 |
-
max-width: 100%;
|
1401 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/css/asRange.min.css
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
* asRange v0.3.4
|
3 |
-
* https://github.com/amazingSurge/jquery-asRange
|
4 |
-
*
|
5 |
-
* Copyright (c) amazingSurge
|
6 |
-
* Released under the LGPL-3.0 license
|
7 |
-
*/
|
8 |
-
.asRange{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange .asRange-pointer.start{left:0;margin-left:4px}.asRange .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange .asRange-scale{display:none}.asRange-scale{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange-scale .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange-scale .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange-scale .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange-scale .asRange-pointer.start{left:0;margin-left:4px}.asRange-scale .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange-scale .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange-scale .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange-scale .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange-scale .asRange-scale{position:absolute;bottom:-22px;left:0;width:100%;height:20px;padding:0;margin:0;list-style:none;background:url(../image/scale.png) no-repeat 0 transparent}.asRange-scale .asRange-scale li{position:absolute;top:18px;width:30px;height:20px;padding:0;margin:0;margin-left:-15px;text-align:center}.asRange-scale .asRange-scale li:first-child{left:0}.asRange-scale .asRange-scale li:nth-child(2){left:33.3%}.asRange-scale .asRange-scale li:nth-child(3){left:66.6%}.asRange-scale .asRange-scale li:last-child{left:100%}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/css/category-top.css
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
#elementor-panel-categories {
|
2 |
-
display: flex;
|
3 |
-
flex-wrap: wrap;
|
4 |
-
flex-direction: column;
|
5 |
-
}
|
6 |
-
#elementor-panel-category-metform {
|
7 |
-
order: -10;
|
8 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/css/flatpickr.min.css
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:280px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99998}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
|
2 |
-
/*rtl:begin:ignore*/left:0;/*
|
3 |
-
/*rtl:end:ignore*/}/*
|
4 |
-
/*rtl:begin:ignore*/
|
5 |
-
/*
|
6 |
-
/*rtl:end:ignore*/
|
7 |
-
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
|
8 |
-
/*rtl:begin:ignore*/right:0;/*
|
9 |
-
/*rtl:end:ignore*/}/*
|
10 |
-
/*rtl:begin:ignore*/
|
11 |
-
/*
|
12 |
-
/*rtl:end:ignore*/
|
13 |
-
.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto;}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/css/font-awesome.min.css
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
-
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
-
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
|
|
|
|
|
|
|
trunk/public/assets/css/metform-ui.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail a>img,.attr-thumbnail>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:400;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.attr-checkbox input[type=checkbox],.attr-checkbox-inline input[type=checkbox],.attr-radio input[type=radio],.attr-radio-inline input[type=radio]{position:absolute;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-checkbox label,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-radio label,.attr-has-success.attr-radio-inline label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-checkbox label,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-radio label,.attr-has-warning.attr-radio-inline label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-checkbox label,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-radio label,.attr-has-error.attr-radio-inline label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:400;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{-webkit-box-shadow:none;box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-toggle=buttons]>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn input[type=radio],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group .attr-form-control,.attr-input-group-addon,.attr-input-group-btn{display:table-cell}.attr-input-group .attr-form-control:not(:first-child):not(:last-child),.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group .attr-form-control:first-child,.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group .attr-form-control:last-child,.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs>li.attr-active>a,.attr-nav-tabs>li.attr-active>a:focus,.attr-nav-tabs>li.attr-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container .attr-navbar-brand,.attr-navbar>.attr-container-fluid .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail a>img,.attr-thumbnail>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:700}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{opacity:0}.attr-modal-backdrop.attr-in{opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.attr-tooltip.attr-in{opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}
|
|
trunk/public/assets/css/select2.min.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
|
|
trunk/public/assets/css/style.css
DELETED
@@ -1,1045 +0,0 @@
|
|
1 |
-
#elementor .mf-btn-wraper a.metform-btn {
|
2 |
-
background: #337ab7;
|
3 |
-
color: #ffffff;
|
4 |
-
border-radius: 5px;
|
5 |
-
height: 20%;
|
6 |
-
font-size: 16px;
|
7 |
-
padding: 10px;
|
8 |
-
}
|
9 |
-
|
10 |
-
.mf-form-wrapper section,
|
11 |
-
.single-metform-form section {
|
12 |
-
padding-top: 0;
|
13 |
-
padding-bottom: 0;
|
14 |
-
}
|
15 |
-
|
16 |
-
.mf-input-switch-control {
|
17 |
-
position: relative;
|
18 |
-
display: inline-block;
|
19 |
-
}
|
20 |
-
.mf-input-switch-control > input[type="checkbox"] {
|
21 |
-
display: none !important;
|
22 |
-
}
|
23 |
-
|
24 |
-
.mf-input-control {
|
25 |
-
position: absolute;
|
26 |
-
z-index: -1;
|
27 |
-
opacity: 0;
|
28 |
-
}
|
29 |
-
.mf-input-switch .mf-input-control-label::before {
|
30 |
-
content: attr(data-disable);
|
31 |
-
width: 55px;
|
32 |
-
height: 25px;
|
33 |
-
background-color: #EDEDED;
|
34 |
-
left: 0;
|
35 |
-
border-radius: 15px;
|
36 |
-
text-align: right;
|
37 |
-
color: #fff;
|
38 |
-
text-transform: uppercase;
|
39 |
-
font-weight: bold;
|
40 |
-
font-size: 10px;
|
41 |
-
padding: 3px;
|
42 |
-
-webkit-box-sizing: border-box;
|
43 |
-
box-sizing: border-box;
|
44 |
-
padding-right: 10px;
|
45 |
-
-webkit-transition: all .4s;
|
46 |
-
-o-transition: all .4s;
|
47 |
-
transition: all .4s;
|
48 |
-
float: right;
|
49 |
-
line-height: 18px;
|
50 |
-
cursor: pointer;
|
51 |
-
display: flex;
|
52 |
-
align-items: center;
|
53 |
-
justify-content: flex-end;
|
54 |
-
}
|
55 |
-
|
56 |
-
.metform-form-content {
|
57 |
-
position: relative;
|
58 |
-
z-index: 0;
|
59 |
-
}
|
60 |
-
|
61 |
-
/** Response Message **/
|
62 |
-
.mf-response-msg-wrap {
|
63 |
-
overflow: hidden;
|
64 |
-
-webkit-transition: height .45s, opacity .45s, visibility .45s;
|
65 |
-
transition: height .45s, opacity .45s, visibility .45s;
|
66 |
-
|
67 |
-
background-color: #fff;
|
68 |
-
border: 1px solid #101010;
|
69 |
-
border-radius: 5px;
|
70 |
-
}
|
71 |
-
.mf-response-msg-wrap[data-show="0"] {
|
72 |
-
height: 0 !important;
|
73 |
-
opacity: 0;
|
74 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
75 |
-
visibility: hidden;
|
76 |
-
}
|
77 |
-
.mf-response-msg-wrap[data-show="1"] {
|
78 |
-
height: auto;
|
79 |
-
opacity: 1;
|
80 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
81 |
-
visibility: visible;
|
82 |
-
margin-bottom: 20px;;
|
83 |
-
}
|
84 |
-
.mf-response-msg {
|
85 |
-
margin: 0 auto 20px;
|
86 |
-
border-radius: 5px;
|
87 |
-
text-align: center;
|
88 |
-
padding: 15px 34px;
|
89 |
-
display: flex;
|
90 |
-
justify-content: center;
|
91 |
-
flex-direction: column;
|
92 |
-
align-items: center;
|
93 |
-
height: 100%;
|
94 |
-
}
|
95 |
-
.wf-error-res{
|
96 |
-
background-color: #f8d7da;
|
97 |
-
border-color: #f5c6cb;
|
98 |
-
}
|
99 |
-
.wf-error-res .mf-alert-icon,
|
100 |
-
.mf-success-icon {
|
101 |
-
color: #721c24;
|
102 |
-
font-size: 30px;
|
103 |
-
margin-bottom: 5px;
|
104 |
-
}
|
105 |
-
.mf-success-icon {
|
106 |
-
color: #101010;
|
107 |
-
}
|
108 |
-
.mf-response-msg p{
|
109 |
-
font-size: 17px;
|
110 |
-
line-height: 20px;
|
111 |
-
color: #101010;
|
112 |
-
margin-bottom: 0px;
|
113 |
-
}
|
114 |
-
.wf-error-res p{
|
115 |
-
color: #721c24;
|
116 |
-
}
|
117 |
-
.mf-input-control-label::before, .custom-file-label, .custom-select {
|
118 |
-
transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
119 |
-
}
|
120 |
-
.mf-input-control-label::after {
|
121 |
-
position: absolute;
|
122 |
-
top: 2px;
|
123 |
-
left: 2px;
|
124 |
-
display: block;
|
125 |
-
width: 14px;
|
126 |
-
height: 14px;
|
127 |
-
content: "";
|
128 |
-
background-color: #adb5bd;
|
129 |
-
border-radius: 100px;
|
130 |
-
transition: all .4s;
|
131 |
-
cursor: pointer;
|
132 |
-
}
|
133 |
-
|
134 |
-
.mf-input-switch label.mf-input-control-label {
|
135 |
-
display: inline-block;
|
136 |
-
vertical-align: middle;
|
137 |
-
position: relative;
|
138 |
-
margin: 0;
|
139 |
-
}
|
140 |
-
|
141 |
-
.mf-input-control:checked~.mf-input-control-label::before {
|
142 |
-
color: #fff;
|
143 |
-
border-color: #007bff;
|
144 |
-
background-color: #007bff;
|
145 |
-
content: attr(data-enable);
|
146 |
-
text-align: left;
|
147 |
-
padding-left: 10px;
|
148 |
-
justify-content: flex-start;
|
149 |
-
}
|
150 |
-
.mf-input-switch .mf-input-control:checked~.mf-input-control-label::after {
|
151 |
-
background-color: #fff;
|
152 |
-
}
|
153 |
-
.mf-input-wrapper .mf-input-help{
|
154 |
-
display: block;
|
155 |
-
font-size: 0.9em;
|
156 |
-
margin-top: 5px;
|
157 |
-
opacity: 0.7;
|
158 |
-
clear: both;
|
159 |
-
font-weight: 400;
|
160 |
-
}
|
161 |
-
.mf-input-wrapper .mf-input {
|
162 |
-
width: 100%;
|
163 |
-
max-width: 100%;
|
164 |
-
padding: 12px;
|
165 |
-
height: auto;
|
166 |
-
border-width: 1px;
|
167 |
-
border-style: solid;
|
168 |
-
border-color: #eaeaea;
|
169 |
-
border-radius: 2px;
|
170 |
-
background: none;
|
171 |
-
background-color: #fafafa;
|
172 |
-
box-shadow: none;
|
173 |
-
box-sizing: border-box;
|
174 |
-
transition: all .2s linear;
|
175 |
-
font-size: 14px;
|
176 |
-
line-height: 21px;
|
177 |
-
}
|
178 |
-
|
179 |
-
.mf-input-wrapper.mf-field-error .mf-input,
|
180 |
-
.mf-input-wrapper.mf-field-error .mf-input:focus,
|
181 |
-
.mf-input-wrapper .mf-input:focus{
|
182 |
-
outline: none;
|
183 |
-
}
|
184 |
-
.mf-input-wrapper .mf-input:focus{
|
185 |
-
border-color: #4285f478
|
186 |
-
}
|
187 |
-
.mf-input-wrapper .mf-input::placeholder {
|
188 |
-
color: #c9c1c1;
|
189 |
-
font-weight: 400;
|
190 |
-
font-size: 14px;
|
191 |
-
}
|
192 |
-
.mf-input-wrapper .mf-input::-webkit-input-placeholder {
|
193 |
-
color: #c9c1c1;
|
194 |
-
font-weight: 400;
|
195 |
-
font-size: 14px;
|
196 |
-
}
|
197 |
-
.mf-input-wrapper .mf-input:-moz-placeholder {
|
198 |
-
color: #c9c1c1;
|
199 |
-
font-weight: 400;
|
200 |
-
font-size: 14px;
|
201 |
-
}
|
202 |
-
@media (max-width: 767px) {
|
203 |
-
.attr-form-group > .attr-control-label,
|
204 |
-
.attr-form-group > .mf-input,
|
205 |
-
.mf-input-wrapper > .mf-input-label,
|
206 |
-
.mf-input-wrapper > .mf-repeater-field-label,
|
207 |
-
.mf-input-wrapper > .mf-radio,
|
208 |
-
.mf-input-wrapper > .mf-checkbox,
|
209 |
-
.mf-input-wrapper > .mf-signature,
|
210 |
-
.mf-input-wrapper > .mf-image-select,
|
211 |
-
.mf-input-wrapper > .mf-payment-method,
|
212 |
-
.mf-input-wrapper > .mf-captcha-input-wrapper,
|
213 |
-
.mf-input-wrapper > .mf-input:not(.mf-left-parent) {
|
214 |
-
width: 100%;
|
215 |
-
min-width: 100%;
|
216 |
-
}
|
217 |
-
}
|
218 |
-
.mf-input-wrapper .mf-input-label,
|
219 |
-
.mf-repeater-field-label {
|
220 |
-
font-family: "Roboto", Sans-serif;
|
221 |
-
font-weight: 600;
|
222 |
-
font-size: 14px;
|
223 |
-
display: block;
|
224 |
-
color: #000000;
|
225 |
-
font-size: 14px;
|
226 |
-
line-height: 16px;
|
227 |
-
margin-bottom: 5px;
|
228 |
-
}
|
229 |
-
.mf-input-wrapper .mf-input-label,
|
230 |
-
.mf-input-wrapper .mf-input {
|
231 |
-
vertical-align: middle;
|
232 |
-
}
|
233 |
-
|
234 |
-
div.mf-input-wrapper > textarea.mf-input {
|
235 |
-
padding: 15px;
|
236 |
-
}
|
237 |
-
|
238 |
-
.irs--round .irs-min, .irs--round .irs-max{
|
239 |
-
display: none;
|
240 |
-
}
|
241 |
-
.irs--round .irs-handle{
|
242 |
-
cursor: pointer;
|
243 |
-
}
|
244 |
-
.mf-checkbox-option input[type="checkbox"]{
|
245 |
-
display: none;
|
246 |
-
}
|
247 |
-
.mf-checkbox-option:not(.disabled) label {
|
248 |
-
cursor: pointer;
|
249 |
-
}
|
250 |
-
.mf-checkbox-option input[type="checkbox"] + span:before {
|
251 |
-
position: relative;
|
252 |
-
content: "\f0c8";
|
253 |
-
font-family: "Font Awesome 5 Free" !important;
|
254 |
-
font-weight: 500 !important;
|
255 |
-
display: inline-block;
|
256 |
-
border: none;
|
257 |
-
font-size: 18px;
|
258 |
-
color: #5F7BFF;
|
259 |
-
font-weight: normal;
|
260 |
-
width: 25px;
|
261 |
-
line-height: 1;
|
262 |
-
top: 2px;
|
263 |
-
}
|
264 |
-
.mf-checkbox-option input[type="checkbox"] + span{
|
265 |
-
font-weight: 400;
|
266 |
-
font-size: 14px;
|
267 |
-
cursor: pointer;
|
268 |
-
}
|
269 |
-
.mf-checkbox-option input[type="checkbox"]:checked + span:before {
|
270 |
-
content: "\f14a";
|
271 |
-
font-family: "Font Awesome 5 Free" !important;
|
272 |
-
display: inline-block;
|
273 |
-
border: none;
|
274 |
-
font-size: 18px;
|
275 |
-
color: #5F7BFF;
|
276 |
-
}
|
277 |
-
|
278 |
-
.mf-radio-option input[type="radio"]{
|
279 |
-
display: none;
|
280 |
-
}
|
281 |
-
.mf-radio-option,
|
282 |
-
.mf-checkbox-option {
|
283 |
-
padding-right: 15px;
|
284 |
-
}
|
285 |
-
|
286 |
-
.mf-radio-option input[type="radio"] + span:before {
|
287 |
-
content: "\f111";
|
288 |
-
font-family: "Font Awesome 5 Free" !important;
|
289 |
-
font-weight: 500 !important;
|
290 |
-
display: inline-block;
|
291 |
-
border: none;
|
292 |
-
font-size: 18px;
|
293 |
-
color: #5F7BFF;
|
294 |
-
font-weight: normal;
|
295 |
-
width: 25px;
|
296 |
-
line-height: 1;
|
297 |
-
top: 2px;
|
298 |
-
position: relative;
|
299 |
-
}
|
300 |
-
.mf-radio-option input[type="radio"] + span{
|
301 |
-
font-weight: 400;
|
302 |
-
font-size: 14px;
|
303 |
-
cursor: pointer;
|
304 |
-
}
|
305 |
-
.mf-radio-option input[type="radio"]:checked + span:before {
|
306 |
-
content: "\f058";
|
307 |
-
font-family: "Font Awesome 5 Free" !important;
|
308 |
-
display: inline-block;
|
309 |
-
border: none;
|
310 |
-
font-size: 18px;
|
311 |
-
color: #5F7BFF;
|
312 |
-
}
|
313 |
-
|
314 |
-
/* Select Widget */
|
315 |
-
.mf-input-wrapper .mf-input-select {
|
316 |
-
padding: 0 !important;
|
317 |
-
}
|
318 |
-
|
319 |
-
.mf-input-select .mf_select__control {
|
320 |
-
min-height: 0;
|
321 |
-
padding: 12px;
|
322 |
-
border-width: 0;
|
323 |
-
border-radius: 0;
|
324 |
-
box-shadow: none;
|
325 |
-
cursor: pointer;
|
326 |
-
border-radius: none !Important;
|
327 |
-
border: 1px solid #eaeaea;
|
328 |
-
background-color: transparent;
|
329 |
-
}
|
330 |
-
.mf-input-select .mf_select__control:hover{
|
331 |
-
border: 1px solid #eaeaea;
|
332 |
-
}
|
333 |
-
|
334 |
-
.mf-input-select .mf_select__indicator-separator {
|
335 |
-
display: none;
|
336 |
-
}
|
337 |
-
|
338 |
-
.mf-input-select .mf_select__value-container,
|
339 |
-
.mf-input-select .mf_select__value-container input {
|
340 |
-
padding: 0;
|
341 |
-
}
|
342 |
-
|
343 |
-
.mf-input-select .mf_select__placeholder {
|
344 |
-
margin-left: 0;
|
345 |
-
margin-right: 0;
|
346 |
-
color: inherit;
|
347 |
-
}
|
348 |
-
|
349 |
-
.mf-input-select .mf_select__indicators {
|
350 |
-
margin-right: 2px;
|
351 |
-
}
|
352 |
-
.mf-input-multiselect .mf_multiselect__indicators {
|
353 |
-
margin-right: 15px;
|
354 |
-
}
|
355 |
-
.mf-input-select .mf_select__indicator,
|
356 |
-
.mf-input-multiselect .mf_multiselect__dropdown-indicator {
|
357 |
-
padding: 0;
|
358 |
-
border-style: solid;
|
359 |
-
border-width: 5px 4px 0;
|
360 |
-
border-color: currentColor transparent transparent;
|
361 |
-
}
|
362 |
-
.mf-input-select .mf_select__control--menu-is-open .mf_select__indicator,
|
363 |
-
.mf-input-multiselect .mf_multiselect__control--menu-is-open .mf_multiselect__dropdown-indicator {
|
364 |
-
border-width: 0 4px 5px;
|
365 |
-
border-color: transparent transparent currentColor;
|
366 |
-
}
|
367 |
-
.mf-input-select .mf_select__indicator > svg,
|
368 |
-
.mf-input-multiselect .mf_multiselect__dropdown-indicator > svg {
|
369 |
-
display: none;
|
370 |
-
}
|
371 |
-
|
372 |
-
.mf-input-select .mf_select__menu {
|
373 |
-
width: 100%;
|
374 |
-
margin: 0;
|
375 |
-
/* border: 1px solid #eaeaea; */
|
376 |
-
border-radius: 0;
|
377 |
-
box-shadow: none;
|
378 |
-
background-color: #fff;
|
379 |
-
}
|
380 |
-
.mf-input-select .mf_select__menu > div{
|
381 |
-
overflow-X: hidden;
|
382 |
-
}
|
383 |
-
.mf-input-select .mf_select__menu-list {
|
384 |
-
padding: 0;
|
385 |
-
}
|
386 |
-
|
387 |
-
.mf-input-select .mf_select__option {
|
388 |
-
cursor: pointer;
|
389 |
-
border: 1px solid #eaeaea;
|
390 |
-
}
|
391 |
-
.mf-input-select .mf_select__option.mf_select__option--is-selected,
|
392 |
-
.mf-input-select .mf_select__option.mf_select__option--is-focused,
|
393 |
-
.mf-input-select .mf_select__option:hover {
|
394 |
-
background-color: #F0F0F0;
|
395 |
-
}
|
396 |
-
.mf-input-select .mf_select__control.mf_select__control--is-focused{
|
397 |
-
border-color: #4285f478;
|
398 |
-
background-color: #fff;
|
399 |
-
}
|
400 |
-
.mf-input.mf-input-select{
|
401 |
-
border: none !important;
|
402 |
-
background-color: #FAFAFA;
|
403 |
-
}
|
404 |
-
.mf-input-select .mf_select__single-value {
|
405 |
-
position: relative;
|
406 |
-
top: 0;
|
407 |
-
width: 100%;
|
408 |
-
max-width: calc(100% - 22px);
|
409 |
-
margin-left: 0;
|
410 |
-
margin-right: 0;
|
411 |
-
transform: none;
|
412 |
-
}
|
413 |
-
|
414 |
-
.mf-input-wrapper select.mf-input-dropdown {
|
415 |
-
border: none;
|
416 |
-
padding: 15px 25px;
|
417 |
-
font-size: 15px;
|
418 |
-
font-weight: 500 !important;
|
419 |
-
-webkit-appearance: none;
|
420 |
-
-moz-appearance: none;
|
421 |
-
-o-appearance: none;
|
422 |
-
appearance: none;
|
423 |
-
border-width: 1px;
|
424 |
-
border-style: solid;
|
425 |
-
border-color: #eaeaea;
|
426 |
-
}
|
427 |
-
.mf-input-wrapper select.mf-input-dropdown option {
|
428 |
-
background-color: #fff;
|
429 |
-
color: #222222;
|
430 |
-
font-size: 15px;
|
431 |
-
}
|
432 |
-
|
433 |
-
.mf-input-switch-control.mf-input-switch.mf-input {
|
434 |
-
box-shadow: none !important;
|
435 |
-
vertical-align: -webkit-baseline-middle;
|
436 |
-
border: none;
|
437 |
-
padding: 0;
|
438 |
-
}
|
439 |
-
|
440 |
-
.mf-input-wrapper .range-slider {
|
441 |
-
display: inline-block;
|
442 |
-
width: 100%;
|
443 |
-
}
|
444 |
-
.mf-input-wrapper .asRange {
|
445 |
-
width: 100%;
|
446 |
-
background-color: #F1F4F9;
|
447 |
-
}
|
448 |
-
.mf-input-wrapper .asRange .asRange-pointer:before,
|
449 |
-
.mf-input-wrapper .asRange .asRange-pointer .asRange-tip:before,
|
450 |
-
.mf-input-wrapper .asRange .asRange-selected {
|
451 |
-
background-color: #1FB787;
|
452 |
-
}
|
453 |
-
.mf-input-wrapper .asRange .asRange-pointer .asRange-tip {
|
454 |
-
background-color: #1FB787;
|
455 |
-
border: 1px solid #1FB787;
|
456 |
-
top: inherit;
|
457 |
-
bottom: 18px;
|
458 |
-
left: -50%;
|
459 |
-
margin-left: 8px;
|
460 |
-
transform: translateX(-50%);
|
461 |
-
}
|
462 |
-
.metform-btn {
|
463 |
-
background-color: #4285f4;
|
464 |
-
border: none;
|
465 |
-
box-shadow: none;
|
466 |
-
display: inline-block;
|
467 |
-
max-width: 100%;
|
468 |
-
padding: 16px 40px;
|
469 |
-
font-size: 16px;
|
470 |
-
border-radius: 2px;
|
471 |
-
cursor: pointer;
|
472 |
-
box-shadow: 0px 5px 5px 0px rgba(66,133,244,0.3);
|
473 |
-
line-height: 18px;
|
474 |
-
transition: all .4s;
|
475 |
-
font-weight: 500;
|
476 |
-
text-decoration: none;
|
477 |
-
}
|
478 |
-
.metform-btn:hover,
|
479 |
-
.metform-btn:focus {
|
480 |
-
background-color: #4285f4;
|
481 |
-
text-decoration: none;
|
482 |
-
outline: none;
|
483 |
-
}
|
484 |
-
button.metform-btn,
|
485 |
-
button.metform-btn:not(.toggle) {
|
486 |
-
background-color: #4285f4;
|
487 |
-
}
|
488 |
-
button.metform-btn:hover,
|
489 |
-
button.metform-btn:focus {
|
490 |
-
background-color: #4285f4;
|
491 |
-
}
|
492 |
-
@media (max-width: 767px) {
|
493 |
-
.mf-btn--mobile-justify .metform-btn {
|
494 |
-
width: 100%;
|
495 |
-
}
|
496 |
-
}
|
497 |
-
@media (min-width: 768px) and (max-width: 1024px) {
|
498 |
-
.mf-btn--tablet-justify .metform-btn {
|
499 |
-
width: 100%;
|
500 |
-
}
|
501 |
-
}
|
502 |
-
@media (min-width: 1025px) {
|
503 |
-
.mf-btn--justify .metform-btn {
|
504 |
-
width: 100%;
|
505 |
-
}
|
506 |
-
}
|
507 |
-
|
508 |
-
|
509 |
-
/**
|
510 |
-
* Submit Button
|
511 |
-
*/
|
512 |
-
.metform-submit-btn {
|
513 |
-
position: relative;
|
514 |
-
z-index: 0;
|
515 |
-
}
|
516 |
-
|
517 |
-
.metform-submit-btn:before,
|
518 |
-
.metform-submit-btn:after {
|
519 |
-
content: " ";
|
520 |
-
position: absolute;
|
521 |
-
top: 50%;
|
522 |
-
left: 50%;
|
523 |
-
width: 22px;
|
524 |
-
height: 22px;
|
525 |
-
margin: -11px 0 0 -11px;
|
526 |
-
border-style: solid;
|
527 |
-
border-color: currentColor;
|
528 |
-
border-width: 0;
|
529 |
-
border-radius: 50%;
|
530 |
-
opacity: 0;
|
531 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
532 |
-
-webkit-transition: opacity .3s ease;
|
533 |
-
transition: opacity .3s ease;
|
534 |
-
}
|
535 |
-
.metform-submit-btn[disabled]:before,
|
536 |
-
.metform-submit-btn[disabled]:after {
|
537 |
-
opacity: 1;
|
538 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
539 |
-
-webkit-transition-delay: .15s;
|
540 |
-
transition-delay: .15s;
|
541 |
-
}
|
542 |
-
|
543 |
-
.metform-submit-btn:before {
|
544 |
-
border-width: 2px;
|
545 |
-
}
|
546 |
-
.metform-submit-btn[disabled]:before {
|
547 |
-
opacity: 0.25;
|
548 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
|
549 |
-
}
|
550 |
-
|
551 |
-
.metform-submit-btn:after {
|
552 |
-
border-top-width: 2px;
|
553 |
-
-webkit-animation: submitSpin .55s linear infinite;
|
554 |
-
animation: submitSpin .55s linear infinite;
|
555 |
-
}
|
556 |
-
|
557 |
-
.metform-submit-btn > span {
|
558 |
-
-webkit-transition: opacity .15s ease .15s;
|
559 |
-
transition: opacity .15s ease .15s;
|
560 |
-
}
|
561 |
-
.metform-submit-btn[disabled] > span {
|
562 |
-
opacity: 0;
|
563 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
564 |
-
-webkit-transition-delay: 0;
|
565 |
-
transition-delay: 0;
|
566 |
-
}
|
567 |
-
|
568 |
-
@-webkit-keyframes submitSpin {
|
569 |
-
to {
|
570 |
-
-webkit-transform: rotate(360deg);
|
571 |
-
transform: rotate(360deg);
|
572 |
-
}
|
573 |
-
}
|
574 |
-
|
575 |
-
@keyframes submitSpin {
|
576 |
-
to {
|
577 |
-
-webkit-transform: rotate(360deg);
|
578 |
-
transform: rotate(360deg);
|
579 |
-
}
|
580 |
-
}
|
581 |
-
|
582 |
-
|
583 |
-
/** Mobile Widget **/
|
584 |
-
.mf-input-wrapper .iti{
|
585 |
-
display: block;
|
586 |
-
}
|
587 |
-
.mf-input-wrapper > .iti{
|
588 |
-
display: inline-block;
|
589 |
-
width: 100%;
|
590 |
-
}
|
591 |
-
|
592 |
-
.mf-input-wrapper .iti .mf-input{
|
593 |
-
width: 100% !important;
|
594 |
-
}
|
595 |
-
.mf-input-wrapper .iti--separate-dial-code .iti__selected-flag {
|
596 |
-
background-color: #f7f6f6;
|
597 |
-
}
|
598 |
-
.mf-input-wrapper .iti .iti__flag-container{
|
599 |
-
display: none;
|
600 |
-
}
|
601 |
-
.mf-input-wrapper .iti > .iti__flag-container{
|
602 |
-
display: block;
|
603 |
-
}
|
604 |
-
|
605 |
-
/** Date Widget **/
|
606 |
-
.flatpickr-calendar {
|
607 |
-
margin-top: 8px;
|
608 |
-
}
|
609 |
-
|
610 |
-
.flatpickr-month {
|
611 |
-
margin-top: 3px;
|
612 |
-
margin-bottom: 5px;
|
613 |
-
}
|
614 |
-
|
615 |
-
.mf-input-wrapper > .flatpickr-wrapper {
|
616 |
-
display: block;
|
617 |
-
}
|
618 |
-
|
619 |
-
.flatpickr-wrapper select {
|
620 |
-
display: inline-block;
|
621 |
-
}
|
622 |
-
|
623 |
-
.elementor-widget-mf-date.elementor-element-edit-mode .flatpickr-calendar,
|
624 |
-
.elementor-widget-mf-time.elementor-element-edit-mode .flatpickr-calendar {
|
625 |
-
top: 100% !important;
|
626 |
-
left: 0 !important;
|
627 |
-
}
|
628 |
-
|
629 |
-
/** Ratings **/
|
630 |
-
.mf-ratings {
|
631 |
-
display: -webkit-inline-box;
|
632 |
-
display: -ms-inline-flexbox;
|
633 |
-
display: inline-flex;
|
634 |
-
-ms-flex-wrap: wrap;
|
635 |
-
flex-wrap: wrap;
|
636 |
-
cursor: pointer;
|
637 |
-
}
|
638 |
-
.mf-ratings > input {
|
639 |
-
display: none !important;
|
640 |
-
}
|
641 |
-
.mf-ratings > label {
|
642 |
-
cursor: pointer;
|
643 |
-
}
|
644 |
-
.mf-ratings > label:not(:last-child) {
|
645 |
-
padding-right: 5px;
|
646 |
-
}
|
647 |
-
.mf-ratings.is-selected > label,
|
648 |
-
.mf-ratings:not(.is-selected):hover > label {
|
649 |
-
color: #ffdb72;
|
650 |
-
}
|
651 |
-
.mf-ratings:not(.is-selected),
|
652 |
-
.mf-ratings.is-selected:not(:hover) > input:checked + label ~ label,
|
653 |
-
.mf-ratings.is-selected > label:hover ~ label,
|
654 |
-
.mf-ratings:not(.is-selected) > label:hover ~ label {
|
655 |
-
color: #ccc;
|
656 |
-
}
|
657 |
-
|
658 |
-
/** File Upload **/
|
659 |
-
.mf-input-file-upload{
|
660 |
-
width: .1px;
|
661 |
-
height: .1px;
|
662 |
-
opacity: 0;
|
663 |
-
visibility: hidden;
|
664 |
-
position: absolute;
|
665 |
-
}
|
666 |
-
.mf-input-file-upload-label {
|
667 |
-
color: #fff;
|
668 |
-
margin-right: 10px;
|
669 |
-
padding: 5px 15px;
|
670 |
-
display: inline-flex;
|
671 |
-
align-items: center;
|
672 |
-
box-shadow: none;
|
673 |
-
font-size: 16px;
|
674 |
-
font-weight: normal;
|
675 |
-
line-height: 28px;
|
676 |
-
}
|
677 |
-
.mf-input-file-upload-label i{
|
678 |
-
font-size: 18px;
|
679 |
-
}
|
680 |
-
.mf-input-file-upload-label svg {
|
681 |
-
max-width: 18px;
|
682 |
-
height: auto;
|
683 |
-
vertical-align: middle;
|
684 |
-
}
|
685 |
-
.mf-file-name span{
|
686 |
-
display: inline-block;
|
687 |
-
font-size: 15px;
|
688 |
-
}
|
689 |
-
|
690 |
-
.mf-input-wrapper .error {
|
691 |
-
display: block;
|
692 |
-
font-size: 14px;
|
693 |
-
}
|
694 |
-
|
695 |
-
/** Select **/
|
696 |
-
.mf-input-select,
|
697 |
-
.mf-input-multiselect {
|
698 |
-
padding: 0;
|
699 |
-
cursor: pointer;
|
700 |
-
}
|
701 |
-
.mf-input.mf-input-multiselect{
|
702 |
-
padding: 0 !important;
|
703 |
-
box-shadow: none !important;
|
704 |
-
border: none !important;
|
705 |
-
}
|
706 |
-
.mf-input-multiselect .mf_multiselect__control{
|
707 |
-
border: 1px solid #eaeaea;
|
708 |
-
border-radius: 0;
|
709 |
-
background-color: #fafafa;
|
710 |
-
cursor: pointer;
|
711 |
-
}
|
712 |
-
.mf-input-multiselect .mf_multiselect__control:hover,
|
713 |
-
.mf-input-multiselect .mf_multiselect__control:focus{
|
714 |
-
border: 1px solid #eaeaea;
|
715 |
-
outline: none;
|
716 |
-
box-shadow: none;
|
717 |
-
}
|
718 |
-
.mf_multiselect__indicator-separator{
|
719 |
-
display: none;
|
720 |
-
}
|
721 |
-
.mf_multiselect__option.mf_multiselect__option--is-focused,
|
722 |
-
.mf_multiselect__option:hover {
|
723 |
-
background-color: #F0F0F0;
|
724 |
-
}
|
725 |
-
.mf_multiselect__option.mf_multiselect__option--is-focused {
|
726 |
-
background-color: #fff;
|
727 |
-
}
|
728 |
-
.mf_multiselect__option{
|
729 |
-
border: 1px solid #eaeaea;
|
730 |
-
background-color: #fff;
|
731 |
-
padding: 10px 15px;
|
732 |
-
font-size: 15px;
|
733 |
-
}
|
734 |
-
.mf-input-multiselect .mf_multiselect__menu {
|
735 |
-
margin: 0;
|
736 |
-
border-radius: 0;
|
737 |
-
box-shadow: none;
|
738 |
-
cursor: pointer;
|
739 |
-
}
|
740 |
-
.mf-input-multiselect .mf_multiselect__menu-list {
|
741 |
-
padding: 0;
|
742 |
-
}
|
743 |
-
.mf-input-multiselect .mf_multiselect__placeholder {
|
744 |
-
color: #C9C1C1;
|
745 |
-
}
|
746 |
-
.mf_multiselect__menu-notice--no-options {
|
747 |
-
border: 1px solid #eaeaea;
|
748 |
-
color: #C9C1C1;
|
749 |
-
}
|
750 |
-
.mf_multiselect__control .mf_multiselect__value-container {
|
751 |
-
padding: 8px 12px;
|
752 |
-
}
|
753 |
-
.mf_multiselect__control .mf_multiselect__value-container > div:last-child {
|
754 |
-
height: 25px;
|
755 |
-
}
|
756 |
-
.mf-input-multiselect .mf_multiselect__multi-value {
|
757 |
-
margin: 0 5px 0 0;
|
758 |
-
}
|
759 |
-
.mf_multiselect__multi-value__remove {
|
760 |
-
border-top-left-radius: 0 !important;
|
761 |
-
border-bottom-left-radius: 0 !important;
|
762 |
-
}
|
763 |
-
.mf_multiselect__multi-value__label {
|
764 |
-
border-top-right-radius: 0 !important;
|
765 |
-
border-bottom-right-radius: 0 !important;
|
766 |
-
}
|
767 |
-
.mf-input-multiselect .mf_multiselect__input > input {
|
768 |
-
min-height: 0;
|
769 |
-
}
|
770 |
-
|
771 |
-
/** Summary **/
|
772 |
-
.mf-input.mf-input-summary {
|
773 |
-
padding: 0;
|
774 |
-
background-color: #fff;
|
775 |
-
border-width: 0;
|
776 |
-
}
|
777 |
-
|
778 |
-
.mf-entry-data {
|
779 |
-
margin: 0;
|
780 |
-
padding: 0;
|
781 |
-
list-style: none;
|
782 |
-
word-break: break-word;
|
783 |
-
}
|
784 |
-
|
785 |
-
.mf-entry-data > li {
|
786 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
787 |
-
}
|
788 |
-
|
789 |
-
.mf-entry-data > li:not(:last-child) {
|
790 |
-
border-bottom-width: 0;
|
791 |
-
}
|
792 |
-
|
793 |
-
.mf-entry-data > li > strong {
|
794 |
-
display: block;
|
795 |
-
padding: 8px;
|
796 |
-
background-color: #eaf2fa;
|
797 |
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
798 |
-
}
|
799 |
-
|
800 |
-
.mf-entry-data > li > span {
|
801 |
-
display: block;
|
802 |
-
padding: 8px 28px;
|
803 |
-
min-height: 42px;
|
804 |
-
}
|
805 |
-
|
806 |
-
/** Range **/
|
807 |
-
.elementor-widget-mf-range .mf-field-error .error {
|
808 |
-
display: none !important;
|
809 |
-
}
|
810 |
-
|
811 |
-
/** reCAPTCHA **/
|
812 |
-
.g-recaptcha > div {
|
813 |
-
position: relative;
|
814 |
-
z-index: 0;
|
815 |
-
}
|
816 |
-
|
817 |
-
.g-recaptcha > div:before,
|
818 |
-
.g-recaptcha > div:after,
|
819 |
-
.g-recaptcha > div > div:before,
|
820 |
-
.g-recaptcha > div > div:after {
|
821 |
-
content: " ";
|
822 |
-
position: absolute;
|
823 |
-
border-style: solid;
|
824 |
-
border-color: #d3d3d3;
|
825 |
-
border-width: 0;
|
826 |
-
z-index: 0;
|
827 |
-
}
|
828 |
-
|
829 |
-
.g-recaptcha > div:before {
|
830 |
-
top: 0;
|
831 |
-
left: 0;
|
832 |
-
bottom: 2px;
|
833 |
-
border-left-width: 1px;
|
834 |
-
}
|
835 |
-
|
836 |
-
.g-recaptcha > div:after {
|
837 |
-
top: 0;
|
838 |
-
right: 2px;
|
839 |
-
bottom: 2px;
|
840 |
-
border-right-width: 1px;
|
841 |
-
}
|
842 |
-
|
843 |
-
.g-recaptcha > div > div:before {
|
844 |
-
top: 0;
|
845 |
-
left: 0;
|
846 |
-
right: 2px;
|
847 |
-
border-top-width: 1px;
|
848 |
-
}
|
849 |
-
|
850 |
-
.g-recaptcha > div > div:after {
|
851 |
-
left: 0;
|
852 |
-
right: 2px;
|
853 |
-
bottom: 2px;
|
854 |
-
border-bottom-width: 1px;
|
855 |
-
}
|
856 |
-
|
857 |
-
.g-recaptcha + .attr-alert {
|
858 |
-
display: none;
|
859 |
-
}
|
860 |
-
.g-recaptcha:empty + .attr-alert {
|
861 |
-
display: block !important;
|
862 |
-
}
|
863 |
-
|
864 |
-
/** Simple Captcha **/
|
865 |
-
.mf-captcha-input-wrapper.mf-captcha-block > i {
|
866 |
-
padding-left: 25px;
|
867 |
-
}
|
868 |
-
|
869 |
-
img.mf-input.mf-captcha-image{
|
870 |
-
max-width: 200px;
|
871 |
-
border: none;
|
872 |
-
box-sizing: unset;
|
873 |
-
background: transparent;
|
874 |
-
padding: 0;
|
875 |
-
display: inline-block;
|
876 |
-
}
|
877 |
-
|
878 |
-
.mf-captcha-block > img.mf-input.mf-captcha-image {
|
879 |
-
margin: 5px 0 5px 0;
|
880 |
-
}
|
881 |
-
.mf-captcha-inline > img.mf-input.mf-captcha-image {
|
882 |
-
margin: 0 5px 0 0;
|
883 |
-
}
|
884 |
-
.mf-captcha-input-wrapper.mf-captcha-inline {
|
885 |
-
display: inline-flex !important;
|
886 |
-
align-items: center;
|
887 |
-
width: 100%;
|
888 |
-
}
|
889 |
-
|
890 |
-
.mf-captcha-input-wrapper.mf-captcha-inline > i {
|
891 |
-
margin-left: 25px !important;
|
892 |
-
order: 1;
|
893 |
-
}
|
894 |
-
|
895 |
-
.mf-refresh-captcha:before {
|
896 |
-
content: "\f01e";
|
897 |
-
font-family: "Font Awesome 5 Free";
|
898 |
-
font-weight: 700;
|
899 |
-
font-style: normal;
|
900 |
-
cursor: pointer;
|
901 |
-
}
|
902 |
-
|
903 |
-
/** Error Message **/
|
904 |
-
.mf-error-message {
|
905 |
-
display: block;
|
906 |
-
}
|
907 |
-
|
908 |
-
/** Range Slider **/
|
909 |
-
.mf-input-wrapper .input-range__slider {
|
910 |
-
-webkit-appearance: none;
|
911 |
-
-moz-appearance: none;
|
912 |
-
appearance: none;
|
913 |
-
background-color: #fff;
|
914 |
-
border: 4px solid #000000;
|
915 |
-
border-radius: 100%;
|
916 |
-
cursor: pointer;
|
917 |
-
display: block;
|
918 |
-
height: 15px;
|
919 |
-
margin-left: -7.5px;
|
920 |
-
margin-top: -11px;
|
921 |
-
outline: none;
|
922 |
-
position: absolute;
|
923 |
-
top: 50%;
|
924 |
-
-webkit-transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
|
925 |
-
transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
|
926 |
-
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
|
927 |
-
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
|
928 |
-
width: 15px;
|
929 |
-
}
|
930 |
-
.mf-input-wrapper .input-range__slider:active {
|
931 |
-
/* -webkit-transform: scale(1.3);
|
932 |
-
transform: scale(1.3); */
|
933 |
-
}
|
934 |
-
.mf-input-wrapper .input-range__slider:focus {
|
935 |
-
box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
|
936 |
-
}
|
937 |
-
.input-range--disabled .input-range__slider {
|
938 |
-
background: #cccccc;
|
939 |
-
border: 1px solid #cccccc;
|
940 |
-
box-shadow: none;
|
941 |
-
-webkit-transform: none;
|
942 |
-
transform: none;
|
943 |
-
}
|
944 |
-
|
945 |
-
.mf-input-wrapper .input-range__slider-container {
|
946 |
-
-webkit-transition: left 0.3s ease-out;
|
947 |
-
transition: left 0.3s ease-out;
|
948 |
-
}
|
949 |
-
|
950 |
-
.mf-input-wrapper .input-range__label {
|
951 |
-
color: #aaaaaa;
|
952 |
-
font-family: "Helvetica Neue", san-serif;
|
953 |
-
font-size: 0.8rem;
|
954 |
-
-webkit-transform: translateZ(0);
|
955 |
-
transform: translateZ(0);
|
956 |
-
white-space: nowrap;
|
957 |
-
}
|
958 |
-
|
959 |
-
.mf-input-wrapper .input-range__label--min,
|
960 |
-
.mf-input-wrapper .input-range__label--max {
|
961 |
-
bottom: -1.4rem;
|
962 |
-
position: absolute;
|
963 |
-
display: none;
|
964 |
-
}
|
965 |
-
|
966 |
-
.mf-input-wrapper .input-range__label--min {
|
967 |
-
left: 0;
|
968 |
-
}
|
969 |
-
|
970 |
-
.mf-input-wrapper .input-range__label--max {
|
971 |
-
right: 0;
|
972 |
-
}
|
973 |
-
|
974 |
-
.mf-input-wrapper .input-range__label--value {
|
975 |
-
position: absolute;
|
976 |
-
bottom: 20px;
|
977 |
-
}
|
978 |
-
|
979 |
-
.mf-input-wrapper .input-range__label-container {
|
980 |
-
left: -50%;
|
981 |
-
position: relative;
|
982 |
-
background-color: #000;
|
983 |
-
width: 36px;
|
984 |
-
height: 20px;
|
985 |
-
display: inline-block;
|
986 |
-
color: #fff;
|
987 |
-
font-size: 12px;
|
988 |
-
text-align: center;
|
989 |
-
border-radius: 3px;
|
990 |
-
}
|
991 |
-
.mf-input-wrapper .input-range__label-container:before {
|
992 |
-
position: absolute;
|
993 |
-
bottom: -3px;
|
994 |
-
left: 50%;
|
995 |
-
display: inline-block;
|
996 |
-
width: 6px;
|
997 |
-
height: 6px;
|
998 |
-
margin-left: -3px;
|
999 |
-
content: "";
|
1000 |
-
background-color: #000;
|
1001 |
-
-webkit-transform: rotate(-45deg);
|
1002 |
-
-ms-transform: rotate(-45deg);
|
1003 |
-
transform: rotate(-45deg);
|
1004 |
-
}
|
1005 |
-
.mf-input-wrapper .input-range__label--max .input-range__label-container {
|
1006 |
-
left: 50%;
|
1007 |
-
}
|
1008 |
-
|
1009 |
-
.mf-input-wrapper .input-range__track {
|
1010 |
-
background: #F1F4F9;
|
1011 |
-
border-radius: 0.3rem;
|
1012 |
-
cursor: pointer;
|
1013 |
-
display: block;
|
1014 |
-
height: 8px;
|
1015 |
-
position: relative;
|
1016 |
-
-webkit-transition: left 0.3s ease-out, width 0.3s ease-out;
|
1017 |
-
transition: left 0.3s ease-out, width 0.3s ease-out;
|
1018 |
-
}
|
1019 |
-
.mf-input-wrapper .input-range--disabled .input-range__track {
|
1020 |
-
background: #F1F4F9;
|
1021 |
-
}
|
1022 |
-
|
1023 |
-
.mf-input-wrapper .input-range__track--background {
|
1024 |
-
left: 0;
|
1025 |
-
margin-top: -0.15rem;
|
1026 |
-
position: absolute;
|
1027 |
-
right: 0;
|
1028 |
-
top: 50%;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.mf-input-wrapper .input-range__track--active {
|
1032 |
-
background: #000;
|
1033 |
-
}
|
1034 |
-
|
1035 |
-
.mf-input-wrapper .input-range {
|
1036 |
-
height: 1rem;
|
1037 |
-
position: relative;
|
1038 |
-
width: 100%;
|
1039 |
-
}
|
1040 |
-
|
1041 |
-
|
1042 |
-
.mf-condition--hidden {
|
1043 |
-
display: none;
|
1044 |
-
visibility: hidden;
|
1045 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunk/public/assets/fonts/FontAwesome.otf
DELETED
Binary file
|
trunk/public/assets/fonts/fontawesome-webfont.eot
DELETED
Binary file
|
trunk/public/assets/fonts/fontawesome-webfont.svg
DELETED
@@ -1,2671 +0,0 @@
|
|
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>
|
4 |
-
<metadata>
|
5 |
-
Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
|
6 |
-
By ,,,
|
7 |
-
Copyright Dave Gandy 2016. All rights reserved.
|
8 |
-
</metadata>
|
9 |
-
<defs>
|
10 |
-
<font id="FontAwesome" horiz-adv-x="1536" >
|
11 |
-
<font-face
|
12 |
-
font-family="FontAwesome"
|
13 |
-
font-weight="400"
|
14 |
-
font-stretch="normal"
|
15 |
-
units-per-em="1792"
|
16 |
-
panose-1="0 0 0 0 0 0 0 0 0 0"
|
17 |
-
ascent="1536"
|
18 |
-
descent="-256"
|
19 |
-
bbox="-1.02083 -256.962 2304.6 1537.02"
|
20 |
-
underline-thickness="0"
|
21 |
-
underline-position="0"
|
22 |
-
unicode-range="U+0020-F500"
|
23 |
-
/>
|
24 |
-
<missing-glyph horiz-adv-x="896"
|
25 |
-
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
|
26 |
-
<glyph glyph-name=".notdef" horiz-adv-x="896"
|
27 |
-
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
|
28 |
-
<glyph glyph-name=".null" horiz-adv-x="0"
|
29 |
-
/>
|
30 |
-
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="597"
|
31 |
-
/>
|
32 |
-
<glyph glyph-name="space" unicode=" " horiz-adv-x="448"
|
33 |
-
/>
|
34 |
-
<glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="1792"
|
35 |
-
/>
|
36 |
-
<glyph glyph-name="copyright" unicode="©" horiz-adv-x="1792"
|
37 |
-
/>
|
38 |
-
<glyph glyph-name="registered" unicode="®" horiz-adv-x="1792"
|
39 |
-
/>
|
40 |
-
<glyph glyph-name="acute" unicode="´" horiz-adv-x="1792"
|
41 |
-
/>
|
42 |
-
<glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1792"
|
43 |
-
/>
|
44 |
-
<glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1792"
|
45 |
-
/>
|
46 |
-
<glyph glyph-name="trademark" unicode="™" horiz-adv-x="1792"
|
47 |
-
/>
|
48 |
-
<glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1792"
|
49 |
-
/>
|
50 |
-
<glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1792"
|
51 |
-
/>
|
52 |
-
<glyph glyph-name="glass" unicode="" horiz-adv-x="1792"
|
53 |
-
d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
|
54 |
-
<glyph glyph-name="music" unicode=""
|
55 |
-
d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
|
56 |
-
t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
|
57 |
-
<glyph glyph-name="search" unicode="" horiz-adv-x="1664"
|
58 |
-
d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
|
59 |
-
t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
|
60 |
-
<glyph glyph-name="envelope" unicode="" horiz-adv-x="1792"
|
61 |
-
d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
|
62 |
-
t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
|
63 |
-
M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
|
64 |
-
<glyph glyph-name="heart" unicode="" horiz-adv-x="1792"
|
65 |
-
d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
|
66 |
-
q-18 -18 -44 -18z" />
|
67 |
-
<glyph glyph-name="star" unicode="" horiz-adv-x="1664"
|
68 |
-
d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
|
69 |
-
l502 -73q56 -9 56 -46z" />
|
70 |
-
<glyph glyph-name="star_empty" unicode="" horiz-adv-x="1664"
|
71 |
-
d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
|
72 |
-
l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
|
73 |
-
<glyph glyph-name="user" unicode="" horiz-adv-x="1280"
|
74 |
-
d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
|
75 |
-
t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
|
76 |
-
<glyph glyph-name="film" unicode="" horiz-adv-x="1920"
|
77 |
-
d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
|
78 |
-
q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
|
79 |
-
t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
|
80 |
-
q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
|
81 |
-
t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
82 |
-
<glyph glyph-name="th_large" unicode="" horiz-adv-x="1664"
|
83 |
-
d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
|
84 |
-
h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
|
85 |
-
<glyph glyph-name="th" unicode="" horiz-adv-x="1792"
|
86 |
-
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
|
87 |
-
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
|
88 |
-
h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
|
89 |
-
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
|
90 |
-
<glyph glyph-name="th_list" unicode="" horiz-adv-x="1792"
|
91 |
-
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
|
92 |
-
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
|
93 |
-
h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
|
94 |
-
<glyph glyph-name="ok" unicode="" horiz-adv-x="1792"
|
95 |
-
d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
|
96 |
-
<glyph glyph-name="remove" unicode="" horiz-adv-x="1408"
|
97 |
-
d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
|
98 |
-
t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
|
99 |
-
<glyph glyph-name="zoom_in" unicode="" horiz-adv-x="1664"
|
100 |
-
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
|
101 |
-
q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
|
102 |
-
t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
|
103 |
-
<glyph glyph-name="zoom_out" unicode="" horiz-adv-x="1664"
|
104 |
-
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
|
105 |
-
M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
|
106 |
-
" />
|
107 |
-
<glyph glyph-name="off" unicode=""
|
108 |
-
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
|
109 |
-
t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
|
110 |
-
<glyph glyph-name="signal" unicode="" horiz-adv-x="1792"
|
111 |
-
d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
|
112 |
-
v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
|
113 |
-
<glyph glyph-name="cog" unicode=""
|
114 |
-
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
|
115 |
-
q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
|
116 |
-
l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
|
117 |
-
q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
|
118 |
-
<glyph glyph-name="trash" unicode="" horiz-adv-x="1408"
|
119 |
-
d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
|
120 |
-
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
|
121 |
-
q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
|
122 |
-
<glyph glyph-name="home" unicode="" horiz-adv-x="1664"
|
123 |
-
d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
|
124 |
-
l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
|
125 |
-
<glyph glyph-name="file_alt" unicode=""
|
126 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
127 |
-
" />
|
128 |
-
<glyph glyph-name="time" unicode=""
|
129 |
-
d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
|
130 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
131 |
-
<glyph glyph-name="road" unicode="" horiz-adv-x="1920"
|
132 |
-
d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
|
133 |
-
q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
|
134 |
-
<glyph glyph-name="download_alt" unicode="" horiz-adv-x="1664"
|
135 |
-
d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
|
136 |
-
q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
|
137 |
-
<glyph glyph-name="download" unicode=""
|
138 |
-
d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
|
139 |
-
t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
140 |
-
<glyph glyph-name="upload" unicode=""
|
141 |
-
d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
|
142 |
-
t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
143 |
-
<glyph glyph-name="inbox" unicode=""
|
144 |
-
d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
|
145 |
-
q25 -61 25 -123z" />
|
146 |
-
<glyph glyph-name="play_circle" unicode=""
|
147 |
-
d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
|
148 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
149 |
-
<glyph glyph-name="repeat" unicode=""
|
150 |
-
d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
|
151 |
-
l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
|
152 |
-
<glyph glyph-name="refresh" unicode=""
|
153 |
-
d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
|
154 |
-
q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
|
155 |
-
q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
|
156 |
-
<glyph glyph-name="list_alt" unicode="" horiz-adv-x="1792"
|
157 |
-
d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
158 |
-
M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
|
159 |
-
M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
|
160 |
-
t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
|
161 |
-
t47 -113z" />
|
162 |
-
<glyph glyph-name="lock" unicode="" horiz-adv-x="1152"
|
163 |
-
d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
|
164 |
-
<glyph glyph-name="flag" unicode="" horiz-adv-x="1792"
|
165 |
-
d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
|
166 |
-
t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
|
167 |
-
<glyph glyph-name="headphones" unicode="" horiz-adv-x="1664"
|
168 |
-
d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
|
169 |
-
t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
|
170 |
-
t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
|
171 |
-
<glyph glyph-name="volume_off" unicode="" horiz-adv-x="768"
|
172 |
-
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
|
173 |
-
<glyph glyph-name="volume_down" unicode="" horiz-adv-x="1152"
|
174 |
-
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
|
175 |
-
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
|
176 |
-
<glyph glyph-name="volume_up" unicode="" horiz-adv-x="1664"
|
177 |
-
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
|
178 |
-
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
|
179 |
-
t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
|
180 |
-
t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
|
181 |
-
<glyph glyph-name="qrcode" unicode="" horiz-adv-x="1408"
|
182 |
-
d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
|
183 |
-
M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
|
184 |
-
<glyph glyph-name="barcode" unicode="" horiz-adv-x="1792"
|
185 |
-
d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
|
186 |
-
M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
|
187 |
-
<glyph glyph-name="tag" unicode=""
|
188 |
-
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
|
189 |
-
l715 -714q37 -39 37 -91z" />
|
190 |
-
<glyph glyph-name="tags" unicode="" horiz-adv-x="1920"
|
191 |
-
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
|
192 |
-
l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
|
193 |
-
<glyph glyph-name="book" unicode="" horiz-adv-x="1664"
|
194 |
-
d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
|
195 |
-
q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
|
196 |
-
q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
|
197 |
-
t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
|
198 |
-
<glyph glyph-name="bookmark" unicode="" horiz-adv-x="1280"
|
199 |
-
d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
|
200 |
-
<glyph glyph-name="print" unicode="" horiz-adv-x="1664"
|
201 |
-
d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
|
202 |
-
v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
|
203 |
-
<glyph glyph-name="camera" unicode="" horiz-adv-x="1920"
|
204 |
-
d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
|
205 |
-
q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
206 |
-
<glyph glyph-name="font" unicode="" horiz-adv-x="1664"
|
207 |
-
d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
|
208 |
-
q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
|
209 |
-
q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
|
210 |
-
<glyph glyph-name="bold" unicode="" horiz-adv-x="1408"
|
211 |
-
d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
|
212 |
-
q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
|
213 |
-
t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
|
214 |
-
t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
|
215 |
-
<glyph glyph-name="italic" unicode="" horiz-adv-x="1024"
|
216 |
-
d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
|
217 |
-
q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
|
218 |
-
<glyph glyph-name="text_height" unicode="" horiz-adv-x="1792"
|
219 |
-
d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
|
220 |
-
t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
|
221 |
-
q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
|
222 |
-
q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
|
223 |
-
<glyph glyph-name="text_width" unicode=""
|
224 |
-
d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
|
225 |
-
t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
|
226 |
-
q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
|
227 |
-
t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
|
228 |
-
t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
|
229 |
-
<glyph glyph-name="align_left" unicode="" horiz-adv-x="1792"
|
230 |
-
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
|
231 |
-
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
232 |
-
<glyph glyph-name="align_center" unicode="" horiz-adv-x="1792"
|
233 |
-
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
|
234 |
-
h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
|
235 |
-
<glyph glyph-name="align_right" unicode="" horiz-adv-x="1792"
|
236 |
-
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
|
237 |
-
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
238 |
-
<glyph glyph-name="align_justify" unicode="" horiz-adv-x="1792"
|
239 |
-
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
|
240 |
-
t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
|
241 |
-
<glyph glyph-name="list" unicode="" horiz-adv-x="1792"
|
242 |
-
d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
|
243 |
-
t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
|
244 |
-
q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
|
245 |
-
t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
|
246 |
-
q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
|
247 |
-
<glyph glyph-name="indent_left" unicode="" horiz-adv-x="1792"
|
248 |
-
d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
|
249 |
-
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
|
250 |
-
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
|
251 |
-
<glyph glyph-name="indent_right" unicode="" horiz-adv-x="1792"
|
252 |
-
d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
|
253 |
-
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
|
254 |
-
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
|
255 |
-
<glyph glyph-name="facetime_video" unicode="" horiz-adv-x="1792"
|
256 |
-
d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
|
257 |
-
q39 -17 39 -59z" />
|
258 |
-
<glyph glyph-name="picture" unicode="" horiz-adv-x="1920"
|
259 |
-
d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
|
260 |
-
q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
261 |
-
<glyph glyph-name="pencil" unicode=""
|
262 |
-
d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
|
263 |
-
q53 0 91 -38l235 -234q37 -39 37 -91z" />
|
264 |
-
<glyph glyph-name="map_marker" unicode="" horiz-adv-x="1024"
|
265 |
-
d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
|
266 |
-
<glyph glyph-name="adjust" unicode=""
|
267 |
-
d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
268 |
-
<glyph glyph-name="tint" unicode="" horiz-adv-x="1024"
|
269 |
-
d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
|
270 |
-
q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
|
271 |
-
<glyph glyph-name="edit" unicode="" horiz-adv-x="1792"
|
272 |
-
d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
|
273 |
-
q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
|
274 |
-
l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
|
275 |
-
<glyph glyph-name="share" unicode="" horiz-adv-x="1664"
|
276 |
-
d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
|
277 |
-
q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
|
278 |
-
t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
|
279 |
-
<glyph glyph-name="check" unicode="" horiz-adv-x="1664"
|
280 |
-
d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
|
281 |
-
q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
|
282 |
-
q24 -24 24 -57t-24 -57z" />
|
283 |
-
<glyph glyph-name="move" unicode="" horiz-adv-x="1792"
|
284 |
-
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
|
285 |
-
t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
|
286 |
-
<glyph glyph-name="step_backward" unicode="" horiz-adv-x="1024"
|
287 |
-
d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
|
288 |
-
<glyph glyph-name="fast_backward" unicode="" horiz-adv-x="1792"
|
289 |
-
d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
|
290 |
-
q19 19 32 13t13 -32v-710q4 10 13 19z" />
|
291 |
-
<glyph glyph-name="backward" unicode="" horiz-adv-x="1664"
|
292 |
-
d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
|
293 |
-
<glyph glyph-name="play" unicode="" horiz-adv-x="1408"
|
294 |
-
d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
|
295 |
-
<glyph glyph-name="pause" unicode=""
|
296 |
-
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
|
297 |
-
<glyph glyph-name="stop" unicode=""
|
298 |
-
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
299 |
-
<glyph glyph-name="forward" unicode="" horiz-adv-x="1664"
|
300 |
-
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
|
301 |
-
<glyph glyph-name="fast_forward" unicode="" horiz-adv-x="1792"
|
302 |
-
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
|
303 |
-
q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
|
304 |
-
<glyph glyph-name="step_forward" unicode="" horiz-adv-x="1024"
|
305 |
-
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
|
306 |
-
<glyph glyph-name="eject" unicode="" horiz-adv-x="1538"
|
307 |
-
d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
|
308 |
-
<glyph glyph-name="chevron_left" unicode="" horiz-adv-x="1280"
|
309 |
-
d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
|
310 |
-
<glyph glyph-name="chevron_right" unicode="" horiz-adv-x="1280"
|
311 |
-
d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
|
312 |
-
<glyph glyph-name="plus_sign" unicode=""
|
313 |
-
d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
|
314 |
-
t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
315 |
-
<glyph glyph-name="minus_sign" unicode=""
|
316 |
-
d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
|
317 |
-
t103 -385.5z" />
|
318 |
-
<glyph glyph-name="remove_sign" unicode=""
|
319 |
-
d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
|
320 |
-
q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
321 |
-
<glyph glyph-name="ok_sign" unicode=""
|
322 |
-
d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
|
323 |
-
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
324 |
-
<glyph glyph-name="question_sign" unicode=""
|
325 |
-
d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
|
326 |
-
q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
|
327 |
-
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
328 |
-
<glyph glyph-name="info_sign" unicode=""
|
329 |
-
d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
|
330 |
-
t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
331 |
-
<glyph glyph-name="screenshot" unicode=""
|
332 |
-
d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
|
333 |
-
q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
|
334 |
-
q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
|
335 |
-
<glyph glyph-name="remove_circle" unicode=""
|
336 |
-
d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
|
337 |
-
l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
|
338 |
-
t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
339 |
-
<glyph glyph-name="ok_circle" unicode=""
|
340 |
-
d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
|
341 |
-
t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
342 |
-
<glyph glyph-name="ban_circle" unicode=""
|
343 |
-
d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
|
344 |
-
t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
|
345 |
-
<glyph glyph-name="arrow_left" unicode=""
|
346 |
-
d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
|
347 |
-
t32.5 -90.5z" />
|
348 |
-
<glyph glyph-name="arrow_right" unicode=""
|
349 |
-
d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
|
350 |
-
<glyph glyph-name="arrow_up" unicode="" horiz-adv-x="1664"
|
351 |
-
d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
|
352 |
-
q37 -39 37 -91z" />
|
353 |
-
<glyph glyph-name="arrow_down" unicode="" horiz-adv-x="1664"
|
354 |
-
d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
|
355 |
-
<glyph glyph-name="share_alt" unicode="" horiz-adv-x="1792"
|
356 |
-
d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
|
357 |
-
t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
|
358 |
-
<glyph glyph-name="resize_full" unicode=""
|
359 |
-
d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
|
360 |
-
q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
|
361 |
-
<glyph glyph-name="resize_small" unicode=""
|
362 |
-
d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
|
363 |
-
t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
|
364 |
-
<glyph glyph-name="plus" unicode="" horiz-adv-x="1408"
|
365 |
-
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
|
366 |
-
<glyph glyph-name="minus" unicode="" horiz-adv-x="1408"
|
367 |
-
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
|
368 |
-
<glyph glyph-name="asterisk" unicode="" horiz-adv-x="1664"
|
369 |
-
d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
|
370 |
-
q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
|
371 |
-
<glyph glyph-name="exclamation_sign" unicode=""
|
372 |
-
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
|
373 |
-
q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
|
374 |
-
<glyph glyph-name="gift" unicode=""
|
375 |
-
d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
|
376 |
-
q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
|
377 |
-
t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
|
378 |
-
<glyph glyph-name="leaf" unicode="" horiz-adv-x="1792"
|
379 |
-
d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
|
380 |
-
q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
|
381 |
-
t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
|
382 |
-
<glyph glyph-name="fire" unicode="" horiz-adv-x="1408"
|
383 |
-
d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
|
384 |
-
q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
|
385 |
-
<glyph glyph-name="eye_open" unicode="" horiz-adv-x="1792"
|
386 |
-
d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
|
387 |
-
t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
|
388 |
-
<glyph glyph-name="eye_close" unicode="" horiz-adv-x="1792"
|
389 |
-
d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
|
390 |
-
q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
|
391 |
-
q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
|
392 |
-
" />
|
393 |
-
<glyph glyph-name="warning_sign" unicode="" horiz-adv-x="1792"
|
394 |
-
d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
|
395 |
-
q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
|
396 |
-
<glyph glyph-name="plane" unicode="" horiz-adv-x="1408"
|
397 |
-
d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
|
398 |
-
q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
|
399 |
-
<glyph glyph-name="calendar" unicode="" horiz-adv-x="1664"
|
400 |
-
d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
|
401 |
-
M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
|
402 |
-
q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
|
403 |
-
h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
404 |
-
<glyph glyph-name="random" unicode="" horiz-adv-x="1792"
|
405 |
-
d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
|
406 |
-
t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
|
407 |
-
v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
|
408 |
-
t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
|
409 |
-
<glyph glyph-name="comment" unicode="" horiz-adv-x="1792"
|
410 |
-
d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
|
411 |
-
q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
|
412 |
-
<glyph glyph-name="magnet" unicode=""
|
413 |
-
d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
|
414 |
-
q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
|
415 |
-
<glyph glyph-name="chevron_up" unicode="" horiz-adv-x="1792"
|
416 |
-
d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
|
417 |
-
<glyph glyph-name="chevron_down" unicode="" horiz-adv-x="1792"
|
418 |
-
d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
|
419 |
-
<glyph glyph-name="retweet" unicode="" horiz-adv-x="1920"
|
420 |
-
d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
|
421 |
-
zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
|
422 |
-
" />
|
423 |
-
<glyph glyph-name="shopping_cart" unicode="" horiz-adv-x="1664"
|
424 |
-
d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
|
425 |
-
t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
|
426 |
-
<glyph glyph-name="folder_close" unicode="" horiz-adv-x="1664"
|
427 |
-
d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
|
428 |
-
<glyph glyph-name="folder_open" unicode="" horiz-adv-x="1920"
|
429 |
-
d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
|
430 |
-
t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
|
431 |
-
<glyph glyph-name="resize_vertical" unicode="" horiz-adv-x="768"
|
432 |
-
d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
|
433 |
-
<glyph glyph-name="resize_horizontal" unicode="" horiz-adv-x="1792"
|
434 |
-
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
|
435 |
-
<glyph glyph-name="bar_chart" unicode="" horiz-adv-x="2048"
|
436 |
-
d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
|
437 |
-
<glyph glyph-name="twitter_sign" unicode=""
|
438 |
-
d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
|
439 |
-
q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
|
440 |
-
t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
441 |
-
<glyph glyph-name="facebook_sign" unicode=""
|
442 |
-
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
|
443 |
-
q0 119 84.5 203.5t203.5 84.5h960z" />
|
444 |
-
<glyph glyph-name="camera_retro" unicode="" horiz-adv-x="1792"
|
445 |
-
d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
|
446 |
-
t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
|
447 |
-
q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
|
448 |
-
<glyph glyph-name="key" unicode="" horiz-adv-x="1792"
|
449 |
-
d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
|
450 |
-
l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
|
451 |
-
t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
|
452 |
-
<glyph glyph-name="cogs" unicode="" horiz-adv-x="1920"
|
453 |
-
d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
|
454 |
-
t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
|
455 |
-
l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
|
456 |
-
l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
|
457 |
-
q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
|
458 |
-
t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
|
459 |
-
q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
|
460 |
-
q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
|
461 |
-
<glyph glyph-name="comments" unicode="" horiz-adv-x="1792"
|
462 |
-
d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
|
463 |
-
q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
|
464 |
-
q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
|
465 |
-
<glyph glyph-name="thumbs_up_alt" unicode=""
|
466 |
-
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
|
467 |
-
t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
|
468 |
-
q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
|
469 |
-
q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
|
470 |
-
<glyph glyph-name="thumbs_down_alt" unicode=""
|
471 |
-
d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
|
472 |
-
t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
|
473 |
-
M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
|
474 |
-
h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
|
475 |
-
<glyph glyph-name="star_half" unicode="" horiz-adv-x="896"
|
476 |
-
d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
|
477 |
-
<glyph glyph-name="heart_empty" unicode="" horiz-adv-x="1792"
|
478 |
-
d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
|
479 |
-
q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
|
480 |
-
q224 0 351 -124t127 -344z" />
|
481 |
-
<glyph glyph-name="signout" unicode="" horiz-adv-x="1664"
|
482 |
-
d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
|
483 |
-
q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
|
484 |
-
<glyph glyph-name="linkedin_sign" unicode=""
|
485 |
-
d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
|
486 |
-
q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
487 |
-
<glyph glyph-name="pushpin" unicode="" horiz-adv-x="1152"
|
488 |
-
d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
|
489 |
-
t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
|
490 |
-
<glyph glyph-name="external_link" unicode="" horiz-adv-x="1792"
|
491 |
-
d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
|
492 |
-
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
|
493 |
-
<glyph glyph-name="signin" unicode=""
|
494 |
-
d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
|
495 |
-
q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
|
496 |
-
<glyph glyph-name="trophy" unicode="" horiz-adv-x="1664"
|
497 |
-
d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
|
498 |
-
t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
|
499 |
-
q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
|
500 |
-
<glyph glyph-name="github_sign" unicode=""
|
501 |
-
d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
|
502 |
-
q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
|
503 |
-
t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
|
504 |
-
q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
|
505 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
506 |
-
<glyph glyph-name="upload_alt" unicode="" horiz-adv-x="1664"
|
507 |
-
d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
|
508 |
-
t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
|
509 |
-
<glyph glyph-name="lemon" unicode=""
|
510 |
-
d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
|
511 |
-
q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
|
512 |
-
q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
|
513 |
-
q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
|
514 |
-
<glyph glyph-name="phone" unicode="" horiz-adv-x="1408"
|
515 |
-
d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
|
516 |
-
q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
|
517 |
-
t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
|
518 |
-
<glyph glyph-name="check_empty" unicode="" horiz-adv-x="1408"
|
519 |
-
d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
|
520 |
-
q119 0 203.5 -84.5t84.5 -203.5z" />
|
521 |
-
<glyph glyph-name="bookmark_empty" unicode="" horiz-adv-x="1280"
|
522 |
-
d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
|
523 |
-
q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
|
524 |
-
<glyph glyph-name="phone_sign" unicode=""
|
525 |
-
d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
|
526 |
-
t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
|
527 |
-
t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
|
528 |
-
" />
|
529 |
-
<glyph glyph-name="twitter" unicode="" horiz-adv-x="1664"
|
530 |
-
d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
|
531 |
-
q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
|
532 |
-
<glyph glyph-name="facebook" unicode="" horiz-adv-x="1024"
|
533 |
-
d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
|
534 |
-
<glyph glyph-name="github" unicode=""
|
535 |
-
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
|
536 |
-
q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
|
537 |
-
t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
|
538 |
-
q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
|
539 |
-
M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
|
540 |
-
<glyph glyph-name="unlock" unicode="" horiz-adv-x="1664"
|
541 |
-
d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
|
542 |
-
t316.5 -131.5t131.5 -316.5z" />
|
543 |
-
<glyph glyph-name="credit_card" unicode="" horiz-adv-x="1920"
|
544 |
-
d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
|
545 |
-
q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
|
546 |
-
<glyph glyph-name="rss" unicode="" horiz-adv-x="1408"
|
547 |
-
d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
|
548 |
-
t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
|
549 |
-
q187 -186 294 -425.5t120 -501.5z" />
|
550 |
-
<glyph glyph-name="hdd" unicode=""
|
551 |
-
d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
|
552 |
-
h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
|
553 |
-
l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
|
554 |
-
<glyph glyph-name="bullhorn" unicode="" horiz-adv-x="1792"
|
555 |
-
d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
|
556 |
-
t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
|
557 |
-
<glyph glyph-name="bell" unicode="" horiz-adv-x="1792"
|
558 |
-
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
|
559 |
-
M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
|
560 |
-
t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
|
561 |
-
<glyph glyph-name="certificate" unicode=""
|
562 |
-
d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
|
563 |
-
l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
|
564 |
-
l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
|
565 |
-
<glyph glyph-name="hand_right" unicode="" horiz-adv-x="1792"
|
566 |
-
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
|
567 |
-
q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
|
568 |
-
q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
|
569 |
-
t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
|
570 |
-
<glyph glyph-name="hand_left" unicode="" horiz-adv-x="1792"
|
571 |
-
d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
|
572 |
-
t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
|
573 |
-
M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
|
574 |
-
q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
|
575 |
-
<glyph glyph-name="hand_up" unicode=""
|
576 |
-
d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
|
577 |
-
q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
|
578 |
-
t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
|
579 |
-
q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
|
580 |
-
<glyph glyph-name="hand_down" unicode=""
|
581 |
-
d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
|
582 |
-
t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
|
583 |
-
q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
|
584 |
-
q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
|
585 |
-
<glyph glyph-name="circle_arrow_left" unicode=""
|
586 |
-
d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
|
587 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
588 |
-
<glyph glyph-name="circle_arrow_right" unicode=""
|
589 |
-
d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
|
590 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
591 |
-
<glyph glyph-name="circle_arrow_up" unicode=""
|
592 |
-
d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
|
593 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
594 |
-
<glyph glyph-name="circle_arrow_down" unicode=""
|
595 |
-
d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
|
596 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
597 |
-
<glyph glyph-name="globe" unicode=""
|
598 |
-
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
|
599 |
-
q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
|
600 |
-
q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
|
601 |
-
q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
|
602 |
-
t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
|
603 |
-
q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
|
604 |
-
q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
|
605 |
-
t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
|
606 |
-
t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
|
607 |
-
q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
|
608 |
-
q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
|
609 |
-
q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
|
610 |
-
t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
|
611 |
-
q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
|
612 |
-
q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
|
613 |
-
<glyph glyph-name="wrench" unicode="" horiz-adv-x="1664"
|
614 |
-
d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
|
615 |
-
t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
|
616 |
-
<glyph glyph-name="tasks" unicode="" horiz-adv-x="1792"
|
617 |
-
d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
|
618 |
-
t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
|
619 |
-
<glyph glyph-name="filter" unicode="" horiz-adv-x="1408"
|
620 |
-
d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
|
621 |
-
<glyph glyph-name="briefcase" unicode="" horiz-adv-x="1792"
|
622 |
-
d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
|
623 |
-
t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
|
624 |
-
<glyph glyph-name="fullscreen" unicode=""
|
625 |
-
d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
|
626 |
-
l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
|
627 |
-
" />
|
628 |
-
<glyph glyph-name="group" unicode="" horiz-adv-x="1920"
|
629 |
-
d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
|
630 |
-
t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
|
631 |
-
t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
|
632 |
-
t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
|
633 |
-
<glyph glyph-name="link" unicode="" horiz-adv-x="1664"
|
634 |
-
d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
|
635 |
-
l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
|
636 |
-
t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
|
637 |
-
q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
|
638 |
-
<glyph glyph-name="cloud" unicode="" horiz-adv-x="1920"
|
639 |
-
d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
|
640 |
-
" />
|
641 |
-
<glyph glyph-name="beaker" unicode="" horiz-adv-x="1664"
|
642 |
-
d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
|
643 |
-
<glyph glyph-name="cut" unicode="" horiz-adv-x="1792"
|
644 |
-
d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
|
645 |
-
q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
|
646 |
-
q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
|
647 |
-
q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
|
648 |
-
q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
|
649 |
-
<glyph glyph-name="copy" unicode="" horiz-adv-x="1792"
|
650 |
-
d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
|
651 |
-
h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
|
652 |
-
<glyph glyph-name="paper_clip" unicode="" horiz-adv-x="1408"
|
653 |
-
d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
|
654 |
-
l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
|
655 |
-
z" />
|
656 |
-
<glyph glyph-name="save" unicode=""
|
657 |
-
d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
|
658 |
-
h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
|
659 |
-
<glyph glyph-name="sign_blank" unicode=""
|
660 |
-
d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
661 |
-
<glyph glyph-name="reorder" unicode=""
|
662 |
-
d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
|
663 |
-
t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
664 |
-
<glyph glyph-name="ul" unicode="" horiz-adv-x="1792"
|
665 |
-
d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
|
666 |
-
t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
|
667 |
-
M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
|
668 |
-
<glyph glyph-name="ol" unicode="" horiz-adv-x="1792"
|
669 |
-
d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
|
670 |
-
q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
|
671 |
-
t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
|
672 |
-
q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
|
673 |
-
<glyph glyph-name="strikethrough" unicode="" horiz-adv-x="1792"
|
674 |
-
d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
|
675 |
-
l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
|
676 |
-
l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
|
677 |
-
<glyph glyph-name="underline" unicode=""
|
678 |
-
d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
|
679 |
-
q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
|
680 |
-
q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
|
681 |
-
q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
|
682 |
-
<glyph glyph-name="table" unicode="" horiz-adv-x="1664"
|
683 |
-
d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
|
684 |
-
v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
|
685 |
-
q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
|
686 |
-
q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
|
687 |
-
z" />
|
688 |
-
<glyph glyph-name="magic" unicode="" horiz-adv-x="1664"
|
689 |
-
d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
|
690 |
-
l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
|
691 |
-
<glyph glyph-name="truck" unicode="" horiz-adv-x="1792"
|
692 |
-
d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
|
693 |
-
t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
|
694 |
-
t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
|
695 |
-
<glyph glyph-name="pinterest" unicode=""
|
696 |
-
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
|
697 |
-
q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
|
698 |
-
q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
699 |
-
<glyph glyph-name="pinterest_sign" unicode=""
|
700 |
-
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
|
701 |
-
t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
|
702 |
-
t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
|
703 |
-
<glyph glyph-name="google_plus_sign" unicode=""
|
704 |
-
d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
|
705 |
-
h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
706 |
-
<glyph glyph-name="google_plus" unicode="" horiz-adv-x="2304"
|
707 |
-
d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
|
708 |
-
q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
|
709 |
-
<glyph glyph-name="money" unicode="" horiz-adv-x="1920"
|
710 |
-
d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
|
711 |
-
v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
|
712 |
-
<glyph glyph-name="caret_down" unicode="" horiz-adv-x="1024"
|
713 |
-
d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
714 |
-
<glyph glyph-name="caret_up" unicode="" horiz-adv-x="1024"
|
715 |
-
d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
716 |
-
<glyph glyph-name="caret_left" unicode="" horiz-adv-x="640"
|
717 |
-
d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
|
718 |
-
<glyph glyph-name="caret_right" unicode="" horiz-adv-x="640"
|
719 |
-
d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
|
720 |
-
<glyph glyph-name="columns" unicode="" horiz-adv-x="1664"
|
721 |
-
d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
|
722 |
-
<glyph glyph-name="sort" unicode="" horiz-adv-x="1024"
|
723 |
-
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
724 |
-
<glyph glyph-name="sort_down" unicode="" horiz-adv-x="1024"
|
725 |
-
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
726 |
-
<glyph glyph-name="sort_up" unicode="" horiz-adv-x="1024"
|
727 |
-
d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
728 |
-
<glyph glyph-name="envelope_alt" unicode="" horiz-adv-x="1792"
|
729 |
-
d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
|
730 |
-
q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
|
731 |
-
<glyph glyph-name="linkedin" unicode=""
|
732 |
-
d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
|
733 |
-
q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
|
734 |
-
<glyph glyph-name="undo" unicode=""
|
735 |
-
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
|
736 |
-
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
|
737 |
-
<glyph glyph-name="legal" unicode="" horiz-adv-x="1792"
|
738 |
-
d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
|
739 |
-
t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
|
740 |
-
q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
|
741 |
-
q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
|
742 |
-
<glyph glyph-name="dashboard" unicode="" horiz-adv-x="1792"
|
743 |
-
d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
|
744 |
-
t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
|
745 |
-
t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
|
746 |
-
q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
747 |
-
<glyph glyph-name="comment_alt" unicode="" horiz-adv-x="1792"
|
748 |
-
d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
|
749 |
-
q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
|
750 |
-
t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
|
751 |
-
<glyph glyph-name="comments_alt" unicode="" horiz-adv-x="1792"
|
752 |
-
d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
|
753 |
-
t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
|
754 |
-
t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
|
755 |
-
q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
|
756 |
-
<glyph glyph-name="bolt" unicode="" horiz-adv-x="896"
|
757 |
-
d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
|
758 |
-
<glyph glyph-name="sitemap" unicode="" horiz-adv-x="1792"
|
759 |
-
d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
|
760 |
-
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
|
761 |
-
z" />
|
762 |
-
<glyph glyph-name="umbrella" unicode="" horiz-adv-x="1664"
|
763 |
-
d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
|
764 |
-
q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
|
765 |
-
q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
|
766 |
-
<glyph glyph-name="paste" unicode="" horiz-adv-x="1792"
|
767 |
-
d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
|
768 |
-
h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
|
769 |
-
<glyph glyph-name="light_bulb" unicode="" horiz-adv-x="1024"
|
770 |
-
d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
|
771 |
-
q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
|
772 |
-
q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
|
773 |
-
t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
|
774 |
-
<glyph glyph-name="exchange" unicode="" horiz-adv-x="1792"
|
775 |
-
d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
|
776 |
-
q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
|
777 |
-
<glyph glyph-name="cloud_download" unicode="" horiz-adv-x="1920"
|
778 |
-
d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
|
779 |
-
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
|
780 |
-
<glyph glyph-name="cloud_upload" unicode="" horiz-adv-x="1920"
|
781 |
-
d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
|
782 |
-
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
|
783 |
-
<glyph glyph-name="user_md" unicode="" horiz-adv-x="1408"
|
784 |
-
d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
|
785 |
-
t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
|
786 |
-
t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
|
787 |
-
t271.5 -112.5t112.5 -271.5z" />
|
788 |
-
<glyph glyph-name="stethoscope" unicode="" horiz-adv-x="1408"
|
789 |
-
d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
|
790 |
-
t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
|
791 |
-
t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
|
792 |
-
<glyph glyph-name="suitcase" unicode="" horiz-adv-x="1792"
|
793 |
-
d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
|
794 |
-
t66 -158z" />
|
795 |
-
<glyph glyph-name="bell_alt" unicode="" horiz-adv-x="1792"
|
796 |
-
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
|
797 |
-
t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
|
798 |
-
<glyph glyph-name="coffee" unicode="" horiz-adv-x="1920"
|
799 |
-
d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
|
800 |
-
t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
|
801 |
-
<glyph glyph-name="food" unicode="" horiz-adv-x="1408"
|
802 |
-
d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
|
803 |
-
t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
|
804 |
-
<glyph glyph-name="file_text_alt" unicode=""
|
805 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
806 |
-
M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
|
807 |
-
q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
|
808 |
-
<glyph glyph-name="building" unicode="" horiz-adv-x="1408"
|
809 |
-
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
810 |
-
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
811 |
-
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
812 |
-
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
813 |
-
M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
814 |
-
M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
815 |
-
M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
816 |
-
M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
817 |
-
M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
818 |
-
M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
|
819 |
-
<glyph glyph-name="hospital" unicode="" horiz-adv-x="1408"
|
820 |
-
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
821 |
-
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
822 |
-
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
823 |
-
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
824 |
-
M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
|
825 |
-
M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
|
826 |
-
t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
|
827 |
-
v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
|
828 |
-
<glyph glyph-name="ambulance" unicode="" horiz-adv-x="1920"
|
829 |
-
d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
|
830 |
-
t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
|
831 |
-
q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
832 |
-
<glyph glyph-name="medkit" unicode="" horiz-adv-x="1792"
|
833 |
-
d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
|
834 |
-
q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
|
835 |
-
<glyph glyph-name="fighter_jet" unicode="" horiz-adv-x="1920"
|
836 |
-
d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
|
837 |
-
q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
|
838 |
-
<glyph glyph-name="beer" unicode="" horiz-adv-x="1664"
|
839 |
-
d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
|
840 |
-
<glyph glyph-name="h_sign" unicode=""
|
841 |
-
d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
|
842 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
843 |
-
<glyph glyph-name="f0fe" unicode=""
|
844 |
-
d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
|
845 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
846 |
-
<glyph glyph-name="double_angle_left" unicode="" horiz-adv-x="1024"
|
847 |
-
d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
|
848 |
-
t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
|
849 |
-
<glyph glyph-name="double_angle_right" unicode="" horiz-adv-x="1024"
|
850 |
-
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
|
851 |
-
l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
852 |
-
<glyph glyph-name="double_angle_up" unicode="" horiz-adv-x="1152"
|
853 |
-
d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
|
854 |
-
q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
855 |
-
<glyph glyph-name="double_angle_down" unicode="" horiz-adv-x="1152"
|
856 |
-
d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
|
857 |
-
t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
858 |
-
<glyph glyph-name="angle_left" unicode="" horiz-adv-x="640"
|
859 |
-
d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
860 |
-
<glyph glyph-name="angle_right" unicode="" horiz-adv-x="640"
|
861 |
-
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
862 |
-
<glyph glyph-name="angle_up" unicode="" horiz-adv-x="1152"
|
863 |
-
d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
864 |
-
<glyph glyph-name="angle_down" unicode="" horiz-adv-x="1152"
|
865 |
-
d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
866 |
-
<glyph glyph-name="desktop" unicode="" horiz-adv-x="1920"
|
867 |
-
d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
|
868 |
-
t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
869 |
-
<glyph glyph-name="laptop" unicode="" horiz-adv-x="1920"
|
870 |
-
d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
|
871 |
-
M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
|
872 |
-
<glyph glyph-name="tablet" unicode="" horiz-adv-x="1152"
|
873 |
-
d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
|
874 |
-
q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
|
875 |
-
<glyph glyph-name="mobile_phone" unicode="" horiz-adv-x="768"
|
876 |
-
d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
|
877 |
-
q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
|
878 |
-
<glyph glyph-name="circle_blank" unicode=""
|
879 |
-
d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
|
880 |
-
t279.5 -279.5t103 -385.5z" />
|
881 |
-
<glyph glyph-name="quote_left" unicode="" horiz-adv-x="1664"
|
882 |
-
d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
|
883 |
-
M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
|
884 |
-
<glyph glyph-name="quote_right" unicode="" horiz-adv-x="1664"
|
885 |
-
d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
|
886 |
-
v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
|
887 |
-
<glyph glyph-name="spinner" unicode="" horiz-adv-x="1792"
|
888 |
-
d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
|
889 |
-
t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
|
890 |
-
M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
|
891 |
-
q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
|
892 |
-
<glyph glyph-name="circle" unicode=""
|
893 |
-
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
894 |
-
<glyph glyph-name="reply" unicode="" horiz-adv-x="1792"
|
895 |
-
d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
|
896 |
-
l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
|
897 |
-
<glyph glyph-name="github_alt" unicode="" horiz-adv-x="1664"
|
898 |
-
d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
|
899 |
-
q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
|
900 |
-
t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
|
901 |
-
q0 -87 -27 -168q136 -160 136 -398z" />
|
902 |
-
<glyph glyph-name="folder_close_alt" unicode="" horiz-adv-x="1664"
|
903 |
-
d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
|
904 |
-
q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
|
905 |
-
<glyph glyph-name="folder_open_alt" unicode="" horiz-adv-x="1920"
|
906 |
-
d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
|
907 |
-
v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
|
908 |
-
" />
|
909 |
-
<glyph glyph-name="expand_alt" unicode="" horiz-adv-x="1792"
|
910 |
-
/>
|
911 |
-
<glyph glyph-name="collapse_alt" unicode="" horiz-adv-x="1792"
|
912 |
-
/>
|
913 |
-
<glyph glyph-name="smile" unicode=""
|
914 |
-
d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
|
915 |
-
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
|
916 |
-
t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
917 |
-
<glyph glyph-name="frown" unicode=""
|
918 |
-
d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
|
919 |
-
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
|
920 |
-
t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
921 |
-
<glyph glyph-name="meh" unicode=""
|
922 |
-
d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
|
923 |
-
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
|
924 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
925 |
-
<glyph glyph-name="gamepad" unicode="" horiz-adv-x="1920"
|
926 |
-
d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
|
927 |
-
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
|
928 |
-
t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
|
929 |
-
<glyph glyph-name="keyboard" unicode="" horiz-adv-x="1920"
|
930 |
-
d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
|
931 |
-
h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
|
932 |
-
h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
|
933 |
-
q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
|
934 |
-
h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
|
935 |
-
<glyph glyph-name="flag_alt" unicode="" horiz-adv-x="1792"
|
936 |
-
d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
|
937 |
-
h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
|
938 |
-
q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
|
939 |
-
<glyph glyph-name="flag_checkered" unicode="" horiz-adv-x="1792"
|
940 |
-
d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
|
941 |
-
q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
|
942 |
-
q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
|
943 |
-
q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
|
944 |
-
<glyph glyph-name="terminal" unicode="" horiz-adv-x="1664"
|
945 |
-
d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
|
946 |
-
t9 -23z" />
|
947 |
-
<glyph glyph-name="code" unicode="" horiz-adv-x="1920"
|
948 |
-
d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
|
949 |
-
l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
|
950 |
-
<glyph glyph-name="reply_all" unicode="" horiz-adv-x="1792"
|
951 |
-
d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
|
952 |
-
q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
|
953 |
-
<glyph glyph-name="star_half_empty" unicode="" horiz-adv-x="1664"
|
954 |
-
d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
|
955 |
-
l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
|
956 |
-
<glyph glyph-name="location_arrow" unicode="" horiz-adv-x="1408"
|
957 |
-
d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
|
958 |
-
<glyph glyph-name="crop" unicode="" horiz-adv-x="1664"
|
959 |
-
d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
|
960 |
-
v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
|
961 |
-
<glyph glyph-name="code_fork" unicode="" horiz-adv-x="1024"
|
962 |
-
d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
|
963 |
-
q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
|
964 |
-
q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
|
965 |
-
<glyph glyph-name="unlink" unicode="" horiz-adv-x="1664"
|
966 |
-
d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
|
967 |
-
q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
|
968 |
-
l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
|
969 |
-
t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
|
970 |
-
<glyph glyph-name="question" unicode="" horiz-adv-x="1024"
|
971 |
-
d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
|
972 |
-
t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
|
973 |
-
<glyph glyph-name="_279" unicode="" horiz-adv-x="640"
|
974 |
-
d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
|
975 |
-
q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
|
976 |
-
<glyph glyph-name="exclamation" unicode="" horiz-adv-x="640"
|
977 |
-
d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
|
978 |
-
<glyph glyph-name="superscript" unicode=""
|
979 |
-
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
|
980 |
-
M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
|
981 |
-
t-65.5 -51.5t-30.5 -63h232v80h126z" />
|
982 |
-
<glyph glyph-name="subscript" unicode=""
|
983 |
-
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
|
984 |
-
M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
|
985 |
-
h232v80h126z" />
|
986 |
-
<glyph glyph-name="_283" unicode="" horiz-adv-x="1920"
|
987 |
-
d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
|
988 |
-
<glyph glyph-name="puzzle_piece" unicode="" horiz-adv-x="1664"
|
989 |
-
d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
|
990 |
-
t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
|
991 |
-
q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
|
992 |
-
q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
|
993 |
-
<glyph glyph-name="microphone" unicode="" horiz-adv-x="1152"
|
994 |
-
d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
|
995 |
-
t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
|
996 |
-
<glyph glyph-name="microphone_off" unicode="" horiz-adv-x="1408"
|
997 |
-
d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
|
998 |
-
q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
|
999 |
-
t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
|
1000 |
-
<glyph glyph-name="shield" unicode="" horiz-adv-x="1280"
|
1001 |
-
d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
|
1002 |
-
t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
1003 |
-
<glyph glyph-name="calendar_empty" unicode="" horiz-adv-x="1664"
|
1004 |
-
d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
|
1005 |
-
q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
1006 |
-
<glyph glyph-name="fire_extinguisher" unicode="" horiz-adv-x="1408"
|
1007 |
-
d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
|
1008 |
-
q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
|
1009 |
-
q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
|
1010 |
-
<glyph glyph-name="rocket" unicode="" horiz-adv-x="1664"
|
1011 |
-
d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
|
1012 |
-
q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
|
1013 |
-
<glyph glyph-name="maxcdn" unicode="" horiz-adv-x="1792"
|
1014 |
-
d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
|
1015 |
-
<glyph glyph-name="chevron_sign_left" unicode=""
|
1016 |
-
d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
|
1017 |
-
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1018 |
-
<glyph glyph-name="chevron_sign_right" unicode=""
|
1019 |
-
d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
|
1020 |
-
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1021 |
-
<glyph glyph-name="chevron_sign_up" unicode=""
|
1022 |
-
d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
|
1023 |
-
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1024 |
-
<glyph glyph-name="chevron_sign_down" unicode=""
|
1025 |
-
d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
|
1026 |
-
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1027 |
-
<glyph glyph-name="html5" unicode="" horiz-adv-x="1408"
|
1028 |
-
d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
|
1029 |
-
<glyph glyph-name="css3" unicode="" horiz-adv-x="1792"
|
1030 |
-
d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
|
1031 |
-
<glyph glyph-name="anchor" unicode="" horiz-adv-x="1792"
|
1032 |
-
d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
|
1033 |
-
q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
|
1034 |
-
t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
|
1035 |
-
<glyph glyph-name="unlock_alt" unicode="" horiz-adv-x="1152"
|
1036 |
-
d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
|
1037 |
-
v-320h736z" />
|
1038 |
-
<glyph glyph-name="bullseye" unicode=""
|
1039 |
-
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
|
1040 |
-
t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
|
1041 |
-
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1042 |
-
<glyph glyph-name="ellipsis_horizontal" unicode="" horiz-adv-x="1408"
|
1043 |
-
d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
|
1044 |
-
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
|
1045 |
-
<glyph glyph-name="ellipsis_vertical" unicode="" horiz-adv-x="384"
|
1046 |
-
d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
|
1047 |
-
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
|
1048 |
-
<glyph glyph-name="_303" unicode=""
|
1049 |
-
d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
|
1050 |
-
q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
|
1051 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1052 |
-
<glyph glyph-name="play_sign" unicode=""
|
1053 |
-
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
|
1054 |
-
q16 -8 32 -8q17 0 32 9z" />
|
1055 |
-
<glyph glyph-name="ticket" unicode="" horiz-adv-x="1792"
|
1056 |
-
d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
|
1057 |
-
t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
|
1058 |
-
<glyph glyph-name="minus_sign_alt" unicode=""
|
1059 |
-
d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
|
1060 |
-
t84.5 -203.5z" />
|
1061 |
-
<glyph glyph-name="check_minus" unicode="" horiz-adv-x="1408"
|
1062 |
-
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
|
1063 |
-
t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
|
1064 |
-
<glyph glyph-name="level_up" unicode="" horiz-adv-x="1024"
|
1065 |
-
d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
|
1066 |
-
<glyph glyph-name="level_down" unicode="" horiz-adv-x="1024"
|
1067 |
-
d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
|
1068 |
-
<glyph glyph-name="check_sign" unicode=""
|
1069 |
-
d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
|
1070 |
-
t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1071 |
-
<glyph glyph-name="edit_sign" unicode=""
|
1072 |
-
d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
|
1073 |
-
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1074 |
-
<glyph glyph-name="_312" unicode=""
|
1075 |
-
d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
|
1076 |
-
q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1077 |
-
<glyph glyph-name="share_sign" unicode=""
|
1078 |
-
d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
|
1079 |
-
t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1080 |
-
<glyph glyph-name="compass" unicode=""
|
1081 |
-
d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
|
1082 |
-
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1083 |
-
<glyph glyph-name="collapse" unicode=""
|
1084 |
-
d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
|
1085 |
-
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1086 |
-
<glyph glyph-name="collapse_top" unicode=""
|
1087 |
-
d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
|
1088 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1089 |
-
<glyph glyph-name="_317" unicode=""
|
1090 |
-
d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
|
1091 |
-
t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1092 |
-
<glyph glyph-name="eur" unicode="" horiz-adv-x="1024"
|
1093 |
-
d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
|
1094 |
-
t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
|
1095 |
-
l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
|
1096 |
-
<glyph glyph-name="gbp" unicode="" horiz-adv-x="1024"
|
1097 |
-
d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
|
1098 |
-
q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
|
1099 |
-
<glyph glyph-name="usd" unicode="" horiz-adv-x="1024"
|
1100 |
-
d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
|
1101 |
-
t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
|
1102 |
-
t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
|
1103 |
-
t53 -63.5t31.5 -76.5t13 -94z" />
|
1104 |
-
<glyph glyph-name="inr" unicode="" horiz-adv-x="898"
|
1105 |
-
d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
|
1106 |
-
q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
|
1107 |
-
<glyph glyph-name="jpy" unicode="" horiz-adv-x="1027"
|
1108 |
-
d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
|
1109 |
-
l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
|
1110 |
-
<glyph glyph-name="rub" unicode="" horiz-adv-x="1280"
|
1111 |
-
d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
|
1112 |
-
q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
|
1113 |
-
<glyph glyph-name="krw" unicode="" horiz-adv-x="1792"
|
1114 |
-
d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
|
1115 |
-
t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
|
1116 |
-
q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
|
1117 |
-
<glyph glyph-name="btc" unicode="" horiz-adv-x="1280"
|
1118 |
-
d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
|
1119 |
-
l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
|
1120 |
-
t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
|
1121 |
-
<glyph glyph-name="file" unicode=""
|
1122 |
-
d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
|
1123 |
-
<glyph glyph-name="file_text" unicode=""
|
1124 |
-
d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
|
1125 |
-
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
|
1126 |
-
<glyph glyph-name="sort_by_alphabet" unicode="" horiz-adv-x="1664"
|
1127 |
-
d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
|
1128 |
-
v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
|
1129 |
-
l230 -662h70z" />
|
1130 |
-
<glyph glyph-name="_329" unicode="" horiz-adv-x="1664"
|
1131 |
-
d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
|
1132 |
-
v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
|
1133 |
-
v119h121z" />
|
1134 |
-
<glyph glyph-name="sort_by_attributes" unicode="" horiz-adv-x="1792"
|
1135 |
-
d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
|
1136 |
-
q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
|
1137 |
-
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
|
1138 |
-
<glyph glyph-name="sort_by_attributes_alt" unicode="" horiz-adv-x="1792"
|
1139 |
-
d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
|
1140 |
-
q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
|
1141 |
-
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
|
1142 |
-
<glyph glyph-name="sort_by_order" unicode=""
|
1143 |
-
d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
|
1144 |
-
zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
|
1145 |
-
t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
|
1146 |
-
<glyph glyph-name="sort_by_order_alt" unicode=""
|
1147 |
-
d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
|
1148 |
-
t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
|
1149 |
-
q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
|
1150 |
-
<glyph glyph-name="_334" unicode="" horiz-adv-x="1664"
|
1151 |
-
d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
|
1152 |
-
q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
|
1153 |
-
t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
|
1154 |
-
<glyph glyph-name="_335" unicode="" horiz-adv-x="1664"
|
1155 |
-
d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
|
1156 |
-
t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
|
1157 |
-
t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
|
1158 |
-
<glyph glyph-name="youtube_sign" unicode=""
|
1159 |
-
d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
|
1160 |
-
q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
|
1161 |
-
q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
|
1162 |
-
q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
|
1163 |
-
q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
|
1164 |
-
h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1165 |
-
<glyph glyph-name="youtube" unicode=""
|
1166 |
-
d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
|
1167 |
-
q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
|
1168 |
-
q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
|
1169 |
-
q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
|
1170 |
-
q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
|
1171 |
-
<glyph glyph-name="xing" unicode="" horiz-adv-x="1408"
|
1172 |
-
d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
|
1173 |
-
q25 45 64 45h241q22 0 31 -15z" />
|
1174 |
-
<glyph glyph-name="xing_sign" unicode=""
|
1175 |
-
d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
|
1176 |
-
l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1177 |
-
<glyph glyph-name="youtube_play" unicode="" horiz-adv-x="1792"
|
1178 |
-
d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
|
1179 |
-
l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
|
1180 |
-
q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
|
1181 |
-
<glyph glyph-name="dropbox" unicode="" horiz-adv-x="1792"
|
1182 |
-
d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
|
1183 |
-
<glyph glyph-name="stackexchange" unicode=""
|
1184 |
-
d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
|
1185 |
-
<glyph glyph-name="instagram" unicode=""
|
1186 |
-
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
|
1187 |
-
q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
|
1188 |
-
t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
|
1189 |
-
q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
|
1190 |
-
<glyph glyph-name="flickr" unicode=""
|
1191 |
-
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
|
1192 |
-
t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
|
1193 |
-
<glyph glyph-name="adn" unicode=""
|
1194 |
-
d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1195 |
-
<glyph glyph-name="f171" unicode="" horiz-adv-x="1408"
|
1196 |
-
d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
|
1197 |
-
t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
|
1198 |
-
t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
|
1199 |
-
t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
|
1200 |
-
<glyph glyph-name="bitbucket_sign" unicode=""
|
1201 |
-
d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
|
1202 |
-
t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
|
1203 |
-
M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
|
1204 |
-
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1205 |
-
<glyph glyph-name="tumblr" unicode="" horiz-adv-x="1024"
|
1206 |
-
d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
|
1207 |
-
q78 2 134 29z" />
|
1208 |
-
<glyph glyph-name="tumblr_sign" unicode=""
|
1209 |
-
d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
|
1210 |
-
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1211 |
-
<glyph glyph-name="long_arrow_down" unicode="" horiz-adv-x="768"
|
1212 |
-
d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
|
1213 |
-
<glyph glyph-name="long_arrow_up" unicode="" horiz-adv-x="768"
|
1214 |
-
d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
|
1215 |
-
<glyph glyph-name="long_arrow_left" unicode="" horiz-adv-x="1792"
|
1216 |
-
d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
|
1217 |
-
<glyph glyph-name="long_arrow_right" unicode="" horiz-adv-x="1792"
|
1218 |
-
d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
|
1219 |
-
<glyph glyph-name="apple" unicode="" horiz-adv-x="1408"
|
1220 |
-
d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
|
1221 |
-
q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
|
1222 |
-
<glyph glyph-name="windows" unicode="" horiz-adv-x="1664"
|
1223 |
-
d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
|
1224 |
-
<glyph glyph-name="android" unicode="" horiz-adv-x="1408"
|
1225 |
-
d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
|
1226 |
-
t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
|
1227 |
-
h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
|
1228 |
-
<glyph glyph-name="linux" unicode=""
|
1229 |
-
d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
|
1230 |
-
M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
|
1231 |
-
q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
|
1232 |
-
q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
|
1233 |
-
t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
|
1234 |
-
q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
|
1235 |
-
q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
|
1236 |
-
q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
|
1237 |
-
q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
|
1238 |
-
t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
|
1239 |
-
t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
|
1240 |
-
q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
|
1241 |
-
t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
|
1242 |
-
q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
|
1243 |
-
t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
|
1244 |
-
t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
|
1245 |
-
<glyph glyph-name="dribble" unicode=""
|
1246 |
-
d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
|
1247 |
-
t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
|
1248 |
-
q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
|
1249 |
-
t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1250 |
-
<glyph glyph-name="skype" unicode=""
|
1251 |
-
d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
|
1252 |
-
t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
|
1253 |
-
q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
|
1254 |
-
q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
|
1255 |
-
<glyph glyph-name="foursquare" unicode="" horiz-adv-x="1280"
|
1256 |
-
d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
|
1257 |
-
M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
|
1258 |
-
l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
|
1259 |
-
<glyph glyph-name="trello" unicode=""
|
1260 |
-
d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
|
1261 |
-
q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
1262 |
-
<glyph glyph-name="female" unicode="" horiz-adv-x="1280"
|
1263 |
-
d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
|
1264 |
-
q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
|
1265 |
-
<glyph glyph-name="male" unicode="" horiz-adv-x="1024"
|
1266 |
-
d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
|
1267 |
-
M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
|
1268 |
-
<glyph glyph-name="gittip" unicode=""
|
1269 |
-
d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
|
1270 |
-
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1271 |
-
<glyph glyph-name="sun" unicode="" horiz-adv-x="1792"
|
1272 |
-
d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
|
1273 |
-
l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
|
1274 |
-
q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
|
1275 |
-
<glyph glyph-name="_366" unicode=""
|
1276 |
-
d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
|
1277 |
-
t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
|
1278 |
-
<glyph glyph-name="archive" unicode="" horiz-adv-x="1792"
|
1279 |
-
d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
|
1280 |
-
q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
|
1281 |
-
<glyph glyph-name="bug" unicode="" horiz-adv-x="1664"
|
1282 |
-
d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
|
1283 |
-
q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
|
1284 |
-
t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
|
1285 |
-
<glyph glyph-name="vk" unicode="" horiz-adv-x="1920"
|
1286 |
-
d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
|
1287 |
-
t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
|
1288 |
-
q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
|
1289 |
-
q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
|
1290 |
-
q39 5 64 -2.5t31 -16.5z" />
|
1291 |
-
<glyph glyph-name="weibo" unicode="" horiz-adv-x="1792"
|
1292 |
-
d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
|
1293 |
-
q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
|
1294 |
-
q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
|
1295 |
-
q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
|
1296 |
-
M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
|
1297 |
-
<glyph glyph-name="renren" unicode=""
|
1298 |
-
d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
|
1299 |
-
q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
|
1300 |
-
<glyph glyph-name="_372" unicode="" horiz-adv-x="1408"
|
1301 |
-
d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
|
1302 |
-
t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
|
1303 |
-
t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
|
1304 |
-
t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
|
1305 |
-
<glyph glyph-name="stack_exchange" unicode="" horiz-adv-x="1280"
|
1306 |
-
d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
|
1307 |
-
" />
|
1308 |
-
<glyph glyph-name="_374" unicode=""
|
1309 |
-
d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
|
1310 |
-
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1311 |
-
<glyph glyph-name="arrow_circle_alt_left" unicode=""
|
1312 |
-
d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
|
1313 |
-
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1314 |
-
<glyph glyph-name="_376" unicode=""
|
1315 |
-
d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
|
1316 |
-
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1317 |
-
<glyph glyph-name="dot_circle_alt" unicode=""
|
1318 |
-
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
|
1319 |
-
t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1320 |
-
<glyph glyph-name="_378" unicode="" horiz-adv-x="1664"
|
1321 |
-
d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
|
1322 |
-
q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
|
1323 |
-
<glyph glyph-name="vimeo_square" unicode=""
|
1324 |
-
d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
|
1325 |
-
q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1326 |
-
<glyph glyph-name="_380" unicode="" horiz-adv-x="1152"
|
1327 |
-
d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
|
1328 |
-
q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
|
1329 |
-
<glyph glyph-name="plus_square_o" unicode="" horiz-adv-x="1408"
|
1330 |
-
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
|
1331 |
-
q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
|
1332 |
-
<glyph glyph-name="_382" unicode="" horiz-adv-x="2176"
|
1333 |
-
d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
|
1334 |
-
t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
|
1335 |
-
q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
|
1336 |
-
<glyph glyph-name="_383" unicode="" horiz-adv-x="1664"
|
1337 |
-
d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
|
1338 |
-
q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
|
1339 |
-
t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
|
1340 |
-
<glyph glyph-name="_384" unicode=""
|
1341 |
-
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
|
1342 |
-
q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
|
1343 |
-
t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
|
1344 |
-
<glyph glyph-name="_385" unicode="" horiz-adv-x="1792"
|
1345 |
-
d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
|
1346 |
-
t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
|
1347 |
-
t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
|
1348 |
-
t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
|
1349 |
-
t273 -182.5t331.5 -68z" />
|
1350 |
-
<glyph glyph-name="_386" unicode="" horiz-adv-x="1792"
|
1351 |
-
d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
|
1352 |
-
<glyph glyph-name="_387" unicode="" horiz-adv-x="2048"
|
1353 |
-
d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
|
1354 |
-
q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
|
1355 |
-
<glyph glyph-name="_388" unicode="" horiz-adv-x="2304"
|
1356 |
-
d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
|
1357 |
-
q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
|
1358 |
-
<glyph glyph-name="_389" unicode=""
|
1359 |
-
d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
|
1360 |
-
q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
|
1361 |
-
<glyph glyph-name="uniF1A0" unicode=""
|
1362 |
-
d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
|
1363 |
-
t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
|
1364 |
-
<glyph glyph-name="f1a1" unicode="" horiz-adv-x="1792"
|
1365 |
-
d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
|
1366 |
-
t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
|
1367 |
-
q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
|
1368 |
-
t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
1369 |
-
<glyph glyph-name="_392" unicode=""
|
1370 |
-
d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
|
1371 |
-
q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
|
1372 |
-
q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
|
1373 |
-
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1374 |
-
<glyph glyph-name="_393" unicode=""
|
1375 |
-
d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
|
1376 |
-
v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
|
1377 |
-
t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1378 |
-
<glyph glyph-name="f1a4" unicode="" horiz-adv-x="1920"
|
1379 |
-
d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
|
1380 |
-
v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
|
1381 |
-
<glyph glyph-name="_395" unicode=""
|
1382 |
-
d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
|
1383 |
-
t84.5 -203.5z" />
|
1384 |
-
<glyph glyph-name="_396" unicode="" horiz-adv-x="2048"
|
1385 |
-
d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
|
1386 |
-
v-369h123z" />
|
1387 |
-
<glyph glyph-name="_397" unicode=""
|
1388 |
-
d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
|
1389 |
-
v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
|
1390 |
-
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1391 |
-
<glyph glyph-name="_398" unicode="" horiz-adv-x="2038"
|
1392 |
-
d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
|
1393 |
-
q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
|
1394 |
-
q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
|
1395 |
-
q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
|
1396 |
-
t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
|
1397 |
-
q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
|
1398 |
-
t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
|
1399 |
-
t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
|
1400 |
-
<glyph glyph-name="_399" unicode=""
|
1401 |
-
d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
|
1402 |
-
q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
|
1403 |
-
q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
|
1404 |
-
t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
|
1405 |
-
q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
|
1406 |
-
<glyph glyph-name="_400" unicode=""
|
1407 |
-
d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
|
1408 |
-
M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
|
1409 |
-
t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
|
1410 |
-
q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
|
1411 |
-
t135.5 51q85 0 145 -60.5t60 -145.5z" />
|
1412 |
-
<glyph glyph-name="f1ab" unicode=""
|
1413 |
-
d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
|
1414 |
-
q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
|
1415 |
-
q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
|
1416 |
-
M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
|
1417 |
-
q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
|
1418 |
-
q20 0 20 -21v-418z" />
|
1419 |
-
<glyph glyph-name="_402" unicode="" horiz-adv-x="1792"
|
1420 |
-
d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
|
1421 |
-
l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
|
1422 |
-
t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
|
1423 |
-
q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
|
1424 |
-
q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
|
1425 |
-
<glyph glyph-name="_403" unicode=""
|
1426 |
-
d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
|
1427 |
-
t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
|
1428 |
-
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
|
1429 |
-
q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
|
1430 |
-
t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
|
1431 |
-
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
|
1432 |
-
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
|
1433 |
-
t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
|
1434 |
-
<glyph glyph-name="_404" unicode="" horiz-adv-x="1280"
|
1435 |
-
d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
|
1436 |
-
q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
|
1437 |
-
<glyph glyph-name="uniF1B1" unicode="" horiz-adv-x="1664"
|
1438 |
-
d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
|
1439 |
-
q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
|
1440 |
-
q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
|
1441 |
-
t100.5 134t141.5 55.5z" />
|
1442 |
-
<glyph glyph-name="_406" unicode="" horiz-adv-x="768"
|
1443 |
-
d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
|
1444 |
-
<glyph glyph-name="_407" unicode="" horiz-adv-x="1792"
|
1445 |
-
d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
|
1446 |
-
" />
|
1447 |
-
<glyph glyph-name="_408" unicode="" horiz-adv-x="2304"
|
1448 |
-
d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
|
1449 |
-
t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
|
1450 |
-
v-400l434 -186q36 -16 57 -48t21 -70z" />
|
1451 |
-
<glyph glyph-name="_409" unicode="" horiz-adv-x="2048"
|
1452 |
-
d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
|
1453 |
-
q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
|
1454 |
-
q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
|
1455 |
-
<glyph glyph-name="_410" unicode=""
|
1456 |
-
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
|
1457 |
-
t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
|
1458 |
-
t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
|
1459 |
-
<glyph glyph-name="_411" unicode="" horiz-adv-x="1792"
|
1460 |
-
d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
|
1461 |
-
q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
|
1462 |
-
q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
|
1463 |
-
<glyph glyph-name="_412" unicode=""
|
1464 |
-
d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
|
1465 |
-
q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
|
1466 |
-
q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
|
1467 |
-
" />
|
1468 |
-
<glyph glyph-name="_413" unicode="" horiz-adv-x="1792"
|
1469 |
-
d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
|
1470 |
-
l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
|
1471 |
-
t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
|
1472 |
-
q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
|
1473 |
-
<glyph glyph-name="_414" unicode="" horiz-adv-x="2048"
|
1474 |
-
d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
|
1475 |
-
q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
|
1476 |
-
l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
|
1477 |
-
<glyph glyph-name="_415" unicode="" horiz-adv-x="2048"
|
1478 |
-
d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
|
1479 |
-
t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
|
1480 |
-
M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
|
1481 |
-
<glyph glyph-name="_416" unicode=""
|
1482 |
-
d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
|
1483 |
-
q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
|
1484 |
-
<glyph glyph-name="_417" unicode=""
|
1485 |
-
d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
|
1486 |
-
q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
|
1487 |
-
q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1488 |
-
<glyph glyph-name="_418" unicode="" horiz-adv-x="1024"
|
1489 |
-
d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
|
1490 |
-
<glyph glyph-name="_419" unicode="" horiz-adv-x="2304"
|
1491 |
-
d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
|
1492 |
-
q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
|
1493 |
-
q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
|
1494 |
-
l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
|
1495 |
-
q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
|
1496 |
-
q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
|
1497 |
-
q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
|
1498 |
-
<glyph glyph-name="uniF1C0" unicode=""
|
1499 |
-
d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
|
1500 |
-
t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
|
1501 |
-
t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
|
1502 |
-
<glyph glyph-name="uniF1C1" unicode=""
|
1503 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1504 |
-
M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
|
1505 |
-
q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
|
1506 |
-
q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
|
1507 |
-
<glyph glyph-name="_422" unicode=""
|
1508 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1509 |
-
M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
|
1510 |
-
t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
|
1511 |
-
<glyph glyph-name="_423" unicode=""
|
1512 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1513 |
-
M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
|
1514 |
-
h-290v-107h68l189 -272l-194 -283h-68z" />
|
1515 |
-
<glyph glyph-name="_424" unicode=""
|
1516 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1517 |
-
M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
|
1518 |
-
<glyph glyph-name="_425" unicode=""
|
1519 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1520 |
-
M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
|
1521 |
-
<glyph glyph-name="_426" unicode=""
|
1522 |
-
d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
|
1523 |
-
v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
|
1524 |
-
q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
|
1525 |
-
<glyph glyph-name="_427" unicode=""
|
1526 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1527 |
-
M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
|
1528 |
-
q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
|
1529 |
-
<glyph glyph-name="_428" unicode=""
|
1530 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1531 |
-
M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
|
1532 |
-
<glyph glyph-name="_429" unicode=""
|
1533 |
-
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
|
1534 |
-
M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
|
1535 |
-
l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
|
1536 |
-
<glyph glyph-name="_430" unicode=""
|
1537 |
-
d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
|
1538 |
-
q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
|
1539 |
-
<glyph glyph-name="_431" unicode="" horiz-adv-x="1792"
|
1540 |
-
d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
|
1541 |
-
q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
|
1542 |
-
<glyph glyph-name="_432" unicode="" horiz-adv-x="2048"
|
1543 |
-
d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
|
1544 |
-
q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
|
1545 |
-
t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
|
1546 |
-
<glyph glyph-name="_433" unicode="" horiz-adv-x="1792"
|
1547 |
-
d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
|
1548 |
-
q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
|
1549 |
-
t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
|
1550 |
-
<glyph glyph-name="_434" unicode="" horiz-adv-x="1792"
|
1551 |
-
d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
|
1552 |
-
t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
|
1553 |
-
<glyph glyph-name="uniF1D0" unicode="" horiz-adv-x="1792"
|
1554 |
-
d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
|
1555 |
-
t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
|
1556 |
-
t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
|
1557 |
-
q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
|
1558 |
-
<glyph glyph-name="uniF1D1" unicode="" horiz-adv-x="1792"
|
1559 |
-
d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
|
1560 |
-
l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
|
1561 |
-
q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
|
1562 |
-
q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
|
1563 |
-
t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
|
1564 |
-
t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
1565 |
-
<glyph glyph-name="uniF1D2" unicode=""
|
1566 |
-
d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
|
1567 |
-
q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
|
1568 |
-
q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
|
1569 |
-
q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1570 |
-
<glyph glyph-name="_438" unicode="" horiz-adv-x="1792"
|
1571 |
-
d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
|
1572 |
-
q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
|
1573 |
-
q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
|
1574 |
-
v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
|
1575 |
-
<glyph glyph-name="_439" unicode=""
|
1576 |
-
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1577 |
-
<glyph glyph-name="uniF1D5" unicode="" horiz-adv-x="1280"
|
1578 |
-
d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
|
1579 |
-
t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
|
1580 |
-
t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
|
1581 |
-
<glyph glyph-name="uniF1D6" unicode="" horiz-adv-x="1792"
|
1582 |
-
d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
|
1583 |
-
q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
|
1584 |
-
t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
|
1585 |
-
t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
|
1586 |
-
<glyph glyph-name="uniF1D7" unicode="" horiz-adv-x="2048"
|
1587 |
-
d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
|
1588 |
-
q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
|
1589 |
-
q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
|
1590 |
-
q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
|
1591 |
-
<glyph glyph-name="_443" unicode="" horiz-adv-x="1792"
|
1592 |
-
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
|
1593 |
-
<glyph glyph-name="_444" unicode="" horiz-adv-x="1792"
|
1594 |
-
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
|
1595 |
-
l863 639l-478 -797z" />
|
1596 |
-
<glyph glyph-name="_445" unicode=""
|
1597 |
-
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
|
1598 |
-
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
|
1599 |
-
t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
|
1600 |
-
<glyph glyph-name="_446" unicode=""
|
1601 |
-
d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
|
1602 |
-
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1603 |
-
<glyph glyph-name="_447" unicode="" horiz-adv-x="1792"
|
1604 |
-
d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
|
1605 |
-
t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
|
1606 |
-
t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
|
1607 |
-
q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
|
1608 |
-
q0 -26 -12 -48t-36 -22z" />
|
1609 |
-
<glyph glyph-name="_448" unicode="" horiz-adv-x="1280"
|
1610 |
-
d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
|
1611 |
-
q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
|
1612 |
-
<glyph glyph-name="_449" unicode=""
|
1613 |
-
d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
|
1614 |
-
q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
|
1615 |
-
<glyph glyph-name="uniF1E0" unicode=""
|
1616 |
-
d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
|
1617 |
-
t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
|
1618 |
-
<glyph glyph-name="_451" unicode=""
|
1619 |
-
d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
|
1620 |
-
t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1621 |
-
<glyph glyph-name="_452" unicode="" horiz-adv-x="1792"
|
1622 |
-
d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
|
1623 |
-
t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
|
1624 |
-
q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
|
1625 |
-
t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
|
1626 |
-
<glyph glyph-name="_453" unicode="" horiz-adv-x="1792"
|
1627 |
-
d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
|
1628 |
-
l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
|
1629 |
-
<glyph glyph-name="_454" unicode="" horiz-adv-x="1792"
|
1630 |
-
d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
|
1631 |
-
v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
|
1632 |
-
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
|
1633 |
-
zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
|
1634 |
-
t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
|
1635 |
-
<glyph glyph-name="_455" unicode="" horiz-adv-x="1792"
|
1636 |
-
d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
|
1637 |
-
M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
|
1638 |
-
<glyph glyph-name="_456" unicode="" horiz-adv-x="1792"
|
1639 |
-
d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
|
1640 |
-
l401 400q38 37 91 37t90 -37z" />
|
1641 |
-
<glyph glyph-name="_457" unicode="" horiz-adv-x="1792"
|
1642 |
-
d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
|
1643 |
-
t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
|
1644 |
-
M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
|
1645 |
-
t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
|
1646 |
-
<glyph glyph-name="_458" unicode="" horiz-adv-x="1792"
|
1647 |
-
d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
|
1648 |
-
<glyph glyph-name="_459" unicode=""
|
1649 |
-
d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
|
1650 |
-
q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
|
1651 |
-
t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
|
1652 |
-
q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
|
1653 |
-
<glyph glyph-name="_460" unicode="" horiz-adv-x="2048"
|
1654 |
-
d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
|
1655 |
-
t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
|
1656 |
-
<glyph glyph-name="_461" unicode="" horiz-adv-x="2048"
|
1657 |
-
d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
|
1658 |
-
q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
|
1659 |
-
M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
|
1660 |
-
<glyph glyph-name="_462" unicode="" horiz-adv-x="1792"
|
1661 |
-
d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
|
1662 |
-
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
|
1663 |
-
t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
|
1664 |
-
t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
|
1665 |
-
M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
|
1666 |
-
h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
|
1667 |
-
<glyph glyph-name="_463" unicode=""
|
1668 |
-
d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
|
1669 |
-
q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
|
1670 |
-
q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
|
1671 |
-
<glyph glyph-name="_464" unicode="" horiz-adv-x="1792"
|
1672 |
-
d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
|
1673 |
-
q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
|
1674 |
-
<glyph glyph-name="uniF1F0" unicode="" horiz-adv-x="2304"
|
1675 |
-
d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
|
1676 |
-
q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
|
1677 |
-
q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
1678 |
-
<glyph glyph-name="_466" unicode="" horiz-adv-x="2304"
|
1679 |
-
d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
|
1680 |
-
q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
|
1681 |
-
M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
|
1682 |
-
h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
|
1683 |
-
q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
|
1684 |
-
q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
|
1685 |
-
q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
|
1686 |
-
q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
|
1687 |
-
q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
|
1688 |
-
h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
|
1689 |
-
t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
1690 |
-
<glyph glyph-name="_467" unicode="" horiz-adv-x="2304"
|
1691 |
-
d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
|
1692 |
-
q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
|
1693 |
-
v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
|
1694 |
-
q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
|
1695 |
-
t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
|
1696 |
-
<glyph glyph-name="f1f3" unicode="" horiz-adv-x="2304"
|
1697 |
-
d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
|
1698 |
-
M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
|
1699 |
-
l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
|
1700 |
-
v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
|
1701 |
-
q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
|
1702 |
-
q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
|
1703 |
-
t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
|
1704 |
-
h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
|
1705 |
-
t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
|
1706 |
-
<glyph glyph-name="_469" unicode="" horiz-adv-x="2304"
|
1707 |
-
d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
|
1708 |
-
t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
|
1709 |
-
q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
|
1710 |
-
t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
|
1711 |
-
l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
|
1712 |
-
q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
1713 |
-
<glyph glyph-name="_470" unicode="" horiz-adv-x="2304"
|
1714 |
-
d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
|
1715 |
-
q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
|
1716 |
-
q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
|
1717 |
-
q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
|
1718 |
-
q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
1719 |
-
<glyph glyph-name="_471" unicode="" horiz-adv-x="2048"
|
1720 |
-
d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
|
1721 |
-
l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
|
1722 |
-
l418 363q10 8 23.5 7t21.5 -11z" />
|
1723 |
-
<glyph glyph-name="_472" unicode="" horiz-adv-x="2048"
|
1724 |
-
d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
|
1725 |
-
q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
|
1726 |
-
q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
|
1727 |
-
<glyph glyph-name="_473" unicode="" horiz-adv-x="1408"
|
1728 |
-
d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
|
1729 |
-
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
|
1730 |
-
q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
|
1731 |
-
<glyph glyph-name="_474" unicode=""
|
1732 |
-
d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
|
1733 |
-
t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
|
1734 |
-
t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
1735 |
-
<glyph glyph-name="_475" unicode=""
|
1736 |
-
d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
|
1737 |
-
q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
|
1738 |
-
t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
|
1739 |
-
t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
|
1740 |
-
<glyph glyph-name="_476" unicode="" horiz-adv-x="1792"
|
1741 |
-
d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
|
1742 |
-
t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
|
1743 |
-
<glyph glyph-name="f1fc" unicode="" horiz-adv-x="1792"
|
1744 |
-
d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
|
1745 |
-
t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
|
1746 |
-
<glyph glyph-name="_478" unicode="" horiz-adv-x="1792"
|
1747 |
-
d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
|
1748 |
-
t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
|
1749 |
-
t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
|
1750 |
-
h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
|
1751 |
-
q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
|
1752 |
-
<glyph glyph-name="_479" unicode="" horiz-adv-x="2048"
|
1753 |
-
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
|
1754 |
-
<glyph glyph-name="_480" unicode="" horiz-adv-x="1792"
|
1755 |
-
d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
|
1756 |
-
<glyph glyph-name="_481" unicode="" horiz-adv-x="2048"
|
1757 |
-
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
|
1758 |
-
t9 -23z" />
|
1759 |
-
<glyph glyph-name="_482" unicode="" horiz-adv-x="1792"
|
1760 |
-
d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
|
1761 |
-
q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
|
1762 |
-
t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
|
1763 |
-
q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
|
1764 |
-
<glyph glyph-name="_483" unicode=""
|
1765 |
-
d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
|
1766 |
-
q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
|
1767 |
-
q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
|
1768 |
-
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
1769 |
-
<glyph glyph-name="_484" unicode="" horiz-adv-x="2048"
|
1770 |
-
d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
|
1771 |
-
t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
|
1772 |
-
t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
|
1773 |
-
<glyph glyph-name="_485" unicode="" horiz-adv-x="2048"
|
1774 |
-
d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
|
1775 |
-
t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
|
1776 |
-
<glyph glyph-name="_486" unicode="" horiz-adv-x="2304"
|
1777 |
-
d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
|
1778 |
-
q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
|
1779 |
-
q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
|
1780 |
-
q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
|
1781 |
-
<glyph glyph-name="_487" unicode=""
|
1782 |
-
d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
|
1783 |
-
h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
|
1784 |
-
t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
|
1785 |
-
<glyph glyph-name="_488" unicode="" horiz-adv-x="2048"
|
1786 |
-
d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
|
1787 |
-
q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
|
1788 |
-
q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
|
1789 |
-
<glyph glyph-name="_489" unicode="" horiz-adv-x="1280"
|
1790 |
-
d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
|
1791 |
-
t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
|
1792 |
-
t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
|
1793 |
-
q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
|
1794 |
-
q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
|
1795 |
-
t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
|
1796 |
-
<glyph glyph-name="_490" unicode="" horiz-adv-x="2048"
|
1797 |
-
d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
|
1798 |
-
q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
|
1799 |
-
t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
|
1800 |
-
t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
|
1801 |
-
<glyph glyph-name="_491" unicode=""
|
1802 |
-
d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
|
1803 |
-
t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
|
1804 |
-
<glyph glyph-name="_492" unicode=""
|
1805 |
-
d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
|
1806 |
-
q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
|
1807 |
-
q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
|
1808 |
-
<glyph glyph-name="_493" unicode=""
|
1809 |
-
d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
|
1810 |
-
<glyph glyph-name="_494" unicode="" horiz-adv-x="2048"
|
1811 |
-
d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
|
1812 |
-
q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
|
1813 |
-
q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
|
1814 |
-
h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
|
1815 |
-
l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
|
1816 |
-
l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
|
1817 |
-
zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
|
1818 |
-
<glyph glyph-name="f210" unicode=""
|
1819 |
-
d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
|
1820 |
-
<glyph glyph-name="_496" unicode=""
|
1821 |
-
d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
|
1822 |
-
q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
|
1823 |
-
<glyph glyph-name="f212" unicode="" horiz-adv-x="2048"
|
1824 |
-
d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
|
1825 |
-
q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
|
1826 |
-
q209 0 374 -102q172 107 374 102z" />
|
1827 |
-
<glyph glyph-name="_498" unicode="" horiz-adv-x="2048"
|
1828 |
-
d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
|
1829 |
-
q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
|
1830 |
-
q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
|
1831 |
-
<glyph glyph-name="_499" unicode=""
|
1832 |
-
d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
|
1833 |
-
l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
|
1834 |
-
v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
|
1835 |
-
M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
|
1836 |
-
v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
|
1837 |
-
h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
|
1838 |
-
t-43 -34t-16.5 -53.5z" />
|
1839 |
-
<glyph glyph-name="_500" unicode="" horiz-adv-x="2048"
|
1840 |
-
d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
|
1841 |
-
q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
|
1842 |
-
<glyph glyph-name="_501" unicode="" horiz-adv-x="2048"
|
1843 |
-
d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
|
1844 |
-
t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
|
1845 |
-
t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
|
1846 |
-
q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
|
1847 |
-
<glyph glyph-name="_502" unicode="" horiz-adv-x="1664"
|
1848 |
-
d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
|
1849 |
-
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
|
1850 |
-
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
|
1851 |
-
<glyph glyph-name="_503" unicode="" horiz-adv-x="1664"
|
1852 |
-
d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
|
1853 |
-
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
|
1854 |
-
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
|
1855 |
-
<glyph glyph-name="_504" unicode="" horiz-adv-x="2048"
|
1856 |
-
d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
|
1857 |
-
l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
|
1858 |
-
<glyph glyph-name="_505" unicode="" horiz-adv-x="2048"
|
1859 |
-
d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
|
1860 |
-
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
|
1861 |
-
q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
|
1862 |
-
v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
|
1863 |
-
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
|
1864 |
-
<glyph glyph-name="_506" unicode=""
|
1865 |
-
d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
|
1866 |
-
t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
|
1867 |
-
q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
|
1868 |
-
t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
|
1869 |
-
<glyph glyph-name="_507" unicode="" horiz-adv-x="2304"
|
1870 |
-
d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
|
1871 |
-
t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
|
1872 |
-
l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
|
1873 |
-
t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
|
1874 |
-
<glyph glyph-name="_508" unicode=""
|
1875 |
-
d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
|
1876 |
-
q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
|
1877 |
-
q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
|
1878 |
-
t158.5 -65.5t65.5 -158.5z" />
|
1879 |
-
<glyph glyph-name="_509" unicode="" horiz-adv-x="1792"
|
1880 |
-
d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
|
1881 |
-
q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
|
1882 |
-
t127 -344z" />
|
1883 |
-
<glyph glyph-name="venus" unicode="" horiz-adv-x="1280"
|
1884 |
-
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
|
1885 |
-
q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
|
1886 |
-
<glyph glyph-name="_511" unicode=""
|
1887 |
-
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
|
1888 |
-
q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1889 |
-
<glyph glyph-name="_512" unicode="" horiz-adv-x="1280"
|
1890 |
-
d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
|
1891 |
-
t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
|
1892 |
-
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1893 |
-
<glyph glyph-name="_513" unicode=""
|
1894 |
-
d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
|
1895 |
-
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
|
1896 |
-
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1897 |
-
<glyph glyph-name="_514" unicode="" horiz-adv-x="1792"
|
1898 |
-
d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
|
1899 |
-
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
|
1900 |
-
t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
|
1901 |
-
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1902 |
-
<glyph glyph-name="_515" unicode="" horiz-adv-x="1792"
|
1903 |
-
d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
|
1904 |
-
t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
|
1905 |
-
q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
|
1906 |
-
q0 -226 -154 -391q103 -57 218 -57z" />
|
1907 |
-
<glyph glyph-name="_516" unicode="" horiz-adv-x="1920"
|
1908 |
-
d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
|
1909 |
-
q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
|
1910 |
-
t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
|
1911 |
-
q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
|
1912 |
-
<glyph glyph-name="_517" unicode="" horiz-adv-x="2048"
|
1913 |
-
d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
|
1914 |
-
t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
|
1915 |
-
t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
|
1916 |
-
t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
|
1917 |
-
<glyph glyph-name="_518" unicode=""
|
1918 |
-
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
|
1919 |
-
t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
|
1920 |
-
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1921 |
-
<glyph glyph-name="_519" unicode="" horiz-adv-x="1280"
|
1922 |
-
d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
|
1923 |
-
t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
|
1924 |
-
t131.5 -316.5t316.5 -131.5z" />
|
1925 |
-
<glyph glyph-name="_520" unicode="" horiz-adv-x="2048"
|
1926 |
-
d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
|
1927 |
-
t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
|
1928 |
-
t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1929 |
-
<glyph glyph-name="_521" unicode="" horiz-adv-x="1280"
|
1930 |
-
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
|
1931 |
-
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
1932 |
-
<glyph glyph-name="_522" unicode="" horiz-adv-x="1280"
|
1933 |
-
d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
|
1934 |
-
t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
|
1935 |
-
<glyph glyph-name="_523" unicode="" horiz-adv-x="1792"
|
1936 |
-
/>
|
1937 |
-
<glyph glyph-name="_524" unicode="" horiz-adv-x="1792"
|
1938 |
-
/>
|
1939 |
-
<glyph glyph-name="_525" unicode=""
|
1940 |
-
d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
|
1941 |
-
<glyph glyph-name="_526" unicode="" horiz-adv-x="1280"
|
1942 |
-
d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
|
1943 |
-
l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
|
1944 |
-
q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
|
1945 |
-
<glyph glyph-name="_527" unicode=""
|
1946 |
-
d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
|
1947 |
-
t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
|
1948 |
-
l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
|
1949 |
-
<glyph glyph-name="_528" unicode="" horiz-adv-x="1792"
|
1950 |
-
d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
|
1951 |
-
q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
|
1952 |
-
<glyph glyph-name="_529" unicode="" horiz-adv-x="2048"
|
1953 |
-
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
|
1954 |
-
t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
|
1955 |
-
t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
|
1956 |
-
<glyph glyph-name="_530" unicode="" horiz-adv-x="2048"
|
1957 |
-
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
|
1958 |
-
q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
|
1959 |
-
t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
|
1960 |
-
<glyph glyph-name="_531" unicode="" horiz-adv-x="2048"
|
1961 |
-
d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
|
1962 |
-
q-26 0 -45 -19t-19 -45v-384h1152z" />
|
1963 |
-
<glyph glyph-name="_532" unicode=""
|
1964 |
-
d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
|
1965 |
-
<glyph glyph-name="_533" unicode=""
|
1966 |
-
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
|
1967 |
-
t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
|
1968 |
-
<glyph glyph-name="_534" unicode=""
|
1969 |
-
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
|
1970 |
-
t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
|
1971 |
-
<glyph glyph-name="_535" unicode="" horiz-adv-x="1792"
|
1972 |
-
d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
|
1973 |
-
q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
|
1974 |
-
<glyph glyph-name="_536" unicode=""
|
1975 |
-
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
|
1976 |
-
<glyph glyph-name="_537" unicode="" horiz-adv-x="2296"
|
1977 |
-
d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
|
1978 |
-
q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
|
1979 |
-
q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
|
1980 |
-
q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
|
1981 |
-
q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
|
1982 |
-
q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
|
1983 |
-
q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
|
1984 |
-
t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
|
1985 |
-
q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
|
1986 |
-
q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
|
1987 |
-
M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
|
1988 |
-
t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
|
1989 |
-
q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
|
1990 |
-
l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
|
1991 |
-
t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
|
1992 |
-
q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
|
1993 |
-
q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
|
1994 |
-
<glyph glyph-name="_538" unicode="" horiz-adv-x="2304"
|
1995 |
-
d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
|
1996 |
-
t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
|
1997 |
-
t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
|
1998 |
-
<glyph glyph-name="_539" unicode="" horiz-adv-x="1792"
|
1999 |
-
d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
|
2000 |
-
t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
|
2001 |
-
t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
|
2002 |
-
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
|
2003 |
-
q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
|
2004 |
-
<glyph glyph-name="_540" unicode="" horiz-adv-x="2304"
|
2005 |
-
d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
|
2006 |
-
v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
|
2007 |
-
<glyph glyph-name="_541" unicode="" horiz-adv-x="2304"
|
2008 |
-
d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
|
2009 |
-
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
|
2010 |
-
<glyph glyph-name="_542" unicode="" horiz-adv-x="2304"
|
2011 |
-
d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
|
2012 |
-
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
|
2013 |
-
<glyph glyph-name="_543" unicode="" horiz-adv-x="2304"
|
2014 |
-
d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
|
2015 |
-
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
|
2016 |
-
<glyph glyph-name="_544" unicode="" horiz-adv-x="2304"
|
2017 |
-
d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
|
2018 |
-
v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
|
2019 |
-
<glyph glyph-name="_545" unicode="" horiz-adv-x="1280"
|
2020 |
-
d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
|
2021 |
-
<glyph glyph-name="_546" unicode="" horiz-adv-x="1024"
|
2022 |
-
d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
|
2023 |
-
<glyph glyph-name="_547" unicode="" horiz-adv-x="2048"
|
2024 |
-
d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
|
2025 |
-
h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
|
2026 |
-
<glyph glyph-name="_548" unicode="" horiz-adv-x="2304"
|
2027 |
-
d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
|
2028 |
-
v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
|
2029 |
-
<glyph glyph-name="_549" unicode=""
|
2030 |
-
d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
|
2031 |
-
<glyph glyph-name="_550" unicode=""
|
2032 |
-
d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
|
2033 |
-
z" />
|
2034 |
-
<glyph glyph-name="_551" unicode="" horiz-adv-x="2304"
|
2035 |
-
d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
|
2036 |
-
t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
|
2037 |
-
t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
|
2038 |
-
t90 38h2048q52 0 90 -38t38 -90z" />
|
2039 |
-
<glyph glyph-name="_552" unicode="" horiz-adv-x="2304"
|
2040 |
-
d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
|
2041 |
-
t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
|
2042 |
-
M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
2043 |
-
<glyph glyph-name="_553" unicode="" horiz-adv-x="1792"
|
2044 |
-
d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
|
2045 |
-
zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
|
2046 |
-
<glyph glyph-name="_554" unicode="" horiz-adv-x="2304"
|
2047 |
-
d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
|
2048 |
-
q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
|
2049 |
-
t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|