Version Description
Feb. 17, 2019, dev time > 100h
This updates represents a big performance improvement both for the frontend and the customizer.
In the frontend the google-fonts are now loaded more efficiently and the font-display
property was added to @font-face
CSS from the google API responses.
In the customizer the postMessage
module was completely rewritten.
- Fix:
active_callback
argument fordropdown-pages
control. #2055 - Fix:
color
control issues when inside a repeater. #2059 - Fix: Updated Google Fonts
- Fix: No longer enqueueing an empty stylesheet in order to add styles inline.
- Fix: Gutenberg implementation improvements.
- New: Google Fonts are now embedded inside the dynamic-css instead of using the webfont-loader script when not in the customizer.
- New: Google Fonts are now always used locally when possible, the google-CDN is only used as a fallback.
- New: Performance improvement by using
font-display:swap
for google-fonts. - New: Added
kirki_googlefonts_font_display
filter. - New: Added a new
link
section-type. - New: Completely refactored the
postMessage
module. The new implementation is JS-based instead of PHP and is a lot more performant. - New: Added telemetry module. See aristath.github.io/kirki/docs/modules/telemetry for details.
- New: Improved CSS loading method. Styles are now added inline.
- New: Introduced a
kirki_output_inline_styles
filter - can be used by themes that want to enqueue a dynamic stylesheet with a URLexample.com/?action=kirki-styles
instead of the inline method. - Deprecated: Removed the "host locally" option from typography controls. This is now the default behaviour and significantly improves performance. Option is no longer necessary.
- Deprecated: Removed the
Kirki_CSS_To_File
class. - Reprecated: Removed the
Kirki_Modules_Webfonts_Local
class. - Deprecated: Removed the
Kirki_Fonts_Google_Local
class.
Download this release
Release Info
Developer | aristath |
Plugin | Kirki |
Version | 3.0.36 |
Comparing to | |
See all releases |
Code changes from version 3.0.35.3 to 3.0.36
- LICENSE +1 -1
- assets/css/kirki-styles.css +0 -0
- assets/vendor/selectWoo/kirki.css +19 -27
- assets/vendor/selectWoo/kirki.css.map +0 -1
- assets/vendor/selectWoo/kirki.scss +0 -53
- class-kirki-autoload.php +4 -4
- controls/class-kirki-controls.php +2 -2
- controls/css/styles.css +582 -750
- controls/js/script.js +8 -19
- controls/js/script.min.js +1 -1
- controls/php/class-kirki-control-background.php +1 -1
- controls/php/class-kirki-control-base.php +1 -4
- controls/php/class-kirki-control-checkbox.php +1 -1
- controls/php/class-kirki-control-code.php +21 -48
- controls/php/class-kirki-control-color-palette.php +1 -1
- controls/php/class-kirki-control-color.php +1 -1
- controls/php/class-kirki-control-cropped-image.php +1 -1
- controls/php/class-kirki-control-custom.php +1 -1
- controls/php/class-kirki-control-dashicons.php +1 -1
- controls/php/class-kirki-control-date.php +1 -1
- controls/php/class-kirki-control-dimension.php +4 -2
- controls/php/class-kirki-control-dimensions.php +1 -1
- controls/php/class-kirki-control-editor.php +1 -1
- controls/php/class-kirki-control-fontawesome.php +2 -2
- controls/php/class-kirki-control-generic.php +1 -1
- controls/php/class-kirki-control-image.php +1 -1
- controls/php/class-kirki-control-multicheck.php +1 -1
- controls/php/class-kirki-control-multicolor.php +1 -1
- controls/php/class-kirki-control-number.php +1 -1
- controls/php/class-kirki-control-palette.php +1 -1
- controls/php/class-kirki-control-radio-buttonset.php +1 -1
- controls/php/class-kirki-control-radio-image.php +1 -1
- controls/php/class-kirki-control-radio.php +1 -1
- controls/php/class-kirki-control-repeater.php +4 -6
- controls/php/class-kirki-control-select.php +1 -1
- controls/php/class-kirki-control-slider.php +3 -2
- controls/php/class-kirki-control-sortable.php +1 -1
- controls/php/class-kirki-control-switch.php +1 -1
- controls/php/class-kirki-control-toggle.php +1 -1
- controls/php/class-kirki-control-typography.php +1 -7
- controls/php/class-kirki-control-upload.php +1 -1
- controls/php/class-kirki-settings-repeater-setting.php +1 -1
- controls/views/code.php +1 -1
- controls/views/color.php +1 -1
- controls/views/generic.php +1 -1
- controls/views/image.php +1 -1
- controls/views/number.php +1 -1
- controls/views/radio.php +1 -1
- controls/views/select.php +1 -1
- controls/views/textarea.php +1 -1
- core/class-kirki-config.php +2 -2
- core/class-kirki-control.php +2 -2
- core/class-kirki-field.php +2 -2
- core/class-kirki-helper.php +20 -11
- core/class-kirki-init.php +4 -3
- core/class-kirki-l10n.php +3 -3
- core/class-kirki-modules.php +5 -3
- core/class-kirki-panel.php +2 -2
- core/class-kirki-sanitize-values.php +2 -2
- core/class-kirki-section.php +2 -2
- core/class-kirki-sections.php +2 -2
- core/class-kirki-settings.php +7 -4
- core/class-kirki-toolkit.php +2 -2
- core/class-kirki-util.php +4 -4
- core/class-kirki-values.php +2 -2
- core/class-kirki.php +2 -2
- core/dynamic-css.php +0 -39
- deprecated/classes.php +16 -1
- deprecated/deprecated.php +3 -3
- deprecated/filters.php +1 -1
- deprecated/functions.php +1 -1
- field/class-kirki-field-background.php +1 -1
- field/class-kirki-field-checkbox.php +1 -1
- field/class-kirki-field-code.php +1 -1
- field/class-kirki-field-color-alpha.php +1 -1
- field/class-kirki-field-color-palette.php +1 -1
- field/class-kirki-field-color.php +1 -1
- field/class-kirki-field-custom.php +1 -1
- field/class-kirki-field-dashicons.php +1 -1
- field/class-kirki-field-date.php +1 -1
- field/class-kirki-field-dimension.php +1 -1
- field/class-kirki-field-dimensions.php +1 -1
- field/class-kirki-field-dropdown-pages.php +29 -0
- field/class-kirki-field-editor.php +1 -1
- field/class-kirki-field-fontawesome.php +1 -1
- field/class-kirki-field-generic.php +1 -1
- field/class-kirki-field-group-title.php +1 -1
- field/class-kirki-field-image.php +1 -1
- field/class-kirki-field-kirki-generic.php +1 -1
- field/class-kirki-field-link.php +1 -1
- field/class-kirki-field-multicheck.php +1 -1
- field/class-kirki-field-multicolor.php +1 -1
- field/class-kirki-field-number.php +1 -1
- field/class-kirki-field-palette.php +1 -1
- field/class-kirki-field-preset.php +1 -1
- field/class-kirki-field-radio-buttonset.php +1 -1
- field/class-kirki-field-radio-image.php +1 -1
- field/class-kirki-field-radio.php +1 -1
- field/class-kirki-field-repeater.php +5 -3
- field/class-kirki-field-select.php +1 -1
- field/class-kirki-field-select2-multiple.php +1 -1
- field/class-kirki-field-select2.php +1 -1
- field/class-kirki-field-slider.php +1 -1
- field/class-kirki-field-sortable.php +1 -1
- field/class-kirki-field-spacing.php +1 -1
- field/class-kirki-field-switch.php +1 -1
- field/class-kirki-field-text.php +1 -1
- field/class-kirki-field-textarea.php +1 -1
- field/class-kirki-field-toggle.php +1 -1
- field/class-kirki-field-typography.php +3 -3
- field/class-kirki-field-upload.php +1 -1
- field/class-kirki-field-url.php +1 -1
- kirki.php +14 -13
- lib/class-aricolor.php +1 -1
- lib/class-kirki-color.php +3 -3
- modules/css-vars/class-kirki-modules-css-vars.php +2 -2
- modules/css/class-kirki-css-to-file.php +0 -143
- modules/css/class-kirki-modules-css-generator.php +18 -14
- modules/css/class-kirki-modules-css.php +84 -107
- modules/css/class-kirki-output.php +9 -5
- modules/css/field/class-kirki-output-field-background.php +1 -1
- modules/css/field/class-kirki-output-field-dimensions.php +3 -2
- modules/css/field/class-kirki-output-field-image.php +3 -2
- modules/css/field/class-kirki-output-field-multicolor.php +1 -1
- modules/css/field/class-kirki-output-field-typography.php +3 -2
- modules/css/property/class-kirki-output-property-background-image.php +1 -1
- modules/css/property/class-kirki-output-property-background-position.php +1 -1
- modules/css/property/class-kirki-output-property-font-family.php +1 -1
- modules/css/property/class-kirki-output-property.php +1 -1
- modules/custom-sections/class-kirki-modules-custom-sections.php +7 -6
- modules/custom-sections/panels/class-kirki-panels-nested-panel.php +3 -2
- modules/custom-sections/sections.css +9 -13
- modules/custom-sections/sections.js +12 -1
- modules/custom-sections/sections/class-kirki-sections-default-section.php +1 -1
- modules/custom-sections/sections/class-kirki-sections-expanded-section.php +1 -1
- modules/custom-sections/sections/class-kirki-sections-link-section.php +78 -0
- modules/custom-sections/sections/class-kirki-sections-nested-section.php +3 -2
- modules/customizer-branding/class-kirki-modules-customizer-branding.php +2 -2
- modules/customizer-styling/class-kirki-modules-customizer-styling.php +2 -2
- modules/field-dependencies/class-kirki-modules-field-dependencies.php +2 -2
- modules/gutenberg/class-kirki-modules-gutenberg.php +7 -64
- modules/icons/class-kirki-modules-icons.php +2 -2
- modules/loading/class-kirki-modules-loading.php +1 -1
- modules/postmessage/class-kirki-modules-postmessage.php +5 -445
- modules/postmessage/postmessage.js +344 -4
- modules/preset/class-kirki-modules-preset.php +2 -2
- modules/selective-refresh/class-kirki-modules-selective-refresh.php +4 -3
- modules/telemetry/class-kirki-modules-telemetry.php +295 -0
- modules/tooltips/class-kirki-modules-tooltips.php +2 -2
- modules/tooltips/tooltip.css +26 -32
- modules/webfont-loader/class-kirki-modules-webfont-loader.php +2 -2
- modules/webfonts/class-kirki-fonts-google-local.php +0 -483
- modules/webfonts/class-kirki-fonts-google.php +4 -20
- modules/webfonts/class-kirki-fonts-helper.php +164 -0
- modules/webfonts/class-kirki-fonts.php +3 -3
- modules/webfonts/class-kirki-modules-webfonts-async.php +2 -2
- modules/webfonts/class-kirki-modules-webfonts-embed.php +236 -0
- modules/webfonts/class-kirki-modules-webfonts-local.php +0 -105
- modules/webfonts/class-kirki-modules-webfonts.php +11 -27
- modules/webfonts/webfont-files.json +1 -1
- modules/webfonts/webfont-names.json +1 -1
- modules/webfonts/webfonts.json +1 -1
- readme.txt +0 -126
LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
The MIT License (MIT)
|
2 |
|
3 |
-
Copyright (c)
|
4 |
|
5 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
of this software and associated documentation files (the "Software"), to deal
|
1 |
The MIT License (MIT)
|
2 |
|
3 |
+
Copyright (c) 2019 Ari Stathopoulos (@aristath)
|
4 |
|
5 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
of this software and associated documentation files (the "Software"), to deal
|
assets/css/kirki-styles.css
DELETED
File without changes
|
assets/vendor/selectWoo/kirki.css
CHANGED
@@ -1,36 +1,28 @@
|
|
1 |
.select2-dropdown {
|
2 |
border-color: rgba(0, 0, 0, 0.1);
|
3 |
-
border-radius: 0;
|
4 |
-
}
|
5 |
|
6 |
.select2-container {
|
7 |
min-width: 100px;
|
8 |
-
width: 100% !important;
|
9 |
-
|
10 |
-
.select2-container--open .select2-dropdown--
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
}
|
15 |
-
.select2-container--default .select2-
|
16 |
-
|
17 |
-
}
|
18 |
-
.select2-container--default .select2-selection--multiple
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
background-color: rgba(255, 255, 255, 0);
|
24 |
-
background-color: transparent;
|
25 |
-
border: none;
|
26 |
-
border-radius: 0;
|
27 |
-
}
|
28 |
|
29 |
.wp-customizer .select2-container {
|
30 |
-
z-index: 8 !important;
|
31 |
-
|
32 |
-
|
33 |
-
z-index: 999999 !important;
|
34 |
-
}
|
35 |
|
36 |
/*# sourceMappingURL=kirki.css.map */
|
1 |
.select2-dropdown {
|
2 |
border-color: rgba(0, 0, 0, 0.1);
|
3 |
+
border-radius: 0; }
|
|
|
4 |
|
5 |
.select2-container {
|
6 |
min-width: 100px;
|
7 |
+
width: 100% !important; }
|
8 |
+
.select2-container--open .select2-dropdown--above,
|
9 |
+
.select2-container--open .select2-dropdown--below {
|
10 |
+
z-index: 9999999;
|
11 |
+
min-width: 100px; }
|
12 |
+
.select2-container--default .select2-search--dropdown .select2-search__field {
|
13 |
+
border-color: rgba(0, 0, 0, 0.1); }
|
14 |
+
.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
|
15 |
+
border-color: rgba(0, 0, 0, 0.1);
|
16 |
+
border-radius: 0; }
|
17 |
+
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
18 |
+
background-color: rgba(255, 255, 255, 0);
|
19 |
+
background-color: transparent;
|
20 |
+
border: none;
|
21 |
+
border-radius: 0; }
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
.wp-customizer .select2-container {
|
24 |
+
z-index: 8 !important; }
|
25 |
+
.wp-customizer .select2-container.select2-container--open {
|
26 |
+
z-index: 999999 !important; }
|
|
|
|
|
27 |
|
28 |
/*# sourceMappingURL=kirki.css.map */
|
assets/vendor/selectWoo/kirki.css.map
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"version":3,"sourceRoot":"","sources":["kirki.scss"],"names":[],"mappings":"AAAA;EACE;EACA;;;AAGF;EACE;EACA;;AAGE;AAAA;EAEE;EACA;;AAMA;EACE;;AAKF;EAEE;EACA;;AAIA;EACE;EACA;EACA;EACA;;;AAOV;EACE;;AAGE;EAEE","file":"kirki.css"}
|
|
assets/vendor/selectWoo/kirki.scss
DELETED
@@ -1,53 +0,0 @@
|
|
1 |
-
.select2-dropdown {
|
2 |
-
border-color: rgba(0,0,0,.1);
|
3 |
-
border-radius: 0;
|
4 |
-
}
|
5 |
-
|
6 |
-
.select2-container {
|
7 |
-
min-width: 100px;
|
8 |
-
width: 100% !important;
|
9 |
-
|
10 |
-
&--open {
|
11 |
-
.select2-dropdown--above,
|
12 |
-
.select2-dropdown--below {
|
13 |
-
z-index: 9999999;
|
14 |
-
min-width: 100px;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
&--default {
|
19 |
-
.select2-search--dropdown {
|
20 |
-
.select2-search__field {
|
21 |
-
border-color: rgba(0,0,0,.1);
|
22 |
-
}
|
23 |
-
}
|
24 |
-
|
25 |
-
.select2-selection {
|
26 |
-
&--multiple,
|
27 |
-
&--single {
|
28 |
-
border-color: rgba(0,0,0,.1);
|
29 |
-
border-radius: 0;
|
30 |
-
}
|
31 |
-
|
32 |
-
&--multiple {
|
33 |
-
.select2-selection__choice {
|
34 |
-
background-color: rgba(255,255,255,0);
|
35 |
-
background-color: transparent;
|
36 |
-
border: none;
|
37 |
-
border-radius: 0;
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
41 |
-
}
|
42 |
-
}
|
43 |
-
|
44 |
-
.wp-customizer .select2-container {
|
45 |
-
z-index: 8 !important;
|
46 |
-
|
47 |
-
&.select2-container {
|
48 |
-
&--open {
|
49 |
-
// @See https://github.com/aristath/kirki/issues/1418
|
50 |
-
z-index: 999999 !important;
|
51 |
-
}
|
52 |
-
}
|
53 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class-kirki-autoload.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
@@ -55,7 +55,7 @@ class Kirki_Autoload {
|
|
55 |
|
56 |
// Check if we've got it cached and ready.
|
57 |
if ( isset( $this->cached_paths[ $class_name ] ) && file_exists( $this->cached_paths[ $class_name ] ) ) {
|
58 |
-
include_once $this->cached_paths[ $class_name ];
|
59 |
return;
|
60 |
}
|
61 |
|
@@ -65,7 +65,7 @@ class Kirki_Autoload {
|
|
65 |
$path = wp_normalize_path( $path );
|
66 |
if ( file_exists( $path ) ) {
|
67 |
$this->cached_paths[ $class_name ] = $path;
|
68 |
-
include_once $path;
|
69 |
return;
|
70 |
}
|
71 |
}
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
55 |
|
56 |
// Check if we've got it cached and ready.
|
57 |
if ( isset( $this->cached_paths[ $class_name ] ) && file_exists( $this->cached_paths[ $class_name ] ) ) {
|
58 |
+
include_once $this->cached_paths[ $class_name ]; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
59 |
return;
|
60 |
}
|
61 |
|
65 |
$path = wp_normalize_path( $path );
|
66 |
if ( file_exists( $path ) ) {
|
67 |
$this->cached_paths[ $class_name ] = $path;
|
68 |
+
include_once $path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
69 |
return;
|
70 |
}
|
71 |
}
|
controls/class-kirki-controls.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
@@ -64,7 +64,7 @@ class Kirki_Controls {
|
|
64 |
foreach ( $this->templates as $template ) {
|
65 |
if ( file_exists( $this->views_path . $template . '.php' ) ) {
|
66 |
echo '<script type="text/html" id="tmpl-kirki-input-' . esc_attr( $template ) . '">';
|
67 |
-
include $this->views_path . $template . '.php';
|
68 |
echo '</script>';
|
69 |
}
|
70 |
}
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
64 |
foreach ( $this->templates as $template ) {
|
65 |
if ( file_exists( $this->views_path . $template . '.php' ) ) {
|
66 |
echo '<script type="text/html" id="tmpl-kirki-input-' . esc_attr( $template ) . '">';
|
67 |
+
include $this->views_path . $template . '.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
68 |
echo '</script>';
|
69 |
}
|
70 |
}
|
controls/css/styles.css
CHANGED
@@ -1,826 +1,658 @@
|
|
1 |
@charset "UTF-8";
|
2 |
.customize-control-kirki-background {
|
3 |
-
position: relative;
|
4 |
-
|
5 |
-
.customize-control-kirki-background .background-
|
6 |
-
.customize-control-kirki-background .background-
|
7 |
-
.customize-control-kirki-background .background-
|
8 |
-
.customize-control-kirki-background .background-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
}
|
27 |
-
.customize-control-kirki-background .background-attachment .buttonset .switch-input:checked + .switch-label,
|
28 |
-
.customize-control-kirki-background .background-size .buttonset .switch-input:checked + .switch-label {
|
29 |
-
background-color: #3498DB;
|
30 |
-
color: #fff;
|
31 |
-
}
|
32 |
|
33 |
.customize-control-kirki-code textarea {
|
34 |
width: 100%;
|
35 |
-
min-height: 200px;
|
36 |
-
}
|
37 |
|
38 |
.customize-control-kirki-color-palette {
|
39 |
-
position: relative;
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
}
|
62 |
-
.customize-control-kirki-color-palette .colors-wrapper.
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
}
|
80 |
-
.customize-control-kirki-color-palette .colors-wrapper.with-margin label {
|
81 |
-
margin: 3px;
|
82 |
-
}
|
83 |
-
.customize-control-kirki-color-palette .colors-wrapper input {
|
84 |
-
display: none;
|
85 |
-
}
|
86 |
-
.customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color {
|
87 |
-
box-shadow: 1px 1px 10px 1px #333333;
|
88 |
-
border: 1px solid rgba(0, 0, 0, 0.3);
|
89 |
-
}
|
90 |
|
91 |
-
.customize-control-kirki-color input[data-type=hue] + .iris-strip-horiz .iris-slider {
|
92 |
-
background-image: -webkit-linear-gradient(left, red, #ff7f00, yellow, #80ff00, lime, #00ff80,
|
93 |
-
}
|
94 |
.customize-control-kirki-color .iris-picker .iris-square-handle {
|
95 |
-
z-index: 8;
|
96 |
-
}
|
97 |
|
98 |
.customize-control-kirki-dashicons {
|
99 |
-
position: relative;
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
}
|
109 |
-
.customize-control-kirki-dashicons .icons-wrapper
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
}
|
120 |
-
.customize-control-kirki-dashicons .icons-wrapper input {
|
121 |
-
display: none;
|
122 |
-
}
|
123 |
-
.customize-control-kirki-dashicons .icons-wrapper input:checked + label .dashicons {
|
124 |
-
border: 1px solid #3498DB;
|
125 |
-
color: #000;
|
126 |
-
}
|
127 |
|
128 |
.wp-customizer div.ui-datepicker {
|
129 |
z-index: 500001 !important;
|
130 |
width: 255px;
|
131 |
background: #fff;
|
132 |
-
border: 1px solid #dedede;
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-
|
148 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:
|
149 |
-
|
150 |
-
}
|
151 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next
|
152 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev
|
153 |
-
|
154 |
-
|
155 |
-
}
|
156 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-
|
157 |
-
|
158 |
-
|
159 |
-
}
|
160 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
}
|
172 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
}
|
183 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td {
|
184 |
-
text-align: center;
|
185 |
-
}
|
186 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a {
|
187 |
-
display: block;
|
188 |
-
padding: 5px;
|
189 |
-
color: #333;
|
190 |
-
text-decoration: none;
|
191 |
-
}
|
192 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a.ui-state-active, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a:hover {
|
193 |
-
color: #fff;
|
194 |
-
background-color: #0073aa;
|
195 |
-
}
|
196 |
-
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled a, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled .ui-state-default a {
|
197 |
-
color: #999;
|
198 |
-
}
|
199 |
|
200 |
.customize-control-kirki-dimensions {
|
201 |
-
position: relative;
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
}
|
215 |
-
.customize-control-kirki-dimensions .wrapper .control > div h5 {
|
216 |
-
margin: 10px 0 7px;
|
217 |
-
}
|
218 |
-
.customize-control-kirki-dimensions .wrapper .control > div .inner {
|
219 |
-
display: flex;
|
220 |
-
}
|
221 |
|
222 |
.customize-control-kirki-editor textarea {
|
223 |
-
width: 100%;
|
224 |
-
}
|
225 |
|
226 |
.customize-control-kirki-generic input {
|
227 |
-
width: 100%;
|
228 |
-
}
|
229 |
.customize-control-kirki-generic textarea {
|
230 |
width: 100%;
|
231 |
border: 1px solid rgba(0, 0, 0, 0.1);
|
232 |
-webkit-box-shadow: none;
|
233 |
-
box-shadow: none;
|
234 |
-
}
|
235 |
|
236 |
.customize-control-kirki-multicolor .multicolor-single-color-wrapper {
|
237 |
display: flex;
|
238 |
-
justify-content: space-between;
|
239 |
-
}
|
240 |
.customize-control-kirki-multicolor .multicolor-single-label {
|
241 |
-
order: 2;
|
242 |
-
}
|
243 |
.customize-control-kirki-multicolor .wp-picker-container {
|
244 |
-
width: 100%;
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
}
|
249 |
-
.customize-control-kirki-multicolor .wp-picker-container.wp-picker-active + .multicolor-single-label {
|
250 |
-
display: none;
|
251 |
-
}
|
252 |
|
253 |
.customize-control-kirki-number .customize-control-content {
|
254 |
display: flex;
|
255 |
-
align-items: stretch;
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
text-align: center;
|
269 |
-
line-height: 24px;
|
270 |
-
}
|
271 |
.customize-control-kirki-palette {
|
272 |
-
position: relative;
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
}
|
277 |
-
.customize-control-kirki-palette
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
}
|
308 |
-
.customize-control-kirki-palette label span:hover {
|
309 |
-
padding: 10px;
|
310 |
-
flex-grow: 3;
|
311 |
-
min-width: 60px;
|
312 |
-
font-size: 10px;
|
313 |
-
line-height: 10px;
|
314 |
-
color: #000;
|
315 |
-
}
|
316 |
|
317 |
.customize-control-kirki-radio-buttonset .buttonset {
|
318 |
display: flex;
|
319 |
-
flex-wrap: wrap;
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
background-color: #00a0d2;
|
332 |
-
color: rgba(255, 255, 255, 0.8);
|
333 |
-
}
|
334 |
|
335 |
.customize-control-kirki-radio-image > .image {
|
336 |
display: flex;
|
337 |
-
flex-wrap: wrap;
|
338 |
-
}
|
339 |
.customize-control-kirki-radio-image label {
|
340 |
position: relative;
|
341 |
-
display: inline-block;
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
}
|
360 |
-
.customize-control-kirki-radio-image label:hover .image-label {
|
361 |
-
display: block;
|
362 |
-
}
|
363 |
.customize-control-kirki-radio-image input {
|
364 |
-
display: none;
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
right: 0;
|
380 |
-
width: 100%;
|
381 |
-
height: 100%;
|
382 |
-
}
|
383 |
|
384 |
.customize-control-kirki-radio {
|
385 |
-
position: relative;
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
}
|
396 |
-
.customize-control-kirki-radio label {
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
display: block;
|
402 |
-
color: rgba(0, 0, 0, 0.35);
|
403 |
-
font-size: 0.9em;
|
404 |
-
padding-left: 25px;
|
405 |
-
}
|
406 |
|
407 |
.customize-control-repeater {
|
408 |
-
position: relative;
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
}
|
426 |
-
.customize-control-repeater .repeater-fields .repeater-row
|
427 |
-
|
428 |
-
|
429 |
-
}
|
430 |
-
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field- {
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
}
|
439 |
-
.customize-control-repeater .repeater-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
}
|
448 |
-
.customize-control-repeater
|
449 |
-
|
450 |
-
}
|
451 |
-
.customize-control-repeater .repeater-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
}
|
462 |
-
.customize-control-repeater .repeater-field
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
}
|
478 |
-
.customize-control-repeater .repeater-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
}
|
500 |
-
.customize-control-repeater .
|
501 |
-
|
502 |
-
}
|
503 |
-
.customize-control-repeater .repeater-row-header .dashicons {
|
504 |
-
font-size: 18px;
|
505 |
-
position: absolute;
|
506 |
-
right: 12px;
|
507 |
-
top: 2px;
|
508 |
-
color: #a0a5aa;
|
509 |
-
}
|
510 |
-
.customize-control-repeater .repeater-row-label {
|
511 |
-
font-size: 13px;
|
512 |
-
font-weight: 600;
|
513 |
-
line-height: 20px;
|
514 |
-
display: block;
|
515 |
-
width: 90%;
|
516 |
-
overflow: hidden;
|
517 |
-
height: 18px;
|
518 |
-
}
|
519 |
-
.customize-control-repeater .repeater-row-remove {
|
520 |
-
color: #a00;
|
521 |
-
}
|
522 |
-
.customize-control-repeater .repeater-row-remove:hover {
|
523 |
-
color: #f00;
|
524 |
-
}
|
525 |
-
.customize-control-repeater .repeater-minimize {
|
526 |
-
line-height: 36px;
|
527 |
-
}
|
528 |
-
.customize-control-repeater .remove-button,
|
529 |
-
.customize-control-repeater .upload-button {
|
530 |
-
width: 48%;
|
531 |
-
}
|
532 |
|
533 |
.kirki-image-attachment {
|
534 |
margin: 0;
|
535 |
text-align: center;
|
536 |
-
margin-bottom: 10px;
|
537 |
-
|
538 |
-
|
539 |
-
display: inline-block;
|
540 |
-
}
|
541 |
|
542 |
.kirki-file-attachment {
|
543 |
margin: 0;
|
544 |
text-align: center;
|
545 |
-
margin-bottom: 10px;
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
background: #f9f9f9;
|
552 |
-
}
|
553 |
|
554 |
.limit {
|
555 |
padding: 3px;
|
556 |
-
border-radius: 3px;
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
color: #fff;
|
561 |
-
}
|
562 |
|
563 |
.customize-control-kirki-slider .wrapper {
|
564 |
display: flex;
|
565 |
align-items: center;
|
566 |
padding: 15px 0 7px;
|
567 |
-
position: relative;
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
}
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
box-shadow: none;
|
613 |
-
text-align: right;
|
614 |
-
padding: 0;
|
615 |
-
width: 40px;
|
616 |
-
}
|
617 |
-
.customize-control-kirki-slider .wrapper .value {
|
618 |
-
display: flex;
|
619 |
-
align-items: baseline;
|
620 |
-
}
|
621 |
|
622 |
.customize-control-kirki-sortable ul.ui-sortable li {
|
623 |
padding: 5px 10px;
|
624 |
border: 1px solid #333;
|
625 |
-
background: #fff;
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
}
|
630 |
-
.customize-control-kirki-sortable ul.ui-sortable li
|
631 |
-
|
632 |
-
}
|
633 |
-
.customize-control-kirki-sortable ul.ui-sortable li.invisible {
|
634 |
-
|
635 |
-
border: 1px dashed #aaa;
|
636 |
-
}
|
637 |
-
.customize-control-kirki-sortable ul.ui-sortable li.invisible .dashicons.visibility {
|
638 |
-
color: #aaa;
|
639 |
-
}
|
640 |
|
641 |
.customize-control-kirki-switch {
|
642 |
-
position: relative;
|
643 |
-
|
644 |
-
.customize-control-kirki-switch .switch-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
}
|
693 |
-
.customize-control-kirki-switch input:checked + label {
|
694 |
-
|
695 |
-
}
|
696 |
-
.customize-control-kirki-switch input:checked + label:after {
|
697 |
-
left: auto;
|
698 |
-
right: 5px;
|
699 |
-
background: #ffffff;
|
700 |
-
}
|
701 |
-
.customize-control-kirki-switch input:checked + label .switch-on {
|
702 |
-
opacity: 1;
|
703 |
-
}
|
704 |
-
.customize-control-kirki-switch input:checked + label .switch-off {
|
705 |
-
opacity: 0;
|
706 |
-
}
|
707 |
|
708 |
.customize-control-kirki-toggle {
|
709 |
-
position: relative;
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
}
|
715 |
-
.customize-control-kirki-toggle label .
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
}
|
755 |
-
.customize-control-kirki-toggle .switch:active:before {
|
756 |
-
|
757 |
-
}
|
758 |
-
.customize-control-kirki-toggle input:checked + .switch:before {
|
759 |
-
background: rgba(0, 115, 170, 0.075);
|
760 |
-
transform: translate3d(100%, -50%, 0) scale(1);
|
761 |
-
}
|
762 |
-
.customize-control-kirki-toggle input:checked + .switch:after {
|
763 |
-
background: #0073aa;
|
764 |
-
transform: translate3d(100%, -50%, 0);
|
765 |
-
}
|
766 |
-
.customize-control-kirki-toggle input:checked + .switch:active:before {
|
767 |
-
background: rgba(0, 115, 170, 0.075);
|
768 |
-
transform: translate3d(100%, -50%, 0) scale(3);
|
769 |
-
}
|
770 |
|
771 |
.customize-control-kirki-typography {
|
772 |
-
position: relative;
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
}
|
781 |
-
.customize-control-kirki-typography .wrapper
|
782 |
-
|
783 |
-
|
784 |
-
.customize-control-kirki-typography .wrapper .
|
785 |
-
.customize-control-kirki-typography .wrapper .
|
786 |
-
.customize-control-kirki-typography .wrapper .
|
787 |
-
.customize-control-kirki-typography .wrapper .
|
788 |
-
.customize-control-kirki-typography .wrapper .
|
789 |
-
.customize-control-kirki-typography .wrapper .
|
790 |
-
.customize-control-kirki-typography .wrapper .
|
791 |
-
.customize-control-kirki-typography .wrapper .
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
.customize-control-kirki-typography .wrapper .
|
800 |
-
.customize-control-kirki-typography .wrapper .
|
801 |
-
|
802 |
-
.customize-control-kirki-typography .wrapper .
|
803 |
-
|
804 |
-
.customize-control-kirki-typography .wrapper .text-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
}
|
816 |
-
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input {
|
817 |
-
display: none;
|
818 |
-
}
|
819 |
-
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input:checked + label {
|
820 |
-
border-color: #0085ba;
|
821 |
-
}
|
822 |
-
.customize-control-kirki-typography .wrapper .color {
|
823 |
-
width: auto;
|
824 |
-
}
|
825 |
|
826 |
/*# sourceMappingURL=styles.css.map */
|
1 |
@charset "UTF-8";
|
2 |
.customize-control-kirki-background {
|
3 |
+
position: relative; }
|
4 |
+
.customize-control-kirki-background .background-attachment h4,
|
5 |
+
.customize-control-kirki-background .background-color h4,
|
6 |
+
.customize-control-kirki-background .background-position h4,
|
7 |
+
.customize-control-kirki-background .background-repeat h4,
|
8 |
+
.customize-control-kirki-background .background-size h4 {
|
9 |
+
margin-bottom: 5px; }
|
10 |
+
.customize-control-kirki-background .background-attachment .buttonset,
|
11 |
+
.customize-control-kirki-background .background-size .buttonset {
|
12 |
+
display: flex;
|
13 |
+
flex-wrap: wrap; }
|
14 |
+
.customize-control-kirki-background .background-attachment .buttonset .switch-label,
|
15 |
+
.customize-control-kirki-background .background-size .buttonset .switch-label {
|
16 |
+
background: rgba(0, 0, 0, 0.05);
|
17 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
18 |
+
color: #555;
|
19 |
+
padding: 0.5em 1em;
|
20 |
+
margin: 0;
|
21 |
+
text-align: center;
|
22 |
+
flex-grow: 1; }
|
23 |
+
.customize-control-kirki-background .background-attachment .buttonset .switch-input:checked + .switch-label,
|
24 |
+
.customize-control-kirki-background .background-size .buttonset .switch-input:checked + .switch-label {
|
25 |
+
background-color: #3498DB;
|
26 |
+
color: #fff; }
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
.customize-control-kirki-code textarea {
|
29 |
width: 100%;
|
30 |
+
min-height: 200px; }
|
|
|
31 |
|
32 |
.customize-control-kirki-color-palette {
|
33 |
+
position: relative; }
|
34 |
+
.customize-control-kirki-color-palette label {
|
35 |
+
position: relative;
|
36 |
+
display: inline-block;
|
37 |
+
padding: 0;
|
38 |
+
margin: 0; }
|
39 |
+
.customize-control-kirki-color-palette .colors-wrapper {
|
40 |
+
max-height: 300px;
|
41 |
+
overflow-y: auto;
|
42 |
+
padding: 10px;
|
43 |
+
display: flex;
|
44 |
+
flex-wrap: wrap; }
|
45 |
+
.customize-control-kirki-color-palette .colors-wrapper .color-palette-color {
|
46 |
+
color: transparent;
|
47 |
+
display: block;
|
48 |
+
width: 100%;
|
49 |
+
height: 100%;
|
50 |
+
overflow: hidden;
|
51 |
+
border: 1px solid rgba(0, 0, 0, 0.2); }
|
52 |
+
.customize-control-kirki-color-palette .colors-wrapper.round label {
|
53 |
+
padding: 3px; }
|
54 |
+
.customize-control-kirki-color-palette .colors-wrapper.round .color-palette-color {
|
55 |
+
border-radius: 50%; }
|
56 |
+
.customize-control-kirki-color-palette .colors-wrapper.box-shadow .color-palette-color {
|
57 |
+
box-shadow: inset 3px 3px 13px 2px rgba(0, 0, 0, 0.22); }
|
58 |
+
.customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color {
|
59 |
+
border: 0;
|
60 |
+
width: 150%;
|
61 |
+
height: 150%;
|
62 |
+
position: relative;
|
63 |
+
left: -25%;
|
64 |
+
top: -25%;
|
65 |
+
z-index: 1; }
|
66 |
+
.customize-control-kirki-color-palette .colors-wrapper.with-margin label {
|
67 |
+
margin: 3px; }
|
68 |
+
.customize-control-kirki-color-palette .colors-wrapper input {
|
69 |
+
display: none; }
|
70 |
+
.customize-control-kirki-color-palette .colors-wrapper input:checked + label .color-palette-color {
|
71 |
+
box-shadow: 1px 1px 10px 1px #333333;
|
72 |
+
border: 1px solid rgba(0, 0, 0, 0.3); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
.customize-control-kirki-color input[data-type="hue"] + .iris-strip-horiz .iris-slider {
|
75 |
+
background-image: -webkit-linear-gradient(left, red, #ff7f00, yellow, #80ff00, lime, #00ff80, cyan, #007fff, blue, #7f00ff, magenta, #ff0080, red) !important; }
|
|
|
76 |
.customize-control-kirki-color .iris-picker .iris-square-handle {
|
77 |
+
z-index: 8; }
|
|
|
78 |
|
79 |
.customize-control-kirki-dashicons {
|
80 |
+
position: relative; }
|
81 |
+
.customize-control-kirki-dashicons label {
|
82 |
+
position: relative;
|
83 |
+
display: inline-block; }
|
84 |
+
.customize-control-kirki-dashicons .icons-wrapper {
|
85 |
+
max-height: 300px;
|
86 |
+
overflow-y: scroll; }
|
87 |
+
.customize-control-kirki-dashicons .icons-wrapper h4 {
|
88 |
+
font-weight: 300;
|
89 |
+
margin: 0.7em 0; }
|
90 |
+
.customize-control-kirki-dashicons .icons-wrapper .dashicons {
|
91 |
+
padding: 3px;
|
92 |
+
font-size: 25px;
|
93 |
+
width: 25px;
|
94 |
+
height: 25px;
|
95 |
+
border: 1px solid transparent; }
|
96 |
+
.customize-control-kirki-dashicons .icons-wrapper input {
|
97 |
+
display: none; }
|
98 |
+
.customize-control-kirki-dashicons .icons-wrapper input:checked + label .dashicons {
|
99 |
+
border: 1px solid #3498DB;
|
100 |
+
color: #000; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
.wp-customizer div.ui-datepicker {
|
103 |
z-index: 500001 !important;
|
104 |
width: 255px;
|
105 |
background: #fff;
|
106 |
+
border: 1px solid #dedede; }
|
107 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header {
|
108 |
+
padding: 10px;
|
109 |
+
background: #e5e5e5;
|
110 |
+
border-bottom: 1px solid #fff; }
|
111 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
|
112 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
|
113 |
+
display: block;
|
114 |
+
position: absolute;
|
115 |
+
width: 1em;
|
116 |
+
overflow: hidden; }
|
117 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before,
|
118 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after,
|
119 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
|
120 |
+
font-family: dashicons; }
|
121 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after:hover, .wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before:hover,
|
122 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after:hover,
|
123 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before:hover {
|
124 |
+
cursor: pointer; }
|
125 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon,
|
126 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
|
127 |
+
display: none; }
|
128 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
|
129 |
+
left: 10px; }
|
130 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
|
131 |
+
content: "\f341"; }
|
132 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
|
133 |
+
right: 10px; }
|
134 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
|
135 |
+
content: "\f345"; }
|
136 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
|
137 |
+
text-align: center; }
|
138 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar {
|
139 |
+
border-collapse: collapse;
|
140 |
+
width: 100%; }
|
141 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar thead {
|
142 |
+
background: #e5e5e5;
|
143 |
+
padding: 5px; }
|
144 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td {
|
145 |
+
text-align: center; }
|
146 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a {
|
147 |
+
display: block;
|
148 |
+
padding: 5px;
|
149 |
+
color: #333;
|
150 |
+
text-decoration: none; }
|
151 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a.ui-state-active, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td a:hover {
|
152 |
+
color: #fff;
|
153 |
+
background-color: #0073aa; }
|
154 |
+
.wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled a, .wp-customizer div.ui-datepicker .ui-datepicker-calendar tr td.ui-state-disabled .ui-state-default a {
|
155 |
+
color: #999; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
|
157 |
.customize-control-kirki-dimensions {
|
158 |
+
position: relative; }
|
159 |
+
.customize-control-kirki-dimensions .wrapper {
|
160 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
161 |
+
padding: 10px; }
|
162 |
+
.customize-control-kirki-dimensions .wrapper .control {
|
163 |
+
display: flex;
|
164 |
+
flex-wrap: wrap;
|
165 |
+
justify-content: space-between; }
|
166 |
+
.customize-control-kirki-dimensions .wrapper .control > div {
|
167 |
+
width: 48%; }
|
168 |
+
.customize-control-kirki-dimensions .wrapper .control > div h5 {
|
169 |
+
margin: 10px 0 7px; }
|
170 |
+
.customize-control-kirki-dimensions .wrapper .control > div .inner {
|
171 |
+
display: flex; }
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
.customize-control-kirki-editor textarea {
|
174 |
+
width: 100%; }
|
|
|
175 |
|
176 |
.customize-control-kirki-generic input {
|
177 |
+
width: 100%; }
|
|
|
178 |
.customize-control-kirki-generic textarea {
|
179 |
width: 100%;
|
180 |
border: 1px solid rgba(0, 0, 0, 0.1);
|
181 |
-webkit-box-shadow: none;
|
182 |
+
box-shadow: none; }
|
|
|
183 |
|
184 |
.customize-control-kirki-multicolor .multicolor-single-color-wrapper {
|
185 |
display: flex;
|
186 |
+
justify-content: space-between; }
|
|
|
187 |
.customize-control-kirki-multicolor .multicolor-single-label {
|
188 |
+
order: 2; }
|
|
|
189 |
.customize-control-kirki-multicolor .wp-picker-container {
|
190 |
+
width: 100%; }
|
191 |
+
.customize-control-kirki-multicolor .wp-picker-container > .wp-color-result {
|
192 |
+
width: 100%; }
|
193 |
+
.customize-control-kirki-multicolor .wp-picker-container.wp-picker-active + .multicolor-single-label {
|
194 |
+
display: none; }
|
|
|
|
|
|
|
195 |
|
196 |
.customize-control-kirki-number .customize-control-content {
|
197 |
display: flex;
|
198 |
+
align-items: stretch; }
|
199 |
+
.customize-control-kirki-number .customize-control-content input {
|
200 |
+
width: 100%;
|
201 |
+
-moz-appearance: textfield; }
|
202 |
+
.customize-control-kirki-number .customize-control-content input::-webkit-inner-spin-button, .customize-control-kirki-number .customize-control-content input::-webkit-outer-spin-button {
|
203 |
+
-webkit-appearance: none;
|
204 |
+
margin: 0; }
|
205 |
+
.customize-control-kirki-number .customize-control-content .quantity {
|
206 |
+
min-width: 2rem;
|
207 |
+
max-width: 2rem;
|
208 |
+
text-align: center;
|
209 |
+
line-height: 24px; }
|
210 |
+
|
|
|
|
|
|
|
211 |
.customize-control-kirki-palette {
|
212 |
+
position: relative; }
|
213 |
+
.customize-control-kirki-palette input[type="radio"] {
|
214 |
+
display: none; }
|
215 |
+
.customize-control-kirki-palette input[type="radio"]:checked + label {
|
216 |
+
border: 3px solid rgba(0, 0, 0, 0.4); }
|
217 |
+
.customize-control-kirki-palette label {
|
218 |
+
background: none;
|
219 |
+
padding: 0;
|
220 |
+
border-top: 3px solid transparent;
|
221 |
+
border-bottom: 3px solid transparent;
|
222 |
+
margin-bottom: 5px;
|
223 |
+
display: flex; }
|
224 |
+
.customize-control-kirki-palette label span {
|
225 |
+
padding: 10px 0;
|
226 |
+
flex-grow: 1;
|
227 |
+
font-size: 0;
|
228 |
+
line-height: 10px;
|
229 |
+
color: rgba(0, 0, 0, 0);
|
230 |
+
-webkit-transition: all 200ms ease-in-out;
|
231 |
+
-moz-transition: all 200ms ease-in-out;
|
232 |
+
-ms-transition: all 200ms ease-in-out;
|
233 |
+
-o-transition: all 200ms ease-in-out;
|
234 |
+
transition: all 200ms ease-in-out;
|
235 |
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
236 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
|
237 |
+
.customize-control-kirki-palette label span:first-child {
|
238 |
+
border-left: 1px solid rgba(0, 0, 0, 0.1); }
|
239 |
+
.customize-control-kirki-palette label span:last-child {
|
240 |
+
border-right: 1px solid rgba(0, 0, 0, 0.1); }
|
241 |
+
.customize-control-kirki-palette label span:hover {
|
242 |
+
padding: 10px;
|
243 |
+
flex-grow: 3;
|
244 |
+
min-width: 60px;
|
245 |
+
font-size: 10px;
|
246 |
+
line-height: 10px;
|
247 |
+
color: #000; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
|
249 |
.customize-control-kirki-radio-buttonset .buttonset {
|
250 |
display: flex;
|
251 |
+
flex-wrap: wrap; }
|
252 |
+
.customize-control-kirki-radio-buttonset .buttonset .switch-label {
|
253 |
+
background: rgba(0, 0, 0, 0.1);
|
254 |
+
border: 1px rgba(0, 0, 0, 0.1);
|
255 |
+
color: #555d66;
|
256 |
+
margin: 0;
|
257 |
+
text-align: center;
|
258 |
+
padding: 0.5em 1em;
|
259 |
+
flex-grow: 1; }
|
260 |
+
.customize-control-kirki-radio-buttonset .buttonset .switch-input:checked + .switch-label {
|
261 |
+
background-color: #00a0d2;
|
262 |
+
color: rgba(255, 255, 255, 0.8); }
|
|
|
|
|
|
|
263 |
|
264 |
.customize-control-kirki-radio-image > .image {
|
265 |
display: flex;
|
266 |
+
flex-wrap: wrap; }
|
|
|
267 |
.customize-control-kirki-radio-image label {
|
268 |
position: relative;
|
269 |
+
display: inline-block; }
|
270 |
+
.customize-control-kirki-radio-image label .image-label {
|
271 |
+
display: none;
|
272 |
+
position: absolute;
|
273 |
+
top: 0;
|
274 |
+
left: 0;
|
275 |
+
width: 100%;
|
276 |
+
height: 100%;
|
277 |
+
background: rgba(255, 255, 255, 0.7);
|
278 |
+
font-weight: bold; }
|
279 |
+
.customize-control-kirki-radio-image label .image-label .inner {
|
280 |
+
width: 100%;
|
281 |
+
height: 100%;
|
282 |
+
text-align: center;
|
283 |
+
padding: 0.5em;
|
284 |
+
vertical-align: middle; }
|
285 |
+
.customize-control-kirki-radio-image label:hover .image-label {
|
286 |
+
display: block; }
|
|
|
|
|
|
|
|
|
287 |
.customize-control-kirki-radio-image input {
|
288 |
+
display: none; }
|
289 |
+
.customize-control-kirki-radio-image input img {
|
290 |
+
border: 1px solid transparent; }
|
291 |
+
.customize-control-kirki-radio-image input:checked + label img {
|
292 |
+
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
|
293 |
+
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
|
294 |
+
border: 1px solid #3498DB; }
|
295 |
+
.customize-control-kirki-radio-image input + label .image-clickable {
|
296 |
+
position: absolute;
|
297 |
+
top: 0;
|
298 |
+
bottom: 0;
|
299 |
+
left: 0;
|
300 |
+
right: 0;
|
301 |
+
width: 100%;
|
302 |
+
height: 100%; }
|
|
|
|
|
|
|
|
|
303 |
|
304 |
.customize-control-kirki-radio {
|
305 |
+
position: relative; }
|
306 |
+
.customize-control-kirki-radio input[type=radio] {
|
307 |
+
width: 18px;
|
308 |
+
height: 18px; }
|
309 |
+
.customize-control-kirki-radio input[type=radio]:checked:before {
|
310 |
+
width: 10px;
|
311 |
+
height: 10px;
|
312 |
+
margin: 3px; }
|
313 |
+
.customize-control-kirki-radio label {
|
314 |
+
display: list-item;
|
315 |
+
margin-bottom: 7px; }
|
316 |
+
.customize-control-kirki-radio label .option-description {
|
317 |
+
display: block;
|
318 |
+
color: rgba(0, 0, 0, 0.35);
|
319 |
+
font-size: 0.9em;
|
320 |
+
padding-left: 25px; }
|
|
|
|
|
|
|
|
|
|
|
321 |
|
322 |
.customize-control-repeater {
|
323 |
+
position: relative; }
|
324 |
+
.customize-control-repeater .repeater-fields .repeater-row {
|
325 |
+
border: 1px solid #e5e5e5;
|
326 |
+
margin-top: 0.5rem;
|
327 |
+
background: #eee;
|
328 |
+
position: relative; }
|
329 |
+
.customize-control-repeater .repeater-fields .repeater-row.minimized {
|
330 |
+
border: 1px solid #dfdfdf;
|
331 |
+
padding: 0; }
|
332 |
+
.customize-control-repeater .repeater-fields .repeater-row.minimized:hover {
|
333 |
+
border: 1px solid #e5e5e5; }
|
334 |
+
.customize-control-repeater .repeater-fields .repeater-row.minimized .repeater-row-content {
|
335 |
+
display: none; }
|
336 |
+
.customize-control-repeater .repeater-fields .repeater-row label {
|
337 |
+
margin-bottom: 12px;
|
338 |
+
clear: both; }
|
339 |
+
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field- {
|
340 |
+
display: none; }
|
341 |
+
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input {
|
342 |
+
display: none; }
|
343 |
+
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input img {
|
344 |
+
border: 1px solid transparent; }
|
345 |
+
.customize-control-repeater .repeater-fields .repeater-row .repeater-field.repeater-field-radio-image input:checked + label img {
|
346 |
+
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
|
347 |
+
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
|
348 |
+
border: 1px solid #3498DB; }
|
349 |
+
.customize-control-repeater .repeater-fields .repeater-row .repeater-field:last-child {
|
350 |
+
border-bottom: none;
|
351 |
+
padding-bottom: 0; }
|
352 |
+
.customize-control-repeater button.repeater-add {
|
353 |
+
margin-top: 1rem; }
|
354 |
+
.customize-control-repeater .repeater-row-content {
|
355 |
+
padding: 10px 15px;
|
356 |
+
background: #fff; }
|
357 |
+
.customize-control-repeater .repeater-field {
|
358 |
+
margin-bottom: 12px;
|
359 |
+
width: 100%;
|
360 |
+
clear: both;
|
361 |
+
padding-bottom: 12px;
|
362 |
+
border-bottom: 1px dotted #CCC; }
|
363 |
+
.customize-control-repeater .repeater-field .customize-control-title {
|
364 |
+
font-size: 13px;
|
365 |
+
line-height: initial; }
|
366 |
+
.customize-control-repeater .repeater-field .customize-control-description {
|
367 |
+
font-size: 13px;
|
368 |
+
line-height: initial; }
|
369 |
+
.customize-control-repeater .repeater-field.repeater-field-hidden {
|
370 |
+
margin: 0;
|
371 |
+
padding: 0;
|
372 |
+
border: 0; }
|
373 |
+
.customize-control-repeater .repeater-field-select select {
|
374 |
+
margin-left: 0; }
|
375 |
+
.customize-control-repeater .repeater-field-checkbox label {
|
376 |
+
line-height: 28px; }
|
377 |
+
.customize-control-repeater .repeater-field-checkbox input {
|
378 |
+
line-height: 28px;
|
379 |
+
margin-right: 5px; }
|
380 |
+
.customize-control-repeater .repeater-field-textarea textarea {
|
381 |
+
width: 100%;
|
382 |
+
resize: vertical; }
|
383 |
+
.customize-control-repeater .repeater-row-header {
|
384 |
+
background: white;
|
385 |
+
border-bottom: 1px solid #dfdfdf;
|
386 |
+
position: relative;
|
387 |
+
padding: 10px 15px;
|
388 |
+
height: auto;
|
389 |
+
min-height: 20px;
|
390 |
+
line-height: 30px;
|
391 |
+
overflow: hidden;
|
392 |
+
word-wrap: break-word; }
|
393 |
+
.customize-control-repeater .repeater-row-header:hover {
|
394 |
+
cursor: move; }
|
395 |
+
.customize-control-repeater .repeater-row-header .dashicons {
|
396 |
+
font-size: 18px;
|
397 |
+
position: absolute;
|
398 |
+
right: 12px;
|
399 |
+
top: 2px;
|
400 |
+
color: #a0a5aa; }
|
401 |
+
.customize-control-repeater .repeater-row-label {
|
402 |
+
font-size: 13px;
|
403 |
+
font-weight: 600;
|
404 |
+
line-height: 20px;
|
405 |
+
display: block;
|
406 |
+
width: 90%;
|
407 |
+
overflow: hidden;
|
408 |
+
height: 18px; }
|
409 |
+
.customize-control-repeater .repeater-row-remove {
|
410 |
+
color: #a00; }
|
411 |
+
.customize-control-repeater .repeater-row-remove:hover {
|
412 |
+
color: #f00; }
|
413 |
+
.customize-control-repeater .repeater-minimize {
|
414 |
+
line-height: 36px; }
|
415 |
+
.customize-control-repeater .remove-button,
|
416 |
+
.customize-control-repeater .upload-button {
|
417 |
+
width: 48%; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
|
419 |
.kirki-image-attachment {
|
420 |
margin: 0;
|
421 |
text-align: center;
|
422 |
+
margin-bottom: 10px; }
|
423 |
+
.kirki-image-attachment img {
|
424 |
+
display: inline-block; }
|
|
|
|
|
425 |
|
426 |
.kirki-file-attachment {
|
427 |
margin: 0;
|
428 |
text-align: center;
|
429 |
+
margin-bottom: 10px; }
|
430 |
+
.kirki-file-attachment .file {
|
431 |
+
display: block;
|
432 |
+
padding: 10px 5px;
|
433 |
+
border: 1px dotted #c3c3c3;
|
434 |
+
background: #f9f9f9; }
|
|
|
|
|
435 |
|
436 |
.limit {
|
437 |
padding: 3px;
|
438 |
+
border-radius: 3px; }
|
439 |
+
.limit.highlight {
|
440 |
+
background: #D32F2F;
|
441 |
+
color: #fff; }
|
|
|
|
|
442 |
|
443 |
.customize-control-kirki-slider .wrapper {
|
444 |
display: flex;
|
445 |
align-items: center;
|
446 |
padding: 15px 0 7px;
|
447 |
+
position: relative; }
|
448 |
+
.customize-control-kirki-slider .wrapper .slider-reset {
|
449 |
+
position: absolute;
|
450 |
+
top: 0;
|
451 |
+
right: 0;
|
452 |
+
font-size: 12px;
|
453 |
+
transition: 0.3s ease-in-out;
|
454 |
+
color: rgba(0, 0, 0, 0.3); }
|
455 |
+
.customize-control-kirki-slider .wrapper .slider-reset:hover {
|
456 |
+
transform: scale(1.3);
|
457 |
+
color: #DC3232; }
|
458 |
+
.customize-control-kirki-slider .wrapper input[type="range"] {
|
459 |
+
display: block;
|
460 |
+
-webkit-appearance: none;
|
461 |
+
background-color: #bdc3c7;
|
462 |
+
width: 100%;
|
463 |
+
height: 5px;
|
464 |
+
border-radius: 5px;
|
465 |
+
margin: 0 auto;
|
466 |
+
outline: 0; }
|
467 |
+
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb {
|
468 |
+
-webkit-appearance: none;
|
469 |
+
background-color: #0085ba;
|
470 |
+
width: 17px;
|
471 |
+
height: 17px;
|
472 |
+
border-radius: 50%;
|
473 |
+
border: 1px solid #006799;
|
474 |
+
cursor: pointer;
|
475 |
+
transition: 0.3s ease-in-out; }
|
476 |
+
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb:hover {
|
477 |
+
background-color: #006799;
|
478 |
+
border: 2px solid #0085ba; }
|
479 |
+
.customize-control-kirki-slider .wrapper input[type="range"]::-webkit-slider-thumb:active {
|
480 |
+
transform: scale(1.2); }
|
481 |
+
.customize-control-kirki-slider .wrapper input[type="text"] {
|
482 |
+
font-size: 13px;
|
483 |
+
background: transparent;
|
484 |
+
border: none;
|
485 |
+
box-shadow: none;
|
486 |
+
text-align: right;
|
487 |
+
padding: 0;
|
488 |
+
width: 40px; }
|
489 |
+
.customize-control-kirki-slider .wrapper .value {
|
490 |
+
display: flex;
|
491 |
+
align-items: baseline; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
|
493 |
.customize-control-kirki-sortable ul.ui-sortable li {
|
494 |
padding: 5px 10px;
|
495 |
border: 1px solid #333;
|
496 |
+
background: #fff; }
|
497 |
+
.customize-control-kirki-sortable ul.ui-sortable li .dashicons.dashicons-menu {
|
498 |
+
float: right; }
|
499 |
+
.customize-control-kirki-sortable ul.ui-sortable li .dashicons.visibility {
|
500 |
+
margin-right: 10px; }
|
501 |
+
.customize-control-kirki-sortable ul.ui-sortable li.invisible {
|
502 |
+
color: #aaa;
|
503 |
+
border: 1px dashed #aaa; }
|
504 |
+
.customize-control-kirki-sortable ul.ui-sortable li.invisible .dashicons.visibility {
|
505 |
+
color: #aaa; }
|
|
|
|
|
|
|
|
|
|
|
506 |
|
507 |
.customize-control-kirki-switch {
|
508 |
+
position: relative; }
|
509 |
+
.customize-control-kirki-switch .switch-off,
|
510 |
+
.customize-control-kirki-switch .switch-on {
|
511 |
+
opacity: 1;
|
512 |
+
padding: 8px;
|
513 |
+
font-size: 14px;
|
514 |
+
line-height: 18px; }
|
515 |
+
.customize-control-kirki-switch .switch-on {
|
516 |
+
color: #fff;
|
517 |
+
opacity: 0; }
|
518 |
+
.customize-control-kirki-switch .switch-off {
|
519 |
+
color: #777; }
|
520 |
+
.customize-control-kirki-switch .switch {
|
521 |
+
border: none;
|
522 |
+
margin-bottom: 1.5rem;
|
523 |
+
outline: 0;
|
524 |
+
padding: 0;
|
525 |
+
user-select: none;
|
526 |
+
border-radius: 3rem; }
|
527 |
+
.customize-control-kirki-switch label {
|
528 |
+
background: #b4b9be;
|
529 |
+
float: left;
|
530 |
+
cursor: pointer;
|
531 |
+
display: flex;
|
532 |
+
justify-content: space-between;
|
533 |
+
margin-bottom: 1rem;
|
534 |
+
position: relative;
|
535 |
+
transition: left 0.15s ease-out;
|
536 |
+
border-radius: 3rem; }
|
537 |
+
.customize-control-kirki-switch label:after {
|
538 |
+
background: #FFFFFF;
|
539 |
+
content: "";
|
540 |
+
display: block;
|
541 |
+
position: absolute;
|
542 |
+
left: 5px;
|
543 |
+
top: 5px;
|
544 |
+
width: calc(.85rem + 10px);
|
545 |
+
height: calc(.85rem + 10px);
|
546 |
+
transition: all 0.25s ease-in-out;
|
547 |
+
border-radius: 3rem; }
|
548 |
+
.customize-control-kirki-switch input + label {
|
549 |
+
margin-left: 0;
|
550 |
+
margin-right: 0; }
|
551 |
+
.customize-control-kirki-switch input:checked + label {
|
552 |
+
background: #0073aa; }
|
553 |
+
.customize-control-kirki-switch input:checked + label:after {
|
554 |
+
left: auto;
|
555 |
+
right: 5px;
|
556 |
+
background: #ffffff; }
|
557 |
+
.customize-control-kirki-switch input:checked + label .switch-on {
|
558 |
+
opacity: 1; }
|
559 |
+
.customize-control-kirki-switch input:checked + label .switch-off {
|
560 |
+
opacity: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
|
562 |
.customize-control-kirki-toggle {
|
563 |
+
position: relative; }
|
564 |
+
.customize-control-kirki-toggle label {
|
565 |
+
display: flex;
|
566 |
+
flex-wrap: wrap; }
|
567 |
+
.customize-control-kirki-toggle label .customize-control-title {
|
568 |
+
width: calc(100% - 55px); }
|
569 |
+
.customize-control-kirki-toggle label .description {
|
570 |
+
order: 99; }
|
571 |
+
.customize-control-kirki-toggle .switch {
|
572 |
+
border: 1px solid #b4b9be;
|
573 |
+
display: inline-block;
|
574 |
+
width: 35px;
|
575 |
+
height: 12px;
|
576 |
+
border-radius: 8px;
|
577 |
+
background: #b4b9be;
|
578 |
+
vertical-align: middle;
|
579 |
+
position: relative;
|
580 |
+
top: 4px;
|
581 |
+
cursor: pointer;
|
582 |
+
user-select: none;
|
583 |
+
transition: background 350ms ease; }
|
584 |
+
.customize-control-kirki-toggle .switch:after, .customize-control-kirki-toggle .switch:before {
|
585 |
+
content: "";
|
586 |
+
display: block;
|
587 |
+
width: 20px;
|
588 |
+
height: 20px;
|
589 |
+
border-radius: 50%;
|
590 |
+
position: absolute;
|
591 |
+
top: 50%;
|
592 |
+
left: -3px;
|
593 |
+
transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease; }
|
594 |
+
.customize-control-kirki-toggle .switch:before {
|
595 |
+
background: rgba(0, 0, 0, 0.2);
|
596 |
+
transform: translate3d(0, -50%, 0) scale(0); }
|
597 |
+
.customize-control-kirki-toggle .switch:after {
|
598 |
+
background: #999;
|
599 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
600 |
+
transform: translate3d(0, -50%, 0); }
|
601 |
+
.customize-control-kirki-toggle .switch:active:before {
|
602 |
+
transform: translate3d(0, -50%, 0) scale(3); }
|
603 |
+
.customize-control-kirki-toggle input:checked + .switch:before {
|
604 |
+
background: rgba(0, 115, 170, 0.075);
|
605 |
+
transform: translate3d(100%, -50%, 0) scale(1); }
|
606 |
+
.customize-control-kirki-toggle input:checked + .switch:after {
|
607 |
+
background: #0073aa;
|
608 |
+
transform: translate3d(100%, -50%, 0); }
|
609 |
+
.customize-control-kirki-toggle input:checked + .switch:active:before {
|
610 |
+
background: rgba(0, 115, 170, 0.075);
|
611 |
+
transform: translate3d(100%, -50%, 0) scale(3); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
|
613 |
.customize-control-kirki-typography {
|
614 |
+
position: relative; }
|
615 |
+
.customize-control-kirki-typography .wrapper {
|
616 |
+
padding: 10px;
|
617 |
+
display: flex;
|
618 |
+
flex-wrap: wrap;
|
619 |
+
justify-content: space-between;
|
620 |
+
border: 1px solid rgba(0, 0, 0, 0.1); }
|
621 |
+
.customize-control-kirki-typography .wrapper h5 {
|
622 |
+
margin: 0.67em 0 0; }
|
623 |
+
.customize-control-kirki-typography .wrapper .color,
|
624 |
+
.customize-control-kirki-typography .wrapper .font-backup,
|
625 |
+
.customize-control-kirki-typography .wrapper .font-family,
|
626 |
+
.customize-control-kirki-typography .wrapper .font-size,
|
627 |
+
.customize-control-kirki-typography .wrapper .letter-spacing,
|
628 |
+
.customize-control-kirki-typography .wrapper .line-height,
|
629 |
+
.customize-control-kirki-typography .wrapper .margin-bottom,
|
630 |
+
.customize-control-kirki-typography .wrapper .margin-top,
|
631 |
+
.customize-control-kirki-typography .wrapper .text-align,
|
632 |
+
.customize-control-kirki-typography .wrapper .text-transform,
|
633 |
+
.customize-control-kirki-typography .wrapper .variant {
|
634 |
+
width: 100%;
|
635 |
+
float: none;
|
636 |
+
clear: both; }
|
637 |
+
.customize-control-kirki-typography .wrapper .font-size,
|
638 |
+
.customize-control-kirki-typography .wrapper .letter-spacing,
|
639 |
+
.customize-control-kirki-typography .wrapper .line-height,
|
640 |
+
.customize-control-kirki-typography .wrapper .margin-bottom,
|
641 |
+
.customize-control-kirki-typography .wrapper .margin-top,
|
642 |
+
.customize-control-kirki-typography .wrapper .text-transform {
|
643 |
+
width: 48%; }
|
644 |
+
.customize-control-kirki-typography .wrapper .text-align .text-align-choices {
|
645 |
+
display: flex; }
|
646 |
+
.customize-control-kirki-typography .wrapper .text-align .text-align-choices label {
|
647 |
+
width: 100%;
|
648 |
+
padding: 5px;
|
649 |
+
text-align: center;
|
650 |
+
border: 1px solid rgba(255, 255, 255, 0); }
|
651 |
+
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input {
|
652 |
+
display: none; }
|
653 |
+
.customize-control-kirki-typography .wrapper .text-align .text-align-choices input:checked + label {
|
654 |
+
border-color: #0085ba; }
|
655 |
+
.customize-control-kirki-typography .wrapper .color {
|
656 |
+
width: auto; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
|
658 |
/*# sourceMappingURL=styles.css.map */
|
controls/js/script.js
CHANGED
@@ -830,7 +830,13 @@ kirki = jQuery.extend( kirki, {
|
|
830 |
} );
|
831 |
|
832 |
element.on( 'change keyup paste click', function() {
|
833 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
834 |
} );
|
835 |
}
|
836 |
|
@@ -899,7 +905,7 @@ kirki = jQuery.extend( kirki, {
|
|
899 |
previewImage = jsonImg.url;
|
900 |
|
901 |
if ( ! _.isUndefined( jsonImg.sizes ) ) {
|
902 |
-
|
903 |
if ( ! _.isUndefined( jsonImg.sizes.medium ) ) {
|
904 |
previewImage = jsonImg.sizes.medium.url;
|
905 |
} else if ( ! _.isUndefined( jsonImg.sizes.thumbnail ) ) {
|
@@ -3170,7 +3176,6 @@ wp.customize.controlConstructor['kirki-typography'] = wp.customize.kirkiDynamicC
|
|
3170 |
control.renderFontSelector();
|
3171 |
control.renderBackupFontSelector();
|
3172 |
control.renderVariantSelector();
|
3173 |
-
control.localFontsCheckbox();
|
3174 |
|
3175 |
// Font-size.
|
3176 |
if ( 'undefined' !== typeof control.params.default['font-size'] ) {
|
@@ -3568,22 +3573,6 @@ wp.customize.controlConstructor['kirki-typography'] = wp.customize.kirkiDynamicC
|
|
3568 |
};
|
3569 |
},
|
3570 |
|
3571 |
-
localFontsCheckbox: function() {
|
3572 |
-
var control = this,
|
3573 |
-
checkboxContainer = control.container.find( '.kirki-host-font-locally' ),
|
3574 |
-
checkbox = control.container.find( '.kirki-host-font-locally input' ),
|
3575 |
-
checked = jQuery( checkbox ).is( ':checked' );
|
3576 |
-
|
3577 |
-
if ( control.setting._value && control.setting._value.downloadFont ) {
|
3578 |
-
jQuery( checkbox ).attr( 'checked', 'checked' );
|
3579 |
-
}
|
3580 |
-
|
3581 |
-
jQuery( checkbox ).on( 'change', function() {
|
3582 |
-
checked = jQuery( checkbox ).is( ':checked' );
|
3583 |
-
control.saveValue( 'downloadFont', checked );
|
3584 |
-
} );
|
3585 |
-
},
|
3586 |
-
|
3587 |
/**
|
3588 |
* Saves the value.
|
3589 |
*/
|
830 |
} );
|
831 |
|
832 |
element.on( 'change keyup paste click', function() {
|
833 |
+
var val = jQuery( this ).val();
|
834 |
+
if ( isNaN( val ) ) {
|
835 |
+
val = parseFloat( val, 10 );
|
836 |
+
val = ( isNaN( val ) ) ? 0 : val;
|
837 |
+
jQuery( this ).attr( 'value', val );
|
838 |
+
}
|
839 |
+
kirki.setting.set( control.id, val );
|
840 |
} );
|
841 |
}
|
842 |
|
905 |
previewImage = jsonImg.url;
|
906 |
|
907 |
if ( ! _.isUndefined( jsonImg.sizes ) ) {
|
908 |
+
previewImage = jsonImg.sizes.full.url;
|
909 |
if ( ! _.isUndefined( jsonImg.sizes.medium ) ) {
|
910 |
previewImage = jsonImg.sizes.medium.url;
|
911 |
} else if ( ! _.isUndefined( jsonImg.sizes.thumbnail ) ) {
|
3176 |
control.renderFontSelector();
|
3177 |
control.renderBackupFontSelector();
|
3178 |
control.renderVariantSelector();
|
|
|
3179 |
|
3180 |
// Font-size.
|
3181 |
if ( 'undefined' !== typeof control.params.default['font-size'] ) {
|
3573 |
};
|
3574 |
},
|
3575 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3576 |
/**
|
3577 |
* Saves the value.
|
3578 |
*/
|
controls/js/script.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
if(_.isUndefined(window.kirkiSetSettingValue))var kirkiSetSettingValue={set:function(i,n){var e,a=this,t=wp.customize.settings.controls[i];if(_.isUndefined(t))return!0;switch(a.setValue(i,n),t.type){case"kirki-background":_.isUndefined(n["background-color"])||a.setColorPicker(a.findElement(i,".kirki-color-control"),n["background-color"]),a.findElement(i,".placeholder, .thumbnail").removeClass().addClass("placeholder").html("No file selected"),_.each(["background-repeat","background-position"],function(e){_.isUndefined(n[e])||a.setSelectWoo(a.findElement(i,"."+e+" select"),n[e])}),_.each(["background-size","background-attachment"],function(e){jQuery(a.findElement(i,"."+e+' input[value="'+n+'"]')).prop("checked",!0)}),e=JSON.stringify(n).replace(/'/g,"'"),jQuery(a.findElement(i,".background-hidden-value").attr("value",e)).trigger("change");break;case"kirki-code":jQuery(a.findElement(i,".CodeMirror"))[0].CodeMirror.setValue(n);break;case"checkbox":case"kirki-switch":case"kirki-toggle":n=1===n||"1"===n||!0===n,jQuery(a.findElement(i,"input")).prop("checked",n),wp.customize.instance(i).set(n);break;case"kirki-select":case"kirki-fontawesome":a.setSelectWoo(a.findElement(i,"select"),n);break;case"kirki-slider":jQuery(a.findElement(i,"input")).prop("value",n),jQuery(a.findElement(i,".kirki_range_value .value")).html(n);break;case"kirki-generic":(_.isUndefined(t.choices)||_.isUndefined(t.choices.element))&&(t.choices.element="input"),jQuery(a.findElement(i,t.choices.element)).prop("value",n);break;case"kirki-color":a.setColorPicker(a.findElement(i,".kirki-color-control"),n);break;case"kirki-multicheck":a.findElement(i,"input").each(function(){jQuery(this).prop("checked",!1)}),_.each(n,function(e,t){jQuery(a.findElement(i,'input[value="'+n[t]+'"]')).prop("checked",!0)});break;case"kirki-multicolor":_.each(n,function(e,t){a.setColorPicker(a.findElement(i,".multicolor-index-"+t),e)});break;case"kirki-radio-buttonset":case"kirki-radio-image":case"kirki-radio":case"kirki-dashicons":case"kirki-color-palette":case"kirki-palette":jQuery(a.findElement(i,'input[value="'+n+'"]')).prop("checked",!0);break;case"kirki-typography":_.each(["font-family","variant"],function(e){_.isUndefined(n[e])||a.setSelectWoo(a.findElement(i,"."+e+" select"),n[e])}),_.each(["font-size","line-height","letter-spacing","word-spacing"],function(e){_.isUndefined(n[e])||jQuery(a.findElement(i,"."+e+" input")).prop("value",n[e])}),_.isUndefined(n.color)||a.setColorPicker(a.findElement(i,".kirki-color-control"),n.color),e=JSON.stringify(n).replace(/'/g,"'"),jQuery(a.findElement(i,".typography-hidden-value").attr("value",e)).trigger("change");break;case"kirki-dimensions":_.each(n,function(e,t){jQuery(a.findElement(i,"."+t+" input")).prop("value",e)});break;case"kirki-repeater":case"kirki-custom":break;default:jQuery(a.findElement(i,"input")).prop("value",n)}},setColorPicker:function(e,t){e.attr("data-default-color",t).data("default-color",t).wpColorPicker("color",t)},setSelectWoo:function(e,t){jQuery(e).selectWoo().val(t).trigger("change")},setTextarea:function(e,t){jQuery(e).prop("value",t)},findElement:function(e,t){return wp.customize.control(e).container.find(t)},setValue:function(e,t,i){i=_.isUndefined(i)?100:parseInt(i,10),wp.customize.instance(e).set({}),setTimeout(function(){wp.customize.instance(e).set(t)},i)}};(kirki={initialized:!1,initialize:function(){this.initialized||(setTimeout(function(){kirki.util.webfonts.standard.initialize(),kirki.util.webfonts.google.initialize()},150),this.initialized=!0)}}).initialize();var kirki=kirki||{};kirki=(kirki=jQuery.extend(kirki,{control:{"kirki-radio":{init:function(e){this.template(e),kirki.input.radio.init(e)},template:function(e){var t=wp.template("kirki-input-radio");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,default:e.params.default,value:kirki.setting.get(e.id),choices:e.params.choices}))}},"kirki-color":{init:function(e){this.template(e),kirki.input.color.init(e)},template:function(e){var t=wp.template("kirki-input-color");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,mode:e.params.mode,inputAttrs:e.params.inputAttrs,"data-palette":e.params.palette,"data-default-color":e.params.default,"data-alpha":e.params.choices.alpha,value:kirki.setting.get(e.id)}))}},"kirki-generic":{init:function(e){this.template(e),_.isUndefined(e.params)||_.isUndefined(e.params.choices)||_.isUndefined(e.params.choices.element)||"textarea"!==e.params.choices.element?kirki.input.genericInput.init(e):kirki.input.textarea.init(e)},template:function(e){var t,i={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)};if(!_.isUndefined(e.params)&&!_.isUndefined(e.params.choices)&&!_.isUndefined(e.params.choices.element)&&"textarea"===e.params.choices.element)return t=wp.template("kirki-input-textarea"),void e.container.html(t(i));t=wp.template("kirki-input-generic"),e.container.html(t(i))}},"kirki-number":{init:function(e){this.template(e),kirki.input.number.init(e)},template:function(e){var t=wp.template("kirki-input-number");e.container.html(t(args={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)}))}},"kirki-image":{init:function(e){this.template(e),kirki.input.image.init(e)},template:function(e){var t=wp.template("kirki-input-image");e.container.html(t(args={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)}))}},"kirki-select":{init:function(e){this.template(e),kirki.input.select.init(e)},template:function(e){var t=wp.template("kirki-input-select");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id),multiple:e.params.multiple||1,placeholder:e.params.placeholder}))}}}}))||{},kirki=(kirki=jQuery.extend(kirki,{input:{radio:{init:function(e){jQuery('input[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},color:{init:function(e){var t,i=jQuery('.kirki-color-control[data-id="'+e.id+'"]');e.choices=e.choices||{},_.isEmpty(e.choices)&&e.params.choices&&(e.choices=e.params.choices),_.isEmpty(e.choices)||i.wpColorPicker(e.choices),setTimeout(function(){(t=jQuery('.kirki-input-container[data-id="'+e.id+'"] .wp-picker-clear')).length&&t.click(function(){kirki.setting.set(e.id,"")})},200),i.wpColorPicker({change:function(){setTimeout(function(){kirki.setting.set(e.id,i.val())},20)}})}},genericInput:{init:function(e){jQuery('input[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},textarea:{init:function(e){jQuery('textarea[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},select:{init:function(e){var t,i=jQuery('select[data-id="'+e.id+'"]'),n=parseInt(i.data("multiple"),10),a={escapeMarkup:function(e){return e}};e.params.placeholder&&(a.placeholder=e.params.placeholder,a.allowClear=!0),1<n&&(a.maximumSelectionLength=n),jQuery(i).selectWoo(a).on("change",function(){t=null===(t=jQuery(this).val())&&1<n?[]:t,kirki.setting.set(e.id,t)})}},number:{init:function(i){var e,t,n=jQuery('input[data-id="'+i.id+'"]'),a=i.setting._value;i.params.choices=_.defaults(i.params.choices,{min:0,max:100,step:1}),(isNaN(a)||""===a)&&(a=i.params.choices.min<0&&0<i.params.choices.max?0:i.params.choices.min),a=parseFloat(a),i.params.choices.step="any"===i.params.choices.step?.001:i.params.choices.step,i.params.choices.min=parseFloat(i.params.choices.min),i.params.choices.max=parseFloat(i.params.choices.max),i.params.choices.step=parseFloat(i.params.choices.step),e=jQuery('.kirki-input-container[data-id="'+i.id+'"] .plus'),t=jQuery('.kirki-input-container[data-id="'+i.id+'"] .minus'),e.click(function(){var e,t=parseFloat(n.val());e=t>=i.params.choices.max?t:t+i.params.choices.step,n.val(e),n.trigger("change")}),t.click(function(){var e,t=parseFloat(n.val());e=t<=i.params.choices.min?t:t-i.params.choices.step,n.val(e),n.trigger("change")}),n.on("change keyup paste click",function(){kirki.setting.set(i.id,jQuery(this).val())})}},image:{init:function(a){var t=kirki.setting.get(a.id),n=_.isUndefined(a.params.choices)||_.isUndefined(a.params.choices.save_as)?"url":a.params.choices.save_as,r=a.container.find(".placeholder, .thumbnail"),e="array"===n?t.url:t,o=a.container.find(".image-upload-remove-button"),s=a.container.find(".image-default-button");t="array"===n&&_.isString(t)?{url:t}:t,"id"!==n&&"ID"!==n||""===t||wp.media.attachment(t).fetch().then(function(){setTimeout(function(){var e=wp.media.attachment(t).get("url");r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+e+'" alt="" />')},700)}),("url"===n&&""!==t||"array"===n&&!_.isUndefined(t.url)&&""!==t.url)&&a.container.find("image-default-button").hide(),("url"===n&&""===t||"array"===n&&(_.isUndefined(t.url)||""===t.url))&&o.hide(),t===a.params.default&&a.container.find("image-default-button").hide(),""!==e&&r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+e+'" alt="" />'),a.container.on("click",".image-upload-button",function(e){var i=wp.media({multiple:!1}).open().on("select",function(){var e=i.state().get("selection").first().toJSON(),t=e.url;_.isUndefined(e.sizes)||(previewImg=e.sizes.full.url,_.isUndefined(e.sizes.medium)?_.isUndefined(e.sizes.thumbnail)||(t=e.sizes.thumbnail.url):t=e.sizes.medium.url),"array"===n?kirki.setting.set(a.id,{id:e.id,url:e.sizes.full.url,width:e.width,height:e.height}):"id"===n?kirki.setting.set(a.id,e.id):kirki.setting.set(a.id,_.isUndefined(e.sizes)?e.url:e.sizes.full.url),r.length&&r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+t+'" alt="" />'),o.length&&(o.show(),s.hide())});e.preventDefault()}),a.container.on("click",".image-upload-remove-button",function(e){var t,i,n;e.preventDefault(),kirki.setting.set(a.id,""),t=a.container.find(".placeholder, .thumbnail"),i=a.container.find(".image-upload-remove-button"),n=a.container.find(".image-default-button"),t.length&&t.removeClass().addClass("placeholder").html(kirkiL10n.noFileSelected),i.length&&(i.hide(),jQuery(n).hasClass("button")&&n.show())}),a.container.on("click",".image-default-button",function(e){var t,i,n;e.preventDefault(),kirki.setting.set(a.id,a.params.default),t=a.container.find(".placeholder, .thumbnail"),i=a.container.find(".image-upload-remove-button"),n=a.container.find(".image-default-button"),t.length&&t.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+a.params.default+'" alt="" />'),i.length&&(i.show(),n.hide())})}}}}))||{},kirki=(kirki=jQuery.extend(kirki,{setting:{get:function(e){var t=e.split("["),i="",n=0,a="";return _.each(t,function(e,t){e=e.replace("]",""),0===t?i=e:i+="["+e+"]",_.isUndefined(wp.customize.instance(i))||(a=wp.customize.instance(i).get(),n=t),n<t&&_.isObject(a)&&!_.isUndefined(a[e])&&(a=a[e])}),a},set:function(e,t,i){var n,a,r,o,s,c="",l="",u={};n=e,_.isObject(e)&&(n=jQuery(e).attr("data-id")?e.attr("data-id"):e.parents("[data-id]").attr("data-id")),void 0===wp.customize.control(n)?(a=n.split("["),_.each(a,function(e,t){e=e.replace("]",""),c=0===t?e:"["+e+"]",_.isUndefined(wp.customize.instance(c))||(l=c,r=wp.customize.instance(l).get())}),""!==(o=n.replace(l,""))?(_.isObject(r)||(r={}),"["===o.charAt(0)&&(o=o.replace("[","")),s=o.split("["),_.each(s,function(e,t){s[t]=e.replace("]","")}),i&&s.push(i),u='{"'+s.join('":{"')+'":"'+t+'"'+"}".repeat(s.length),u=JSON.parse(u),jQuery.extend(!0,r,u),t=r):i&&((r=_.isObject(r)?r:{})[i]=t,t=r),wp.customize.control(l).setting.set(t)):wp.customize.control(n).setting.set(t)}}}))||{};kirki=jQuery.extend(kirki,{util:{webfonts:{google:{fonts:{},initialize:function(){this.setFonts()},setFonts:function(){var t=this;_.isEmpty(t.fonts)&&jQuery.post(ajaxurl,{action:"kirki_fonts_google_all_get"},function(e){t.fonts=JSON.parse(e)})},getFont:function(e){var t=this.getFonts();return void 0!==t[e]&&t[e]},getFonts:function(e,i,t){var n=this,a={},r={},o={};return e="alpha"!==(e=e||"alpha")&&"popularity"!==e&&"trending"!==e?"alpha":e,t=t||0,t=parseInt(t,10),"alpha"===e?a=jQuery.extend({},n.fonts.items):_.each(n.fonts.order[e],function(e){a[e]=n.fonts.items[e]}),""!==i&&i?_.each(a,function(e,t){i===e.category&&(r[t]=e)}):r=a,0<t?(_.each(_.first(_.keys(r),t),function(e){o[e]=r[e]}),o):r},getVariants:function(e){var t=this.getFont(e);return!!t&&(!_.isUndefined(t.variants)&&t.variants)}},standard:{fonts:{},initialize:function(){this.setFonts()},setFonts:function(){var t=this;_.isEmpty(t.fonts)&&jQuery.post(ajaxurl,{action:"kirki_fonts_standard_all_get"},function(e){t.fonts=JSON.parse(e)})},getVariants:function(){return["regular","italic","700","700italic"]}},getFontType:function(e){return void 0!==this.standard.fonts[e]||void 0!==this.standard.fonts.stack&&void 0!==this.standard.fonts.stack[e]?"standard":void 0!==this.google.fonts.items[e]&&"google"}},validate:{cssValue:function(e){var t,i;return"string"!=typeof e||"number"!=typeof e||(0===e||"0"===e||"auto"===e||"inherit"===e||"initial"===e||(0<=e.indexOf("calc(")&&0<=e.indexOf(")")||(t=parseFloat(e),i=e.replace(t,""),e?!isNaN(t)&&-1<jQuery.inArray(i,["fr","rem","em","ex","%","px","cm","mm","in","pt","pc","ch","vh","vw","vmin","vmax"]):void 0)))}},parseHtmlEntities:function(e){return(new DOMParser).parseFromString("<!doctype html><body>"+e,"text/html").body.textContent}}}),function(){"use strict";wp.customize.kirkiDynamicControl=wp.customize.Control.extend({initialize:function(e,t){var i=t||{};i.params=i.params||{},i.params.type||(i.params.type="kirki-generic"),i.params.content||(i.params.content=jQuery("<li></li>"),i.params.content.attr("id","customize-control-"+e.replace(/]/g,"").replace(/\[/g,"-")),i.params.content.attr("class","customize-control customize-control-"+i.params.type)),this.propertyElements=[],wp.customize.Control.prototype.initialize.call(this,e,i)},_setUpSettingRootLinks:function(){var n=this;n.container.find("[data-customize-setting-link]").each(function(){var i=jQuery(this);wp.customize(i.data("customizeSettingLink"),function(e){var t=new wp.customize.Element(i);n.elements.push(t),t.sync(e),t.set(e())})})},_setUpSettingPropertyLinks:function(){var n=this;n.setting&&n.container.find("[data-customize-setting-property-link]").each(function(){var t,e=jQuery(this),i=e.data("customizeSettingPropertyLink");t=new wp.customize.Element(e),n.propertyElements.push(t),t.set(n.setting()[i]),t.bind(function(e){var t=n.setting();e!==t[i]&&((t=_.clone(t))[i]=e,n.setting.set(t))}),n.setting.bind(function(e){e[i]!==t.get()&&t.set(e[i])})})},ready:function(){var e=this;e._setUpSettingRootLinks(),e._setUpSettingPropertyLinks(),wp.customize.Control.prototype.ready.call(e),e.deferred.embedded.done(function(){e.initKirkiControl(e)})},embed:function(){var t=this,e=t.section();e&&wp.customize.section(e,function(e){"kirki-expanded"===e.params.type||e.expanded()||wp.customize.settings.autofocus.control===t.id?t.actuallyEmbed():e.expanded.bind(function(e){e&&t.actuallyEmbed()})})},actuallyEmbed:function(){"resolved"!==this.deferred.embedded.state()&&(this.renderContent(),this.deferred.embedded.resolve())},focus:function(e){this.actuallyEmbed(),wp.customize.Control.prototype.focus.call(this,e)},initKirkiControl:function(e){void 0===kirki.control[e.params.type]?this.container.on("change keyup paste click","input",function(){e.setting.set(jQuery(this).val())}):kirki.control[e.params.type].init(e)}})}(),_.each(kirki.control,function(e,t){wp.customize.controlConstructor[t]=wp.customize.kirkiDynamicControl.extend({})}),wp.customize.controlConstructor["kirki-background"]=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){var o=this,e=o.setting._value,t=o.container.find(".kirki-color-control");(_.isUndefined(e["background-image"])||""===e["background-image"])&&(o.container.find(".background-wrapper > .background-repeat").hide(),o.container.find(".background-wrapper > .background-position").hide(),o.container.find(".background-wrapper > .background-size").hide(),o.container.find(".background-wrapper > .background-attachment").hide()),t.wpColorPicker({change:function(){setTimeout(function(){o.saveValue("background-color",t.val())},100)}}),o.container.on("change",".background-repeat select",function(){o.saveValue("background-repeat",jQuery(this).val())}),o.container.on("change click",".background-size input",function(){o.saveValue("background-size",jQuery(this).val())}),o.container.on("change",".background-position select",function(){o.saveValue("background-position",jQuery(this).val())}),o.container.on("change click",".background-attachment input",function(){o.saveValue("background-attachment",jQuery(this).val())}),o.container.on("click",".background-image-upload-button",function(e){var r=wp.media({multiple:!1}).open().on("select",function(){var e,t,i,n=r.state().get("selection").first(),a=n.toJSON().sizes.full.url;_.isUndefined(n.toJSON().sizes.medium)?_.isUndefined(n.toJSON().sizes.thumbnail)||(a=n.toJSON().sizes.thumbnail.url):a=n.toJSON().sizes.medium.url,e=n.toJSON().sizes.full.url,n.toJSON().id,n.toJSON().width,n.toJSON().height,""!==e&&o.container.find(".background-wrapper > .background-repeat, .background-wrapper > .background-position, .background-wrapper > .background-size, .background-wrapper > .background-attachment").show(),o.saveValue("background-image",e),t=o.container.find(".placeholder, .thumbnail"),i=o.container.find(".background-image-upload-remove-button"),t.length&&t.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+a+'" alt="" />'),i.length&&i.show()});e.preventDefault()}),o.container.on("click",".background-image-upload-remove-button",function(e){var t,i;e.preventDefault(),o.saveValue("background-image",""),t=o.container.find(".placeholder, .thumbnail"),i=o.container.find(".background-image-upload-remove-button"),o.container.find(".background-wrapper > .background-repeat").hide(),o.container.find(".background-wrapper > .background-position").hide(),o.container.find(".background-wrapper > .background-size").hide(),o.container.find(".background-wrapper > .background-attachment").hide(),t.length&&t.removeClass().addClass("placeholder").html("No file selected"),i.length&&i.hide()})},saveValue:function(e,t){var i=jQuery("#customize-control-"+this.id.replace("[","-").replace("]","")+" .background-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}}),wp.customize.controlConstructor["kirki-color-palette"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-dashicons"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-date"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t=e.selector+" input.datepicker";jQuery(t).datepicker({dateFormat:"yy-mm-dd"}),this.container.on("change keyup paste","input.datepicker",function(){e.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["kirki-dimension"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t=this;t.kirkiNotifications(),this.container.on("change keyup paste","input",function(){e=jQuery(this).val(),t.setting.set(e)})},kirkiNotifications:function(){var n=void 0!==this.params.choices&&void 0!==this.params.choices.accept_unitless&&!0===this.params.choices.accept_unitless;wp.customize(this.id,function(i){i.bind(function(e){var t="long_title";!1!==kirki.util.validate.cssValue(e)||n&&!isNaN(e)?i.notifications.remove(t):i.notifications.add(t,new wp.customize.Notification(t,{type:"warning",message:dimensionkirkiL10n["invalid-value"]}))})})}}),wp.customize.controlConstructor["kirki-dimensions"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t=this.params.choices.controls,i={},n=[];for(_.each(t,function(e,t){!0===e&&n.push(t)}),e=0;e<n.length;e++)i[n[e]]=this.setting._value[n[e]],this.updateDimensionsValue(n[e],i)},updateDimensionsValue:function(e,t){var i=this;i.container.on("change keyup paste","."+e+" input",function(){t[e]=jQuery(this).val(),i.kirkiNotifications(),i.saveValue(t)})},saveValue:function(e){var i={};_.each(e,function(e,t){i[t]=e}),this.setting.set(i)},kirkiNotifications:function(){wp.customize(this.id,function(a){a.bind(function(e){var t,i="long_title",n={};if(a.notifications.remove(i),_.each(e,function(e,t){!1===kirki.util.validate.cssValue(e)?n[t]=e:delete n[t]}),!_.isEmpty(n))return t=dimensionskirkiL10n["invalid-value"]+" ("+_.values(n).toString()+") ",void a.notifications.add(i,new wp.customize.Notification(i,{type:"warning",message:t}));a.notifications.remove(i)})})}}),wp.customize.controlConstructor["kirki-editor"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var i,n=this,a=n.container.find("textarea"),e="kirki-editor-"+n.id.replace("[","").replace("]","");wp.editor.initialize(e,{tinymce:{wpautop:!0},quicktags:!0,mediaButtons:!0}),(i=tinyMCE.get(e))&&i.onChange.add(function(e){var t;e.save(),t=i.getContent(),a.val(t).trigger("change"),wp.customize.instance(n.id).set(t)})}}),wp.customize.controlConstructor["kirki-fontawesome"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t,i=this,n=this.container.find("select"),a=jQuery.parseJSON(fontAwesomeJSON),r={data:[],escapeMarkup:function(e){return e},templateResult:function(e){return'<i class="fa fa-lg fa-'+e.id+'" aria-hidden="true"></i> '+e.text},templateSelection:function(e){return'<i class="fa fa-lg fa-'+e.id+'" aria-hidden="true"></i> '+e.text}};_.each(a.icons,function(e){r.data.push({id:e.id,text:e.name})}),(t=jQuery(n).selectWoo(r)).on("change",function(){e=jQuery(this).val(),i.setting.set(e)}),t.val(i.setting._value).trigger("change")}}),wp.customize.controlConstructor["kirki-multicheck"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var n=this;n.container.on("change","input",function(){var t=[],i=0;jQuery.each(n.params.choices,function(e){n.container.find('input[value="'+e+'"]').is(":checked")?(n.container.find('input[value="'+e+'"]').parent().addClass("checked"),t[i]=e,i++):n.container.find('input[value="'+e+'"]').parent().removeClass("checked")}),n.setting.set(t)})}}),wp.customize.controlConstructor["kirki-multicolor"]=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){"use strict";var r=this.params.choices,e=Object.keys(r),t=(this.params.value,0);function i(e,t,i){var n=e.container.find(".multicolor-index-"+i),a={change:function(){setTimeout(function(){e.saveValue(i,n.val()),e.container.find(".multicolor-index-"+i).trigger("change")},100)}};_.isObject(r.irisArgs)&&_.each(r.irisArgs,function(e,t){a[t]=e}),n.wpColorPicker(a)}for(;t<Object.keys(r).length;)i(this,0,e[t]),t++},saveValue:function(e,t){var i=this.container.find(".multicolor-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}}),wp.customize.controlConstructor["kirki-palette"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-radio-buttonset"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-radio-image"]=wp.customize.kirkiDynamicControl.extend({});var RepeaterRow=function(e,t,i,n){"use strict";var a=this;this.rowIndex=e,this.container=t,this.label=i,this.header=this.container.find(".repeater-row-header"),this.header.on("click",function(){a.toggleMinimize()}),this.container.on("click",".repeater-row-remove",function(){a.remove()}),this.header.on("mousedown",function(){a.container.trigger("row:start-dragging")}),this.container.on("keyup change","input, select, textarea",function(e){a.container.trigger("row:update",[a.rowIndex,jQuery(e.target).data("field"),e.target])}),this.setRowIndex=function(e){this.rowIndex=e,this.container.attr("data-row",e),this.container.data("row",e),this.updateLabel()},this.toggleMinimize=function(){this.container.toggleClass("minimized"),this.header.find(".dashicons").toggleClass("dashicons-arrow-up").toggleClass("dashicons-arrow-down")},this.remove=function(){this.container.slideUp(300,function(){jQuery(this).detach()}),this.container.trigger("row:remove",[this.rowIndex])},this.updateLabel=function(){var e,t,i;if("field"===this.label.type&&(e=this.container.find('.repeater-field [data-field="'+this.label.field+'"]'),_.isFunction(e.val)&&""!==(t=e.val())))return _.isUndefined(n.params.fields[this.label.field])||_.isUndefined(n.params.fields[this.label.field].type)||("select"===n.params.fields[this.label.field].type?_.isUndefined(n.params.fields[this.label.field].choices)||_.isUndefined(n.params.fields[this.label.field].choices[e.val()])||(t=n.params.fields[this.label.field].choices[e.val()]):"radio"!==n.params.fields[this.label.field].type&&"radio-image"!==n.params.fields[this.label.field].type||(i=n.selector+' [data-row="'+this.rowIndex+'"] .repeater-field [data-field="'+this.label.field+'"]:checked',t=jQuery(i).val())),void this.header.find(".repeater-row-label").text(t);this.header.find(".repeater-row-label").text(this.label.value+" "+(this.rowIndex+1))},this.updateLabel()};wp.customize.controlConstructor.repeater=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){"use strict";var t,i,n=this,e=this.params.value;this.settingField=this.container.find("[data-customize-setting-link]").first(),this.setValue([],!1),this.repeaterFieldsContainer=this.container.find(".repeater-fields").first(),this.currentIndex=0,this.rows=[],t=!1,_.isUndefined(this.params.choices.limit)||(t=!(this.params.choices.limit<=0)&&parseInt(this.params.choices.limit,10)),this.container.on("click","button.repeater-add",function(e){e.preventDefault(),!t||n.currentIndex<t?((i=n.addRow()).toggleMinimize(),n.initColorPicker(),n.initSelect(i)):jQuery(n.selector+" .limit").addClass("highlight")}),this.container.on("click",".repeater-row-remove",function(){n.currentIndex--,(!t||n.currentIndex<t)&&jQuery(n.selector+" .limit").removeClass("highlight")}),this.container.on("click keypress",".repeater-field-image .upload-button,.repeater-field-cropped_image .upload-button,.repeater-field-upload .upload-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.openFrame(e)}),this.container.on("click keypress",".repeater-field-image .remove-button,.repeater-field-cropped_image .remove-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.removeImage(e)}),this.container.on("click keypress",".repeater-field-upload .remove-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.removeFile(e)}),this.repeaterTemplate=_.memoize(function(){var t={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(e){return _.template(n.container.find(".customize-control-repeater-content").first().html(),null,t)(e)}}),e.length&&_.each(e,function(e){i=n.addRow(e),n.initColorPicker(),n.initSelect(i,e)}),this.setValue(e,!0,!0),this.repeaterFieldsContainer.sortable({handle:".repeater-row-header",update:function(){n.sort()}})},openFrame:function(e){"use strict";wp.customize.utils.isKeydownButNotEnterEvent(e)||(this.$thisButton.closest(".repeater-field").hasClass("repeater-field-cropped_image")?this.initCropperFrame():this.initFrame(),this.frame.open())},initFrame:function(){"use strict";var e=this.getMimeType();this.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query({type:e}),multiple:!1,date:!1})]}),this.frame.on("select",this.onSelect,this)},initCropperFrame:function(){"use strict";var t=this.$thisButton.siblings("input.hidden-field").attr("data-field"),e=this.getMimeType();_.isString(t)&&""!==t&&_.isObject(this.params.fields[t])&&"cropped_image"===this.params.fields[t].type&&["width","height","flex_width","flex_height"].forEach(function(e){_.isUndefined(this.params.fields[t][e])||(this.params[e]=this.params.fields[t][e])}.bind(this)),this.frame=wp.media({button:{text:"Select and Crop",close:!1},states:[new wp.media.controller.Library({library:wp.media.query({type:e}),multiple:!1,date:!1,suggestedWidth:this.params.width,suggestedHeight:this.params.height}),new wp.media.controller.CustomizeImageCropper({imgSelectOptions:this.calculateImageSelectOptions,control:this})]}),this.frame.on("select",this.onSelectForCrop,this),this.frame.on("cropped",this.onCropped,this),this.frame.on("skippedcrop",this.onSkippedCrop,this)},onSelect:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.$thisButton.closest(".repeater-field").hasClass("repeater-field-upload")?this.setFileInRepeaterField(e):this.setImageInRepeaterField(e)},onSelectForCrop:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.params.width!==e.width||this.params.height!==e.height||this.params.flex_width||this.params.flex_height?this.frame.setState("cropper"):this.setImageInRepeaterField(e)},onCropped:function(e){"use strict";this.setImageInRepeaterField(e)},calculateImageSelectOptions:function(e,t){"use strict";var i,n,a,r=t.get("control"),o=!!parseInt(r.params.flex_width,10),s=!!parseInt(r.params.flex_height,10),c=e.get("width"),l=e.get("height"),u=parseInt(r.params.width,10),d=parseInt(r.params.height,10),p=u/d,h=c,f=l;return t.set("canSkipCrop",!r.mustBeCropped(o,s,u,d,c,l)),p<h/f?u=(d=f)*p:d=(u=h)/p,!(a={handles:!0,keys:!0,instance:!0,persistent:!0,imageWidth:c,imageHeight:l,x1:i=(h-u)/2,y1:n=(f-d)/2,x2:u+i,y2:d+n})===s&&!1===o&&(a.aspectRatio=u+":"+d),!1===s&&(a.maxHeight=d),!1===o&&(a.maxWidth=u),a},mustBeCropped:function(e,t,i,n,a,r){"use strict";return!(!0===e&&!0===t||!0===e&&n===r||!0===t&&i===a||i===a&&n===r||a<=i)},onSkippedCrop:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.setImageInRepeaterField(e)},setImageInRepeaterField:function(e){"use strict";var t=this.$thisButton.closest(".repeater-field-image,.repeater-field-cropped_image");t.find(".kirki-image-attachment").html('<img src="'+e.url+'">').hide().slideDown("slow"),t.find(".hidden-field").val(e.id),this.$thisButton.text(this.$thisButton.data("alt-label")),t.find(".remove-button").show(),t.find("input, textarea, select").trigger("change"),this.frame.close()},setFileInRepeaterField:function(e){"use strict";var t=this.$thisButton.closest(".repeater-field-upload");t.find(".kirki-file-attachment").html('<span class="file"><span class="dashicons dashicons-media-default"></span> '+e.filename+"</span>").hide().slideDown("slow"),t.find(".hidden-field").val(e.id),this.$thisButton.text(this.$thisButton.data("alt-label")),t.find(".upload-button").show(),t.find(".remove-button").show(),t.find("input, textarea, select").trigger("change"),this.frame.close()},getMimeType:function(){"use strict";var e=this.$thisButton.siblings("input.hidden-field").attr("data-field");return _.isString(e)&&""!==e&&_.isObject(this.params.fields[e])&&"upload"===this.params.fields[e].type&&!_.isUndefined(this.params.fields[e].mime_type)?this.params.fields[e].mime_type:"image"},removeImage:function(e){"use strict";var t,i;wp.customize.utils.isKeydownButNotEnterEvent(e)||(i=(t=this.$thisButton.closest(".repeater-field-image,.repeater-field-cropped_image,.repeater-field-upload")).find(".upload-button"),t.find(".kirki-image-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),t.find(".hidden-field").val(""),i.text(i.data("label")),this.$thisButton.hide(),t.find("input, textarea, select").trigger("change"))},removeFile:function(e){"use strict";var t,i;wp.customize.utils.isKeydownButNotEnterEvent(e)||(i=(t=this.$thisButton.closest(".repeater-field-upload")).find(".upload-button"),t.find(".kirki-file-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),t.find(".hidden-field").val(""),i.text(i.data("label")),this.$thisButton.hide(),t.find("input, textarea, select").trigger("change"))},getValue:function(){"use strict";return JSON.parse(decodeURI(this.setting.get()))},setValue:function(e,t,i){"use strict";var a=e,r=[];i&&(jQuery.each(this.params.fields,function(e,t){"image"!==t.type&&"cropped_image"!==t.type&&"upload"!==t.type||r.push(e)}),jQuery.each(e,function(i,n){jQuery.each(r,function(e,t){_.isUndefined(n[t])||_.isUndefined(n[t].id)||(a[i][t]=n[t].id)})})),this.setting.set(encodeURI(JSON.stringify(a))),t&&this.settingField.trigger("change")},addRow:function(e){"use strict";var t,a,i,r=this,n=r.repeaterTemplate(),o=this.getValue(),s={};if(n){if(t=jQuery.extend(!0,{},r.params.fields),e)for(i in e)e.hasOwnProperty(i)&&t.hasOwnProperty(i)&&(t[i].default=e[i]);for(i in t.index=this.currentIndex,n=n(t),(a=new RepeaterRow(r.currentIndex,jQuery(n).appendTo(r.repeaterFieldsContainer),r.params.row_label,r)).container.on("row:remove",function(e,t){r.deleteRow(t)}),a.container.on("row:update",function(e,t,i,n){r.updateField.call(r,e,t,i,n),a.updateLabel()}),this.rows[this.currentIndex]=a,t)t.hasOwnProperty(i)&&(s[i]=t[i].default);return o[this.currentIndex]=s,this.setValue(o,!0),this.currentIndex++,a}},sort:function(){"use strict";var i=this,e=this.repeaterFieldsContainer.find(".repeater-row"),n=[],a=i.getValue(),r=[],o=[];e.each(function(e,t){n.push(jQuery(t).data("row"))}),jQuery.each(n,function(e,t){r[e]=i.rows[t],r[e].setRowIndex(e),o[e]=a[t]}),i.rows=r,i.setValue(o)},deleteRow:function(e){"use strict";var t,i=this.getValue();for(t in i[e]&&this.rows[e]&&(delete i[e],delete this.rows[e],this.setValue(i,!0)),1,this.rows)this.rows.hasOwnProperty(t)&&this.rows[t]&&(this.rows[t].updateLabel(),0)},updateField:function(e,t,i,n){"use strict";var a,r,o;this.rows[t]&&this.params.fields[i]&&(a=this.params.fields[i].type,r=this.rows[t],o=this.getValue(),n=jQuery(n),_.isUndefined(o[r.rowIndex][i])||(o[r.rowIndex][i]="checkbox"===a?n.is(":checked"):n.val(),this.setValue(o,!0)))},initColorPicker:function(){"use strict";var r=this,e=r.container.find(".color-picker-hex"),t={},i=e.data("field");_.isUndefined(i)||_.isUndefined(r.params.fields[i])||_.isUndefined(r.params.fields[i].palettes)||!_.isObject(r.params.fields[i].palettes)||(t.palettes=r.params.fields[i].palettes),t.change=function(e,t){var i=jQuery(e.target),n=i.closest(".repeater-row").data("row"),a=r.getValue();a[n][i.data("field")]=t.color.toString(),r.setValue(a,!0)},0!==e.length&&e.wpColorPicker(t)},initSelect:function(e,t){"use strict";var i,n,a=this,r=e.container.find(".repeater-field select"),o={};0!==r.length&&(i=r.data("field"),"undefed"!==(n=jQuery(r).data("multiple"))&&jQuery.isNumeric(n)&&1<(n=parseInt(n,10))&&(o.maximumSelectionLength=n),(t=t||{})[i]=t[i]||"",jQuery(r).selectWoo(o).val(t[i]||jQuery(r).val()),this.container.on("change",".repeater-field select",function(e){var t=jQuery(e.target),i=t.closest(".repeater-row").data("row"),n=a.getValue();n[i][t.data("field")]=jQuery(this).val(),a.setValue(n)}))}}),wp.customize.controlConstructor["kirki-slider"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t="postMessage"===e.setting.transport?"mousemove change":"change",i=e.container.find('input[type="range"]'),n=e.container.find('input[type="text"]'),a=e.setting._value;n.attr("value",a),i.on("mousemove change",function(){n.attr("value",i.val())}),i.on(t,function(){e.setting.set(i.val())}),n.on("input paste change",function(){i.attr("value",n.val()),e.setting.set(n.val())}),e.container.find(".slider-reset").on("click",function(){n.attr("value",e.params.default),i.attr("value",e.params.default),e.setting.set(n.val())})}}),wp.customize.controlConstructor["kirki-sortable"]=wp.customize.Control.extend({ready:function(){"use strict";var e=this;jQuery(e.container.find("ul.sortable").first()).sortable({update:function(){e.setting.set(e.getNewVal())}}).disableSelection().find("li").each(function(){jQuery(this).find("i.visibility").click(function(){jQuery(this).toggleClass("dashicons-visibility-faint").parents("li:eq(0)").toggleClass("invisible")})}).click(function(){e.setting.set(e.getNewVal())})},getNewVal:function(){var e=jQuery(this.container.find("li")),t=[];return _.each(e,function(e){jQuery(e).hasClass("invisible")||t.push(jQuery(e).data("value"))}),t}}),wp.customize.controlConstructor["kirki-switch"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){"use strict";var e=this,t=e.setting._value;this.container.on("change","input",function(){t=!!jQuery(this).is(":checked"),e.setting.set(t)})}}),wp.customize.controlConstructor["kirki-toggle"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t=e.setting._value;this.container.on("change","input",function(){t=!!jQuery(this).is(":checked"),e.setting.set(t)})}}),wp.customize.controlConstructor["kirki-typography"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){"use strict";var e,t=this,i=t.setting._value;t.renderFontSelector(),t.renderBackupFontSelector(),t.renderVariantSelector(),t.localFontsCheckbox(),void 0!==t.params.default["font-size"]&&this.container.on("change keyup paste",".font-size input",function(){t.saveValue("font-size",jQuery(this).val())}),void 0!==t.params.default["line-height"]&&this.container.on("change keyup paste",".line-height input",function(){t.saveValue("line-height",jQuery(this).val())}),void 0!==t.params.default["margin-top"]&&this.container.on("change keyup paste",".margin-top input",function(){t.saveValue("margin-top",jQuery(this).val())}),void 0!==t.params.default["margin-bottom"]&&this.container.on("change keyup paste",".margin-bottom input",function(){t.saveValue("margin-bottom",jQuery(this).val())}),void 0!==t.params.default["letter-spacing"]&&(i["letter-spacing"]=jQuery.isNumeric(i["letter-spacing"])?i["letter-spacing"]+"px":i["letter-spacing"],this.container.on("change keyup paste",".letter-spacing input",function(){i["letter-spacing"]=jQuery.isNumeric(jQuery(this).val())?jQuery(this).val()+"px":jQuery(this).val(),t.saveValue("letter-spacing",i["letter-spacing"])})),void 0!==t.params.default["word-spacing"]&&this.container.on("change keyup paste",".word-spacing input",function(){t.saveValue("word-spacing",jQuery(this).val())}),void 0!==t.params.default["text-align"]&&this.container.on("change",".text-align input",function(){t.saveValue("text-align",jQuery(this).val())}),void 0!==t.params.default["text-transform"]&&jQuery(t.selector+" .text-transform select").selectWoo().on("change",function(){t.saveValue("text-transform",jQuery(this).val())}),void 0!==t.params.default["text-decoration"]&&jQuery(t.selector+" .text-decoration select").selectWoo().on("change",function(){t.saveValue("text-decoration",jQuery(this).val())}),void 0!==t.params.default.color&&(e=this.container.find(".kirki-color-control")).wpColorPicker({change:function(){setTimeout(function(){t.saveValue("color",e.val())},100)}})},renderFontSelector:function(){var e,t,i=this,n=i.selector+" .font-family select",a=[],r=[],o=[],s=i.setting._value,c=i.getFonts();_.isUndefined(c.standard)||_.each(c.standard,function(e){r.push({id:e.family.replace(/"/g,"'"),text:e.label})}),_.isUndefined(c.google)||_.each(c.google,function(e){o.push({id:e.family,text:e.family})}),t={},_.isUndefined(i.params)||_.isUndefined(i.params.choices)||_.isUndefined(i.params.choices.fonts)||_.isUndefined(i.params.choices.fonts.families)||(t=i.params.choices.fonts.families),a=jQuery.extend({},t,{default:{text:kirkiL10n.defaultCSSValues,children:[{id:"",text:kirkiL10n.defaultBrowserFamily},{id:"initial",text:"initial"},{id:"inherit",text:"inherit"}]},standard:{text:kirkiL10n.standardFonts,children:r},google:{text:kirkiL10n.googleFonts,children:o}}),kirkiL10n.isScriptDebug&&(console.info('Kirki Debug: Font families for control "'+i.id+'":'),console.info(a)),a=_.values(a),e=jQuery(n).selectWoo({data:a}),(s["font-family"]||""===s["font-family"])&&(s["font-family"]=kirki.util.parseHtmlEntities(s["font-family"].replace(/'/g,'"')),e.val(s["font-family"]).trigger("change")),e.on("change",function(){i.saveValue("font-family",jQuery(this).val()),i.renderBackupFontSelector(),i.renderVariantSelector()})},renderBackupFontSelector:function(){var e,t=this,i=t.selector+" .font-backup select",n=[],a=t.setting._value,r=a["font-family"],o=t.getFonts();(_.isUndefined(a["font-backup"])||null===a["font-backup"])&&(a["font-backup"]=""),"inherit"!==r&&"initial"!==r&&"google"===kirki.util.webfonts.getFontType(r)?(jQuery(t.selector+" .font-backup").show(),_.isUndefined(o.standard)||_.each(o.standard,function(e){n.push({id:e.family.replace(/"/g,"'"),text:e.label})}),e=jQuery(i).selectWoo({data:n}),void 0!==a["font-backup"]&&e.val(a["font-backup"].replace(/'/g,'"')).trigger("change"),e.on("change",function(){t.saveValue("font-backup",jQuery(this).val())})):jQuery(t.selector+" .font-backup").hide()},renderVariantSelector:function(){var e,t,i,n=this,a=n.setting._value,r=a["font-family"],o=n.selector+" .variant select",s=[],c=!1,l=kirki.util.webfonts.getFontType(r),u=["","regular","italic","700","700italic"];if("google"===l&&(u=kirki.util.webfonts.google.getVariants(r)),_.isUndefined(n.params)||_.isUndefined(n.params.choices)||_.isUndefined(n.params.choices.fonts)||_.isUndefined(n.params.choices.fonts.variants)||_.isUndefined(n.params.choices.fonts.variants[r])||(u=n.params.choices.fonts.variants[r]),kirkiL10n.isScriptDebug&&(console.info('Kirki Debug: Font variants for font-family "'+r+'":'),console.info(u)),"inherit"!==r&&"initial"!==r&&""!==r||(a.variant="inherit",u=[""],jQuery(n.selector+" .variant").hide()),u.length<=1)return jQuery(n.selector+" .variant").hide(),a.variant=u[0],n.saveValue("variant",a.variant),i=""!==a.variant&&a.variant?(e=_.isString(a.variant)?a.variant.match(/\d/g):"400",e=_.isObject(e)?e.join(""):"400",a.variant&&-1!==a.variant.indexOf("italic")?"italic":"normal"):e="",n.saveValue("font-weight",e),void n.saveValue("font-style",i);jQuery(n.selector+" .font-backup").show(),jQuery(n.selector+" .variant").show(),_.each(u,function(e){a.variant===e&&(c=!0),s.push({id:e,text:e})}),c||(a.variant="regular"),jQuery(o).hasClass("select2-hidden-accessible")&&(jQuery(o).selectWoo("destroy"),jQuery(o).empty()),(t=jQuery(o).selectWoo({data:s})).val(a.variant).trigger("change"),t.on("change",function(){n.saveValue("variant",jQuery(this).val()),"string"!=typeof a.variant&&(a.variant=u[0]),e=_.isString(a.variant)?a.variant.match(/\d/g):"400",e=_.isObject(e)?e.join(""):"400",i=-1!==a.variant.indexOf("italic")?"italic":"normal",n.saveValue("font-weight",e),n.saveValue("font-style",i)})},getFonts:function(){var e=this,t=kirki.util.webfonts.google.getFonts(),i={},n="alpha",a=0,r={};return _.isEmpty(e.params.choices.fonts.google)?i=kirki.util.webfonts.google.getFonts(n,"",a):"alpha"===e.params.choices.fonts.google[0]||"popularity"===e.params.choices.fonts.google[0]||"trending"===e.params.choices.fonts.google[0]?(n=e.params.choices.fonts.google[0],isNaN(e.params.choices.fonts.google[1])||(a=parseInt(e.params.choices.fonts.google[1],10)),i=kirki.util.webfonts.google.getFonts(n,"",a)):_.each(e.params.choices.fonts.google,function(e){void 0===t[e]||_.isEmpty(t[e])||(i[e]=t[e])}),_.isEmpty(e.params.choices.fonts.standard)?_.each(kirki.util.webfonts.standard.fonts,function(e,t){r[t]={family:e.stack,label:e.label}}):_.each(e.params.choices.fonts.standard,function(e){void 0===kirki.util.webfonts.standard.fonts[e]||_.isEmpty(kirki.util.webfonts.standard.fonts[e])?r[e]={family:e,label:e}:(r[e]={},"undefined"===kirki.util.webfonts.standard.fonts[e].stack||_.isEmpty(kirki.util.webfonts.standard.fonts[e].stack)?r[e].family=i[e]:r[e].family=kirki.util.webfonts.standard.fonts[e].stack,"undefined"===kirki.util.webfonts.standard.fonts[e].label||_.isEmpty(kirki.util.webfonts.standard.fonts[e].label)?_.isEmpty(r[e])||(r[e].label=r[e]):r[e].label=kirki.util.webfonts.standard.fonts[e].label)}),{google:i,standard:r}},localFontsCheckbox:function(){var e=this,t=(e.container.find(".kirki-host-font-locally"),e.container.find(".kirki-host-font-locally input")),i=jQuery(t).is(":checked");e.setting._value&&e.setting._value.downloadFont&&jQuery(t).attr("checked","checked"),jQuery(t).on("change",function(){i=jQuery(t).is(":checked"),e.saveValue("downloadFont",i)})},saveValue:function(e,t){var i=this.container.find(".typography-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}});
|
1 |
+
if(_.isUndefined(window.kirkiSetSettingValue))var kirkiSetSettingValue={set:function(i,n){var e,a=this,t=wp.customize.settings.controls[i];if(_.isUndefined(t))return!0;switch(a.setValue(i,n),t.type){case"kirki-background":_.isUndefined(n["background-color"])||a.setColorPicker(a.findElement(i,".kirki-color-control"),n["background-color"]),a.findElement(i,".placeholder, .thumbnail").removeClass().addClass("placeholder").html("No file selected"),_.each(["background-repeat","background-position"],function(e){_.isUndefined(n[e])||a.setSelectWoo(a.findElement(i,"."+e+" select"),n[e])}),_.each(["background-size","background-attachment"],function(e){jQuery(a.findElement(i,"."+e+' input[value="'+n+'"]')).prop("checked",!0)}),e=JSON.stringify(n).replace(/'/g,"'"),jQuery(a.findElement(i,".background-hidden-value").attr("value",e)).trigger("change");break;case"kirki-code":jQuery(a.findElement(i,".CodeMirror"))[0].CodeMirror.setValue(n);break;case"checkbox":case"kirki-switch":case"kirki-toggle":n=1===n||"1"===n||!0===n,jQuery(a.findElement(i,"input")).prop("checked",n),wp.customize.instance(i).set(n);break;case"kirki-select":case"kirki-fontawesome":a.setSelectWoo(a.findElement(i,"select"),n);break;case"kirki-slider":jQuery(a.findElement(i,"input")).prop("value",n),jQuery(a.findElement(i,".kirki_range_value .value")).html(n);break;case"kirki-generic":(_.isUndefined(t.choices)||_.isUndefined(t.choices.element))&&(t.choices.element="input"),jQuery(a.findElement(i,t.choices.element)).prop("value",n);break;case"kirki-color":a.setColorPicker(a.findElement(i,".kirki-color-control"),n);break;case"kirki-multicheck":a.findElement(i,"input").each(function(){jQuery(this).prop("checked",!1)}),_.each(n,function(e,t){jQuery(a.findElement(i,'input[value="'+n[t]+'"]')).prop("checked",!0)});break;case"kirki-multicolor":_.each(n,function(e,t){a.setColorPicker(a.findElement(i,".multicolor-index-"+t),e)});break;case"kirki-radio-buttonset":case"kirki-radio-image":case"kirki-radio":case"kirki-dashicons":case"kirki-color-palette":case"kirki-palette":jQuery(a.findElement(i,'input[value="'+n+'"]')).prop("checked",!0);break;case"kirki-typography":_.each(["font-family","variant"],function(e){_.isUndefined(n[e])||a.setSelectWoo(a.findElement(i,"."+e+" select"),n[e])}),_.each(["font-size","line-height","letter-spacing","word-spacing"],function(e){_.isUndefined(n[e])||jQuery(a.findElement(i,"."+e+" input")).prop("value",n[e])}),_.isUndefined(n.color)||a.setColorPicker(a.findElement(i,".kirki-color-control"),n.color),e=JSON.stringify(n).replace(/'/g,"'"),jQuery(a.findElement(i,".typography-hidden-value").attr("value",e)).trigger("change");break;case"kirki-dimensions":_.each(n,function(e,t){jQuery(a.findElement(i,"."+t+" input")).prop("value",e)});break;case"kirki-repeater":case"kirki-custom":break;default:jQuery(a.findElement(i,"input")).prop("value",n)}},setColorPicker:function(e,t){e.attr("data-default-color",t).data("default-color",t).wpColorPicker("color",t)},setSelectWoo:function(e,t){jQuery(e).selectWoo().val(t).trigger("change")},setTextarea:function(e,t){jQuery(e).prop("value",t)},findElement:function(e,t){return wp.customize.control(e).container.find(t)},setValue:function(e,t,i){i=_.isUndefined(i)?100:parseInt(i,10),wp.customize.instance(e).set({}),setTimeout(function(){wp.customize.instance(e).set(t)},i)}};(kirki={initialized:!1,initialize:function(){this.initialized||(setTimeout(function(){kirki.util.webfonts.standard.initialize(),kirki.util.webfonts.google.initialize()},150),this.initialized=!0)}}).initialize();var kirki=kirki||{};kirki=(kirki=jQuery.extend(kirki,{control:{"kirki-radio":{init:function(e){this.template(e),kirki.input.radio.init(e)},template:function(e){var t=wp.template("kirki-input-radio");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,default:e.params.default,value:kirki.setting.get(e.id),choices:e.params.choices}))}},"kirki-color":{init:function(e){this.template(e),kirki.input.color.init(e)},template:function(e){var t=wp.template("kirki-input-color");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,mode:e.params.mode,inputAttrs:e.params.inputAttrs,"data-palette":e.params.palette,"data-default-color":e.params.default,"data-alpha":e.params.choices.alpha,value:kirki.setting.get(e.id)}))}},"kirki-generic":{init:function(e){this.template(e),_.isUndefined(e.params)||_.isUndefined(e.params.choices)||_.isUndefined(e.params.choices.element)||"textarea"!==e.params.choices.element?kirki.input.genericInput.init(e):kirki.input.textarea.init(e)},template:function(e){var t,i={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)};if(!_.isUndefined(e.params)&&!_.isUndefined(e.params.choices)&&!_.isUndefined(e.params.choices.element)&&"textarea"===e.params.choices.element)return t=wp.template("kirki-input-textarea"),void e.container.html(t(i));t=wp.template("kirki-input-generic"),e.container.html(t(i))}},"kirki-number":{init:function(e){this.template(e),kirki.input.number.init(e)},template:function(e){var t=wp.template("kirki-input-number");e.container.html(t(args={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)}))}},"kirki-image":{init:function(e){this.template(e),kirki.input.image.init(e)},template:function(e){var t=wp.template("kirki-input-image");e.container.html(t(args={label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id)}))}},"kirki-select":{init:function(e){this.template(e),kirki.input.select.init(e)},template:function(e){var t=wp.template("kirki-input-select");e.container.html(t({label:e.params.label,description:e.params.description,"data-id":e.id,inputAttrs:e.params.inputAttrs,choices:e.params.choices,value:kirki.setting.get(e.id),multiple:e.params.multiple||1,placeholder:e.params.placeholder}))}}}}))||{},kirki=(kirki=jQuery.extend(kirki,{input:{radio:{init:function(e){jQuery('input[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},color:{init:function(e){var t,i=jQuery('.kirki-color-control[data-id="'+e.id+'"]');e.choices=e.choices||{},_.isEmpty(e.choices)&&e.params.choices&&(e.choices=e.params.choices),_.isEmpty(e.choices)||i.wpColorPicker(e.choices),setTimeout(function(){(t=jQuery('.kirki-input-container[data-id="'+e.id+'"] .wp-picker-clear')).length&&t.click(function(){kirki.setting.set(e.id,"")})},200),i.wpColorPicker({change:function(){setTimeout(function(){kirki.setting.set(e.id,i.val())},20)}})}},genericInput:{init:function(e){jQuery('input[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},textarea:{init:function(e){jQuery('textarea[data-id="'+e.id+'"]').on("change keyup paste click",function(){kirki.setting.set(e.id,jQuery(this).val())})}},select:{init:function(e){var t,i=jQuery('select[data-id="'+e.id+'"]'),n=parseInt(i.data("multiple"),10),a={escapeMarkup:function(e){return e}};e.params.placeholder&&(a.placeholder=e.params.placeholder,a.allowClear=!0),1<n&&(a.maximumSelectionLength=n),jQuery(i).selectWoo(a).on("change",function(){t=null===(t=jQuery(this).val())&&1<n?[]:t,kirki.setting.set(e.id,t)})}},number:{init:function(i){var e,t,n=jQuery('input[data-id="'+i.id+'"]'),a=i.setting._value;i.params.choices=_.defaults(i.params.choices,{min:0,max:100,step:1}),(isNaN(a)||""===a)&&(a=i.params.choices.min<0&&0<i.params.choices.max?0:i.params.choices.min),a=parseFloat(a),i.params.choices.step="any"===i.params.choices.step?.001:i.params.choices.step,i.params.choices.min=parseFloat(i.params.choices.min),i.params.choices.max=parseFloat(i.params.choices.max),i.params.choices.step=parseFloat(i.params.choices.step),e=jQuery('.kirki-input-container[data-id="'+i.id+'"] .plus'),t=jQuery('.kirki-input-container[data-id="'+i.id+'"] .minus'),e.click(function(){var e,t=parseFloat(n.val());e=t>=i.params.choices.max?t:t+i.params.choices.step,n.val(e),n.trigger("change")}),t.click(function(){var e,t=parseFloat(n.val());e=t<=i.params.choices.min?t:t-i.params.choices.step,n.val(e),n.trigger("change")}),n.on("change keyup paste click",function(){var e=jQuery(this).val();isNaN(e)&&(e=parseFloat(e,10),e=isNaN(e)?0:e,jQuery(this).attr("value",e)),kirki.setting.set(i.id,e)})}},image:{init:function(a){var t=kirki.setting.get(a.id),n=_.isUndefined(a.params.choices)||_.isUndefined(a.params.choices.save_as)?"url":a.params.choices.save_as,r=a.container.find(".placeholder, .thumbnail"),e="array"===n?t.url:t,s=a.container.find(".image-upload-remove-button"),o=a.container.find(".image-default-button");t="array"===n&&_.isString(t)?{url:t}:t,"id"!==n&&"ID"!==n||""===t||wp.media.attachment(t).fetch().then(function(){setTimeout(function(){var e=wp.media.attachment(t).get("url");r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+e+'" alt="" />')},700)}),("url"===n&&""!==t||"array"===n&&!_.isUndefined(t.url)&&""!==t.url)&&a.container.find("image-default-button").hide(),("url"===n&&""===t||"array"===n&&(_.isUndefined(t.url)||""===t.url))&&s.hide(),t===a.params.default&&a.container.find("image-default-button").hide(),""!==e&&r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+e+'" alt="" />'),a.container.on("click",".image-upload-button",function(e){var i=wp.media({multiple:!1}).open().on("select",function(){var e=i.state().get("selection").first().toJSON(),t=e.url;_.isUndefined(e.sizes)||(t=e.sizes.full.url,_.isUndefined(e.sizes.medium)?_.isUndefined(e.sizes.thumbnail)||(t=e.sizes.thumbnail.url):t=e.sizes.medium.url),"array"===n?kirki.setting.set(a.id,{id:e.id,url:e.sizes.full.url,width:e.width,height:e.height}):"id"===n?kirki.setting.set(a.id,e.id):kirki.setting.set(a.id,_.isUndefined(e.sizes)?e.url:e.sizes.full.url),r.length&&r.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+t+'" alt="" />'),s.length&&(s.show(),o.hide())});e.preventDefault()}),a.container.on("click",".image-upload-remove-button",function(e){var t,i,n;e.preventDefault(),kirki.setting.set(a.id,""),t=a.container.find(".placeholder, .thumbnail"),i=a.container.find(".image-upload-remove-button"),n=a.container.find(".image-default-button"),t.length&&t.removeClass().addClass("placeholder").html(kirkiL10n.noFileSelected),i.length&&(i.hide(),jQuery(n).hasClass("button")&&n.show())}),a.container.on("click",".image-default-button",function(e){var t,i,n;e.preventDefault(),kirki.setting.set(a.id,a.params.default),t=a.container.find(".placeholder, .thumbnail"),i=a.container.find(".image-upload-remove-button"),n=a.container.find(".image-default-button"),t.length&&t.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+a.params.default+'" alt="" />'),i.length&&(i.show(),n.hide())})}}}}))||{},kirki=(kirki=jQuery.extend(kirki,{setting:{get:function(e){var t=e.split("["),i="",n=0,a="";return _.each(t,function(e,t){e=e.replace("]",""),0===t?i=e:i+="["+e+"]",_.isUndefined(wp.customize.instance(i))||(a=wp.customize.instance(i).get(),n=t),n<t&&_.isObject(a)&&!_.isUndefined(a[e])&&(a=a[e])}),a},set:function(e,t,i){var n,a,r,s,o,c="",l="",u={};n=e,_.isObject(e)&&(n=jQuery(e).attr("data-id")?e.attr("data-id"):e.parents("[data-id]").attr("data-id")),void 0===wp.customize.control(n)?(a=n.split("["),_.each(a,function(e,t){e=e.replace("]",""),c=0===t?e:"["+e+"]",_.isUndefined(wp.customize.instance(c))||(l=c,r=wp.customize.instance(l).get())}),""!==(s=n.replace(l,""))?(_.isObject(r)||(r={}),"["===s.charAt(0)&&(s=s.replace("[","")),o=s.split("["),_.each(o,function(e,t){o[t]=e.replace("]","")}),i&&o.push(i),u='{"'+o.join('":{"')+'":"'+t+'"'+"}".repeat(o.length),u=JSON.parse(u),jQuery.extend(!0,r,u),t=r):i&&((r=_.isObject(r)?r:{})[i]=t,t=r),wp.customize.control(l).setting.set(t)):wp.customize.control(n).setting.set(t)}}}))||{};kirki=jQuery.extend(kirki,{util:{webfonts:{google:{fonts:{},initialize:function(){this.setFonts()},setFonts:function(){var t=this;_.isEmpty(t.fonts)&&jQuery.post(ajaxurl,{action:"kirki_fonts_google_all_get"},function(e){t.fonts=JSON.parse(e)})},getFont:function(e){var t=this.getFonts();return void 0!==t[e]&&t[e]},getFonts:function(e,i,t){var n=this,a={},r={},s={};return e="alpha"!==(e=e||"alpha")&&"popularity"!==e&&"trending"!==e?"alpha":e,t=t||0,t=parseInt(t,10),"alpha"===e?a=jQuery.extend({},n.fonts.items):_.each(n.fonts.order[e],function(e){a[e]=n.fonts.items[e]}),""!==i&&i?_.each(a,function(e,t){i===e.category&&(r[t]=e)}):r=a,0<t?(_.each(_.first(_.keys(r),t),function(e){s[e]=r[e]}),s):r},getVariants:function(e){var t=this.getFont(e);return!!t&&(!_.isUndefined(t.variants)&&t.variants)}},standard:{fonts:{},initialize:function(){this.setFonts()},setFonts:function(){var t=this;_.isEmpty(t.fonts)&&jQuery.post(ajaxurl,{action:"kirki_fonts_standard_all_get"},function(e){t.fonts=JSON.parse(e)})},getVariants:function(){return["regular","italic","700","700italic"]}},getFontType:function(e){return void 0!==this.standard.fonts[e]||void 0!==this.standard.fonts.stack&&void 0!==this.standard.fonts.stack[e]?"standard":void 0!==this.google.fonts.items[e]&&"google"}},validate:{cssValue:function(e){var t,i;return"string"!=typeof e||"number"!=typeof e||(0===e||"0"===e||"auto"===e||"inherit"===e||"initial"===e||(0<=e.indexOf("calc(")&&0<=e.indexOf(")")||(t=parseFloat(e),i=e.replace(t,""),e?!isNaN(t)&&-1<jQuery.inArray(i,["fr","rem","em","ex","%","px","cm","mm","in","pt","pc","ch","vh","vw","vmin","vmax"]):void 0)))}},parseHtmlEntities:function(e){return(new DOMParser).parseFromString("<!doctype html><body>"+e,"text/html").body.textContent}}}),function(){"use strict";wp.customize.kirkiDynamicControl=wp.customize.Control.extend({initialize:function(e,t){var i=t||{};i.params=i.params||{},i.params.type||(i.params.type="kirki-generic"),i.params.content||(i.params.content=jQuery("<li></li>"),i.params.content.attr("id","customize-control-"+e.replace(/]/g,"").replace(/\[/g,"-")),i.params.content.attr("class","customize-control customize-control-"+i.params.type)),this.propertyElements=[],wp.customize.Control.prototype.initialize.call(this,e,i)},_setUpSettingRootLinks:function(){var n=this;n.container.find("[data-customize-setting-link]").each(function(){var i=jQuery(this);wp.customize(i.data("customizeSettingLink"),function(e){var t=new wp.customize.Element(i);n.elements.push(t),t.sync(e),t.set(e())})})},_setUpSettingPropertyLinks:function(){var n=this;n.setting&&n.container.find("[data-customize-setting-property-link]").each(function(){var t,e=jQuery(this),i=e.data("customizeSettingPropertyLink");t=new wp.customize.Element(e),n.propertyElements.push(t),t.set(n.setting()[i]),t.bind(function(e){var t=n.setting();e!==t[i]&&((t=_.clone(t))[i]=e,n.setting.set(t))}),n.setting.bind(function(e){e[i]!==t.get()&&t.set(e[i])})})},ready:function(){var e=this;e._setUpSettingRootLinks(),e._setUpSettingPropertyLinks(),wp.customize.Control.prototype.ready.call(e),e.deferred.embedded.done(function(){e.initKirkiControl(e)})},embed:function(){var t=this,e=t.section();e&&wp.customize.section(e,function(e){"kirki-expanded"===e.params.type||e.expanded()||wp.customize.settings.autofocus.control===t.id?t.actuallyEmbed():e.expanded.bind(function(e){e&&t.actuallyEmbed()})})},actuallyEmbed:function(){"resolved"!==this.deferred.embedded.state()&&(this.renderContent(),this.deferred.embedded.resolve())},focus:function(e){this.actuallyEmbed(),wp.customize.Control.prototype.focus.call(this,e)},initKirkiControl:function(e){void 0===kirki.control[e.params.type]?this.container.on("change keyup paste click","input",function(){e.setting.set(jQuery(this).val())}):kirki.control[e.params.type].init(e)}})}(),_.each(kirki.control,function(e,t){wp.customize.controlConstructor[t]=wp.customize.kirkiDynamicControl.extend({})}),wp.customize.controlConstructor["kirki-background"]=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){var s=this,e=s.setting._value,t=s.container.find(".kirki-color-control");(_.isUndefined(e["background-image"])||""===e["background-image"])&&(s.container.find(".background-wrapper > .background-repeat").hide(),s.container.find(".background-wrapper > .background-position").hide(),s.container.find(".background-wrapper > .background-size").hide(),s.container.find(".background-wrapper > .background-attachment").hide()),t.wpColorPicker({change:function(){setTimeout(function(){s.saveValue("background-color",t.val())},100)}}),s.container.on("change",".background-repeat select",function(){s.saveValue("background-repeat",jQuery(this).val())}),s.container.on("change click",".background-size input",function(){s.saveValue("background-size",jQuery(this).val())}),s.container.on("change",".background-position select",function(){s.saveValue("background-position",jQuery(this).val())}),s.container.on("change click",".background-attachment input",function(){s.saveValue("background-attachment",jQuery(this).val())}),s.container.on("click",".background-image-upload-button",function(e){var r=wp.media({multiple:!1}).open().on("select",function(){var e,t,i,n=r.state().get("selection").first(),a=n.toJSON().sizes.full.url;_.isUndefined(n.toJSON().sizes.medium)?_.isUndefined(n.toJSON().sizes.thumbnail)||(a=n.toJSON().sizes.thumbnail.url):a=n.toJSON().sizes.medium.url,e=n.toJSON().sizes.full.url,n.toJSON().id,n.toJSON().width,n.toJSON().height,""!==e&&s.container.find(".background-wrapper > .background-repeat, .background-wrapper > .background-position, .background-wrapper > .background-size, .background-wrapper > .background-attachment").show(),s.saveValue("background-image",e),t=s.container.find(".placeholder, .thumbnail"),i=s.container.find(".background-image-upload-remove-button"),t.length&&t.removeClass().addClass("thumbnail thumbnail-image").html('<img src="'+a+'" alt="" />'),i.length&&i.show()});e.preventDefault()}),s.container.on("click",".background-image-upload-remove-button",function(e){var t,i;e.preventDefault(),s.saveValue("background-image",""),t=s.container.find(".placeholder, .thumbnail"),i=s.container.find(".background-image-upload-remove-button"),s.container.find(".background-wrapper > .background-repeat").hide(),s.container.find(".background-wrapper > .background-position").hide(),s.container.find(".background-wrapper > .background-size").hide(),s.container.find(".background-wrapper > .background-attachment").hide(),t.length&&t.removeClass().addClass("placeholder").html("No file selected"),i.length&&i.hide()})},saveValue:function(e,t){var i=jQuery("#customize-control-"+this.id.replace("[","-").replace("]","")+" .background-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}}),wp.customize.controlConstructor["kirki-color-palette"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-dashicons"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-date"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t=e.selector+" input.datepicker";jQuery(t).datepicker({dateFormat:"yy-mm-dd"}),this.container.on("change keyup paste","input.datepicker",function(){e.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["kirki-dimension"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t=this;t.kirkiNotifications(),this.container.on("change keyup paste","input",function(){e=jQuery(this).val(),t.setting.set(e)})},kirkiNotifications:function(){var n=void 0!==this.params.choices&&void 0!==this.params.choices.accept_unitless&&!0===this.params.choices.accept_unitless;wp.customize(this.id,function(i){i.bind(function(e){var t="long_title";!1!==kirki.util.validate.cssValue(e)||n&&!isNaN(e)?i.notifications.remove(t):i.notifications.add(t,new wp.customize.Notification(t,{type:"warning",message:dimensionkirkiL10n["invalid-value"]}))})})}}),wp.customize.controlConstructor["kirki-dimensions"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t=this.params.choices.controls,i={},n=[];for(_.each(t,function(e,t){!0===e&&n.push(t)}),e=0;e<n.length;e++)i[n[e]]=this.setting._value[n[e]],this.updateDimensionsValue(n[e],i)},updateDimensionsValue:function(e,t){var i=this;i.container.on("change keyup paste","."+e+" input",function(){t[e]=jQuery(this).val(),i.kirkiNotifications(),i.saveValue(t)})},saveValue:function(e){var i={};_.each(e,function(e,t){i[t]=e}),this.setting.set(i)},kirkiNotifications:function(){wp.customize(this.id,function(a){a.bind(function(e){var t,i="long_title",n={};if(a.notifications.remove(i),_.each(e,function(e,t){!1===kirki.util.validate.cssValue(e)?n[t]=e:delete n[t]}),!_.isEmpty(n))return t=dimensionskirkiL10n["invalid-value"]+" ("+_.values(n).toString()+") ",void a.notifications.add(i,new wp.customize.Notification(i,{type:"warning",message:t}));a.notifications.remove(i)})})}}),wp.customize.controlConstructor["kirki-editor"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var i,n=this,a=n.container.find("textarea"),e="kirki-editor-"+n.id.replace("[","").replace("]","");wp.editor.initialize(e,{tinymce:{wpautop:!0},quicktags:!0,mediaButtons:!0}),(i=tinyMCE.get(e))&&i.onChange.add(function(e){var t;e.save(),t=i.getContent(),a.val(t).trigger("change"),wp.customize.instance(n.id).set(t)})}}),wp.customize.controlConstructor["kirki-fontawesome"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e,t,i=this,n=this.container.find("select"),a=jQuery.parseJSON(fontAwesomeJSON),r={data:[],escapeMarkup:function(e){return e},templateResult:function(e){return'<i class="fa fa-lg fa-'+e.id+'" aria-hidden="true"></i> '+e.text},templateSelection:function(e){return'<i class="fa fa-lg fa-'+e.id+'" aria-hidden="true"></i> '+e.text}};_.each(a.icons,function(e){r.data.push({id:e.id,text:e.name})}),(t=jQuery(n).selectWoo(r)).on("change",function(){e=jQuery(this).val(),i.setting.set(e)}),t.val(i.setting._value).trigger("change")}}),wp.customize.controlConstructor["kirki-multicheck"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var n=this;n.container.on("change","input",function(){var t=[],i=0;jQuery.each(n.params.choices,function(e){n.container.find('input[value="'+e+'"]').is(":checked")?(n.container.find('input[value="'+e+'"]').parent().addClass("checked"),t[i]=e,i++):n.container.find('input[value="'+e+'"]').parent().removeClass("checked")}),n.setting.set(t)})}}),wp.customize.controlConstructor["kirki-multicolor"]=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){"use strict";var r=this.params.choices,e=Object.keys(r),t=(this.params.value,0);function i(e,t,i){var n=e.container.find(".multicolor-index-"+i),a={change:function(){setTimeout(function(){e.saveValue(i,n.val()),e.container.find(".multicolor-index-"+i).trigger("change")},100)}};_.isObject(r.irisArgs)&&_.each(r.irisArgs,function(e,t){a[t]=e}),n.wpColorPicker(a)}for(;t<Object.keys(r).length;)i(this,0,e[t]),t++},saveValue:function(e,t){var i=this.container.find(".multicolor-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}}),wp.customize.controlConstructor["kirki-palette"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-radio-buttonset"]=wp.customize.kirkiDynamicControl.extend({}),wp.customize.controlConstructor["kirki-radio-image"]=wp.customize.kirkiDynamicControl.extend({});var RepeaterRow=function(e,t,i,n){"use strict";var a=this;this.rowIndex=e,this.container=t,this.label=i,this.header=this.container.find(".repeater-row-header"),this.header.on("click",function(){a.toggleMinimize()}),this.container.on("click",".repeater-row-remove",function(){a.remove()}),this.header.on("mousedown",function(){a.container.trigger("row:start-dragging")}),this.container.on("keyup change","input, select, textarea",function(e){a.container.trigger("row:update",[a.rowIndex,jQuery(e.target).data("field"),e.target])}),this.setRowIndex=function(e){this.rowIndex=e,this.container.attr("data-row",e),this.container.data("row",e),this.updateLabel()},this.toggleMinimize=function(){this.container.toggleClass("minimized"),this.header.find(".dashicons").toggleClass("dashicons-arrow-up").toggleClass("dashicons-arrow-down")},this.remove=function(){this.container.slideUp(300,function(){jQuery(this).detach()}),this.container.trigger("row:remove",[this.rowIndex])},this.updateLabel=function(){var e,t,i;if("field"===this.label.type&&(e=this.container.find('.repeater-field [data-field="'+this.label.field+'"]'),_.isFunction(e.val)&&""!==(t=e.val())))return _.isUndefined(n.params.fields[this.label.field])||_.isUndefined(n.params.fields[this.label.field].type)||("select"===n.params.fields[this.label.field].type?_.isUndefined(n.params.fields[this.label.field].choices)||_.isUndefined(n.params.fields[this.label.field].choices[e.val()])||(t=n.params.fields[this.label.field].choices[e.val()]):"radio"!==n.params.fields[this.label.field].type&&"radio-image"!==n.params.fields[this.label.field].type||(i=n.selector+' [data-row="'+this.rowIndex+'"] .repeater-field [data-field="'+this.label.field+'"]:checked',t=jQuery(i).val())),void this.header.find(".repeater-row-label").text(t);this.header.find(".repeater-row-label").text(this.label.value+" "+(this.rowIndex+1))},this.updateLabel()};wp.customize.controlConstructor.repeater=wp.customize.Control.extend({ready:function(){"use strict";!_.isUndefined(window.kirkiControlLoader)&&_.isFunction(kirkiControlLoader)?kirkiControlLoader(this):this.initKirkiControl()},initKirkiControl:function(){"use strict";var t,i,n=this,e=this.params.value;this.settingField=this.container.find("[data-customize-setting-link]").first(),this.setValue([],!1),this.repeaterFieldsContainer=this.container.find(".repeater-fields").first(),this.currentIndex=0,this.rows=[],t=!1,_.isUndefined(this.params.choices.limit)||(t=!(this.params.choices.limit<=0)&&parseInt(this.params.choices.limit,10)),this.container.on("click","button.repeater-add",function(e){e.preventDefault(),!t||n.currentIndex<t?((i=n.addRow()).toggleMinimize(),n.initColorPicker(),n.initSelect(i)):jQuery(n.selector+" .limit").addClass("highlight")}),this.container.on("click",".repeater-row-remove",function(){n.currentIndex--,(!t||n.currentIndex<t)&&jQuery(n.selector+" .limit").removeClass("highlight")}),this.container.on("click keypress",".repeater-field-image .upload-button,.repeater-field-cropped_image .upload-button,.repeater-field-upload .upload-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.openFrame(e)}),this.container.on("click keypress",".repeater-field-image .remove-button,.repeater-field-cropped_image .remove-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.removeImage(e)}),this.container.on("click keypress",".repeater-field-upload .remove-button",function(e){e.preventDefault(),n.$thisButton=jQuery(this),n.removeFile(e)}),this.repeaterTemplate=_.memoize(function(){var t={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(e){return _.template(n.container.find(".customize-control-repeater-content").first().html(),null,t)(e)}}),e.length&&_.each(e,function(e){i=n.addRow(e),n.initColorPicker(),n.initSelect(i,e)}),this.setValue(e,!0,!0),this.repeaterFieldsContainer.sortable({handle:".repeater-row-header",update:function(){n.sort()}})},openFrame:function(e){"use strict";wp.customize.utils.isKeydownButNotEnterEvent(e)||(this.$thisButton.closest(".repeater-field").hasClass("repeater-field-cropped_image")?this.initCropperFrame():this.initFrame(),this.frame.open())},initFrame:function(){"use strict";var e=this.getMimeType();this.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query({type:e}),multiple:!1,date:!1})]}),this.frame.on("select",this.onSelect,this)},initCropperFrame:function(){"use strict";var t=this.$thisButton.siblings("input.hidden-field").attr("data-field"),e=this.getMimeType();_.isString(t)&&""!==t&&_.isObject(this.params.fields[t])&&"cropped_image"===this.params.fields[t].type&&["width","height","flex_width","flex_height"].forEach(function(e){_.isUndefined(this.params.fields[t][e])||(this.params[e]=this.params.fields[t][e])}.bind(this)),this.frame=wp.media({button:{text:"Select and Crop",close:!1},states:[new wp.media.controller.Library({library:wp.media.query({type:e}),multiple:!1,date:!1,suggestedWidth:this.params.width,suggestedHeight:this.params.height}),new wp.media.controller.CustomizeImageCropper({imgSelectOptions:this.calculateImageSelectOptions,control:this})]}),this.frame.on("select",this.onSelectForCrop,this),this.frame.on("cropped",this.onCropped,this),this.frame.on("skippedcrop",this.onSkippedCrop,this)},onSelect:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.$thisButton.closest(".repeater-field").hasClass("repeater-field-upload")?this.setFileInRepeaterField(e):this.setImageInRepeaterField(e)},onSelectForCrop:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.params.width!==e.width||this.params.height!==e.height||this.params.flex_width||this.params.flex_height?this.frame.setState("cropper"):this.setImageInRepeaterField(e)},onCropped:function(e){"use strict";this.setImageInRepeaterField(e)},calculateImageSelectOptions:function(e,t){"use strict";var i,n,a,r=t.get("control"),s=!!parseInt(r.params.flex_width,10),o=!!parseInt(r.params.flex_height,10),c=e.get("width"),l=e.get("height"),u=parseInt(r.params.width,10),d=parseInt(r.params.height,10),p=u/d,h=c,f=l;return t.set("canSkipCrop",!r.mustBeCropped(s,o,u,d,c,l)),p<h/f?u=(d=f)*p:d=(u=h)/p,!(a={handles:!0,keys:!0,instance:!0,persistent:!0,imageWidth:c,imageHeight:l,x1:i=(h-u)/2,y1:n=(f-d)/2,x2:u+i,y2:d+n})===o&&!1===s&&(a.aspectRatio=u+":"+d),!1===o&&(a.maxHeight=d),!1===s&&(a.maxWidth=u),a},mustBeCropped:function(e,t,i,n,a,r){"use strict";return!(!0===e&&!0===t||!0===e&&n===r||!0===t&&i===a||i===a&&n===r||a<=i)},onSkippedCrop:function(){"use strict";var e=this.frame.state().get("selection").first().toJSON();this.setImageInRepeaterField(e)},setImageInRepeaterField:function(e){"use strict";var t=this.$thisButton.closest(".repeater-field-image,.repeater-field-cropped_image");t.find(".kirki-image-attachment").html('<img src="'+e.url+'">').hide().slideDown("slow"),t.find(".hidden-field").val(e.id),this.$thisButton.text(this.$thisButton.data("alt-label")),t.find(".remove-button").show(),t.find("input, textarea, select").trigger("change"),this.frame.close()},setFileInRepeaterField:function(e){"use strict";var t=this.$thisButton.closest(".repeater-field-upload");t.find(".kirki-file-attachment").html('<span class="file"><span class="dashicons dashicons-media-default"></span> '+e.filename+"</span>").hide().slideDown("slow"),t.find(".hidden-field").val(e.id),this.$thisButton.text(this.$thisButton.data("alt-label")),t.find(".upload-button").show(),t.find(".remove-button").show(),t.find("input, textarea, select").trigger("change"),this.frame.close()},getMimeType:function(){"use strict";var e=this.$thisButton.siblings("input.hidden-field").attr("data-field");return _.isString(e)&&""!==e&&_.isObject(this.params.fields[e])&&"upload"===this.params.fields[e].type&&!_.isUndefined(this.params.fields[e].mime_type)?this.params.fields[e].mime_type:"image"},removeImage:function(e){"use strict";var t,i;wp.customize.utils.isKeydownButNotEnterEvent(e)||(i=(t=this.$thisButton.closest(".repeater-field-image,.repeater-field-cropped_image,.repeater-field-upload")).find(".upload-button"),t.find(".kirki-image-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),t.find(".hidden-field").val(""),i.text(i.data("label")),this.$thisButton.hide(),t.find("input, textarea, select").trigger("change"))},removeFile:function(e){"use strict";var t,i;wp.customize.utils.isKeydownButNotEnterEvent(e)||(i=(t=this.$thisButton.closest(".repeater-field-upload")).find(".upload-button"),t.find(".kirki-file-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),t.find(".hidden-field").val(""),i.text(i.data("label")),this.$thisButton.hide(),t.find("input, textarea, select").trigger("change"))},getValue:function(){"use strict";return JSON.parse(decodeURI(this.setting.get()))},setValue:function(e,t,i){"use strict";var a=e,r=[];i&&(jQuery.each(this.params.fields,function(e,t){"image"!==t.type&&"cropped_image"!==t.type&&"upload"!==t.type||r.push(e)}),jQuery.each(e,function(i,n){jQuery.each(r,function(e,t){_.isUndefined(n[t])||_.isUndefined(n[t].id)||(a[i][t]=n[t].id)})})),this.setting.set(encodeURI(JSON.stringify(a))),t&&this.settingField.trigger("change")},addRow:function(e){"use strict";var t,a,i,r=this,n=r.repeaterTemplate(),s=this.getValue(),o={};if(n){if(t=jQuery.extend(!0,{},r.params.fields),e)for(i in e)e.hasOwnProperty(i)&&t.hasOwnProperty(i)&&(t[i].default=e[i]);for(i in t.index=this.currentIndex,n=n(t),(a=new RepeaterRow(r.currentIndex,jQuery(n).appendTo(r.repeaterFieldsContainer),r.params.row_label,r)).container.on("row:remove",function(e,t){r.deleteRow(t)}),a.container.on("row:update",function(e,t,i,n){r.updateField.call(r,e,t,i,n),a.updateLabel()}),this.rows[this.currentIndex]=a,t)t.hasOwnProperty(i)&&(o[i]=t[i].default);return s[this.currentIndex]=o,this.setValue(s,!0),this.currentIndex++,a}},sort:function(){"use strict";var i=this,e=this.repeaterFieldsContainer.find(".repeater-row"),n=[],a=i.getValue(),r=[],s=[];e.each(function(e,t){n.push(jQuery(t).data("row"))}),jQuery.each(n,function(e,t){r[e]=i.rows[t],r[e].setRowIndex(e),s[e]=a[t]}),i.rows=r,i.setValue(s)},deleteRow:function(e){"use strict";var t,i=this.getValue();for(t in i[e]&&this.rows[e]&&(delete i[e],delete this.rows[e],this.setValue(i,!0)),1,this.rows)this.rows.hasOwnProperty(t)&&this.rows[t]&&(this.rows[t].updateLabel(),0)},updateField:function(e,t,i,n){"use strict";var a,r,s;this.rows[t]&&this.params.fields[i]&&(a=this.params.fields[i].type,r=this.rows[t],s=this.getValue(),n=jQuery(n),_.isUndefined(s[r.rowIndex][i])||(s[r.rowIndex][i]="checkbox"===a?n.is(":checked"):n.val(),this.setValue(s,!0)))},initColorPicker:function(){"use strict";var r=this,e=r.container.find(".color-picker-hex"),t={},i=e.data("field");_.isUndefined(i)||_.isUndefined(r.params.fields[i])||_.isUndefined(r.params.fields[i].palettes)||!_.isObject(r.params.fields[i].palettes)||(t.palettes=r.params.fields[i].palettes),t.change=function(e,t){var i=jQuery(e.target),n=i.closest(".repeater-row").data("row"),a=r.getValue();a[n][i.data("field")]=t.color.toString(),r.setValue(a,!0)},0!==e.length&&e.wpColorPicker(t)},initSelect:function(e,t){"use strict";var i,n,a=this,r=e.container.find(".repeater-field select"),s={};0!==r.length&&(i=r.data("field"),"undefed"!==(n=jQuery(r).data("multiple"))&&jQuery.isNumeric(n)&&1<(n=parseInt(n,10))&&(s.maximumSelectionLength=n),(t=t||{})[i]=t[i]||"",jQuery(r).selectWoo(s).val(t[i]||jQuery(r).val()),this.container.on("change",".repeater-field select",function(e){var t=jQuery(e.target),i=t.closest(".repeater-row").data("row"),n=a.getValue();n[i][t.data("field")]=jQuery(this).val(),a.setValue(n)}))}}),wp.customize.controlConstructor["kirki-slider"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t="postMessage"===e.setting.transport?"mousemove change":"change",i=e.container.find('input[type="range"]'),n=e.container.find('input[type="text"]'),a=e.setting._value;n.attr("value",a),i.on("mousemove change",function(){n.attr("value",i.val())}),i.on(t,function(){e.setting.set(i.val())}),n.on("input paste change",function(){i.attr("value",n.val()),e.setting.set(n.val())}),e.container.find(".slider-reset").on("click",function(){n.attr("value",e.params.default),i.attr("value",e.params.default),e.setting.set(n.val())})}}),wp.customize.controlConstructor["kirki-sortable"]=wp.customize.Control.extend({ready:function(){"use strict";var e=this;jQuery(e.container.find("ul.sortable").first()).sortable({update:function(){e.setting.set(e.getNewVal())}}).disableSelection().find("li").each(function(){jQuery(this).find("i.visibility").click(function(){jQuery(this).toggleClass("dashicons-visibility-faint").parents("li:eq(0)").toggleClass("invisible")})}).click(function(){e.setting.set(e.getNewVal())})},getNewVal:function(){var e=jQuery(this.container.find("li")),t=[];return _.each(e,function(e){jQuery(e).hasClass("invisible")||t.push(jQuery(e).data("value"))}),t}}),wp.customize.controlConstructor["kirki-switch"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){"use strict";var e=this,t=e.setting._value;this.container.on("change","input",function(){t=!!jQuery(this).is(":checked"),e.setting.set(t)})}}),wp.customize.controlConstructor["kirki-toggle"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){var e=this,t=e.setting._value;this.container.on("change","input",function(){t=!!jQuery(this).is(":checked"),e.setting.set(t)})}}),wp.customize.controlConstructor["kirki-typography"]=wp.customize.kirkiDynamicControl.extend({initKirkiControl:function(){"use strict";var e,t=this,i=t.setting._value;t.renderFontSelector(),t.renderBackupFontSelector(),t.renderVariantSelector(),void 0!==t.params.default["font-size"]&&this.container.on("change keyup paste",".font-size input",function(){t.saveValue("font-size",jQuery(this).val())}),void 0!==t.params.default["line-height"]&&this.container.on("change keyup paste",".line-height input",function(){t.saveValue("line-height",jQuery(this).val())}),void 0!==t.params.default["margin-top"]&&this.container.on("change keyup paste",".margin-top input",function(){t.saveValue("margin-top",jQuery(this).val())}),void 0!==t.params.default["margin-bottom"]&&this.container.on("change keyup paste",".margin-bottom input",function(){t.saveValue("margin-bottom",jQuery(this).val())}),void 0!==t.params.default["letter-spacing"]&&(i["letter-spacing"]=jQuery.isNumeric(i["letter-spacing"])?i["letter-spacing"]+"px":i["letter-spacing"],this.container.on("change keyup paste",".letter-spacing input",function(){i["letter-spacing"]=jQuery.isNumeric(jQuery(this).val())?jQuery(this).val()+"px":jQuery(this).val(),t.saveValue("letter-spacing",i["letter-spacing"])})),void 0!==t.params.default["word-spacing"]&&this.container.on("change keyup paste",".word-spacing input",function(){t.saveValue("word-spacing",jQuery(this).val())}),void 0!==t.params.default["text-align"]&&this.container.on("change",".text-align input",function(){t.saveValue("text-align",jQuery(this).val())}),void 0!==t.params.default["text-transform"]&&jQuery(t.selector+" .text-transform select").selectWoo().on("change",function(){t.saveValue("text-transform",jQuery(this).val())}),void 0!==t.params.default["text-decoration"]&&jQuery(t.selector+" .text-decoration select").selectWoo().on("change",function(){t.saveValue("text-decoration",jQuery(this).val())}),void 0!==t.params.default.color&&(e=this.container.find(".kirki-color-control")).wpColorPicker({change:function(){setTimeout(function(){t.saveValue("color",e.val())},100)}})},renderFontSelector:function(){var e,t,i=this,n=i.selector+" .font-family select",a=[],r=[],s=[],o=i.setting._value,c=i.getFonts();_.isUndefined(c.standard)||_.each(c.standard,function(e){r.push({id:e.family.replace(/"/g,"'"),text:e.label})}),_.isUndefined(c.google)||_.each(c.google,function(e){s.push({id:e.family,text:e.family})}),t={},_.isUndefined(i.params)||_.isUndefined(i.params.choices)||_.isUndefined(i.params.choices.fonts)||_.isUndefined(i.params.choices.fonts.families)||(t=i.params.choices.fonts.families),a=jQuery.extend({},t,{default:{text:kirkiL10n.defaultCSSValues,children:[{id:"",text:kirkiL10n.defaultBrowserFamily},{id:"initial",text:"initial"},{id:"inherit",text:"inherit"}]},standard:{text:kirkiL10n.standardFonts,children:r},google:{text:kirkiL10n.googleFonts,children:s}}),kirkiL10n.isScriptDebug&&(console.info('Kirki Debug: Font families for control "'+i.id+'":'),console.info(a)),a=_.values(a),e=jQuery(n).selectWoo({data:a}),(o["font-family"]||""===o["font-family"])&&(o["font-family"]=kirki.util.parseHtmlEntities(o["font-family"].replace(/'/g,'"')),e.val(o["font-family"]).trigger("change")),e.on("change",function(){i.saveValue("font-family",jQuery(this).val()),i.renderBackupFontSelector(),i.renderVariantSelector()})},renderBackupFontSelector:function(){var e,t=this,i=t.selector+" .font-backup select",n=[],a=t.setting._value,r=a["font-family"],s=t.getFonts();(_.isUndefined(a["font-backup"])||null===a["font-backup"])&&(a["font-backup"]=""),"inherit"!==r&&"initial"!==r&&"google"===kirki.util.webfonts.getFontType(r)?(jQuery(t.selector+" .font-backup").show(),_.isUndefined(s.standard)||_.each(s.standard,function(e){n.push({id:e.family.replace(/"/g,"'"),text:e.label})}),e=jQuery(i).selectWoo({data:n}),void 0!==a["font-backup"]&&e.val(a["font-backup"].replace(/'/g,'"')).trigger("change"),e.on("change",function(){t.saveValue("font-backup",jQuery(this).val())})):jQuery(t.selector+" .font-backup").hide()},renderVariantSelector:function(){var e,t,i,n=this,a=n.setting._value,r=a["font-family"],s=n.selector+" .variant select",o=[],c=!1,l=kirki.util.webfonts.getFontType(r),u=["","regular","italic","700","700italic"];if("google"===l&&(u=kirki.util.webfonts.google.getVariants(r)),_.isUndefined(n.params)||_.isUndefined(n.params.choices)||_.isUndefined(n.params.choices.fonts)||_.isUndefined(n.params.choices.fonts.variants)||_.isUndefined(n.params.choices.fonts.variants[r])||(u=n.params.choices.fonts.variants[r]),kirkiL10n.isScriptDebug&&(console.info('Kirki Debug: Font variants for font-family "'+r+'":'),console.info(u)),"inherit"!==r&&"initial"!==r&&""!==r||(a.variant="inherit",u=[""],jQuery(n.selector+" .variant").hide()),u.length<=1)return jQuery(n.selector+" .variant").hide(),a.variant=u[0],n.saveValue("variant",a.variant),i=""!==a.variant&&a.variant?(e=_.isString(a.variant)?a.variant.match(/\d/g):"400",e=_.isObject(e)?e.join(""):"400",a.variant&&-1!==a.variant.indexOf("italic")?"italic":"normal"):e="",n.saveValue("font-weight",e),void n.saveValue("font-style",i);jQuery(n.selector+" .font-backup").show(),jQuery(n.selector+" .variant").show(),_.each(u,function(e){a.variant===e&&(c=!0),o.push({id:e,text:e})}),c||(a.variant="regular"),jQuery(s).hasClass("select2-hidden-accessible")&&(jQuery(s).selectWoo("destroy"),jQuery(s).empty()),(t=jQuery(s).selectWoo({data:o})).val(a.variant).trigger("change"),t.on("change",function(){n.saveValue("variant",jQuery(this).val()),"string"!=typeof a.variant&&(a.variant=u[0]),e=_.isString(a.variant)?a.variant.match(/\d/g):"400",e=_.isObject(e)?e.join(""):"400",i=-1!==a.variant.indexOf("italic")?"italic":"normal",n.saveValue("font-weight",e),n.saveValue("font-style",i)})},getFonts:function(){var e=this,t=kirki.util.webfonts.google.getFonts(),i={},n="alpha",a=0,r={};return _.isEmpty(e.params.choices.fonts.google)?i=kirki.util.webfonts.google.getFonts(n,"",a):"alpha"===e.params.choices.fonts.google[0]||"popularity"===e.params.choices.fonts.google[0]||"trending"===e.params.choices.fonts.google[0]?(n=e.params.choices.fonts.google[0],isNaN(e.params.choices.fonts.google[1])||(a=parseInt(e.params.choices.fonts.google[1],10)),i=kirki.util.webfonts.google.getFonts(n,"",a)):_.each(e.params.choices.fonts.google,function(e){void 0===t[e]||_.isEmpty(t[e])||(i[e]=t[e])}),_.isEmpty(e.params.choices.fonts.standard)?_.each(kirki.util.webfonts.standard.fonts,function(e,t){r[t]={family:e.stack,label:e.label}}):_.each(e.params.choices.fonts.standard,function(e){void 0===kirki.util.webfonts.standard.fonts[e]||_.isEmpty(kirki.util.webfonts.standard.fonts[e])?r[e]={family:e,label:e}:(r[e]={},"undefined"===kirki.util.webfonts.standard.fonts[e].stack||_.isEmpty(kirki.util.webfonts.standard.fonts[e].stack)?r[e].family=i[e]:r[e].family=kirki.util.webfonts.standard.fonts[e].stack,"undefined"===kirki.util.webfonts.standard.fonts[e].label||_.isEmpty(kirki.util.webfonts.standard.fonts[e].label)?_.isEmpty(r[e])||(r[e].label=r[e]):r[e].label=kirki.util.webfonts.standard.fonts[e].label)}),{google:i,standard:r}},saveValue:function(e,t){var i=this.container.find(".typography-hidden-value"),n=this.setting._value;n[e]=t,jQuery(i).attr("value",JSON.stringify(n)).trigger("change"),this.setting.set(n)}});
|
controls/php/class-kirki-control-background.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
controls/php/class-kirki-control-base.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.12
|
12 |
*/
|
@@ -218,9 +218,6 @@ class Kirki_Control_Base extends WP_Customize_Control {
|
|
218 |
*
|
219 |
* Allows the content to be overridden without having to rewrite the wrapper in `$this::render()`.
|
220 |
*
|
221 |
-
* Supports basic input types `text`, `checkbox`, `textarea`, `radio`, `select` and `dropdown-pages`.
|
222 |
-
* Additional input types such as `email`, `url`, `number`, `hidden` and `date` are supported implicitly.
|
223 |
-
*
|
224 |
* Control content can alternately be rendered in JS. See WP_Customize_Control::print_template().
|
225 |
*
|
226 |
* @since 3.4.0
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.12
|
12 |
*/
|
218 |
*
|
219 |
* Allows the content to be overridden without having to rewrite the wrapper in `$this::render()`.
|
220 |
*
|
|
|
|
|
|
|
221 |
* Control content can alternately be rendered in JS. See WP_Customize_Control::print_template().
|
222 |
*
|
223 |
* @since 3.4.0
|
controls/php/class-kirki-control-checkbox.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 3.0.26
|
13 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 3.0.26
|
13 |
*/
|
controls/php/class-kirki-control-code.php
CHANGED
@@ -5,70 +5,43 @@
|
|
5 |
* Creates a new custom control.
|
6 |
* Custom controls accept raw HTML/JS.
|
7 |
*
|
8 |
-
* @package
|
9 |
-
* @subpackage
|
10 |
-
* @copyright
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
-
* @since
|
13 |
*/
|
14 |
|
15 |
-
// @codingStandardsIgnoreFile Generic.Files.OneClassPerFile.MultipleFound Generic.Classes.DuplicateClassName.Found
|
16 |
-
|
17 |
// Exit if accessed directly.
|
18 |
if ( ! defined( 'ABSPATH' ) ) {
|
19 |
exit;
|
20 |
}
|
21 |
|
22 |
/**
|
23 |
-
*
|
24 |
*/
|
25 |
-
|
|
|
26 |
/**
|
27 |
-
*
|
|
|
|
|
|
|
|
|
28 |
*/
|
29 |
-
|
30 |
-
|
31 |
-
/**
|
32 |
-
* The message.
|
33 |
-
*
|
34 |
-
* @since 3.0.21
|
35 |
-
*/
|
36 |
-
protected function content_template() {
|
37 |
-
?>
|
38 |
-
<div class="notice notice-error" data-type="error"><div class="notification-message">
|
39 |
-
<?php esc_html_e( 'Please update your WordPress installation to a version newer than 4.9 to access the code control.', 'kirki' ); ?>
|
40 |
-
</div></div>
|
41 |
-
<?php
|
42 |
-
}
|
43 |
-
}
|
44 |
-
} else {
|
45 |
|
46 |
/**
|
47 |
-
*
|
|
|
|
|
48 |
*/
|
49 |
-
|
50 |
-
|
51 |
-
/**
|
52 |
-
* Whitelisting the "required" argument.
|
53 |
-
*
|
54 |
-
* @since 3.0.17
|
55 |
-
* @access public
|
56 |
-
* @var array
|
57 |
-
*/
|
58 |
-
public $required = array();
|
59 |
-
|
60 |
-
/**
|
61 |
-
* Refresh the parameters passed to the JavaScript via JSON.
|
62 |
-
*
|
63 |
-
* @see WP_Customize_Control::to_json()
|
64 |
-
*/
|
65 |
-
public function to_json() {
|
66 |
|
67 |
-
|
68 |
-
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
}
|
73 |
}
|
74 |
}
|
5 |
* Creates a new custom control.
|
6 |
* Custom controls accept raw HTML/JS.
|
7 |
*
|
8 |
+
* @package Kirki
|
9 |
+
* @subpackage Controls
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
+
* @since 1.0
|
13 |
*/
|
14 |
|
|
|
|
|
15 |
// Exit if accessed directly.
|
16 |
if ( ! defined( 'ABSPATH' ) ) {
|
17 |
exit;
|
18 |
}
|
19 |
|
20 |
/**
|
21 |
+
* Adds a "code" control, alias of the WP_Customize_Code_Editor_Control class.
|
22 |
*/
|
23 |
+
class Kirki_Control_Code extends WP_Customize_Code_Editor_Control {
|
24 |
+
|
25 |
/**
|
26 |
+
* Whitelisting the "required" argument.
|
27 |
+
*
|
28 |
+
* @since 3.0.17
|
29 |
+
* @access public
|
30 |
+
* @var array
|
31 |
*/
|
32 |
+
public $required = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
/**
|
35 |
+
* Refresh the parameters passed to the JavaScript via JSON.
|
36 |
+
*
|
37 |
+
* @see WP_Customize_Control::to_json()
|
38 |
*/
|
39 |
+
public function to_json() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
// Get the basics from the parent class.
|
42 |
+
parent::to_json();
|
43 |
|
44 |
+
// Required.
|
45 |
+
$this->json['required'] = $this->required;
|
|
|
46 |
}
|
47 |
}
|
controls/php/class-kirki-control-color-palette.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.6
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.6
|
10 |
*/
|
controls/php/class-kirki-control-color.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-cropped-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.23
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.23
|
10 |
*/
|
controls/php/class-kirki-control-custom.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
controls/php/class-kirki-control-dashicons.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.4
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.4
|
10 |
*/
|
controls/php/class-kirki-control-date.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2
|
10 |
*/
|
controls/php/class-kirki-control-dimension.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
@@ -35,7 +35,9 @@ class Kirki_Control_Dimension extends Kirki_Control_Base {
|
|
35 |
public function enqueue() {
|
36 |
parent::enqueue();
|
37 |
wp_localize_script(
|
38 |
-
'kirki-script',
|
|
|
|
|
39 |
'invalid-value' => esc_html__( 'Invalid Value', 'kirki' ),
|
40 |
)
|
41 |
);
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
35 |
public function enqueue() {
|
36 |
parent::enqueue();
|
37 |
wp_localize_script(
|
38 |
+
'kirki-script',
|
39 |
+
'dimensionkirkiL10n',
|
40 |
+
array(
|
41 |
'invalid-value' => esc_html__( 'Invalid Value', 'kirki' ),
|
42 |
)
|
43 |
);
|
controls/php/class-kirki-control-dimensions.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.1
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.1
|
10 |
*/
|
controls/php/class-kirki-control-editor.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
controls/php/class-kirki-control-fontawesome.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
@@ -39,7 +39,7 @@ class Kirki_Control_FontAwesome extends Kirki_Control_Base {
|
|
39 |
|
40 |
ob_start();
|
41 |
$json_path = wp_normalize_path( Kirki::$path . '/assets/vendor/fontawesome/fontawesome.json' );
|
42 |
-
include $json_path;
|
43 |
$font_awesome_json = ob_get_clean();
|
44 |
|
45 |
wp_localize_script( 'kirki-script', 'fontAwesomeJSON', $font_awesome_json );
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
39 |
|
40 |
ob_start();
|
41 |
$json_path = wp_normalize_path( Kirki::$path . '/assets/vendor/fontawesome/fontawesome.json' );
|
42 |
+
include $json_path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
43 |
$font_awesome_json = ob_get_clean();
|
44 |
|
45 |
wp_localize_script( 'kirki-script', 'fontAwesomeJSON', $font_awesome_json );
|
controls/php/class-kirki-control-generic.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
controls/php/class-kirki-control-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
controls/php/class-kirki-control-multicheck.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @subpackage Controls
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
controls/php/class-kirki-control-multicolor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
controls/php/class-kirki-control-number.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-palette.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-radio-buttonset.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-radio-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-radio.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-repeater.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
@@ -108,13 +108,11 @@ class Kirki_Control_Repeater extends Kirki_Control_Base {
|
|
108 |
case 'image':
|
109 |
case 'cropped_image':
|
110 |
case 'upload':
|
111 |
-
|
112 |
// We add it to the list of fields that need some extra filtering/processing.
|
113 |
$media_fields_to_filter[ $key ] = true;
|
114 |
break;
|
115 |
|
116 |
case 'dropdown-pages':
|
117 |
-
|
118 |
// If the field is a dropdown-pages field then add it to args.
|
119 |
$dropdown = wp_dropdown_pages(
|
120 |
array(
|
@@ -127,7 +125,7 @@ class Kirki_Control_Repeater extends Kirki_Control_Base {
|
|
127 |
);
|
128 |
|
129 |
// Hackily add in the data link parameter.
|
130 |
-
$dropdown = str_replace( '<select', '<select data-field="' . esc_attr( $args['fields'][ $key ]['id'] ) . '"' . $this->get_link(), $dropdown ); // phpcs:ignore Generic.Formatting.MultipleStatementAlignment
|
131 |
$args['fields'][ $key ]['dropdown'] = $dropdown;
|
132 |
break;
|
133 |
}
|
@@ -360,7 +358,7 @@ class Kirki_Control_Repeater extends Kirki_Control_Base {
|
|
360 |
defaultValue = ' data-default-color="' + defaultValue + '" data-alpha="true"';
|
361 |
}
|
362 |
} #>
|
363 |
-
<input class="color-picker-hex" type="text" maxlength="7"
|
364 |
|
365 |
<# } else if ( 'textarea' === field.type ) { #>
|
366 |
|
@@ -417,7 +415,7 @@ class Kirki_Control_Repeater extends Kirki_Control_Base {
|
|
417 |
</figure>
|
418 |
|
419 |
<div class="actions">
|
420 |
-
<button type="button" class="button remove-button<# if ( ! field.default ) { #> hidden<# } #>"
|
421 |
<button type="button" class="button upload-button" data-label="<?php esc_attr_e( 'Add File', 'kirki' ); ?>" data-alt-label="<?php esc_attr_e( 'Change File', 'kirki' ); ?>">
|
422 |
<# if ( field.default ) { #>
|
423 |
<?php esc_html_e( 'Change File', 'kirki' ); ?>
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
108 |
case 'image':
|
109 |
case 'cropped_image':
|
110 |
case 'upload':
|
|
|
111 |
// We add it to the list of fields that need some extra filtering/processing.
|
112 |
$media_fields_to_filter[ $key ] = true;
|
113 |
break;
|
114 |
|
115 |
case 'dropdown-pages':
|
|
|
116 |
// If the field is a dropdown-pages field then add it to args.
|
117 |
$dropdown = wp_dropdown_pages(
|
118 |
array(
|
125 |
);
|
126 |
|
127 |
// Hackily add in the data link parameter.
|
128 |
+
$dropdown = str_replace( '<select', '<select data-field="' . esc_attr( $args['fields'][ $key ]['id'] ) . '"' . $this->get_link(), $dropdown ); // phpcs:ignore Generic.Formatting.MultipleStatementAlignment
|
129 |
$args['fields'][ $key ]['dropdown'] = $dropdown;
|
130 |
break;
|
131 |
}
|
358 |
defaultValue = ' data-default-color="' + defaultValue + '" data-alpha="true"';
|
359 |
}
|
360 |
} #>
|
361 |
+
<input class="color-picker-hex" type="text" maxlength="7" value="{{{ field.default }}}" data-field="{{{ field.id }}}" {{ defaultValue }} />
|
362 |
|
363 |
<# } else if ( 'textarea' === field.type ) { #>
|
364 |
|
415 |
</figure>
|
416 |
|
417 |
<div class="actions">
|
418 |
+
<button type="button" class="button remove-button<# if ( ! field.default ) { #> hidden<# } #>"><?php esc_html_e( 'Remove', 'kirki' ); ?></button>
|
419 |
<button type="button" class="button upload-button" data-label="<?php esc_attr_e( 'Add File', 'kirki' ); ?>" data-alt-label="<?php esc_attr_e( 'Change File', 'kirki' ); ?>">
|
420 |
<# if ( field.default ) { #>
|
421 |
<?php esc_html_e( 'Change File', 'kirki' ); ?>
|
controls/php/class-kirki-control-select.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-slider.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
@@ -37,7 +37,8 @@ class Kirki_Control_Slider extends Kirki_Control_Base {
|
|
37 |
public function to_json() {
|
38 |
parent::to_json();
|
39 |
$this->json['choices'] = wp_parse_args(
|
40 |
-
$this->json['choices'],
|
|
|
41 |
'min' => '0',
|
42 |
'max' => '100',
|
43 |
'step' => '1',
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @subpackage Controls
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
37 |
public function to_json() {
|
38 |
parent::to_json();
|
39 |
$this->json['choices'] = wp_parse_args(
|
40 |
+
$this->json['choices'],
|
41 |
+
array(
|
42 |
'min' => '0',
|
43 |
'max' => '100',
|
44 |
'step' => '1',
|
controls/php/class-kirki-control-sortable.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-switch.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-toggle.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 1.0
|
10 |
*/
|
controls/php/class-kirki-control-typography.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
@@ -94,12 +94,6 @@ class Kirki_Control_Typography extends Kirki_Control_Base {
|
|
94 |
<select {{{ data.inputAttrs }}} class="variant" id="kirki-typography-variant-{{{ data.id }}}"></select>
|
95 |
</div>
|
96 |
<# } #>
|
97 |
-
<div class="kirki-host-font-locally">
|
98 |
-
<label>
|
99 |
-
<input type="checkbox">
|
100 |
-
<?php esc_html_e( 'Download font-family to server instead of using the Google CDN.', 'kirki' ); ?>
|
101 |
-
</label>
|
102 |
-
</div>
|
103 |
<# } #>
|
104 |
|
105 |
<# if ( ! _.isUndefined( data.default['font-size'] ) ) { #>
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
94 |
<select {{{ data.inputAttrs }}} class="variant" id="kirki-typography-variant-{{{ data.id }}}"></select>
|
95 |
</div>
|
96 |
<# } #>
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
<# } #>
|
98 |
|
99 |
<# if ( ! _.isUndefined( data.default['font-size'] ) ) { #>
|
controls/php/class-kirki-control-upload.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.23
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.23
|
10 |
*/
|
controls/php/class-kirki-settings-repeater-setting.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.0
|
10 |
*/
|
controls/views/code.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
controls/views/color.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
controls/views/generic.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
controls/views/image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.34
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.34
|
10 |
*/
|
controls/views/number.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.27
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.27
|
10 |
*/
|
controls/views/radio.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
controls/views/select.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
controls/views/textarea.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.17
|
10 |
*/
|
core/class-kirki-config.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
*/
|
11 |
|
core/class-kirki-control.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
*/
|
11 |
|
core/class-kirki-field.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
core/class-kirki-helper.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
@@ -34,8 +34,16 @@ class Kirki_Helper {
|
|
34 |
return array_replace_recursive( $array, $array1 );
|
35 |
}
|
36 |
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
$array = $args[0];
|
40 |
if ( ! is_array( $array ) ) {
|
41 |
return $array;
|
@@ -121,7 +129,7 @@ class Kirki_Helper {
|
|
121 |
global $wp_filesystem;
|
122 |
|
123 |
if ( empty( $wp_filesystem ) ) {
|
124 |
-
require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
|
125 |
WP_Filesystem( $credentials );
|
126 |
}
|
127 |
|
@@ -247,7 +255,8 @@ class Kirki_Helper {
|
|
247 |
$post_types = get_post_types(
|
248 |
array(
|
249 |
'public' => true,
|
250 |
-
),
|
|
|
251 |
);
|
252 |
|
253 |
// Build the array.
|
@@ -411,7 +420,7 @@ class Kirki_Helper {
|
|
411 |
return $value1 !== $value2;
|
412 |
}
|
413 |
if ( ( '!=' === $operator || 'not equal' === $operator ) ) {
|
414 |
-
return $value1 != $value2; //
|
415 |
}
|
416 |
if ( ( '>=' === $operator || 'greater or equal' === $operator || 'equal or greater' === $operator ) ) {
|
417 |
return $value2 >= $value1;
|
@@ -428,20 +437,20 @@ class Kirki_Helper {
|
|
428 |
if ( 'contains' === $operator || 'in' === $operator ) {
|
429 |
if ( is_array( $value1 ) && is_array( $value2 ) ) {
|
430 |
foreach ( $value2 as $val ) {
|
431 |
-
if ( in_array( $val, $value1 ) ) { // phpcs:ignore WordPress.PHP.StrictInArray
|
432 |
return true;
|
433 |
}
|
434 |
}
|
435 |
return false;
|
436 |
}
|
437 |
if ( is_array( $value1 ) && ! is_array( $value2 ) ) {
|
438 |
-
return in_array( $value2, $value1 ); // phpcs:ignore WordPress.PHP.StrictInArray
|
439 |
}
|
440 |
if ( is_array( $value2 ) && ! is_array( $value1 ) ) {
|
441 |
-
return in_array( $value1, $value2 ); // phpcs:ignore WordPress.PHP.StrictInArray
|
442 |
}
|
443 |
return ( false !== strrpos( $value1, $value2 ) || false !== strpos( $value2, $value1 ) );
|
444 |
}
|
445 |
-
return $value1 == $value2; //
|
446 |
}
|
447 |
}
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
34 |
return array_replace_recursive( $array, $array1 );
|
35 |
}
|
36 |
|
37 |
+
/**
|
38 |
+
* Handle the arguments, merge one by one.
|
39 |
+
*
|
40 |
+
* In PHP 7 func_get_args() changed the way it behaves but this doesn't mean anything in this case
|
41 |
+
* sinc ethis method is only used when the array_replace_recursive() function doesn't exist
|
42 |
+
* and that was introduced in PHP v5.3.
|
43 |
+
*
|
44 |
+
* Once WordPress-Core raises its minimum requirements we''' be able to remove this fallback completely.
|
45 |
+
*/
|
46 |
+
$args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue
|
47 |
$array = $args[0];
|
48 |
if ( ! is_array( $array ) ) {
|
49 |
return $array;
|
129 |
global $wp_filesystem;
|
130 |
|
131 |
if ( empty( $wp_filesystem ) ) {
|
132 |
+
require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
133 |
WP_Filesystem( $credentials );
|
134 |
}
|
135 |
|
255 |
$post_types = get_post_types(
|
256 |
array(
|
257 |
'public' => true,
|
258 |
+
),
|
259 |
+
'objects'
|
260 |
);
|
261 |
|
262 |
// Build the array.
|
420 |
return $value1 !== $value2;
|
421 |
}
|
422 |
if ( ( '!=' === $operator || 'not equal' === $operator ) ) {
|
423 |
+
return $value1 != $value2; // phpcs:ignore WordPress.PHP.StrictComparisons
|
424 |
}
|
425 |
if ( ( '>=' === $operator || 'greater or equal' === $operator || 'equal or greater' === $operator ) ) {
|
426 |
return $value2 >= $value1;
|
437 |
if ( 'contains' === $operator || 'in' === $operator ) {
|
438 |
if ( is_array( $value1 ) && is_array( $value2 ) ) {
|
439 |
foreach ( $value2 as $val ) {
|
440 |
+
if ( in_array( $val, $value1 ) ) { // phpcs:ignore WordPress.PHP.StrictInArray
|
441 |
return true;
|
442 |
}
|
443 |
}
|
444 |
return false;
|
445 |
}
|
446 |
if ( is_array( $value1 ) && ! is_array( $value2 ) ) {
|
447 |
+
return in_array( $value2, $value1 ); // phpcs:ignore WordPress.PHP.StrictInArray
|
448 |
}
|
449 |
if ( is_array( $value2 ) && ! is_array( $value1 ) ) {
|
450 |
+
return in_array( $value1, $value2 ); // phpcs:ignore WordPress.PHP.StrictInArray
|
451 |
}
|
452 |
return ( false !== strrpos( $value1, $value2 ) || false !== strpos( $value2, $value1 ) );
|
453 |
}
|
454 |
+
return $value1 == $value2; // phpcs:ignore WordPress.PHP.StrictComparisons
|
455 |
}
|
456 |
}
|
core/class-kirki-init.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
@@ -147,7 +147,8 @@ class Kirki_Init {
|
|
147 |
}
|
148 |
|
149 |
$skip_control_types = apply_filters(
|
150 |
-
'kirki_control_types_exclude',
|
|
|
151 |
'Kirki_Control_Repeater',
|
152 |
'WP_Customize_Control',
|
153 |
)
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
147 |
}
|
148 |
|
149 |
$skip_control_types = apply_filters(
|
150 |
+
'kirki_control_types_exclude',
|
151 |
+
array(
|
152 |
'Kirki_Control_Repeater',
|
153 |
'WP_Customize_Control',
|
154 |
)
|
core/class-kirki-l10n.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
@@ -110,7 +110,7 @@ class Kirki_L10n {
|
|
110 |
public function override_load_textdomain( $override, $domain, $mofile ) {
|
111 |
global $l10n;
|
112 |
if ( isset( $l10n[ $this->get_theme_textdomain() ] ) ) {
|
113 |
-
$l10n['kirki'] = $l10n[ $this->get_theme_textdomain() ]; // phpcs:ignore WordPress.WP.GlobalVariablesOverride
|
114 |
}
|
115 |
|
116 |
// Check if the domain is "kirki".
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
110 |
public function override_load_textdomain( $override, $domain, $mofile ) {
|
111 |
global $l10n;
|
112 |
if ( isset( $l10n[ $this->get_theme_textdomain() ] ) ) {
|
113 |
+
$l10n['kirki'] = $l10n[ $this->get_theme_textdomain() ]; // phpcs:ignore WordPress.WP.GlobalVariablesOverride
|
114 |
}
|
115 |
|
116 |
// Check if the domain is "kirki".
|
core/class-kirki-modules.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
@@ -56,7 +56,8 @@ class Kirki_Modules {
|
|
56 |
*/
|
57 |
public function setup_default_modules() {
|
58 |
self::$modules = apply_filters(
|
59 |
-
'kirki_modules',
|
|
|
60 |
'css' => 'Kirki_Modules_CSS',
|
61 |
'css-vars' => 'Kirki_Modules_CSS_Vars',
|
62 |
'customizer-styling' => 'Kirki_Modules_Customizer_Styling',
|
@@ -72,6 +73,7 @@ class Kirki_Modules {
|
|
72 |
'webfont-loader' => 'Kirki_Modules_Webfont_Loader',
|
73 |
'preset' => 'Kirki_Modules_Preset',
|
74 |
'gutenberg' => 'Kirki_Modules_Gutenberg',
|
|
|
75 |
)
|
76 |
);
|
77 |
}
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
56 |
*/
|
57 |
public function setup_default_modules() {
|
58 |
self::$modules = apply_filters(
|
59 |
+
'kirki_modules',
|
60 |
+
array(
|
61 |
'css' => 'Kirki_Modules_CSS',
|
62 |
'css-vars' => 'Kirki_Modules_CSS_Vars',
|
63 |
'customizer-styling' => 'Kirki_Modules_Customizer_Styling',
|
73 |
'webfont-loader' => 'Kirki_Modules_Webfont_Loader',
|
74 |
'preset' => 'Kirki_Modules_Preset',
|
75 |
'gutenberg' => 'Kirki_Modules_Gutenberg',
|
76 |
+
'telemetry' => 'Kirki_Modules_Telemetry',
|
77 |
)
|
78 |
);
|
79 |
}
|
core/class-kirki-panel.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
core/class-kirki-sanitize-values.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
core/class-kirki-section.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
core/class-kirki-sections.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.17
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.17
|
11 |
*/
|
core/class-kirki-settings.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
@@ -110,7 +110,9 @@ class Kirki_Settings {
|
|
110 |
|
111 |
$this->wp_customize->add_setting(
|
112 |
new $classname(
|
113 |
-
$this->wp_customize,
|
|
|
|
|
114 |
'default' => $default,
|
115 |
'type' => $type,
|
116 |
'capability' => $capability,
|
@@ -132,7 +134,8 @@ class Kirki_Settings {
|
|
132 |
|
133 |
// Apply the kirki_setting_types filter.
|
134 |
$this->setting_types = apply_filters(
|
135 |
-
'kirki_setting_types',
|
|
|
136 |
'default' => 'WP_Customize_Setting',
|
137 |
'repeater' => 'Kirki_Settings_Repeater_Setting',
|
138 |
'user_meta' => 'Kirki_Setting_User_Meta',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
110 |
|
111 |
$this->wp_customize->add_setting(
|
112 |
new $classname(
|
113 |
+
$this->wp_customize,
|
114 |
+
$setting,
|
115 |
+
array(
|
116 |
'default' => $default,
|
117 |
'type' => $type,
|
118 |
'capability' => $capability,
|
134 |
|
135 |
// Apply the kirki_setting_types filter.
|
136 |
$this->setting_types = apply_filters(
|
137 |
+
'kirki_setting_types',
|
138 |
+
array(
|
139 |
'default' => 'WP_Customize_Setting',
|
140 |
'repeater' => 'Kirki_Settings_Repeater_Setting',
|
141 |
'user_meta' => 'Kirki_Setting_User_Meta',
|
core/class-kirki-toolkit.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
core/class-kirki-util.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.9
|
11 |
*/
|
@@ -36,7 +36,7 @@ class Kirki_Util {
|
|
36 |
public static function is_plugin() {
|
37 |
$is_plugin = false;
|
38 |
if ( ! function_exists( 'get_plugins' ) ) {
|
39 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
40 |
}
|
41 |
|
42 |
// Get all plugins.
|
@@ -55,7 +55,7 @@ class Kirki_Util {
|
|
55 |
}
|
56 |
|
57 |
// Make sure the is_plugins_loaded function is loaded.
|
58 |
-
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
59 |
|
60 |
// Extra logic in case the plugin is installed but not activated.
|
61 |
if ( $_plugin && is_plugin_inactive( $_plugin ) ) {
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.9
|
11 |
*/
|
36 |
public static function is_plugin() {
|
37 |
$is_plugin = false;
|
38 |
if ( ! function_exists( 'get_plugins' ) ) {
|
39 |
+
require_once ABSPATH . 'wp-admin/includes/plugin.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
40 |
}
|
41 |
|
42 |
// Get all plugins.
|
55 |
}
|
56 |
|
57 |
// Make sure the is_plugins_loaded function is loaded.
|
58 |
+
include_once ABSPATH . 'wp-admin/includes/plugin.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
59 |
|
60 |
// Extra logic in case the plugin is installed but not activated.
|
61 |
if ( $_plugin && is_plugin_inactive( $_plugin ) ) {
|
core/class-kirki-values.php
CHANGED
@@ -7,8 +7,8 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @category Core
|
10 |
-
* @author
|
11 |
-
* @copyright Copyright (c)
|
12 |
* @license https://opensource.org/licenses/MIT
|
13 |
* @since 1.0
|
14 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @category Core
|
10 |
+
* @author Ari Stathopoulos (@aristath)
|
11 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
12 |
* @license https://opensource.org/licenses/MIT
|
13 |
* @since 1.0
|
14 |
*/
|
core/class-kirki.php
CHANGED
@@ -6,8 +6,8 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Core
|
9 |
-
* @author
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Core
|
9 |
+
* @author Ari Stathopoulos (@aristath)
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
core/dynamic-css.php
DELETED
@@ -1,39 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Generates & echo the styles when using the AJAx method.
|
4 |
-
*
|
5 |
-
* @package Kirki
|
6 |
-
* @category Core
|
7 |
-
* @author Aristeides Stathopoulos
|
8 |
-
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
|
9 |
-
* @license https://opensource.org/licenses/MIT
|
10 |
-
*/
|
11 |
-
|
12 |
-
// Do not allow directly accessing this file.
|
13 |
-
if ( ! class_exists( 'Kirki' ) ) {
|
14 |
-
die( 'File can\'t be accessed directly' );
|
15 |
-
}
|
16 |
-
|
17 |
-
// Make sure we set the correct MIME type.
|
18 |
-
header( 'Content-Type: text/css' );
|
19 |
-
|
20 |
-
// Echo the styles.
|
21 |
-
$configs = Kirki::$config;
|
22 |
-
foreach ( $configs as $config_id => $args ) {
|
23 |
-
if ( true === $args['disable_output'] ) {
|
24 |
-
continue;
|
25 |
-
}
|
26 |
-
|
27 |
-
$styles = Kirki_Modules_CSS::loop_controls( $config_id );
|
28 |
-
$styles = apply_filters( "kirki_{$config_id}_dynamic_css", $styles );
|
29 |
-
|
30 |
-
// Some people put weird stuff in their CSS, KSES tends to be greedy.
|
31 |
-
$styles = str_replace( '<=', '<=', $styles );
|
32 |
-
|
33 |
-
$styles = wp_kses_post( $styles );
|
34 |
-
|
35 |
-
// Why both KSES and strip_tags? Because we just added some '>'.
|
36 |
-
// kses replaces lone '>' with >.
|
37 |
-
// @codingStandardsIgnoreLine WordPress.WP.AlternativeFunctions.strip_tags_strip_tags WordPress.Security.EscapeOutput.OutputNotEscaped
|
38 |
-
echo strip_tags( str_replace( '>', '>', $styles ) );
|
39 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deprecated/classes.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
//
|
3 |
|
4 |
if ( ! class_exists( 'Kirki_Active_Callback' ) ) {
|
5 |
// Removed in https://github.com/aristath/kirki/pull/1682/files
|
@@ -18,3 +18,18 @@ if ( ! class_exists( 'Kirki_Active_Callback' ) ) {
|
|
18 |
}
|
19 |
}
|
20 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
// phpcs:ignoreFile
|
3 |
|
4 |
if ( ! class_exists( 'Kirki_Active_Callback' ) ) {
|
5 |
// Removed in https://github.com/aristath/kirki/pull/1682/files
|
18 |
}
|
19 |
}
|
20 |
}
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Deprecated in v3.0.36
|
24 |
+
*
|
25 |
+
* keeping it here in case a theme or plugin was using one of its public methods.
|
26 |
+
* This is just to avoid fatal errors, it does not do anything.
|
27 |
+
*/
|
28 |
+
if ( ! class_exists( 'Kirki_CSS_To_File' ) ) {
|
29 |
+
class Kirki_CSS_To_File {
|
30 |
+
public function __construct() {}
|
31 |
+
public function get_url() {}
|
32 |
+
public function get_timestamp() {}
|
33 |
+
public function write_file() {}
|
34 |
+
}
|
35 |
+
}
|
deprecated/deprecated.php
CHANGED
@@ -6,13 +6,13 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Core
|
9 |
-
* @author
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
14 |
|
15 |
-
//
|
16 |
|
17 |
require_once wp_normalize_path( dirname( __FILE__ ) . '/functions.php' );
|
18 |
require_once wp_normalize_path( dirname( __FILE__ ) . '/classes.php' );
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Core
|
9 |
+
* @author Ari Stathopoulos (@aristath)
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 1.0
|
13 |
*/
|
14 |
|
15 |
+
// phpcs:ignoreFile
|
16 |
|
17 |
require_once wp_normalize_path( dirname( __FILE__ ) . '/functions.php' );
|
18 |
require_once wp_normalize_path( dirname( __FILE__ ) . '/classes.php' );
|
deprecated/filters.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
//
|
3 |
|
4 |
add_filter( 'kirki_config', function( $args ) {
|
5 |
return apply_filters( 'kirki/config', $args );
|
1 |
<?php
|
2 |
+
// phpcs:ignoreFile
|
3 |
|
4 |
add_filter( 'kirki_config', function( $args ) {
|
5 |
return apply_filters( 'kirki/config', $args );
|
deprecated/functions.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
//
|
3 |
|
4 |
// Exit if accessed directly.
|
5 |
if ( ! defined( 'ABSPATH' ) ) {
|
1 |
<?php
|
2 |
+
// phpcs:ignoreFile
|
3 |
|
4 |
// Exit if accessed directly.
|
5 |
if ( ! defined( 'ABSPATH' ) ) {
|
field/class-kirki-field-background.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
field/class-kirki-field-checkbox.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-code.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-color-alpha.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-color-palette.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
field/class-kirki-field-color.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-custom.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-dashicons.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-date.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-dimension.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
field/class-kirki-field-dimensions.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-dropdown-pages.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Override field methods
|
4 |
+
*
|
5 |
+
* @package Kirki
|
6 |
+
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
+
* @license https://opensource.org/licenses/MIT
|
9 |
+
* @since 3.0.36
|
10 |
+
*/
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Field overrides.
|
14 |
+
*/
|
15 |
+
class Kirki_Field_Dropdown_Pages extends Kirki_Field_Select {
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Sets the default value.
|
19 |
+
*
|
20 |
+
* @access protected
|
21 |
+
* @since 3.0.0
|
22 |
+
*/
|
23 |
+
protected function set_choices() {
|
24 |
+
$all_pages = get_pages();
|
25 |
+
foreach ( $all_pages as $page ) {
|
26 |
+
$this->choices[ $page->ID ] = $page->post_title;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
field/class-kirki-field-editor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-fontawesome.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
field/class-kirki-field-generic.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
field/class-kirki-field-group-title.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-kirki-generic.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-link.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-multicheck.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-multicolor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-number.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-palette.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-preset.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-radio-buttonset.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-radio-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-radio.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-repeater.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
@@ -119,8 +119,10 @@ class Kirki_Field_Repeater extends Kirki_Field {
|
|
119 |
$subfield_value = (int) $subfield_value;
|
120 |
break;
|
121 |
case 'color':
|
122 |
-
|
123 |
-
|
|
|
|
|
124 |
break;
|
125 |
case 'text':
|
126 |
$subfield_value = sanitize_text_field( $subfield_value );
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
119 |
$subfield_value = (int) $subfield_value;
|
120 |
break;
|
121 |
case 'color':
|
122 |
+
if ( $subfield_value ) {
|
123 |
+
$color_obj = ariColor::newColor( $subfield_value );
|
124 |
+
$subfield_value = $color_obj->toCSS( $color_obj->mode );
|
125 |
+
}
|
126 |
break;
|
127 |
case 'text':
|
128 |
$subfield_value = sanitize_text_field( $subfield_value );
|
field/class-kirki-field-select.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-select2-multiple.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-select2.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-slider.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-sortable.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.3.2
|
10 |
*/
|
field/class-kirki-field-spacing.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-switch.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-text.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-textarea.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-toggle.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-typography.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
@@ -151,7 +151,6 @@ class Kirki_Field_Typography extends Kirki_Field {
|
|
151 |
}
|
152 |
break;
|
153 |
case 'variant':
|
154 |
-
|
155 |
// Use 'regular' instead of 400 for font-variant.
|
156 |
$value['variant'] = ( 400 === $val || '400' === $val ) ? 'regular' : $val;
|
157 |
|
@@ -205,7 +204,8 @@ class Kirki_Field_Typography extends Kirki_Field {
|
|
205 |
$this->choices = array();
|
206 |
}
|
207 |
$this->choices = wp_parse_args(
|
208 |
-
$this->choices,
|
|
|
209 |
'variant' => array(),
|
210 |
'fonts' => array(
|
211 |
'standard' => array(),
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
151 |
}
|
152 |
break;
|
153 |
case 'variant':
|
|
|
154 |
// Use 'regular' instead of 400 for font-variant.
|
155 |
$value['variant'] = ( 400 === $val || '400' === $val ) ? 'regular' : $val;
|
156 |
|
204 |
$this->choices = array();
|
205 |
}
|
206 |
$this->choices = wp_parse_args(
|
207 |
+
$this->choices,
|
208 |
+
array(
|
209 |
'variant' => array(),
|
210 |
'fonts' => array(
|
211 |
'standard' => array(),
|
field/class-kirki-field-upload.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
field/class-kirki-field-url.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.7
|
10 |
*/
|
kirki.php
CHANGED
@@ -3,18 +3,19 @@
|
|
3 |
* Plugin Name: Kirki Toolkit
|
4 |
* Plugin URI: http://aristath.github.io/kirki
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
-
* Author:
|
7 |
* Author URI: http://aristath.github.io
|
8 |
-
* Version: 3.0.
|
9 |
* Text Domain: kirki
|
10 |
-
*
|
|
|
11 |
* GitHub Plugin URI: aristath/kirki
|
12 |
* GitHub Plugin URI: https://github.com/aristath/kirki
|
13 |
*
|
14 |
* @package Kirki
|
15 |
* @category Core
|
16 |
-
* @author
|
17 |
-
* @copyright Copyright (c)
|
18 |
* @license https://opensource.org/licenses/MIT
|
19 |
* @since 1.0
|
20 |
*/
|
@@ -30,7 +31,7 @@ if ( class_exists( 'Kirki' ) ) {
|
|
30 |
}
|
31 |
|
32 |
// Include the autoloader.
|
33 |
-
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-kirki-autoload.php';
|
34 |
new Kirki_Autoload();
|
35 |
|
36 |
if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
|
@@ -40,7 +41,7 @@ if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
|
|
40 |
// Define the KIRKI_VERSION constant.
|
41 |
if ( ! defined( 'KIRKI_VERSION' ) ) {
|
42 |
if ( ! function_exists( 'get_plugin_data' ) ) {
|
43 |
-
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
44 |
}
|
45 |
$data = get_plugin_data( KIRKI_PLUGIN_FILE );
|
46 |
$version = ( isset( $data['Version'] ) ) ? $data['Version'] : false;
|
@@ -48,7 +49,7 @@ if ( ! defined( 'KIRKI_VERSION' ) ) {
|
|
48 |
}
|
49 |
|
50 |
// Make sure the path is properly set.
|
51 |
-
Kirki::$path = wp_normalize_path( dirname( __FILE__ ) );
|
52 |
Kirki_Init::set_url();
|
53 |
|
54 |
new Kirki_Controls();
|
@@ -77,10 +78,10 @@ new Kirki();
|
|
77 |
new Kirki_L10n();
|
78 |
|
79 |
// Include deprecated functions & methods.
|
80 |
-
require_once wp_normalize_path( dirname( __FILE__ ) . '/deprecated/deprecated.php' );
|
81 |
|
82 |
// Include the ariColor library.
|
83 |
-
require_once wp_normalize_path( dirname( __FILE__ ) . '/lib/class-aricolor.php' );
|
84 |
|
85 |
// Add an empty config for global fields.
|
86 |
Kirki::add_config( '' );
|
@@ -88,11 +89,11 @@ Kirki::add_config( '' );
|
|
88 |
$custom_config_path = dirname( __FILE__ ) . '/custom-config.php';
|
89 |
$custom_config_path = wp_normalize_path( $custom_config_path );
|
90 |
if ( file_exists( $custom_config_path ) ) {
|
91 |
-
require_once $custom_config_path;
|
92 |
}
|
93 |
|
94 |
// Add upgrade notifications.
|
95 |
-
require_once wp_normalize_path( dirname( __FILE__ ) . '/upgrade-notifications.php' );
|
96 |
|
97 |
/**
|
98 |
* To enable tests, add this line to your wp-config.php file (or anywhere alse):
|
@@ -102,5 +103,5 @@ require_once wp_normalize_path( dirname( __FILE__ ) . '/upgrade-notifications.ph
|
|
102 |
* and will only be included in dev versions of the plugin in the github repository.
|
103 |
*/
|
104 |
if ( defined( 'KIRKI_TEST' ) && true === KIRKI_TEST && file_exists( dirname( __FILE__ ) . '/example.php' ) ) {
|
105 |
-
include_once dirname( __FILE__ ) . '/example.php';
|
106 |
}
|
3 |
* Plugin Name: Kirki Toolkit
|
4 |
* Plugin URI: http://aristath.github.io/kirki
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
+
* Author: Ari Stathopoulos (@aristath)
|
7 |
* Author URI: http://aristath.github.io
|
8 |
+
* Version: 3.0.36
|
9 |
* Text Domain: kirki
|
10 |
+
* Requires WP: 4.9
|
11 |
+
* Requires PHP: 5.3
|
12 |
* GitHub Plugin URI: aristath/kirki
|
13 |
* GitHub Plugin URI: https://github.com/aristath/kirki
|
14 |
*
|
15 |
* @package Kirki
|
16 |
* @category Core
|
17 |
+
* @author Ari Stathopoulos (@aristath)
|
18 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
19 |
* @license https://opensource.org/licenses/MIT
|
20 |
* @since 1.0
|
21 |
*/
|
31 |
}
|
32 |
|
33 |
// Include the autoloader.
|
34 |
+
require_once dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'class-kirki-autoload.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
35 |
new Kirki_Autoload();
|
36 |
|
37 |
if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
|
41 |
// Define the KIRKI_VERSION constant.
|
42 |
if ( ! defined( 'KIRKI_VERSION' ) ) {
|
43 |
if ( ! function_exists( 'get_plugin_data' ) ) {
|
44 |
+
include_once ABSPATH . 'wp-admin/includes/plugin.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
45 |
}
|
46 |
$data = get_plugin_data( KIRKI_PLUGIN_FILE );
|
47 |
$version = ( isset( $data['Version'] ) ) ? $data['Version'] : false;
|
49 |
}
|
50 |
|
51 |
// Make sure the path is properly set.
|
52 |
+
Kirki::$path = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride
|
53 |
Kirki_Init::set_url();
|
54 |
|
55 |
new Kirki_Controls();
|
78 |
new Kirki_L10n();
|
79 |
|
80 |
// Include deprecated functions & methods.
|
81 |
+
require_once wp_normalize_path( dirname( __FILE__ ) . '/deprecated/deprecated.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
82 |
|
83 |
// Include the ariColor library.
|
84 |
+
require_once wp_normalize_path( dirname( __FILE__ ) . '/lib/class-aricolor.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
85 |
|
86 |
// Add an empty config for global fields.
|
87 |
Kirki::add_config( '' );
|
89 |
$custom_config_path = dirname( __FILE__ ) . '/custom-config.php';
|
90 |
$custom_config_path = wp_normalize_path( $custom_config_path );
|
91 |
if ( file_exists( $custom_config_path ) ) {
|
92 |
+
require_once $custom_config_path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
93 |
}
|
94 |
|
95 |
// Add upgrade notifications.
|
96 |
+
require_once wp_normalize_path( dirname( __FILE__ ) . '/upgrade-notifications.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
97 |
|
98 |
/**
|
99 |
* To enable tests, add this line to your wp-config.php file (or anywhere alse):
|
103 |
* and will only be included in dev versions of the plugin in the github repository.
|
104 |
*/
|
105 |
if ( defined( 'KIRKI_TEST' ) && true === KIRKI_TEST && file_exists( dirname( __FILE__ ) . '/example.php' ) ) {
|
106 |
+
include_once dirname( __FILE__ ) . '/example.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
107 |
}
|
lib/class-aricolor.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
//
|
3 |
|
4 |
// Exit if accessed directly.
|
5 |
if ( ! defined( 'ABSPATH' ) ) {
|
1 |
<?php
|
2 |
+
// phpcs:ignoreFile
|
3 |
|
4 |
// Exit if accessed directly.
|
5 |
if ( ! defined( 'ABSPATH' ) ) {
|
lib/class-kirki-color.php
CHANGED
@@ -5,13 +5,13 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
13 |
|
14 |
-
//
|
15 |
|
16 |
// Exit if accessed directly.
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
13 |
|
14 |
+
// phpcs:ignoreFile
|
15 |
|
16 |
// Exit if accessed directly.
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
modules/css-vars/class-kirki-modules-css-vars.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.28
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.28
|
11 |
*/
|
modules/css/class-kirki-css-to-file.php
DELETED
@@ -1,143 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Writes compiled CSS to a file.
|
4 |
-
*
|
5 |
-
* @package Kirki
|
6 |
-
* @subpackage CSS Module
|
7 |
-
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
|
8 |
-
* @license https://opensource.org/licenses/MIT
|
9 |
-
* @since 3.0.0
|
10 |
-
*/
|
11 |
-
|
12 |
-
/**
|
13 |
-
* Handles writing CSS to a file.
|
14 |
-
*/
|
15 |
-
class Kirki_CSS_To_File {
|
16 |
-
|
17 |
-
/**
|
18 |
-
* Fallback to inline CSS?
|
19 |
-
*
|
20 |
-
* @access protected
|
21 |
-
* @since 3.0.0
|
22 |
-
* @var bool
|
23 |
-
*/
|
24 |
-
protected $fallback = false;
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Constructor.
|
28 |
-
*
|
29 |
-
* @access public
|
30 |
-
* @since 3.0.0
|
31 |
-
*/
|
32 |
-
public function __construct() {
|
33 |
-
|
34 |
-
// If the file doesn't exist, create it.
|
35 |
-
if ( ! file_exists( $this->get_path( 'file' ) ) ) {
|
36 |
-
|
37 |
-
// If the file-write fails, fallback to inline
|
38 |
-
// and cache the failure so we don't try again immediately.
|
39 |
-
$this->write_file();
|
40 |
-
}
|
41 |
-
add_action( 'customize_save_after', array( $this, 'write_file' ) );
|
42 |
-
}
|
43 |
-
|
44 |
-
/**
|
45 |
-
* Gets the path of the CSS file and folder in the filesystem.
|
46 |
-
*
|
47 |
-
* @access protected
|
48 |
-
* @since 3.0.0
|
49 |
-
* @param string $context Can be "file" or "folder". If empty, returns both as array.
|
50 |
-
* @return string|array
|
51 |
-
*/
|
52 |
-
protected function get_path( $context = '' ) {
|
53 |
-
$upload_dir = wp_upload_dir();
|
54 |
-
$paths = array(
|
55 |
-
'file' => wp_normalize_path( $upload_dir['basedir'] . '/kirki-css/styles.css' ),
|
56 |
-
'folder' => wp_normalize_path( $upload_dir['basedir'] . '/kirki-css' ),
|
57 |
-
);
|
58 |
-
|
59 |
-
if ( 'file' === $context ) {
|
60 |
-
return $paths['file'];
|
61 |
-
}
|
62 |
-
if ( 'folder' === $context ) {
|
63 |
-
return $paths['folder'];
|
64 |
-
}
|
65 |
-
return $paths;
|
66 |
-
}
|
67 |
-
|
68 |
-
/**
|
69 |
-
* Gets the URL of the CSS file in the filesystem.
|
70 |
-
*
|
71 |
-
* @access public
|
72 |
-
* @since 3.0.0
|
73 |
-
* @return string
|
74 |
-
*/
|
75 |
-
public function get_url() {
|
76 |
-
$upload_dir = wp_upload_dir();
|
77 |
-
return esc_url_raw( $upload_dir['baseurl'] . '/kirki-css/styles.css' );
|
78 |
-
}
|
79 |
-
|
80 |
-
/**
|
81 |
-
* Gets the timestamp of the file.
|
82 |
-
* This will be used as "version" for cache-busting purposes.
|
83 |
-
*
|
84 |
-
* @access public
|
85 |
-
* @since 3.0.0
|
86 |
-
* @return integer|false
|
87 |
-
*/
|
88 |
-
public function get_timestamp() {
|
89 |
-
if ( file_exists( $this->get_path( 'file' ) ) ) {
|
90 |
-
return filemtime( $this->get_path( 'file' ) );
|
91 |
-
}
|
92 |
-
return false;
|
93 |
-
}
|
94 |
-
|
95 |
-
/**
|
96 |
-
* Writes the file to disk.
|
97 |
-
*
|
98 |
-
* @access public
|
99 |
-
* @since 3.0.0
|
100 |
-
* @return bool
|
101 |
-
*/
|
102 |
-
public function write_file() {
|
103 |
-
$css = array();
|
104 |
-
$configs = Kirki::$config;
|
105 |
-
foreach ( $configs as $config_id => $args ) {
|
106 |
-
// Get the CSS we want to write.
|
107 |
-
$css[ $config_id ] = apply_filters( "kirki_{$config_id}_dynamic_css", Kirki_Modules_CSS::loop_controls( $config_id ) );
|
108 |
-
}
|
109 |
-
$css = implode( $css, '' );
|
110 |
-
|
111 |
-
// If the folder doesn't exist, create it.
|
112 |
-
if ( ! file_exists( $this->get_path( 'folder' ) ) ) {
|
113 |
-
wp_mkdir_p( $this->get_path( 'folder' ) );
|
114 |
-
}
|
115 |
-
|
116 |
-
$filesystem = $this->get_filesystem();
|
117 |
-
$write_file = (bool) $filesystem->put_contents( $this->get_path( 'file' ), $css );
|
118 |
-
if ( ! $write_file ) {
|
119 |
-
$this->fallback = true;
|
120 |
-
set_transient( 'kirki_css_write_to_file_failed', true, HOUR_IN_SECONDS );
|
121 |
-
}
|
122 |
-
return $write_file;
|
123 |
-
}
|
124 |
-
|
125 |
-
/**
|
126 |
-
* Gets the WP_Filesystem object.
|
127 |
-
*
|
128 |
-
* @access protected
|
129 |
-
* @since 3.0.0
|
130 |
-
* @return object
|
131 |
-
*/
|
132 |
-
protected function get_filesystem() {
|
133 |
-
|
134 |
-
// The WordPress filesystem.
|
135 |
-
global $wp_filesystem;
|
136 |
-
|
137 |
-
if ( empty( $wp_filesystem ) ) {
|
138 |
-
require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
|
139 |
-
WP_Filesystem();
|
140 |
-
}
|
141 |
-
return $wp_filesystem;
|
142 |
-
}
|
143 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/css/class-kirki-modules-css-generator.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
@@ -164,15 +164,15 @@ final class Kirki_Modules_CSS_Generator {
|
|
164 |
|
165 |
// Find the class that will handle the outpout for this field.
|
166 |
$classname = 'Kirki_Output';
|
167 |
-
$
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
'kirki-multicolor' => 'Kirki_Output_Field_Multicolor',
|
174 |
-
)
|
175 |
);
|
|
|
|
|
176 |
if ( array_key_exists( self::$field_type, $field_output_classes ) ) {
|
177 |
$classname = $field_output_classes[ self::$field_type ];
|
178 |
}
|
@@ -238,7 +238,8 @@ final class Kirki_Modules_CSS_Generator {
|
|
238 |
|
239 |
// Add -webkit-* and -moz-*.
|
240 |
if ( is_string( $property ) && in_array(
|
241 |
-
$property,
|
|
|
242 |
'border-radius',
|
243 |
'box-shadow',
|
244 |
'box-sizing',
|
@@ -247,7 +248,8 @@ final class Kirki_Modules_CSS_Generator {
|
|
247 |
'background-size',
|
248 |
'transition',
|
249 |
'transition-property',
|
250 |
-
),
|
|
|
251 |
) ) {
|
252 |
unset( $css[ $media_query ][ $element ][ $property ] );
|
253 |
$css[ $media_query ][ $element ][ '-webkit-' . $property ] = $value;
|
@@ -257,12 +259,14 @@ final class Kirki_Modules_CSS_Generator {
|
|
257 |
|
258 |
// Add -ms-* and -o-*.
|
259 |
if ( is_string( $property ) && in_array(
|
260 |
-
$property,
|
|
|
261 |
'transform',
|
262 |
'background-size',
|
263 |
'transition',
|
264 |
'transition-property',
|
265 |
-
),
|
|
|
266 |
) ) {
|
267 |
unset( $css[ $media_query ][ $element ][ $property ] );
|
268 |
$css[ $media_query ][ $element ][ '-ms-' . $property ] = $value;
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
164 |
|
165 |
// Find the class that will handle the outpout for this field.
|
166 |
$classname = 'Kirki_Output';
|
167 |
+
$default_classnames = array(
|
168 |
+
'kirki-background' => 'Kirki_Output_Field_Background',
|
169 |
+
'kirki-dimensions' => 'Kirki_Output_Field_Dimensions',
|
170 |
+
'kirki-image' => 'Kirki_Output_Field_Image',
|
171 |
+
'kirki-typography' => 'Kirki_Output_Field_Typography',
|
172 |
+
'kirki-multicolor' => 'Kirki_Output_Field_Multicolor',
|
|
|
|
|
173 |
);
|
174 |
+
$field_output_classes = apply_filters( 'kirki_output_control_classnames', $default_classnames );
|
175 |
+
$field_output_classes = apply_filters( "kirki_{$field['kirki_config']}_output_control_classnames", $field_output_classes );
|
176 |
if ( array_key_exists( self::$field_type, $field_output_classes ) ) {
|
177 |
$classname = $field_output_classes[ self::$field_type ];
|
178 |
}
|
238 |
|
239 |
// Add -webkit-* and -moz-*.
|
240 |
if ( is_string( $property ) && in_array(
|
241 |
+
$property,
|
242 |
+
array(
|
243 |
'border-radius',
|
244 |
'box-shadow',
|
245 |
'box-sizing',
|
248 |
'background-size',
|
249 |
'transition',
|
250 |
'transition-property',
|
251 |
+
),
|
252 |
+
true
|
253 |
) ) {
|
254 |
unset( $css[ $media_query ][ $element ][ $property ] );
|
255 |
$css[ $media_query ][ $element ][ '-webkit-' . $property ] = $value;
|
259 |
|
260 |
// Add -ms-* and -o-*.
|
261 |
if ( is_string( $property ) && in_array(
|
262 |
+
$property,
|
263 |
+
array(
|
264 |
'transform',
|
265 |
'background-size',
|
266 |
'transition',
|
267 |
'transition-property',
|
268 |
+
),
|
269 |
+
true
|
270 |
) ) {
|
271 |
unset( $css[ $media_query ][ $element ][ $property ] );
|
272 |
$css[ $media_query ][ $element ][ '-ms-' . $property ] = $value;
|
modules/css/class-kirki-modules-css.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
@@ -25,14 +25,6 @@ class Kirki_Modules_CSS {
|
|
25 |
*/
|
26 |
private static $instance;
|
27 |
|
28 |
-
/**
|
29 |
-
* Whether we've already processed this or not.
|
30 |
-
*
|
31 |
-
* @access public
|
32 |
-
* @var bool
|
33 |
-
*/
|
34 |
-
public $processed = false;
|
35 |
-
|
36 |
/**
|
37 |
* The CSS array
|
38 |
*
|
@@ -41,23 +33,6 @@ class Kirki_Modules_CSS {
|
|
41 |
*/
|
42 |
public static $css_array = array();
|
43 |
|
44 |
-
/**
|
45 |
-
* Set to true if you want to use the AJAX method.
|
46 |
-
*
|
47 |
-
* @access public
|
48 |
-
* @var bool
|
49 |
-
*/
|
50 |
-
public static $ajax = false;
|
51 |
-
|
52 |
-
/**
|
53 |
-
* The Kirki_CSS_To_File object.
|
54 |
-
*
|
55 |
-
* @access protected
|
56 |
-
* @since 3.0.0
|
57 |
-
* @var object
|
58 |
-
*/
|
59 |
-
protected $css_to_file;
|
60 |
-
|
61 |
/**
|
62 |
* Should we enqueue font-awesome?
|
63 |
*
|
@@ -75,7 +50,6 @@ class Kirki_Modules_CSS {
|
|
75 |
*/
|
76 |
protected function __construct() {
|
77 |
$class_files = array(
|
78 |
-
'Kirki_CSS_To_File' => '/class-kirki-css-to-file.php',
|
79 |
'Kirki_Modules_CSS_Generator' => '/class-kirki-modules-css-generator.php',
|
80 |
'Kirki_Output' => '/class-kirki-output.php',
|
81 |
'Kirki_Output_Field_Background' => '/field/class-kirki-output-field-background.php',
|
@@ -91,7 +65,7 @@ class Kirki_Modules_CSS {
|
|
91 |
|
92 |
foreach ( $class_files as $class_name => $file ) {
|
93 |
if ( ! class_exists( $class_name ) ) {
|
94 |
-
include_once wp_normalize_path( dirname( __FILE__ ) . $file );
|
95 |
}
|
96 |
}
|
97 |
add_action( 'init', array( $this, 'init' ) );
|
@@ -119,125 +93,128 @@ class Kirki_Modules_CSS {
|
|
119 |
* @access public
|
120 |
*/
|
121 |
public function init() {
|
122 |
-
global $wp_customize;
|
123 |
|
124 |
Kirki_Modules_Webfonts::get_instance();
|
125 |
|
126 |
-
$config = apply_filters( 'kirki_config', array() );
|
127 |
-
$priority = 999;
|
128 |
-
if ( isset( $config['styles_priority'] ) ) {
|
129 |
-
$priority = absint( $config['styles_priority'] );
|
130 |
-
}
|
131 |
-
|
132 |
// Allow completely disabling Kirki CSS output.
|
133 |
if ( ( defined( 'KIRKI_NO_OUTPUT' ) && true === KIRKI_NO_OUTPUT ) || ( isset( $config['disable_output'] ) && true === $config['disable_output'] ) ) {
|
134 |
return;
|
135 |
}
|
136 |
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
// If we're in the customizer, load inline no matter what.
|
141 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'inline_dynamic_css' ), $priority );
|
142 |
-
add_action( 'enqueue_block_editor_assets', array( $this, 'inline_dynamic_css' ), $priority );
|
143 |
-
|
144 |
-
// If we're using file method, on save write the new styles.
|
145 |
-
if ( 'file' === $method ) {
|
146 |
-
$this->css_to_file = new Kirki_CSS_To_File();
|
147 |
-
add_action( 'customize_save_after', array( $this->css_to_file, 'write_file' ) );
|
148 |
-
}
|
149 |
-
return;
|
150 |
-
}
|
151 |
-
|
152 |
-
if ( 'file' === $method ) {
|
153 |
|
154 |
-
|
155 |
-
$
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
// If writing CSS to file hasn't failed, just enqueue this file.
|
161 |
-
if ( ! $failed ) {
|
162 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_compiled_file' ), $priority );
|
163 |
-
return;
|
164 |
}
|
165 |
-
|
166 |
|
167 |
-
|
168 |
-
|
169 |
-
if ( ( true === self::$ajax ) || ( isset( $config['inline_css'] ) && false === $config['inline_css'] ) ) {
|
170 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'frontend_styles' ), $priority );
|
171 |
-
add_action( 'wp_ajax_kirki_dynamic_css', array( $this, 'ajax_dynamic_css' ) );
|
172 |
-
add_action( 'wp_ajax_nopriv_kirki_dynamic_css', array( $this, 'ajax_dynamic_css' ) );
|
173 |
return;
|
174 |
}
|
175 |
|
176 |
-
|
177 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'inline_dynamic_css' ), $priority );
|
178 |
-
|
179 |
-
// Admin styles, adds Gutenberg compatibility.
|
180 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'inline_dynamic_css' ), $priority );
|
181 |
}
|
182 |
|
183 |
/**
|
184 |
-
*
|
185 |
*
|
186 |
* @access public
|
187 |
-
* @since 3.0.
|
|
|
188 |
*/
|
189 |
-
public function
|
190 |
-
|
|
|
|
|
191 |
}
|
|
|
192 |
/**
|
193 |
-
*
|
194 |
*
|
195 |
* @access public
|
|
|
|
|
196 |
*/
|
197 |
-
public function
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
continue;
|
211 |
-
}
|
212 |
-
wp_enqueue_style( 'kirki-styles-' . $config_id, trailingslashit( Kirki::$url ) . 'assets/css/kirki-styles.css', array(), KIRKI_VERSION );
|
213 |
-
wp_add_inline_style( 'kirki-styles-' . $config_id, $styles );
|
214 |
-
}
|
215 |
-
}
|
216 |
-
$this->processed = true;
|
217 |
-
}
|
218 |
|
|
|
219 |
if ( self::$enqueue_fa && apply_filters( 'kirki_load_fontawesome', true ) ) {
|
220 |
wp_enqueue_script( 'kirki-fontawesome-font', 'https://use.fontawesome.com/30858dc40a.js', array(), '4.0.7', true );
|
221 |
}
|
222 |
}
|
223 |
|
224 |
/**
|
225 |
-
*
|
226 |
*
|
227 |
* @access public
|
|
|
|
|
228 |
*/
|
229 |
-
public function
|
230 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
exit;
|
232 |
}
|
233 |
|
234 |
/**
|
235 |
-
*
|
236 |
*
|
237 |
* @access public
|
238 |
*/
|
239 |
-
public function
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
}
|
242 |
|
243 |
/**
|
@@ -326,7 +303,7 @@ class Kirki_Modules_CSS {
|
|
326 |
* @static
|
327 |
* @since 3.0.35
|
328 |
* @access public
|
329 |
-
* @return
|
330 |
*/
|
331 |
public static function get_enqueue_fa() {
|
332 |
return self::$enqueue_fa;
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
25 |
*/
|
26 |
private static $instance;
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
/**
|
29 |
* The CSS array
|
30 |
*
|
33 |
*/
|
34 |
public static $css_array = array();
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
/**
|
37 |
* Should we enqueue font-awesome?
|
38 |
*
|
50 |
*/
|
51 |
protected function __construct() {
|
52 |
$class_files = array(
|
|
|
53 |
'Kirki_Modules_CSS_Generator' => '/class-kirki-modules-css-generator.php',
|
54 |
'Kirki_Output' => '/class-kirki-output.php',
|
55 |
'Kirki_Output_Field_Background' => '/field/class-kirki-output-field-background.php',
|
65 |
|
66 |
foreach ( $class_files as $class_name => $file ) {
|
67 |
if ( ! class_exists( $class_name ) ) {
|
68 |
+
include_once wp_normalize_path( dirname( __FILE__ ) . $file ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
69 |
}
|
70 |
}
|
71 |
add_action( 'init', array( $this, 'init' ) );
|
93 |
* @access public
|
94 |
*/
|
95 |
public function init() {
|
|
|
96 |
|
97 |
Kirki_Modules_Webfonts::get_instance();
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
// Allow completely disabling Kirki CSS output.
|
100 |
if ( ( defined( 'KIRKI_NO_OUTPUT' ) && true === KIRKI_NO_OUTPUT ) || ( isset( $config['disable_output'] ) && true === $config['disable_output'] ) ) {
|
101 |
return;
|
102 |
}
|
103 |
|
104 |
+
// Admin styles, adds compatibility with the new WordPress editor (Gutenberg).
|
105 |
+
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_styles' ), 100 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
+
if ( ! apply_filters( 'kirki_output_inline_styles', true ) ) {
|
108 |
+
$config = apply_filters( 'kirki_config', array() );
|
109 |
+
$priority = 999;
|
110 |
+
if ( isset( $config['styles_priority'] ) ) {
|
111 |
+
$priority = absint( $config['styles_priority'] );
|
|
|
|
|
|
|
|
|
|
|
112 |
}
|
113 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ), $priority );
|
114 |
|
115 |
+
// Prints the styles.
|
116 |
+
add_action( 'wp', array( $this, 'print_styles_action' ) );
|
|
|
|
|
|
|
|
|
117 |
return;
|
118 |
}
|
119 |
|
120 |
+
add_action( 'wp_head', array( $this, 'print_styles_inline' ), 999 );
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
|
123 |
/**
|
124 |
+
* Print styles inline.
|
125 |
*
|
126 |
* @access public
|
127 |
+
* @since 3.0.36
|
128 |
+
* @return void
|
129 |
*/
|
130 |
+
public function print_styles_inline() {
|
131 |
+
echo '<style id="kirki-inline-styles">';
|
132 |
+
$this->print_styles();
|
133 |
+
echo '</style>';
|
134 |
}
|
135 |
+
|
136 |
/**
|
137 |
+
* Enqueue the styles.
|
138 |
*
|
139 |
* @access public
|
140 |
+
* @since 3.0.36
|
141 |
+
* @return void
|
142 |
*/
|
143 |
+
public function enqueue_styles() {
|
144 |
+
|
145 |
+
// Enqueue the dynamic stylesheet.
|
146 |
+
wp_enqueue_style(
|
147 |
+
'kirki-styles',
|
148 |
+
add_query_arg(
|
149 |
+
'action',
|
150 |
+
apply_filters( 'kirki_styles_action_handle', 'kirki-styles' ),
|
151 |
+
site_url()
|
152 |
+
),
|
153 |
+
array(),
|
154 |
+
KIRKI_VERSION
|
155 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
|
157 |
+
// Enqueue FA if needed (I hope not, this FA version is pretty old, only kept here for backwards-compatibility purposes).
|
158 |
if ( self::$enqueue_fa && apply_filters( 'kirki_load_fontawesome', true ) ) {
|
159 |
wp_enqueue_script( 'kirki-fontawesome-font', 'https://use.fontawesome.com/30858dc40a.js', array(), '4.0.7', true );
|
160 |
}
|
161 |
}
|
162 |
|
163 |
/**
|
164 |
+
* Prints the styles as an enqueued file.
|
165 |
*
|
166 |
* @access public
|
167 |
+
* @since 3.0.36
|
168 |
+
* @return void
|
169 |
*/
|
170 |
+
public function print_styles_action() {
|
171 |
+
/**
|
172 |
+
* Note to code reviewers:
|
173 |
+
* There is no need for a nonce check here, we're only checking if this is a valid request or not.
|
174 |
+
*/
|
175 |
+
if ( empty( $_GET['action'] ) || apply_filters( 'kirki_styles_action_handle', 'kirki-styles' ) !== $_GET['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification
|
176 |
+
return;
|
177 |
+
}
|
178 |
+
|
179 |
+
// This is a stylesheet.
|
180 |
+
header( 'Content-type: text/css' );
|
181 |
+
$this->print_styles();
|
182 |
exit;
|
183 |
}
|
184 |
|
185 |
/**
|
186 |
+
* Prints the styles.
|
187 |
*
|
188 |
* @access public
|
189 |
*/
|
190 |
+
public function print_styles() {
|
191 |
+
|
192 |
+
// Go through all configs.
|
193 |
+
$configs = Kirki::$config;
|
194 |
+
foreach ( $configs as $config_id => $args ) {
|
195 |
+
if ( isset( $args['disable_output'] ) && true === $args['disable_output'] ) {
|
196 |
+
continue;
|
197 |
+
}
|
198 |
+
$styles = self::loop_controls( $config_id );
|
199 |
+
$styles = apply_filters( "kirki_{$config_id}_dynamic_css", $styles );
|
200 |
+
if ( ! empty( $styles ) ) {
|
201 |
+
/**
|
202 |
+
* Note to code reviewers:
|
203 |
+
*
|
204 |
+
* Though all output should be run through an escaping function, this is pure CSS.
|
205 |
+
*
|
206 |
+
* When used in the print_styles_action() method the PHP header() call makes the browser interpret it as such.
|
207 |
+
* No code, script or anything else can be executed from inside a stylesheet.
|
208 |
+
*
|
209 |
+
* When using in the print_styles_inline() method the wp_strip_all_tags call we use below
|
210 |
+
* strips anything that has the possibility to be malicious, and since this is inslide a <style> tag
|
211 |
+
* it can only be interpreted by the browser as such.
|
212 |
+
* wp_strip_all_tags() excludes the possibility of someone closing the <style> tag and then opening something else.
|
213 |
+
*/
|
214 |
+
echo wp_strip_all_tags( $styles ); // phpcs:ignore WordPress.Security.EscapeOutput
|
215 |
+
}
|
216 |
+
}
|
217 |
+
do_action( 'kirki_dynamic_css' );
|
218 |
}
|
219 |
|
220 |
/**
|
303 |
* @static
|
304 |
* @since 3.0.35
|
305 |
* @access public
|
306 |
+
* @return bool
|
307 |
*/
|
308 |
public static function get_enqueue_fa() {
|
309 |
return self::$enqueue_fa;
|
modules/css/class-kirki-output.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
@@ -106,7 +106,7 @@ class Kirki_Output {
|
|
106 |
}
|
107 |
if ( is_array( $value ) ) {
|
108 |
foreach ( array_keys( $value ) as $value_k ) {
|
109 |
-
if (
|
110 |
continue;
|
111 |
}
|
112 |
if ( isset( $output['choice'] ) ) {
|
@@ -164,6 +164,9 @@ class Kirki_Output {
|
|
164 |
break;
|
165 |
default:
|
166 |
$replacement = get_theme_mod( $replace );
|
|
|
|
|
|
|
167 |
}
|
168 |
$replacement = ( false === $replacement ) ? '' : $replacement;
|
169 |
if ( is_array( $value ) ) {
|
@@ -243,10 +246,10 @@ class Kirki_Output {
|
|
243 |
if ( is_admin() && ! is_customize_preview() ) {
|
244 |
|
245 |
// Check if this is an admin style.
|
246 |
-
if ( ! isset( $output['context'] ) || ! in_array( 'editor', $output['context'] ) ) {
|
247 |
continue;
|
248 |
}
|
249 |
-
} elseif ( isset( $output['context'] ) && ! in_array( 'front', $output['context'] ) ) {
|
250 |
|
251 |
// Check if this is a frontend style.
|
252 |
continue;
|
@@ -304,7 +307,8 @@ class Kirki_Output {
|
|
304 |
*/
|
305 |
protected function process_property_value( $property, $value ) {
|
306 |
$properties = apply_filters(
|
307 |
-
"kirki_{$this->config_id}_output_property_classnames",
|
|
|
308 |
'font-family' => 'Kirki_Output_Property_Font_Family',
|
309 |
'background-image' => 'Kirki_Output_Property_Background_Image',
|
310 |
'background-position' => 'Kirki_Output_Property_Background_Position',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
106 |
}
|
107 |
if ( is_array( $value ) ) {
|
108 |
foreach ( array_keys( $value ) as $value_k ) {
|
109 |
+
if ( is_array( $value[ $value_k ] ) ) {
|
110 |
continue;
|
111 |
}
|
112 |
if ( isset( $output['choice'] ) ) {
|
164 |
break;
|
165 |
default:
|
166 |
$replacement = get_theme_mod( $replace );
|
167 |
+
if ( ! $replacement ) {
|
168 |
+
$replacement = Kirki_Values::get_value( $this->field['kirki_config'], $replace );
|
169 |
+
}
|
170 |
}
|
171 |
$replacement = ( false === $replacement ) ? '' : $replacement;
|
172 |
if ( is_array( $value ) ) {
|
246 |
if ( is_admin() && ! is_customize_preview() ) {
|
247 |
|
248 |
// Check if this is an admin style.
|
249 |
+
if ( ! isset( $output['context'] ) || ! in_array( 'editor', $output['context'], true ) ) {
|
250 |
continue;
|
251 |
}
|
252 |
+
} elseif ( isset( $output['context'] ) && ! in_array( 'front', $output['context'], true ) ) {
|
253 |
|
254 |
// Check if this is a frontend style.
|
255 |
continue;
|
307 |
*/
|
308 |
protected function process_property_value( $property, $value ) {
|
309 |
$properties = apply_filters(
|
310 |
+
"kirki_{$this->config_id}_output_property_classnames",
|
311 |
+
array(
|
312 |
'font-family' => 'Kirki_Output_Property_Font_Family',
|
313 |
'background-image' => 'Kirki_Output_Property_Background_Image',
|
314 |
'background-position' => 'Kirki_Output_Property_Background_Position',
|
modules/css/field/class-kirki-output-field-background.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
modules/css/field/class-kirki-output-field-dimensions.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
@@ -23,7 +23,8 @@ class Kirki_Output_Field_Dimensions extends Kirki_Output {
|
|
23 |
*/
|
24 |
protected function process_output( $output, $value ) {
|
25 |
$output = wp_parse_args(
|
26 |
-
$output,
|
|
|
27 |
'element' => '',
|
28 |
'property' => '',
|
29 |
'media_query' => 'global',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
23 |
*/
|
24 |
protected function process_output( $output, $value ) {
|
25 |
$output = wp_parse_args(
|
26 |
+
$output,
|
27 |
+
array(
|
28 |
'element' => '',
|
29 |
'property' => '',
|
30 |
'media_query' => 'global',
|
modules/css/field/class-kirki-output-field-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.10
|
10 |
*/
|
@@ -26,7 +26,8 @@ class Kirki_Output_Field_Image extends Kirki_Output {
|
|
26 |
return;
|
27 |
}
|
28 |
$output = wp_parse_args(
|
29 |
-
$output,
|
|
|
30 |
'media_query' => 'global',
|
31 |
'prefix' => '',
|
32 |
'units' => '',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.10
|
10 |
*/
|
26 |
return;
|
27 |
}
|
28 |
$output = wp_parse_args(
|
29 |
+
$output,
|
30 |
+
array(
|
31 |
'media_query' => 'global',
|
32 |
'prefix' => '',
|
33 |
'units' => '',
|
modules/css/field/class-kirki-output-field-multicolor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/css/field/class-kirki-output-field-typography.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
@@ -81,7 +81,8 @@ class Kirki_Output_Field_Typography extends Kirki_Output {
|
|
81 |
if ( 'font-family' === $property ) {
|
82 |
$value['font-backup'] = ( isset( $value['font-backup'] ) ) ? $value['font-backup'] : '';
|
83 |
$property_value = $this->process_property_value(
|
84 |
-
$property,
|
|
|
85 |
$value['font-family'],
|
86 |
$value['font-backup'],
|
87 |
)
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
81 |
if ( 'font-family' === $property ) {
|
82 |
$value['font-backup'] = ( isset( $value['font-backup'] ) ) ? $value['font-backup'] : '';
|
83 |
$property_value = $this->process_property_value(
|
84 |
+
$property,
|
85 |
+
array(
|
86 |
$value['font-family'],
|
87 |
$value['font-backup'],
|
88 |
)
|
modules/css/property/class-kirki-output-property-background-image.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/css/property/class-kirki-output-property-background-position.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/css/property/class-kirki-output-property-font-family.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Controls
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/css/property/class-kirki-output-property.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @subpackage Controls
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 2.2.0
|
11 |
*/
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @subpackage Controls
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 2.2.0
|
11 |
*/
|
modules/custom-sections/class-kirki-modules-custom-sections.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
* @subpackage Custom Sections Module
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.0
|
12 |
*/
|
@@ -81,6 +81,7 @@ class Kirki_Modules_Custom_Sections {
|
|
81 |
'kirki-default' => 'Kirki_Sections_Default_Section',
|
82 |
'kirki-expanded' => 'Kirki_Sections_Expanded_Section',
|
83 |
'kirki-nested' => 'Kirki_Sections_Nested_Section',
|
|
|
84 |
);
|
85 |
return array_merge( $section_types, $new_types );
|
86 |
}
|
@@ -116,12 +117,12 @@ class Kirki_Modules_Custom_Sections {
|
|
116 |
if ( ! class_exists( $class ) ) {
|
117 |
$path = wp_normalize_path( $folder_path . 'class-kirki-sections-' . $id . '-section.php' );
|
118 |
if ( file_exists( $path ) ) {
|
119 |
-
include_once $path;
|
120 |
continue;
|
121 |
}
|
122 |
$path = str_replace( 'class-kirki-sections-kirki-', 'class-kirki-sections-', $path );
|
123 |
if ( file_exists( $path ) ) {
|
124 |
-
include_once $path;
|
125 |
}
|
126 |
}
|
127 |
}
|
@@ -134,12 +135,12 @@ class Kirki_Modules_Custom_Sections {
|
|
134 |
if ( ! class_exists( $class ) ) {
|
135 |
$path = wp_normalize_path( $folder_path . 'class-kirki-panels-' . $id . '-panel.php' );
|
136 |
if ( file_exists( $path ) ) {
|
137 |
-
include_once $path;
|
138 |
continue;
|
139 |
}
|
140 |
$path = str_replace( 'class-kirki-panels-kirki-', 'class-kirki-panels-', $path );
|
141 |
if ( file_exists( $path ) ) {
|
142 |
-
include_once $path;
|
143 |
}
|
144 |
}
|
145 |
}
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
* @subpackage Custom Sections Module
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.0
|
12 |
*/
|
81 |
'kirki-default' => 'Kirki_Sections_Default_Section',
|
82 |
'kirki-expanded' => 'Kirki_Sections_Expanded_Section',
|
83 |
'kirki-nested' => 'Kirki_Sections_Nested_Section',
|
84 |
+
'kirki-link' => 'Kirki_Sections_Link_Section',
|
85 |
);
|
86 |
return array_merge( $section_types, $new_types );
|
87 |
}
|
117 |
if ( ! class_exists( $class ) ) {
|
118 |
$path = wp_normalize_path( $folder_path . 'class-kirki-sections-' . $id . '-section.php' );
|
119 |
if ( file_exists( $path ) ) {
|
120 |
+
include_once $path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
121 |
continue;
|
122 |
}
|
123 |
$path = str_replace( 'class-kirki-sections-kirki-', 'class-kirki-sections-', $path );
|
124 |
if ( file_exists( $path ) ) {
|
125 |
+
include_once $path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
126 |
}
|
127 |
}
|
128 |
}
|
135 |
if ( ! class_exists( $class ) ) {
|
136 |
$path = wp_normalize_path( $folder_path . 'class-kirki-panels-' . $id . '-panel.php' );
|
137 |
if ( file_exists( $path ) ) {
|
138 |
+
include_once $path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
139 |
continue;
|
140 |
}
|
141 |
$path = str_replace( 'class-kirki-panels-kirki-', 'class-kirki-panels-', $path );
|
142 |
if ( file_exists( $path ) ) {
|
143 |
+
include_once $path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
144 |
}
|
145 |
}
|
146 |
}
|
modules/custom-sections/panels/class-kirki-panels-nested-panel.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
@@ -41,7 +41,8 @@ class Kirki_Panels_Nested_Panel extends WP_Customize_Panel {
|
|
41 |
*/
|
42 |
public function json() {
|
43 |
$array = wp_array_slice_assoc(
|
44 |
-
(array) $this,
|
|
|
45 |
'id',
|
46 |
'description',
|
47 |
'priority',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
41 |
*/
|
42 |
public function json() {
|
43 |
$array = wp_array_slice_assoc(
|
44 |
+
(array) $this,
|
45 |
+
array(
|
46 |
'id',
|
47 |
'description',
|
48 |
'priority',
|
modules/custom-sections/sections.css
CHANGED
@@ -1,26 +1,22 @@
|
|
1 |
#customize-theme-controls .control-section-kirki-expanded .accordion-section-title {
|
2 |
-
display: none;
|
3 |
-
}
|
4 |
#customize-theme-controls .control-section-kirki-expanded .customize-section-back {
|
5 |
-
display: none;
|
6 |
-
}
|
7 |
#customize-theme-controls .customize-pane-child.control-section-kirki-expanded {
|
8 |
position: relative;
|
9 |
visibility: visible;
|
10 |
height: auto;
|
11 |
-
margin-left: -100%;
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
}
|
16 |
|
17 |
#customize-theme-controls .customize-pane-child.current-section-parent,
|
18 |
.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel-parent {
|
19 |
-
transform: translateX(-100%);
|
20 |
-
}
|
21 |
|
22 |
.control-section-kirki-nested {
|
23 |
-
margin: 0 -12px;
|
24 |
-
}
|
25 |
|
26 |
/*# sourceMappingURL=sections.css.map */
|
1 |
#customize-theme-controls .control-section-kirki-expanded .accordion-section-title {
|
2 |
+
display: none; }
|
|
|
3 |
#customize-theme-controls .control-section-kirki-expanded .customize-section-back {
|
4 |
+
display: none; }
|
|
|
5 |
#customize-theme-controls .customize-pane-child.control-section-kirki-expanded {
|
6 |
position: relative;
|
7 |
visibility: visible;
|
8 |
height: auto;
|
9 |
+
margin-left: -100%; }
|
10 |
+
#customize-theme-controls .customize-pane-child.control-section-kirki-expanded h3 .customize-action {
|
11 |
+
display: none; }
|
12 |
+
#customize-theme-controls .control-section-kirki-link .button {
|
13 |
+
margin-top: -3px; }
|
14 |
|
15 |
#customize-theme-controls .customize-pane-child.current-section-parent,
|
16 |
.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel-parent {
|
17 |
+
transform: translateX(-100%); }
|
|
|
18 |
|
19 |
.control-section-kirki-nested {
|
20 |
+
margin: 0 -12px; }
|
|
|
21 |
|
22 |
/*# sourceMappingURL=sections.css.map */
|
modules/custom-sections/sections.js
CHANGED
@@ -15,9 +15,20 @@ jQuery( document ).ready( function() {
|
|
15 |
}
|
16 |
|
17 |
} );
|
18 |
-
|
19 |
} );
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
/**
|
22 |
* @see https://wordpress.stackexchange.com/a/256103/17078
|
23 |
*/
|
15 |
}
|
16 |
|
17 |
} );
|
|
|
18 |
} );
|
19 |
|
20 |
+
/**
|
21 |
+
* See https://github.com/justintadlock/trt-customizer-pro
|
22 |
+
*/
|
23 |
+
( function() {
|
24 |
+
wp.customize.sectionConstructor['kirki-link'] = wp.customize.Section.extend( {
|
25 |
+
attachEvents: function() {},
|
26 |
+
isContextuallyActive: function() {
|
27 |
+
return true;
|
28 |
+
}
|
29 |
+
} );
|
30 |
+
} () );
|
31 |
+
|
32 |
/**
|
33 |
* @see https://wordpress.stackexchange.com/a/256103/17078
|
34 |
*/
|
modules/custom-sections/sections/class-kirki-sections-default-section.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/custom-sections/sections/class-kirki-sections-expanded-section.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
modules/custom-sections/sections/class-kirki-sections-link-section.php
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* The default section.
|
4 |
+
* Inspired from https://github.com/justintadlock/trt-customizer-pro
|
5 |
+
*
|
6 |
+
* @package Kirki
|
7 |
+
* @subpackage Custom Sections Module
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
+
* @license https://opensource.org/licenses/MIT
|
10 |
+
* @since 3.0.36
|
11 |
+
*/
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Link Section.
|
15 |
+
*/
|
16 |
+
class Kirki_Sections_Link_Section extends WP_Customize_Section {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* The section type.
|
20 |
+
*
|
21 |
+
* @since 3.0.36
|
22 |
+
* @access public
|
23 |
+
* @var string
|
24 |
+
*/
|
25 |
+
public $type = 'kirki-link';
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Button Text
|
29 |
+
*
|
30 |
+
* @since 3.0.36
|
31 |
+
* @access public
|
32 |
+
* @var string
|
33 |
+
*/
|
34 |
+
public $button_text = '';
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Button URL.
|
38 |
+
*
|
39 |
+
* @since 3.0.36
|
40 |
+
* @access public
|
41 |
+
* @var string
|
42 |
+
*/
|
43 |
+
public $button_url = '';
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Gather the parameters passed to client JavaScript via JSON.
|
47 |
+
*
|
48 |
+
* @access public
|
49 |
+
* @since 3.0.36
|
50 |
+
* @return array The array to be exported to the client as JSON.
|
51 |
+
*/
|
52 |
+
public function json() {
|
53 |
+
$json = parent::json();
|
54 |
+
|
55 |
+
$json['button_text'] = $this->button_text;
|
56 |
+
$json['button_url'] = esc_url( $this->button_url );
|
57 |
+
|
58 |
+
return $json;
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Outputs the Underscore.js template.
|
63 |
+
*
|
64 |
+
* @since 3.0.36
|
65 |
+
* @access public
|
66 |
+
* @return void
|
67 |
+
*/
|
68 |
+
protected function render_template() {
|
69 |
+
?>
|
70 |
+
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand">
|
71 |
+
<h3 class="accordion-section-title">
|
72 |
+
{{ data.title }}
|
73 |
+
<a href="{{ data.button_url }}" class="button alignright" target="_blank" rel="nofollow">{{ data.button_text }}</a>
|
74 |
+
</h3>
|
75 |
+
</li>
|
76 |
+
<?php
|
77 |
+
}
|
78 |
+
}
|
modules/custom-sections/sections/class-kirki-sections-nested-section.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
@@ -41,7 +41,8 @@ class Kirki_Sections_Nested_Section extends WP_Customize_Section {
|
|
41 |
*/
|
42 |
public function json() {
|
43 |
$array = wp_array_slice_assoc(
|
44 |
-
(array) $this,
|
|
|
45 |
'id',
|
46 |
'description',
|
47 |
'priority',
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Custom Sections Module
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 2.2.0
|
10 |
*/
|
41 |
*/
|
42 |
public function json() {
|
43 |
$array = wp_array_slice_assoc(
|
44 |
+
(array) $this,
|
45 |
+
array(
|
46 |
'id',
|
47 |
'description',
|
48 |
'priority',
|
modules/customizer-branding/class-kirki-modules-customizer-branding.php
CHANGED
@@ -6,8 +6,8 @@
|
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Modules
|
9 |
-
* @author
|
10 |
-
* @copyright Copyright (c)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 3.0.0
|
13 |
*/
|
6 |
*
|
7 |
* @package Kirki
|
8 |
* @category Modules
|
9 |
+
* @author Ari Stathopoulos (@aristath)
|
10 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
11 |
* @license https://opensource.org/licenses/MIT
|
12 |
* @since 3.0.0
|
13 |
*/
|
modules/customizer-styling/class-kirki-modules-customizer-styling.php
CHANGED
@@ -7,8 +7,8 @@
|
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @category Modules
|
10 |
-
* @author
|
11 |
-
* @copyright Copyright (c)
|
12 |
* @license https://opensource.org/licenses/MIT
|
13 |
* @since 3.0.0
|
14 |
*/
|
7 |
*
|
8 |
* @package Kirki
|
9 |
* @category Modules
|
10 |
+
* @author Ari Stathopoulos (@aristath)
|
11 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
12 |
* @license https://opensource.org/licenses/MIT
|
13 |
* @since 3.0.0
|
14 |
*/
|
modules/field-dependencies/class-kirki-modules-field-dependencies.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
modules/gutenberg/class-kirki-modules-gutenberg.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* @package Kirki
|
10 |
* @category Core
|
11 |
* @author Tim Elsass
|
12 |
-
* @copyright Copyright (c)
|
13 |
* @license https://opensource.org/licenses/MIT
|
14 |
* @since 3.0.35
|
15 |
*/
|
@@ -76,15 +76,6 @@ class Kirki_Modules_Gutenberg {
|
|
76 |
*/
|
77 |
private $google_fonts;
|
78 |
|
79 |
-
/**
|
80 |
-
* Webfonts Loader Module reference.
|
81 |
-
*
|
82 |
-
* @access public
|
83 |
-
* @since 3.0.35
|
84 |
-
* @var object $modules_webfonts
|
85 |
-
*/
|
86 |
-
private $modules_webfont_loader;
|
87 |
-
|
88 |
/**
|
89 |
* Constructor.
|
90 |
*
|
@@ -108,7 +99,6 @@ class Kirki_Modules_Gutenberg {
|
|
108 |
$this->set_modules_css();
|
109 |
$this->set_google_fonts();
|
110 |
$this->set_modules_webfonts();
|
111 |
-
$this->set_modules_webfont_loader();
|
112 |
$this->add_hooks();
|
113 |
}
|
114 |
|
@@ -137,7 +127,6 @@ class Kirki_Modules_Gutenberg {
|
|
137 |
protected function add_hooks() {
|
138 |
if ( ! $this->is_disabled() ) {
|
139 |
add_action( 'after_setup_theme', array( $this, 'add_theme_support' ), 999 );
|
140 |
-
add_action( 'enqueue_block_editor_assets', array( $this, 'load_fonts' ) );
|
141 |
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_fontawesome' ) );
|
142 |
add_filter( 'block_editor_settings', array( $this, 'enqueue' ) );
|
143 |
}
|
@@ -162,6 +151,7 @@ class Kirki_Modules_Gutenberg {
|
|
162 |
* Enqueue styles to Gutenberg Editor.
|
163 |
*
|
164 |
* @access public
|
|
|
165 |
* @since 3.0.35
|
166 |
*/
|
167 |
public function enqueue( $settings ) {
|
@@ -193,7 +183,7 @@ class Kirki_Modules_Gutenberg {
|
|
193 |
}
|
194 |
|
195 |
$modules_css = $this->modules_css;
|
196 |
-
$styles = $modules_css::loop_controls( $config_id );
|
197 |
$styles = apply_filters( "kirki_gutenberg_{$config_id}_dynamic_css", $styles );
|
198 |
|
199 |
if ( empty( $styles ) ) {
|
@@ -211,6 +201,7 @@ class Kirki_Modules_Gutenberg {
|
|
211 |
* gutenbeg_support argument, and disabled output argument.
|
212 |
*
|
213 |
* @access public
|
|
|
214 |
* @since 3.0.35
|
215 |
*
|
216 |
* @return bool $disabled Is gutenberg integration feature disabled?
|
@@ -233,45 +224,6 @@ class Kirki_Modules_Gutenberg {
|
|
233 |
return false;
|
234 |
}
|
235 |
|
236 |
-
/**
|
237 |
-
* Load Fonts in Gutenberg Editor.
|
238 |
-
*
|
239 |
-
* @access public
|
240 |
-
* @since 3.0.35
|
241 |
-
*/
|
242 |
-
public function load_fonts() {
|
243 |
-
|
244 |
-
$modules_webfonts = $this->modules_webfonts;
|
245 |
-
$google_fonts = $this->google_fonts;
|
246 |
-
foreach ( $this->configs as $config_id => $args ) {
|
247 |
-
|
248 |
-
if ( $this->is_disabled( $args ) ) {
|
249 |
-
continue;
|
250 |
-
}
|
251 |
-
|
252 |
-
$this->modules_webfont_loader->set_load( true );
|
253 |
-
$this->modules_webfont_loader->enqueue_scripts();
|
254 |
-
|
255 |
-
$async = new Kirki_Modules_Webfonts_Async(
|
256 |
-
$config_id,
|
257 |
-
$modules_webfonts::get_instance(),
|
258 |
-
$google_fonts::get_instance()
|
259 |
-
);
|
260 |
-
|
261 |
-
$async->webfont_loader();
|
262 |
-
$async->webfont_loader_script();
|
263 |
-
|
264 |
-
$local_fonts = new Kirki_Modules_Webfonts_Local(
|
265 |
-
$modules_webfonts::get_instance(),
|
266 |
-
$google_fonts::get_instance()
|
267 |
-
);
|
268 |
-
|
269 |
-
$local_fonts->add_styles();
|
270 |
-
|
271 |
-
return;
|
272 |
-
}
|
273 |
-
}
|
274 |
-
|
275 |
/**
|
276 |
* Enqueue fontawesome in Gutenberg Editor.
|
277 |
*
|
@@ -285,7 +237,7 @@ class Kirki_Modules_Gutenberg {
|
|
285 |
continue;
|
286 |
}
|
287 |
$modules_css = $this->modules_css;
|
288 |
-
if ( $modules_css::get_enqueue_fa() && apply_filters( 'kirki_load_fontawesome', true ) ) {
|
289 |
wp_enqueue_script( 'kirki-fontawesome-font', 'https://use.fontawesome.com/30858dc40a.js', array(), '4.0.7', true );
|
290 |
}
|
291 |
|
@@ -300,7 +252,8 @@ class Kirki_Modules_Gutenberg {
|
|
300 |
* @since 3.0.35
|
301 |
*/
|
302 |
private function set_configs() {
|
303 |
-
|
|
|
304 |
}
|
305 |
|
306 |
/**
|
@@ -342,14 +295,4 @@ class Kirki_Modules_Gutenberg {
|
|
342 |
private function set_modules_webfonts() {
|
343 |
$this->modules_webfonts = Kirki_Modules_Webfonts::get_instance();
|
344 |
}
|
345 |
-
|
346 |
-
/**
|
347 |
-
* Set class property for $modules_webfont_loader.
|
348 |
-
*
|
349 |
-
* @access private
|
350 |
-
* @since 3.0.35
|
351 |
-
*/
|
352 |
-
private function set_modules_webfont_loader() {
|
353 |
-
$this->modules_webfont_loader = Kirki_Modules_Webfont_Loader::get_instance();
|
354 |
-
}
|
355 |
}
|
9 |
* @package Kirki
|
10 |
* @category Core
|
11 |
* @author Tim Elsass
|
12 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
13 |
* @license https://opensource.org/licenses/MIT
|
14 |
* @since 3.0.35
|
15 |
*/
|
76 |
*/
|
77 |
private $google_fonts;
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
/**
|
80 |
* Constructor.
|
81 |
*
|
99 |
$this->set_modules_css();
|
100 |
$this->set_google_fonts();
|
101 |
$this->set_modules_webfonts();
|
|
|
102 |
$this->add_hooks();
|
103 |
}
|
104 |
|
127 |
protected function add_hooks() {
|
128 |
if ( ! $this->is_disabled() ) {
|
129 |
add_action( 'after_setup_theme', array( $this, 'add_theme_support' ), 999 );
|
|
|
130 |
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_fontawesome' ) );
|
131 |
add_filter( 'block_editor_settings', array( $this, 'enqueue' ) );
|
132 |
}
|
151 |
* Enqueue styles to Gutenberg Editor.
|
152 |
*
|
153 |
* @access public
|
154 |
+
* @param array $settings The settings for styles.
|
155 |
* @since 3.0.35
|
156 |
*/
|
157 |
public function enqueue( $settings ) {
|
183 |
}
|
184 |
|
185 |
$modules_css = $this->modules_css;
|
186 |
+
$styles = $modules_css::loop_controls( $config_id ); // phpcs:ignore PHPCompatibility.Syntax.NewDynamicAccessToStatic
|
187 |
$styles = apply_filters( "kirki_gutenberg_{$config_id}_dynamic_css", $styles );
|
188 |
|
189 |
if ( empty( $styles ) ) {
|
201 |
* gutenbeg_support argument, and disabled output argument.
|
202 |
*
|
203 |
* @access public
|
204 |
+
* @param array $args An array of arguments.
|
205 |
* @since 3.0.35
|
206 |
*
|
207 |
* @return bool $disabled Is gutenberg integration feature disabled?
|
224 |
return false;
|
225 |
}
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
/**
|
228 |
* Enqueue fontawesome in Gutenberg Editor.
|
229 |
*
|
237 |
continue;
|
238 |
}
|
239 |
$modules_css = $this->modules_css;
|
240 |
+
if ( $modules_css::get_enqueue_fa() && apply_filters( 'kirki_load_fontawesome', true ) ) { // phpcs:ignore PHPCompatibility.Syntax.NewDynamicAccessToStatic
|
241 |
wp_enqueue_script( 'kirki-fontawesome-font', 'https://use.fontawesome.com/30858dc40a.js', array(), '4.0.7', true );
|
242 |
}
|
243 |
|
252 |
* @since 3.0.35
|
253 |
*/
|
254 |
private function set_configs() {
|
255 |
+
$this->configs = Kirki::$config;
|
256 |
+
return $this->configs;
|
257 |
}
|
258 |
|
259 |
/**
|
295 |
private function set_modules_webfonts() {
|
296 |
$this->modules_webfonts = Kirki_Modules_Webfonts::get_instance();
|
297 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
}
|
modules/icons/class-kirki-modules-icons.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
modules/loading/class-kirki-modules-loading.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Modules
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @subpackage Modules
|
7 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
8 |
* @license https://opensource.org/licenses/MIT
|
9 |
* @since 3.0.0
|
10 |
*/
|
modules/postmessage/class-kirki-modules-postmessage.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
@@ -30,15 +30,6 @@ class Kirki_Modules_PostMessage {
|
|
30 |
*/
|
31 |
private static $instance;
|
32 |
|
33 |
-
/**
|
34 |
-
* The script.
|
35 |
-
*
|
36 |
-
* @access protected
|
37 |
-
* @since 3.0.0
|
38 |
-
* @var string
|
39 |
-
*/
|
40 |
-
protected $script = '';
|
41 |
-
|
42 |
/**
|
43 |
* Constructor.
|
44 |
*
|
@@ -73,443 +64,12 @@ class Kirki_Modules_PostMessage {
|
|
73 |
public function postmessage() {
|
74 |
wp_enqueue_script( 'kirki_auto_postmessage', trailingslashit( Kirki::$url ) . 'modules/postmessage/postmessage.js', array( 'jquery', 'customize-preview' ), KIRKI_VERSION, true );
|
75 |
$fields = Kirki::$fields;
|
|
|
76 |
foreach ( $fields as $field ) {
|
77 |
if ( isset( $field['transport'] ) && 'postMessage' === $field['transport'] && isset( $field['js_vars'] ) && ! empty( $field['js_vars'] ) && is_array( $field['js_vars'] ) && isset( $field['settings'] ) ) {
|
78 |
-
$
|
79 |
-
}
|
80 |
-
}
|
81 |
-
$this->script = apply_filters( 'kirki_postmessage_script', $this->script );
|
82 |
-
wp_add_inline_script( 'kirki_auto_postmessage', $this->script, 'after' );
|
83 |
-
}
|
84 |
-
|
85 |
-
/**
|
86 |
-
* Generates script for a single field.
|
87 |
-
*
|
88 |
-
* @access protected
|
89 |
-
* @since 3.0.0
|
90 |
-
* @param array $args The arguments.
|
91 |
-
*/
|
92 |
-
protected function script( $args ) {
|
93 |
-
$script = 'wp.customize(\'' . $args['settings'] . '\',function(value){value.bind(function(newval){';
|
94 |
-
|
95 |
-
$add_css = false;
|
96 |
-
foreach ( $args['js_vars'] as $js_var ) {
|
97 |
-
if ( ! isset( $js_var['function'] ) || 'html' !== $js_var['function'] ) {
|
98 |
-
$add_css = true;
|
99 |
}
|
100 |
}
|
101 |
-
|
102 |
-
if ( $add_css ) {
|
103 |
-
|
104 |
-
// append unique style tag if not exist
|
105 |
-
// The style ID.
|
106 |
-
$style_id = 'kirki-postmessage-' . str_replace( array( '[', ']' ), '', $args['settings'] );
|
107 |
-
$script .= 'if(null===document.getElementById(\'' . $style_id . '\')||\'undefined\'===typeof document.getElementById(\'' . $style_id . '\')){jQuery(\'head\').append(\'<style id="' . $style_id . '"></style>\');}';
|
108 |
-
}
|
109 |
-
|
110 |
-
// Add anything we need before the main script.
|
111 |
-
$script .= $this->before_script( $args );
|
112 |
-
|
113 |
-
$field = array(
|
114 |
-
'scripts' => array(),
|
115 |
-
);
|
116 |
-
|
117 |
-
// Loop through the js_vars and generate the script.
|
118 |
-
foreach ( $args['js_vars'] as $key => $js_var ) {
|
119 |
-
|
120 |
-
// Skip styles if "exclude" is defined and value is excluded.
|
121 |
-
if ( isset( $js_var['exclude'] ) ) {
|
122 |
-
$js_var['exclude'] = (array) $js_var['exclude'];
|
123 |
-
$script .= 'exclude=false;';
|
124 |
-
foreach ( $js_var['exclude'] as $exclussion ) {
|
125 |
-
$script .= "if(newval=='{$exclussion}'||(''==='{$exclussion}'&&_.isObject(newval)&&_.isEmpty(newval))){exclude=true;}";
|
126 |
-
}
|
127 |
-
}
|
128 |
-
if ( isset( $js_var['element'] ) ) {
|
129 |
-
|
130 |
-
// Array to string.
|
131 |
-
if ( is_array( $js_var['element'] ) ) {
|
132 |
-
$js_var['element'] = implode( ',', $js_var['element'] );
|
133 |
-
}
|
134 |
-
|
135 |
-
// Replace single quotes with double quotes to avoid issues with the compiled JS.
|
136 |
-
$js_var['element'] = str_replace( '\'', '"', $js_var['element'] );
|
137 |
-
}
|
138 |
-
if ( isset( $js_var['function'] ) && 'html' === $js_var['function'] ) {
|
139 |
-
$script .= $this->script_html_var( $js_var );
|
140 |
-
continue;
|
141 |
-
}
|
142 |
-
$js_var['index_key'] = $key;
|
143 |
-
$callback = $this->get_callback( $args );
|
144 |
-
if ( is_callable( $callback ) ) {
|
145 |
-
$field['scripts'][ $key ] = call_user_func_array( $callback, array( $js_var, $args ) );
|
146 |
-
continue;
|
147 |
-
}
|
148 |
-
$field['scripts'][ $key ] = $this->script_var( $js_var );
|
149 |
-
}
|
150 |
-
$combo_extra_script = '';
|
151 |
-
$combo_css_script = '';
|
152 |
-
foreach ( $field['scripts'] as $script_array ) {
|
153 |
-
$combo_extra_script .= $script_array['script'];
|
154 |
-
$combo_css_script .= ( 'css' !== $combo_css_script ) ? $script_array['css'] : '';
|
155 |
-
}
|
156 |
-
$text = ( 'css' === $combo_css_script ) ? 'css' : '\'' . $combo_css_script . '\'';
|
157 |
-
|
158 |
-
$script .= $combo_extra_script . "var cssContent={$text};";
|
159 |
-
if ( isset( $js_var['exclude'] ) ) {
|
160 |
-
$script .= 'if(true===exclude){cssContent="";}';
|
161 |
-
}
|
162 |
-
if ( $add_css ) {
|
163 |
-
$script .= "jQuery('#{$style_id}').text(cssContent);jQuery('#{$style_id}').appendTo('head');";
|
164 |
-
}
|
165 |
-
$script .= '});});';
|
166 |
-
return $script;
|
167 |
-
}
|
168 |
-
|
169 |
-
/**
|
170 |
-
* Generates script for a single js_var when using "html" as function.
|
171 |
-
*
|
172 |
-
* @access protected
|
173 |
-
* @since 3.0.0
|
174 |
-
* @param array $args The arguments for this js_var.
|
175 |
-
*/
|
176 |
-
protected function script_html_var( $args ) {
|
177 |
-
$script = ( isset( $args['choice'] ) ) ? "newval=newval['{$args['choice']}'];" : '';
|
178 |
-
|
179 |
-
// Apply the value_pattern.
|
180 |
-
if ( isset( $args['value_pattern'] ) && '' !== $args['value_pattern'] ) {
|
181 |
-
$script .= $this->value_pattern_replacements( 'newval', $args );
|
182 |
-
}
|
183 |
-
|
184 |
-
if ( isset( $args['attr'] ) ) {
|
185 |
-
$script .= "jQuery('{$args['element']}').attr('{$args['attr']}',newval);";
|
186 |
-
return $script;
|
187 |
-
}
|
188 |
-
$script .= "jQuery('{$args['element']}').html(newval);";
|
189 |
-
return $script;
|
190 |
-
}
|
191 |
-
|
192 |
-
/**
|
193 |
-
* Generates script for a single js_var.
|
194 |
-
*
|
195 |
-
* @access protected
|
196 |
-
* @since 3.0.0
|
197 |
-
* @param array $args The arguments for this js_var.
|
198 |
-
*/
|
199 |
-
protected function script_var( $args ) {
|
200 |
-
$script = '';
|
201 |
-
$property_script = '';
|
202 |
-
|
203 |
-
$value_key = 'newval' . $args['index_key'];
|
204 |
-
$property_script .= $value_key . '=newval;';
|
205 |
-
|
206 |
-
$args = $this->get_args( $args );
|
207 |
-
|
208 |
-
// Apply callback to the value if a callback is defined.
|
209 |
-
if ( ! empty( $args['js_callback'] ) && is_array( $args['js_callback'] ) && isset( $args['js_callback'][0] ) && ! empty( $args['js_callback'][0] ) ) {
|
210 |
-
$script .= $value_key . '=' . $args['js_callback'][0] . '(' . $value_key . ',' . $args['js_callback'][1] . ');';
|
211 |
-
}
|
212 |
-
|
213 |
-
// Apply the value_pattern.
|
214 |
-
if ( '' !== $args['value_pattern'] ) {
|
215 |
-
$script .= $this->value_pattern_replacements( $value_key, $args );
|
216 |
-
}
|
217 |
-
|
218 |
-
// Tweak to add url() for background-images.
|
219 |
-
if ( 'background-image' === $args['property'] && ( ! isset( $args['value_pattern'] ) || false === strpos( $args['value_pattern'], 'gradient' ) ) ) {
|
220 |
-
$script .= 'if(-1===' . $value_key . '.indexOf(\'url(\')){' . $value_key . '=\'url("\'+' . $value_key . '+\'")\';}';
|
221 |
-
}
|
222 |
-
|
223 |
-
// Apply prefix.
|
224 |
-
$value = $value_key;
|
225 |
-
if ( '' !== $args['prefix'] ) {
|
226 |
-
$value = "'" . $args['prefix'] . "'+" . $value_key;
|
227 |
-
}
|
228 |
-
$css = $args['element'] . '{' . $args['property'] . ':\'+' . $value . '+\'' . $args['units'] . $args['suffix'] . ';}';
|
229 |
-
if ( isset( $args['media_query'] ) ) {
|
230 |
-
$css = $args['media_query'] . '{' . $css . '}';
|
231 |
-
}
|
232 |
-
return array(
|
233 |
-
'script' => $property_script . $script,
|
234 |
-
'css' => $css,
|
235 |
-
);
|
236 |
-
}
|
237 |
-
|
238 |
-
/**
|
239 |
-
* Processes script generation for fields that save an array.
|
240 |
-
*
|
241 |
-
* @access protected
|
242 |
-
* @since 3.0.0
|
243 |
-
* @param array $args The arguments for this js_var.
|
244 |
-
*/
|
245 |
-
protected function script_var_array( $args ) {
|
246 |
-
$script = ( 0 === $args['index_key'] ) ? 'css=\'\';' : '';
|
247 |
-
$property_script = '';
|
248 |
-
|
249 |
-
// Define choice.
|
250 |
-
$choice = ( isset( $args['choice'] ) && '' !== $args['choice'] ) ? $args['choice'] : '';
|
251 |
-
|
252 |
-
$value_key = 'newval' . $args['index_key'];
|
253 |
-
$property_script .= $value_key . '=newval;';
|
254 |
-
|
255 |
-
$args = $this->get_args( $args );
|
256 |
-
|
257 |
-
// Apply callback to the value if a callback is defined.
|
258 |
-
if ( ! empty( $args['js_callback'] ) && is_array( $args['js_callback'] ) && isset( $args['js_callback'][0] ) && ! empty( $args['js_callback'][0] ) ) {
|
259 |
-
$script .= $value_key . '=' . $args['js_callback'][0] . '(' . $value_key . ',' . $args['js_callback'][1] . ');';
|
260 |
-
}
|
261 |
-
$script .= '_.each(' . $value_key . ', function(subValue,subKey){';
|
262 |
-
|
263 |
-
// Apply the value_pattern.
|
264 |
-
if ( '' !== $args['value_pattern'] ) {
|
265 |
-
$script .= $this->value_pattern_replacements( 'subValue', $args );
|
266 |
-
}
|
267 |
-
|
268 |
-
// Tweak to add url() for background-images.
|
269 |
-
if ( '' === $choice || 'background-image' === $choice ) {
|
270 |
-
$script .= 'if(\'background-image\'===\'' . $args['property'] . '\'||\'background-image\'===subKey){if(-1===subValue.indexOf(\'url(\')){subValue=\'url("\'+subValue+\'")\';}}';
|
271 |
-
}
|
272 |
-
|
273 |
-
// Apply prefix.
|
274 |
-
$value = $value_key;
|
275 |
-
if ( '' !== $args['prefix'] ) {
|
276 |
-
$value = '\'' . $args['prefix'] . '\'+subValue';
|
277 |
-
}
|
278 |
-
|
279 |
-
// Mostly used for padding, margin & position properties.
|
280 |
-
$direction_script = 'if(_.contains([\'top\',\'bottom\',\'left\',\'right\'],subKey)){';
|
281 |
-
$direction_script .= 'css+=\'' . $args['element'] . '{' . $args['property'] . '-\'+subKey+\':\'+subValue+\'' . $args['units'] . $args['suffix'] . ';}\';}';
|
282 |
-
|
283 |
-
// Allows us to apply this just for a specific choice in the array of the values.
|
284 |
-
if ( '' !== $choice ) {
|
285 |
-
$choice_is_direction = ( false !== strpos( $choice, 'top' ) || false !== strpos( $choice, 'bottom' ) || false !== strpos( $choice, 'left' ) || false !== strpos( $choice, 'right' ) );
|
286 |
-
|
287 |
-
// The script.
|
288 |
-
$script .= 'if(\'' . $choice . '\'===subKey){';
|
289 |
-
$script .= ( $choice_is_direction ) ? $direction_script . 'else{' : '';
|
290 |
-
$script .= 'css+=\'' . $args['element'] . '{' . $args['property'] . ':\'+subValue+\';}\';';
|
291 |
-
$script .= ( $choice_is_direction ) ? '}' : '';
|
292 |
-
$script .= '}';
|
293 |
-
} else {
|
294 |
-
|
295 |
-
// This is where most object-based fields will go.
|
296 |
-
$script .= $direction_script . 'else{css+=\'' . $args['element'] . '{\'+subKey+\':\'+subValue+\'' . $args['units'] . $args['suffix'] . ';}\';}';
|
297 |
-
}
|
298 |
-
$script .= '});';
|
299 |
-
|
300 |
-
if ( isset( $args['media_query'] ) ) {
|
301 |
-
$script .= 'css=\'' . $args['media_query'] . '{\'+css+\'}\';';
|
302 |
-
}
|
303 |
-
|
304 |
-
return array(
|
305 |
-
'script' => $property_script . $script,
|
306 |
-
'css' => 'css',
|
307 |
-
);
|
308 |
-
}
|
309 |
-
|
310 |
-
/**
|
311 |
-
* Processes script generation for typography fields.
|
312 |
-
*
|
313 |
-
* @access protected
|
314 |
-
* @since 3.0.0
|
315 |
-
* @param array $args The arguments for this js_var.
|
316 |
-
* @param array $field The field arguments.
|
317 |
-
*/
|
318 |
-
protected function script_var_typography( $args, $field ) {
|
319 |
-
$args = $this->get_args( $args );
|
320 |
-
|
321 |
-
$script = '';
|
322 |
-
$css = '';
|
323 |
-
|
324 |
-
// Load the font using WenFontloader.
|
325 |
-
// This is a bit ugly because wp_add_inline_script doesn't allow adding <script> directly.
|
326 |
-
$webfont_loader = 'sc=\'a\';jQuery(\'head\').append(sc.replace(\'a\',\'<\')+\'script>if(!_.isUndefined(WebFont)&&fontFamily){WebFont.load({google:{families:["\'+fontFamily.replace( /\"/g, \'"\' )+\':\'+variant+\':cyrillic,cyrillic-ext,devanagari,greek,greek-ext,khmer,latin,latin-ext,vietnamese,hebrew,arabic,bengali,gujarati,tamil,telugu,thai"]}});}\'+sc.replace(\'a\',\'<\')+\'/script>\');';
|
327 |
-
|
328 |
-
// Add the css.
|
329 |
-
$css_build_array = array(
|
330 |
-
'font-family' => 'fontFamily',
|
331 |
-
'font-size' => 'fontSize',
|
332 |
-
'line-height' => 'lineHeight',
|
333 |
-
'letter-spacing' => 'letterSpacing',
|
334 |
-
'word-spacing' => 'wordSpacing',
|
335 |
-
'text-align' => 'textAlign',
|
336 |
-
'text-transform' => 'textTransform',
|
337 |
-
'text-decoration' => 'textDecoration',
|
338 |
-
'color' => 'color',
|
339 |
-
'font-weight' => 'fontWeight',
|
340 |
-
'font-style' => 'fontStyle',
|
341 |
-
);
|
342 |
-
$choice_condition = ( isset( $args['choice'] ) && '' !== $args['choice'] && isset( $css_build_array[ $args['choice'] ] ) );
|
343 |
-
$script .= ( ! $choice_condition ) ? $webfont_loader : '';
|
344 |
-
foreach ( $css_build_array as $property => $var ) {
|
345 |
-
if ( $choice_condition && $property !== $args['choice'] ) {
|
346 |
-
continue;
|
347 |
-
}
|
348 |
-
// Fixes https://github.com/aristath/kirki/issues/1436.
|
349 |
-
if ( ! isset( $field['default'] ) || (
|
350 |
-
( 'font-family' === $property && ! isset( $field['default']['font-family'] ) ) ||
|
351 |
-
( 'font-size' === $property && ! isset( $field['default']['font-size'] ) ) ||
|
352 |
-
( 'line-height' === $property && ! isset( $field['default']['line-height'] ) ) ||
|
353 |
-
( 'letter-spacing' === $property && ! isset( $field['default']['letter-spacing'] ) ) ||
|
354 |
-
( 'word-spacing' === $property && ! isset( $field['default']['word-spacing'] ) ) ||
|
355 |
-
( 'text-align' === $property && ! isset( $field['default']['text-align'] ) ) ||
|
356 |
-
( 'text-transform' === $property && ! isset( $field['default']['text-transform'] ) ) ||
|
357 |
-
( 'text-decoration' === $property && ! isset( $field['default']['text-decoration'] ) ) ||
|
358 |
-
( 'color' === $property && ! isset( $field['default']['color'] ) ) ||
|
359 |
-
( 'font-weight' === $property && ! isset( $field['default']['variant'] ) && ! isset( $field['default']['font-weight'] ) ) ||
|
360 |
-
( 'font-style' === $property && ! isset( $field['default']['variant'] ) && ! isset( $field['default']['font-style'] ) )
|
361 |
-
) ) {
|
362 |
-
continue;
|
363 |
-
}
|
364 |
-
$script .= ( $choice_condition && 'font-family' === $args['choice'] ) ? $webfont_loader : '';
|
365 |
-
|
366 |
-
if ( 'font-family' === $property || ( isset( $args['choice'] ) && 'font-family' === $args['choice'] ) ) {
|
367 |
-
$css .= 'fontFamilyCSS=fontFamily;if(0<fontFamily.indexOf(\' \')&&-1===fontFamily.indexOf(\'"\')){fontFamilyCSS=\'"\'+fontFamily+\'"\';}';
|
368 |
-
$var = 'fontFamilyCSS';
|
369 |
-
}
|
370 |
-
$var = ( ( empty( $args['prefix'] ) ) ? '' : '\'' . $args['prefix'] . '\'+' ) . $var . ( ( empty( $args['units'] ) ) ? '' : '+\'' . $args['units'] . '\'' ) . ( ( empty( $args['suffix'] ) ) ? '' : '+\'' . $args['suffix'] . '\'' );
|
371 |
-
$css .= 'css+=(\'\'!==' . $var . ')?\'' . $args['element'] . '\'+\'{' . $property . ':\'+' . $var . '+\';}\':\'\';';
|
372 |
-
}
|
373 |
-
|
374 |
-
$script .= $css;
|
375 |
-
if ( isset( $args['media_query'] ) ) {
|
376 |
-
$script .= 'css=\'' . $args['media_query'] . '{\'+css+\'}\';';
|
377 |
-
}
|
378 |
-
return array(
|
379 |
-
'script' => $script,
|
380 |
-
'css' => 'css',
|
381 |
-
);
|
382 |
-
}
|
383 |
-
|
384 |
-
/**
|
385 |
-
* Processes script generation for typography fields.
|
386 |
-
*
|
387 |
-
* @access protected
|
388 |
-
* @since 3.0.0
|
389 |
-
* @param array $args The arguments for this js_var.
|
390 |
-
*/
|
391 |
-
protected function script_var_image( $args ) {
|
392 |
-
$return = $this->script_var( $args );
|
393 |
-
return array(
|
394 |
-
'script' => 'newval=(!_.isUndefined(newval.url))?newval.url:newval;' . $return['script'],
|
395 |
-
'css' => $return['css'],
|
396 |
-
);
|
397 |
-
}
|
398 |
-
|
399 |
-
/**
|
400 |
-
* Adds anything we need before the main script.
|
401 |
-
*
|
402 |
-
* @access private
|
403 |
-
* @since 3.0.0
|
404 |
-
* @param array $args The field args.
|
405 |
-
* @return string
|
406 |
-
*/
|
407 |
-
private function before_script( $args ) {
|
408 |
-
$script = '';
|
409 |
-
if ( isset( $args['type'] ) ) {
|
410 |
-
switch ( $args['type'] ) {
|
411 |
-
case 'kirki-typography':
|
412 |
-
$script .= 'fontFamily=(_.isUndefined(newval[\'font-family\']))?\'\':newval[\'font-family\'];variant=(_.isUndefined(newval.variant))?\'400\':newval.variant;fontSize=(_.isUndefined(newval[\'font-size\']))?\'\':newval[\'font-size\'];lineHeight=(_.isUndefined(newval[\'line-height\']))?\'\':newval[\'line-height\'];letterSpacing=(_.isUndefined(newval[\'letter-spacing\']))?\'\':newval[\'letter-spacing\'];wordSpacing=(_.isUndefined(newval[\'word-spacing\']))?\'\':newval[\'word-spacing\'];textAlign=(_.isUndefined(newval[\'text-align\']))?\'\':newval[\'text-align\'];textTransform=(_.isUndefined(newval[\'text-transform\']))?\'\':newval[\'text-transform\'];textDecoration=(_.isUndefined(newval[\'text-decoration\']))?\'\':newval[\'text-decoration\'];color=(_.isUndefined(newval.color))?\'\':newval.color;fw=(!_.isString(newval.variant))?\'400\':newval.variant.match(/\d/g);fontWeight=(!_.isObject(fw))?400:fw.join(\'\');fontStyle=(variant&&-1!==variant.indexOf(\'italic\'))?\'italic\':\'normal\';css=\'\';';
|
413 |
-
break;
|
414 |
-
}
|
415 |
-
}
|
416 |
-
return $script;
|
417 |
-
}
|
418 |
-
|
419 |
-
/**
|
420 |
-
* Sanitizes the arguments and makes sure they are all there.
|
421 |
-
*
|
422 |
-
* @access private
|
423 |
-
* @since 3.0.0
|
424 |
-
* @param array $args The arguments.
|
425 |
-
* @return array
|
426 |
-
*/
|
427 |
-
private function get_args( $args ) {
|
428 |
-
|
429 |
-
// Make sure everything is defined to avoid "undefined index" errors.
|
430 |
-
$args = wp_parse_args(
|
431 |
-
$args, array(
|
432 |
-
'element' => '',
|
433 |
-
'property' => '',
|
434 |
-
'prefix' => '',
|
435 |
-
'suffix' => '',
|
436 |
-
'units' => '',
|
437 |
-
'js_callback' => array( '', '' ),
|
438 |
-
'value_pattern' => '',
|
439 |
-
)
|
440 |
-
);
|
441 |
-
|
442 |
-
// Element should be a string.
|
443 |
-
if ( is_array( $args['element'] ) ) {
|
444 |
-
$args['element'] = implode( ',', $args['element'] );
|
445 |
-
}
|
446 |
-
|
447 |
-
// Make sure arguments that are passed-on to callbacks are strings.
|
448 |
-
if ( is_array( $args['js_callback'] ) && isset( $args['js_callback'][1] ) && is_array( $args['js_callback'][1] ) ) {
|
449 |
-
$args['js_callback'][1] = wp_json_encode( $args['js_callback'][1] );
|
450 |
-
}
|
451 |
-
|
452 |
-
if ( ! isset( $args['js_callback'][1] ) ) {
|
453 |
-
$args['js_callback'][1] = '';
|
454 |
-
}
|
455 |
-
return $args;
|
456 |
-
}
|
457 |
-
|
458 |
-
/**
|
459 |
-
* Returns script for value_pattern & replacements.
|
460 |
-
*
|
461 |
-
* @access private
|
462 |
-
* @since 3.0.0
|
463 |
-
* @param string $value The value placeholder.
|
464 |
-
* @param array $js_vars The js_vars argument.
|
465 |
-
* @return string The script.
|
466 |
-
*/
|
467 |
-
private function value_pattern_replacements( $value, $js_vars ) {
|
468 |
-
$script = '';
|
469 |
-
$alias = $value;
|
470 |
-
if ( ! isset( $js_vars['value_pattern'] ) ) {
|
471 |
-
return $value;
|
472 |
-
}
|
473 |
-
$value = $js_vars['value_pattern'];
|
474 |
-
if ( isset( $js_vars['pattern_replace'] ) ) {
|
475 |
-
$script .= 'settings=window.wp.customize.get();';
|
476 |
-
foreach ( $js_vars['pattern_replace'] as $search => $replace ) {
|
477 |
-
$replace = '\'+settings["' . $replace . '"]+\'';
|
478 |
-
$value = str_replace( $search, $replace, $js_vars['value_pattern'] );
|
479 |
-
$value = trim( $value, '+' );
|
480 |
-
}
|
481 |
-
}
|
482 |
-
$value_compiled = str_replace( '$', '\'+' . $alias . '+\'', $value );
|
483 |
-
$value_compiled = trim( $value_compiled, '+' );
|
484 |
-
|
485 |
-
return $script . $alias . '=\'' . $value_compiled . '\';';
|
486 |
-
}
|
487 |
-
|
488 |
-
/**
|
489 |
-
* Get the callback function/method we're going to use for this field.
|
490 |
-
*
|
491 |
-
* @access private
|
492 |
-
* @since 3.0.0
|
493 |
-
* @param array $args The field args.
|
494 |
-
* @return string|array A callable function or method.
|
495 |
-
*/
|
496 |
-
protected function get_callback( $args ) {
|
497 |
-
switch ( $args['type'] ) {
|
498 |
-
case 'kirki-background':
|
499 |
-
case 'kirki-dimensions':
|
500 |
-
case 'kirki-multicolor':
|
501 |
-
case 'kirki-sortable':
|
502 |
-
$callback = array( $this, 'script_var_array' );
|
503 |
-
break;
|
504 |
-
case 'kirki-typography':
|
505 |
-
$callback = array( $this, 'script_var_typography' );
|
506 |
-
break;
|
507 |
-
case 'kirki-image':
|
508 |
-
$callback = array( $this, 'script_var_image' );
|
509 |
-
break;
|
510 |
-
default:
|
511 |
-
$callback = array( $this, 'script_var' );
|
512 |
-
}
|
513 |
-
return $callback;
|
514 |
}
|
515 |
}
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
30 |
*/
|
31 |
private static $instance;
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
/**
|
34 |
* Constructor.
|
35 |
*
|
64 |
public function postmessage() {
|
65 |
wp_enqueue_script( 'kirki_auto_postmessage', trailingslashit( Kirki::$url ) . 'modules/postmessage/postmessage.js', array( 'jquery', 'customize-preview' ), KIRKI_VERSION, true );
|
66 |
$fields = Kirki::$fields;
|
67 |
+
$data = array();
|
68 |
foreach ( $fields as $field ) {
|
69 |
if ( isset( $field['transport'] ) && 'postMessage' === $field['transport'] && isset( $field['js_vars'] ) && ! empty( $field['js_vars'] ) && is_array( $field['js_vars'] ) && isset( $field['settings'] ) ) {
|
70 |
+
$data[] = $field;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
}
|
73 |
+
wp_localize_script( 'kirki_auto_postmessage', 'kirkiPostMessageFields', $data );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
}
|
75 |
}
|
modules/postmessage/postmessage.js
CHANGED
@@ -1,4 +1,344 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* global kirkiPostMessageFields, WebFont */
|
2 |
+
var kirkiPostMessage = {
|
3 |
+
|
4 |
+
/**
|
5 |
+
* The fields.
|
6 |
+
*
|
7 |
+
* @since 3.0.26
|
8 |
+
*/
|
9 |
+
fields: {},
|
10 |
+
|
11 |
+
/**
|
12 |
+
* A collection of methods for the <style> tags.
|
13 |
+
*
|
14 |
+
* @since 3.0.26
|
15 |
+
*/
|
16 |
+
styleTag: {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Add a <style> tag in <head> if it doesn't already exist.
|
20 |
+
*
|
21 |
+
* @since 3.0.26
|
22 |
+
* @param {string} id - The field-ID.
|
23 |
+
* @returns {void}
|
24 |
+
*/
|
25 |
+
add: function( id ) {
|
26 |
+
if ( null === document.getElementById( 'kirki-postmessage-' + id ) || 'undefined' === typeof document.getElementById( 'kirki-postmessage-' + id ) ) {
|
27 |
+
jQuery( 'head' ).append( '<style id="kirki-postmessage-' + id + '"></style>' );
|
28 |
+
}
|
29 |
+
},
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Add a <style> tag in <head> if it doesn't already exist,
|
33 |
+
* by calling the this.add method, and then add styles inside it.
|
34 |
+
*
|
35 |
+
* @since 3.0.26
|
36 |
+
* @param {string} id - The field-ID.
|
37 |
+
* @param {string} styles - The styles to add.
|
38 |
+
* @returns {void}
|
39 |
+
*/
|
40 |
+
addData: function( id, styles ) {
|
41 |
+
kirkiPostMessage.styleTag.add( id );
|
42 |
+
jQuery( '#kirki-postmessage-' + id ).text( styles );
|
43 |
+
}
|
44 |
+
},
|
45 |
+
|
46 |
+
/**
|
47 |
+
* Common utilities.
|
48 |
+
*
|
49 |
+
* @since 3.0.26
|
50 |
+
*/
|
51 |
+
util: {
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Processes the value and applies any replacements and/or additions.
|
55 |
+
*
|
56 |
+
* @since 3.0.26
|
57 |
+
* @param {Object} output - The output (js_vars) argument.
|
58 |
+
* @param {mixed} value - The value.
|
59 |
+
* @param {string} controlType - The control-type.
|
60 |
+
* @returns {string|false} - Returns false if value is excluded, otherwise a string.
|
61 |
+
*/
|
62 |
+
processValue: function( output, value ) {
|
63 |
+
var self = this,
|
64 |
+
settings = window.parent.wp.customize.get(),
|
65 |
+
excluded = false;
|
66 |
+
|
67 |
+
if ( 'object' === typeof value ) {
|
68 |
+
_.each( value, function( subValue, key ) {
|
69 |
+
value[ key ] = self.processValue( output, subValue );
|
70 |
+
} );
|
71 |
+
return value;
|
72 |
+
}
|
73 |
+
output = _.defaults( output, {
|
74 |
+
prefix: '',
|
75 |
+
units: '',
|
76 |
+
suffix: '',
|
77 |
+
value_pattern: '$',
|
78 |
+
pattern_replace: {},
|
79 |
+
exclude: []
|
80 |
+
} );
|
81 |
+
|
82 |
+
if ( 1 <= output.exclude.length ) {
|
83 |
+
_.each( output.exclude, function( exclusion ) {
|
84 |
+
if ( value == exclusion ) {
|
85 |
+
excluded = true;
|
86 |
+
}
|
87 |
+
} );
|
88 |
+
}
|
89 |
+
|
90 |
+
if ( excluded ) {
|
91 |
+
return false;
|
92 |
+
}
|
93 |
+
|
94 |
+
value = output.value_pattern.replace( new RegExp( '\\$', 'g' ), value );
|
95 |
+
_.each( output.pattern_replace, function( id, placeholder ) {
|
96 |
+
if ( ! _.isUndefined( settings[ id ] ) ) {
|
97 |
+
value = value.replace( placeholder, settings[ id ] );
|
98 |
+
}
|
99 |
+
} );
|
100 |
+
return output.prefix + value + output.units + output.suffix;
|
101 |
+
},
|
102 |
+
|
103 |
+
/**
|
104 |
+
* Make sure urls are properly formatted for background-image properties.
|
105 |
+
*
|
106 |
+
* @since 3.0.26
|
107 |
+
* @param {string} url - The URL.
|
108 |
+
* @returns {string}
|
109 |
+
*/
|
110 |
+
backgroundImageValue: function( url ) {
|
111 |
+
return ( -1 === url.indexOf( 'url(' ) ) ? 'url(' + url + ')' : url;
|
112 |
+
}
|
113 |
+
},
|
114 |
+
|
115 |
+
/**
|
116 |
+
* A collection of utilities for CSS generation.
|
117 |
+
*
|
118 |
+
* @since 3.0.26
|
119 |
+
*/
|
120 |
+
css: {
|
121 |
+
|
122 |
+
/**
|
123 |
+
* Generates the CSS from the output (js_vars) parameter.
|
124 |
+
*
|
125 |
+
* @since 3.0.26
|
126 |
+
* @param {Object} output - The output (js_vars) argument.
|
127 |
+
* @param {mixed} value - The value.
|
128 |
+
* @param {string} controlType - The control-type.
|
129 |
+
* @returns {string}
|
130 |
+
*/
|
131 |
+
fromOutput: function( output, value, controlType ) {
|
132 |
+
var styles = '',
|
133 |
+
kirkiParent = window.parent.kirki,
|
134 |
+
googleFont = '',
|
135 |
+
mediaQuery = false,
|
136 |
+
processedValue;
|
137 |
+
|
138 |
+
if ( output.js_callback && 'function' === typeof window[ output.js_callback ] ) {
|
139 |
+
value = window[ output.js_callback[0] ]( value, output.js_callback[1] );
|
140 |
+
}
|
141 |
+
switch ( controlType ) {
|
142 |
+
case 'kirki-typography':
|
143 |
+
styles += output.element + '{';
|
144 |
+
_.each( value, function( val, key ) {
|
145 |
+
if ( output.choice && key !== output.choice ) {
|
146 |
+
return;
|
147 |
+
}
|
148 |
+
processedValue = kirkiPostMessage.util.processValue( output, val );
|
149 |
+
if ( false !== processedValue ) {
|
150 |
+
styles += key + ':' + processedValue + ';';
|
151 |
+
}
|
152 |
+
} );
|
153 |
+
styles += '}';
|
154 |
+
|
155 |
+
// Check if this is a googlefont so that we may load it.
|
156 |
+
if ( ! _.isUndefined( WebFont ) && value['font-family'] && 'google' === kirkiParent.util.webfonts.getFontType( value['font-family'] ) ) {
|
157 |
+
|
158 |
+
// Calculate the googlefont params.
|
159 |
+
googleFont = value['font-family'].replace( /\"/g, '"' );
|
160 |
+
if ( value.variant ) {
|
161 |
+
if ( 'regular' === value.variant ) {
|
162 |
+
googleFont += ':400';
|
163 |
+
} else if ( 'italic' === value.variant ) {
|
164 |
+
googleFont += ':400i';
|
165 |
+
} else {
|
166 |
+
googleFont += ':' + value.variant;
|
167 |
+
}
|
168 |
+
}
|
169 |
+
googleFont += ':cyrillic,cyrillic-ext,devanagari,greek,greek-ext,khmer,latin,latin-ext,vietnamese,hebrew,arabic,bengali,gujarati,tamil,telugu,thai';
|
170 |
+
WebFont.load( {
|
171 |
+
google: {
|
172 |
+
families: [ googleFont ]
|
173 |
+
}
|
174 |
+
} );
|
175 |
+
}
|
176 |
+
break;
|
177 |
+
case 'kirki-background':
|
178 |
+
case 'kirki-dimensions':
|
179 |
+
case 'kirki-multicolor':
|
180 |
+
case 'kirki-sortable':
|
181 |
+
styles += output.element + '{';
|
182 |
+
_.each( value, function( val, key ) {
|
183 |
+
if ( output.choice && key !== output.choice ) {
|
184 |
+
return;
|
185 |
+
}
|
186 |
+
if ( 'background-image' === key ) {
|
187 |
+
val = kirkiPostMessage.util.backgroundImageValue( val );
|
188 |
+
}
|
189 |
+
|
190 |
+
processedValue = kirkiPostMessage.util.processValue( output, val );
|
191 |
+
|
192 |
+
if ( false !== processedValue ) {
|
193 |
+
|
194 |
+
// Mostly used for padding, margin & position properties.
|
195 |
+
if ( output.property ) {
|
196 |
+
styles += output.property;
|
197 |
+
if ( '' !== output.property && ( 'top' === key || 'bottom' === key || 'left' === key || 'right' === key ) ) {
|
198 |
+
styles += '-' + key;
|
199 |
+
}
|
200 |
+
styles += ':' + processedValue + ';';
|
201 |
+
} else {
|
202 |
+
styles += key + ':' + processedValue + ';';
|
203 |
+
}
|
204 |
+
}
|
205 |
+
} );
|
206 |
+
styles += '}';
|
207 |
+
break;
|
208 |
+
default:
|
209 |
+
if ( 'kirki-image' === controlType ) {
|
210 |
+
value = ( ! _.isUndefined( value.url ) ) ? kirkiPostMessage.util.backgroundImageValue( value.url ) : kirkiPostMessage.util.backgroundImageValue( value );
|
211 |
+
}
|
212 |
+
if ( _.isObject( value ) ) {
|
213 |
+
styles += output.element + '{';
|
214 |
+
_.each( value, function( val, key ) {
|
215 |
+
if ( output.choice && key !== output.choice ) {
|
216 |
+
return;
|
217 |
+
}
|
218 |
+
processedValue = kirkiPostMessage.util.processValue( output, val );
|
219 |
+
if ( ! output.property ) {
|
220 |
+
output.property = key;
|
221 |
+
}
|
222 |
+
if ( false !== processedValue ) {
|
223 |
+
styles += output.property + ':' + processedValue + ';';
|
224 |
+
}
|
225 |
+
} );
|
226 |
+
styles += '}';
|
227 |
+
} else {
|
228 |
+
processedValue = kirkiPostMessage.util.processValue( output, value );
|
229 |
+
if ( false !== processedValue ) {
|
230 |
+
styles += output.element + '{' + output.property + ':' + processedValue + ';}';
|
231 |
+
}
|
232 |
+
}
|
233 |
+
break;
|
234 |
+
}
|
235 |
+
|
236 |
+
// Get the media-query.
|
237 |
+
if ( output.media_query && 'string' === typeof output.media_query && ! _.isEmpty( output.media_query ) ) {
|
238 |
+
mediaQuery = output.media_query;
|
239 |
+
if ( -1 === mediaQuery.indexOf( '@media' ) ) {
|
240 |
+
mediaQuery = '@media ' + mediaQuery;
|
241 |
+
}
|
242 |
+
}
|
243 |
+
|
244 |
+
// If we have a media-query, add it and return.
|
245 |
+
if ( mediaQuery ) {
|
246 |
+
return mediaQuery + '{' + styles + '}';
|
247 |
+
}
|
248 |
+
|
249 |
+
// Return the styles.
|
250 |
+
return styles;
|
251 |
+
}
|
252 |
+
},
|
253 |
+
|
254 |
+
/**
|
255 |
+
* A collection of utilities to change the HTML in the document.
|
256 |
+
*
|
257 |
+
* @since 3.0.26
|
258 |
+
*/
|
259 |
+
html: {
|
260 |
+
|
261 |
+
/**
|
262 |
+
* Modifies the HTML from the output (js_vars) parameter.
|
263 |
+
*
|
264 |
+
* @since 3.0.26
|
265 |
+
* @param {Object} output - The output (js_vars) argument.
|
266 |
+
* @param {mixed} value - The value.
|
267 |
+
* @returns {string}
|
268 |
+
*/
|
269 |
+
fromOutput: function( output, value ) {
|
270 |
+
|
271 |
+
if ( output.js_callback && 'function' === typeof window[ output.js_callback ] ) {
|
272 |
+
value = window[ output.js_callback[0] ]( value, output.js_callback[1] );
|
273 |
+
}
|
274 |
+
|
275 |
+
if ( _.isObject( value ) || _.isArray( value ) ) {
|
276 |
+
if ( ! output.choice ) {
|
277 |
+
return;
|
278 |
+
}
|
279 |
+
_.each( value, function( val, key ) {
|
280 |
+
if ( output.choice && key !== output.choice ) {
|
281 |
+
return;
|
282 |
+
}
|
283 |
+
value = val;
|
284 |
+
} );
|
285 |
+
}
|
286 |
+
value = kirkiPostMessage.util.processValue( output, value );
|
287 |
+
|
288 |
+
if ( output.attr ) {
|
289 |
+
jQuery( output.element ).attr( output.attr, value );
|
290 |
+
} else {
|
291 |
+
jQuery( output.element ).html( value );
|
292 |
+
}
|
293 |
+
}
|
294 |
+
},
|
295 |
+
|
296 |
+
/**
|
297 |
+
* A collection of utilities to allow toggling a CSS class.
|
298 |
+
*
|
299 |
+
* @since 3.0.26
|
300 |
+
*/
|
301 |
+
toggleClass: {
|
302 |
+
|
303 |
+
/**
|
304 |
+
* Toggles a CSS class from the output (js_vars) parameter.
|
305 |
+
*
|
306 |
+
* @since 3.0.21
|
307 |
+
* @param {Object} output - The output (js_vars) argument.
|
308 |
+
* @param {mixed} value - The value.
|
309 |
+
* @returns {string}
|
310 |
+
*/
|
311 |
+
fromOutput: function( output, value ) {
|
312 |
+
if ( 'undefined' === typeof output.class || 'undefined' === typeof output.value ) {
|
313 |
+
return;
|
314 |
+
}
|
315 |
+
if ( value === output.value && ! jQuery( output.element ).hasClass( output.class ) ) {
|
316 |
+
jQuery( output.element ).addClass( output.class );
|
317 |
+
} else {
|
318 |
+
jQuery( output.element ).removeClass( output.class );
|
319 |
+
}
|
320 |
+
}
|
321 |
+
}
|
322 |
+
};
|
323 |
+
|
324 |
+
jQuery( document ).ready( function() {
|
325 |
+
|
326 |
+
_.each( kirkiPostMessageFields, function( field ) {
|
327 |
+
wp.customize( field.settings, function( value ) {
|
328 |
+
value.bind( function( newVal ) {
|
329 |
+
var styles = '';
|
330 |
+
_.each( field.js_vars, function( output ) {
|
331 |
+
if ( ! output.function || 'undefined' === typeof kirkiPostMessage[ output.function ] ) {
|
332 |
+
output.function = 'css';
|
333 |
+
}
|
334 |
+
if ( 'css' === output.function ) {
|
335 |
+
styles += kirkiPostMessage.css.fromOutput( output, newVal, field.type );
|
336 |
+
} else {
|
337 |
+
kirkiPostMessage[ output.function ].fromOutput( output, newVal, field.type );
|
338 |
+
}
|
339 |
+
} );
|
340 |
+
kirkiPostMessage.styleTag.addData( field.settings, styles );
|
341 |
+
} );
|
342 |
+
} );
|
343 |
+
} );
|
344 |
+
} );
|
modules/preset/class-kirki-modules-preset.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.26
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.26
|
11 |
*/
|
modules/selective-refresh/class-kirki-modules-selective-refresh.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
@@ -75,7 +75,8 @@ class Kirki_Modules_Selective_Refresh {
|
|
75 |
// If we have all we need, create the selective refresh call.
|
76 |
if ( isset( $partial_refresh_args['render_callback'] ) && isset( $partial_refresh_args['selector'] ) ) {
|
77 |
$partial_refresh_args = wp_parse_args(
|
78 |
-
$partial_refresh_args,
|
|
|
79 |
'settings' => $field['settings'],
|
80 |
)
|
81 |
);
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
75 |
// If we have all we need, create the selective refresh call.
|
76 |
if ( isset( $partial_refresh_args['render_callback'] ) && isset( $partial_refresh_args['selector'] ) ) {
|
77 |
$partial_refresh_args = wp_parse_args(
|
78 |
+
$partial_refresh_args,
|
79 |
+
array(
|
80 |
'settings' => $field['settings'],
|
81 |
)
|
82 |
);
|
modules/telemetry/class-kirki-modules-telemetry.php
ADDED
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Telemetry implementation for Kirki.
|
4 |
+
*
|
5 |
+
* @package Kirki
|
6 |
+
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
+
* @license http://opensource.org/licenses/https://opensource.org/licenses/MIT
|
10 |
+
* @since 3.0.36
|
11 |
+
*/
|
12 |
+
|
13 |
+
// Exit if accessed directly.
|
14 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
+
exit;
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Telemetry implementation.
|
20 |
+
*/
|
21 |
+
final class Kirki_Modules_Telemetry {
|
22 |
+
|
23 |
+
/**
|
24 |
+
* The object instance.
|
25 |
+
*
|
26 |
+
* @static
|
27 |
+
* @access private
|
28 |
+
* @since 3.0.36
|
29 |
+
* @var object
|
30 |
+
*/
|
31 |
+
private static $instance;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Constructor.
|
35 |
+
*
|
36 |
+
* @access protected
|
37 |
+
* @since 3.0.36
|
38 |
+
*/
|
39 |
+
protected function __construct() {
|
40 |
+
|
41 |
+
// Early exit if telemetry is disabled.
|
42 |
+
if ( ! apply_filters( 'kirki_telemetry', true ) ) {
|
43 |
+
return;
|
44 |
+
}
|
45 |
+
|
46 |
+
add_action( 'init', array( $this, 'init' ) );
|
47 |
+
add_action( 'admin_notices', array( $this, 'admin_notice' ) );
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Gets an instance of this object.
|
52 |
+
* Prevents duplicate instances which avoid artefacts and improves performance.
|
53 |
+
*
|
54 |
+
* @static
|
55 |
+
* @access public
|
56 |
+
* @since 3.0.36
|
57 |
+
* @return object
|
58 |
+
*/
|
59 |
+
public static function get_instance() {
|
60 |
+
if ( ! self::$instance ) {
|
61 |
+
self::$instance = new self();
|
62 |
+
}
|
63 |
+
return self::$instance;
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Additional actions that run on init.
|
68 |
+
*
|
69 |
+
* @access public
|
70 |
+
* @since 3.0.36
|
71 |
+
* @return void
|
72 |
+
*/
|
73 |
+
public function init() {
|
74 |
+
$this->dismiss_notice();
|
75 |
+
$this->consent();
|
76 |
+
|
77 |
+
// This is the last thing to run. No impact on performance or anything else.
|
78 |
+
add_action( 'wp_footer', array( $this, 'maybe_send_data' ), 99999 );
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Maybe send data.
|
83 |
+
*
|
84 |
+
* @access public
|
85 |
+
* @since 3.0.36
|
86 |
+
* @return void
|
87 |
+
*/
|
88 |
+
public function maybe_send_data() {
|
89 |
+
|
90 |
+
// Check if the user has consented to the data sending.
|
91 |
+
if ( ! get_option( 'kirki_telemetry_optin' ) ) {
|
92 |
+
return;
|
93 |
+
}
|
94 |
+
|
95 |
+
// Only send data once/month. We use an option instead of a transient
|
96 |
+
// because transients in some managed hosting environments don't properly update
|
97 |
+
// due to their caching implementations.
|
98 |
+
$sent = get_option( 'kirki_telemetry_sent' );
|
99 |
+
if ( ! $sent || $sent < time() - MONTH_IN_SECONDS ) {
|
100 |
+
$this->send_data();
|
101 |
+
update_option( 'kirki_telemetry_sent', time() );
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Sends data.
|
107 |
+
*
|
108 |
+
* @access private
|
109 |
+
* @since 3.0.36
|
110 |
+
* @return void
|
111 |
+
*/
|
112 |
+
private function send_data() {
|
113 |
+
|
114 |
+
// Ping remote server.
|
115 |
+
wp_remote_post(
|
116 |
+
'https://wplemon.com/?action=kirki-stats',
|
117 |
+
array(
|
118 |
+
'method' => 'POST',
|
119 |
+
'blocking' => false,
|
120 |
+
'body' => array_merge(
|
121 |
+
array(
|
122 |
+
'action' => 'kirki-stats',
|
123 |
+
),
|
124 |
+
$this->get_data()
|
125 |
+
),
|
126 |
+
)
|
127 |
+
);
|
128 |
+
}
|
129 |
+
|
130 |
+
/**
|
131 |
+
* The admin-notice.
|
132 |
+
*
|
133 |
+
* @access private
|
134 |
+
* @since 3.0.36
|
135 |
+
* @return void
|
136 |
+
*/
|
137 |
+
public function admin_notice() {
|
138 |
+
|
139 |
+
// Early exit if the user has dismissed the consent, or if they have opted-in.
|
140 |
+
if ( get_option( 'kirki_telemetry_no_consent' ) || get_option( 'kirki_telemetry_optin' ) ) {
|
141 |
+
return;
|
142 |
+
}
|
143 |
+
$data = $this->get_data();
|
144 |
+
?>
|
145 |
+
<div class="notice notice-info kirki-telemetry">
|
146 |
+
<h3><strong><?php esc_html_e( 'Help us improve Kirki.', 'kirki' ); ?></strong></h3>
|
147 |
+
<p style="max-width: 76em;"><?php _e( 'Help us begin a dialogue with theme developers, collaborate and improve both the theme you are using and the Kirki framework by agreeing to send anonymous data. <strong>The data is completely anonymous and we will never collect any identifyable information about you or your website.</strong>', 'kirki' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></p>
|
148 |
+
<table class="data-to-send hidden widefat">
|
149 |
+
<thead>
|
150 |
+
<tr>
|
151 |
+
<th colspan="2"><?php esc_html_e( 'Data that will be sent', 'kirki' ); ?></th>
|
152 |
+
</tr>
|
153 |
+
</thead>
|
154 |
+
<tbody>
|
155 |
+
<tr>
|
156 |
+
<td style="min-width: 200px;"><?php esc_html_e( 'PHP Version', 'kirki' ); ?></td>
|
157 |
+
<td><code><?php echo esc_html( $data['phpVer'] ); ?></code></td>
|
158 |
+
</tr>
|
159 |
+
<tr>
|
160 |
+
<td><?php esc_html_e( 'Theme Name', 'kirki' ); ?></td>
|
161 |
+
<td><code><?php echo esc_html( $data['themeName'] ); ?></code></td>
|
162 |
+
</tr>
|
163 |
+
<tr>
|
164 |
+
<td><?php esc_html_e( 'Theme Author', 'kirki' ); ?></td>
|
165 |
+
<td><code><?php echo esc_html( $data['themeAuthor'] ); ?></code></td>
|
166 |
+
</tr>
|
167 |
+
<tr>
|
168 |
+
<td><?php esc_html_e( 'Theme URI', 'kirki' ); ?></td>
|
169 |
+
<td><code><?php echo esc_html( $data['themeURI'] ); ?></code></td>
|
170 |
+
</tr>
|
171 |
+
<tr>
|
172 |
+
<td><?php esc_html_e( 'Field Types Used', 'kirki' ); ?></td>
|
173 |
+
<td><code><?php echo esc_html( implode( ',', $data['fieldTypes'] ) ); ?></code></td>
|
174 |
+
</tr>
|
175 |
+
</tbody>
|
176 |
+
<tfoot>
|
177 |
+
<tr>
|
178 |
+
<th colspan="2">
|
179 |
+
<?php
|
180 |
+
printf(
|
181 |
+
/* translators: %1$s: URL to the server plugin code. %2$s: URL to the stats page. */
|
182 |
+
__( 'We believe in complete transparency. You can see the code used on our server <a href="%1$s" rel="nofollow">here</a>, and the results of the statistics we\'re gathering on <a href="%2$s" rel="nofollow">this page</a>.', 'kirki' ), // phpcs:ignore WordPress.Security.EscapeOutput
|
183 |
+
'https://github.com/aristath/kirki-telemetry-server',
|
184 |
+
'https://wplemon.com/kirki-telemetry-statistics/'
|
185 |
+
);
|
186 |
+
?>
|
187 |
+
</th>
|
188 |
+
</tr>
|
189 |
+
</tfoot>
|
190 |
+
</table>
|
191 |
+
<p class="actions">
|
192 |
+
|
193 |
+
<a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'kirki-consent-notice', 'telemetry' ) ) ); ?>" class="button button-primary consent"><?php esc_html_e( 'I agree', 'kirki' ); ?></a>
|
194 |
+
<a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'kirki-hide-notice', 'telemetry' ) ) ); ?>" class="button button-secondary dismiss"><?php esc_html_e( 'No thanks', 'kirki' ); ?></a>
|
195 |
+
<a class="button button-link details details-show"><?php esc_html_e( 'Show me the data', 'kirki' ); ?></a>
|
196 |
+
<a class="button button-link details details-hide hidden"><?php esc_html_e( 'Collapse data', 'kirki' ); ?></a>
|
197 |
+
</p>
|
198 |
+
<script>
|
199 |
+
jQuery( '.kirki-telemetry a.details' ).on( 'click', function() {
|
200 |
+
jQuery( '.kirki-telemetry .data-to-send' ).toggleClass( 'hidden' );
|
201 |
+
jQuery( '.kirki-telemetry a.details-show' ).toggleClass( 'hidden' );
|
202 |
+
jQuery( '.kirki-telemetry a.details-hide' ).toggleClass( 'hidden' );
|
203 |
+
});
|
204 |
+
</script>
|
205 |
+
</div>
|
206 |
+
<?php
|
207 |
+
}
|
208 |
+
|
209 |
+
/**
|
210 |
+
* Builds and returns the data or uses cached if data already exists.
|
211 |
+
*
|
212 |
+
* @access private
|
213 |
+
* @since 3.0.36
|
214 |
+
* @return array
|
215 |
+
*/
|
216 |
+
private function get_data() {
|
217 |
+
// Get the theme.
|
218 |
+
$theme = wp_get_theme();
|
219 |
+
|
220 |
+
// Format the PHP version.
|
221 |
+
$php_version = phpversion( 'tidy' );
|
222 |
+
if ( ! $php_version ) {
|
223 |
+
$php_version = array_merge( explode( '.', phpversion() ), array( 0, 0 ) );
|
224 |
+
$php_version = "{$php_version[0]}.{$php_version[1]}";
|
225 |
+
}
|
226 |
+
|
227 |
+
// Build data and return the array.
|
228 |
+
return array(
|
229 |
+
'phpVer' => $php_version,
|
230 |
+
'themeName' => $theme->get( 'Name' ),
|
231 |
+
'themeAuthor' => $theme->get( 'Author' ),
|
232 |
+
'themeURI' => $theme->get( 'ThemeURI' ),
|
233 |
+
'fieldTypes' => $this->get_field_types(),
|
234 |
+
);
|
235 |
+
}
|
236 |
+
|
237 |
+
/**
|
238 |
+
* Get the field-types used.
|
239 |
+
*
|
240 |
+
* @access private
|
241 |
+
* @since 3.0.36
|
242 |
+
* @return array
|
243 |
+
*/
|
244 |
+
public function get_field_types() {
|
245 |
+
$types = array();
|
246 |
+
foreach ( Kirki::$fields as $field ) {
|
247 |
+
if ( isset( $field['type'] ) ) {
|
248 |
+
$types[] = $field['type'];
|
249 |
+
}
|
250 |
+
}
|
251 |
+
return $types;
|
252 |
+
}
|
253 |
+
|
254 |
+
/**
|
255 |
+
* Dismisses the notice.
|
256 |
+
*
|
257 |
+
* @access private
|
258 |
+
* @since 3.0.36
|
259 |
+
* @return void
|
260 |
+
*/
|
261 |
+
private function dismiss_notice() {
|
262 |
+
|
263 |
+
// Check if this is the request we want.
|
264 |
+
if ( isset( $_GET['_wpnonce'] ) && isset( $_GET['kirki-hide-notice'] ) ) {
|
265 |
+
if ( 'telemetry' === sanitize_text_field( wp_unslash( $_GET['kirki-hide-notice'] ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification
|
266 |
+
// Check the wp-nonce.
|
267 |
+
if ( wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ) ) ) {
|
268 |
+
// All good, we can save the option to dismiss this notice.
|
269 |
+
update_option( 'kirki_telemetry_no_consent', true );
|
270 |
+
}
|
271 |
+
}
|
272 |
+
}
|
273 |
+
}
|
274 |
+
|
275 |
+
/**
|
276 |
+
* Dismisses the notice.
|
277 |
+
*
|
278 |
+
* @access private
|
279 |
+
* @since 3.0.36
|
280 |
+
* @return void
|
281 |
+
*/
|
282 |
+
private function consent() {
|
283 |
+
|
284 |
+
// Check if this is the request we want.
|
285 |
+
if ( isset( $_GET['_wpnonce'] ) && isset( $_GET['kirki-consent-notice'] ) ) {
|
286 |
+
if ( 'telemetry' === sanitize_text_field( wp_unslash( $_GET['kirki-consent-notice'] ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification
|
287 |
+
// Check the wp-nonce.
|
288 |
+
if ( wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ) ) ) {
|
289 |
+
// All good, we can save the option to dismiss this notice.
|
290 |
+
update_option( 'kirki_telemetry_optin', true );
|
291 |
+
}
|
292 |
+
}
|
293 |
+
}
|
294 |
+
}
|
295 |
+
}
|
modules/tooltips/class-kirki-modules-tooltips.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
modules/tooltips/tooltip.css
CHANGED
@@ -1,36 +1,30 @@
|
|
1 |
-
@charset "UTF-8";
|
2 |
.tooltip-wrapper {
|
3 |
float: right;
|
4 |
-
position: relative;
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
right: -12px;
|
31 |
-
top: 11px;
|
32 |
-
color: #FFC107;
|
33 |
-
font-size: 20px;
|
34 |
-
}
|
35 |
|
36 |
/*# sourceMappingURL=tooltip.css.map */
|
|
|
1 |
.tooltip-wrapper {
|
2 |
float: right;
|
3 |
+
position: relative; }
|
4 |
+
.tooltip-wrapper .tooltip-trigger {
|
5 |
+
text-decoration: none;
|
6 |
+
cursor: help; }
|
7 |
+
.tooltip-wrapper .tooltip-content {
|
8 |
+
position: absolute;
|
9 |
+
width: 200px;
|
10 |
+
height: auto;
|
11 |
+
top: -10px;
|
12 |
+
left: -225px;
|
13 |
+
background: #FFC107;
|
14 |
+
color: #000;
|
15 |
+
padding: 10px;
|
16 |
+
z-index: 99999;
|
17 |
+
border-radius: 3px;
|
18 |
+
line-height: 1.4em; }
|
19 |
+
.tooltip-wrapper .tooltip-content a {
|
20 |
+
color: #000; }
|
21 |
+
.tooltip-wrapper .tooltip-content:after {
|
22 |
+
content: "\f139";
|
23 |
+
font-family: dashicons;
|
24 |
+
position: absolute;
|
25 |
+
right: -12px;
|
26 |
+
top: 11px;
|
27 |
+
color: #FFC107;
|
28 |
+
font-size: 20px; }
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
/*# sourceMappingURL=tooltip.css.map */
|
modules/webfont-loader/class-kirki-modules-webfont-loader.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
* @see https://github.com/typekit/webfontloader
|
6 |
* @package Kirki
|
7 |
* @category Modules
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.26
|
12 |
*/
|
5 |
* @see https://github.com/typekit/webfontloader
|
6 |
* @package Kirki
|
7 |
* @category Modules
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 3.0.26
|
12 |
*/
|
modules/webfonts/class-kirki-fonts-google-local.php
DELETED
@@ -1,483 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Handles downloading a font from the google-fonts API locally.
|
4 |
-
* Solves privacy concerns with Google's CDN
|
5 |
-
* and their sometimes less-than-transparent policies.
|
6 |
-
*
|
7 |
-
* @package Kirki
|
8 |
-
* @category Core
|
9 |
-
* @author Aristeides Stathopoulos
|
10 |
-
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
|
11 |
-
* @license https://opensource.org/licenses/MIT
|
12 |
-
* @since 3.0.28
|
13 |
-
*/
|
14 |
-
|
15 |
-
// Do not allow directly accessing this file.
|
16 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
17 |
-
exit( 'Direct script access denied.' );
|
18 |
-
}
|
19 |
-
|
20 |
-
/**
|
21 |
-
* The Kirki_Fonts object.
|
22 |
-
*
|
23 |
-
* @since 3.0.28
|
24 |
-
*/
|
25 |
-
final class Kirki_Fonts_Google_Local {
|
26 |
-
|
27 |
-
/**
|
28 |
-
* The name of the font-family
|
29 |
-
*
|
30 |
-
* @access private
|
31 |
-
* @since 3.0.28
|
32 |
-
* @var string
|
33 |
-
*/
|
34 |
-
private $family;
|
35 |
-
|
36 |
-
/**
|
37 |
-
* The system path where font-files are stored.
|
38 |
-
*
|
39 |
-
* @access private
|
40 |
-
* @since 3.0.28
|
41 |
-
* @var string
|
42 |
-
*/
|
43 |
-
private $folder_path;
|
44 |
-
|
45 |
-
/**
|
46 |
-
* The URL where files for this font can be found.
|
47 |
-
*
|
48 |
-
* @access private
|
49 |
-
* @since 3.0.28
|
50 |
-
* @var string
|
51 |
-
*/
|
52 |
-
private $folder_url;
|
53 |
-
|
54 |
-
/**
|
55 |
-
* The font-family array from the google-fonts API.
|
56 |
-
*
|
57 |
-
* @access private
|
58 |
-
* @since 3.0.28
|
59 |
-
* @var array
|
60 |
-
*/
|
61 |
-
private $font;
|
62 |
-
|
63 |
-
/**
|
64 |
-
* An array of instances for this object.
|
65 |
-
*
|
66 |
-
* @static
|
67 |
-
* @access private
|
68 |
-
* @since 3.0.28
|
69 |
-
* @var array
|
70 |
-
*/
|
71 |
-
private static $instances = array();
|
72 |
-
|
73 |
-
/**
|
74 |
-
* Create an instance of this object for a specific font-family.
|
75 |
-
*
|
76 |
-
* @static
|
77 |
-
* @access public
|
78 |
-
* @since 3.0.28
|
79 |
-
* @param string $family The font-family name.
|
80 |
-
* @return Kirki_Fonts_Google_Local
|
81 |
-
*/
|
82 |
-
public static function init( $family ) {
|
83 |
-
$key = sanitize_key( $family );
|
84 |
-
if ( ! isset( self::$instances[ $key ] ) ) {
|
85 |
-
self::$instances[ $key ] = new self( $family );
|
86 |
-
}
|
87 |
-
return self::$instances[ $key ];
|
88 |
-
}
|
89 |
-
|
90 |
-
/**
|
91 |
-
* Constructor.
|
92 |
-
*
|
93 |
-
* @access private
|
94 |
-
* @since 3.0.28
|
95 |
-
* @param string $family The font-family name.
|
96 |
-
*/
|
97 |
-
private function __construct( $family ) {
|
98 |
-
$this->family = $family;
|
99 |
-
$key = sanitize_key( $this->family );
|
100 |
-
$this->folder_path = $this->get_root_path() . "/$key";
|
101 |
-
$this->folder_url = $this->get_root_url() . "/$key";
|
102 |
-
$this->files = $this->get_font_family();
|
103 |
-
}
|
104 |
-
|
105 |
-
/**
|
106 |
-
* Gets the @font-face CSS.
|
107 |
-
*
|
108 |
-
* @access public
|
109 |
-
* @since 3.0.28
|
110 |
-
* @param array $variants The variants we want to get.
|
111 |
-
* @return string
|
112 |
-
*/
|
113 |
-
public function get_css( $variants = array() ) {
|
114 |
-
if ( ! $this->files ) {
|
115 |
-
return;
|
116 |
-
}
|
117 |
-
$key = md5( wp_json_encode( $this->files ) );
|
118 |
-
$cached = get_transient( $key );
|
119 |
-
if ( $cached ) {
|
120 |
-
return $cached;
|
121 |
-
}
|
122 |
-
$css = '';
|
123 |
-
|
124 |
-
// If $variants is empty then use all variants available.
|
125 |
-
if ( empty( $variants ) ) {
|
126 |
-
$variants = array_keys( $this->files );
|
127 |
-
}
|
128 |
-
|
129 |
-
// Download files.
|
130 |
-
$this->download_font_family( $variants );
|
131 |
-
|
132 |
-
// Create the @font-face CSS.
|
133 |
-
foreach ( $variants as $variant ) {
|
134 |
-
$css .= $this->get_variant_fontface_css( $variant );
|
135 |
-
}
|
136 |
-
set_transient( $key, $css, DAY_IN_SECONDS );
|
137 |
-
return $css;
|
138 |
-
}
|
139 |
-
|
140 |
-
/**
|
141 |
-
* Get the @font-face CSS for a specific variant.
|
142 |
-
*
|
143 |
-
* @access public
|
144 |
-
* @since 3.0.28
|
145 |
-
* @param string $variant The variant.
|
146 |
-
* @return string
|
147 |
-
*/
|
148 |
-
public function get_variant_fontface_css( $variant ) {
|
149 |
-
$font_face = "@font-face{font-family:'{$this->family}';";
|
150 |
-
|
151 |
-
// Get the font-style.
|
152 |
-
$font_style = ( false !== strpos( $variant, 'italic' ) ) ? 'italic' : 'normal';
|
153 |
-
$font_face .= "font-style:{$font_style};";
|
154 |
-
|
155 |
-
// Get the font-weight.
|
156 |
-
$font_weight = '400';
|
157 |
-
$font_weight = str_replace( 'italic', '', $variant );
|
158 |
-
$font_weight = ( ! $font_weight || 'regular' === $font_weight ) ? '400' : $font_weight;
|
159 |
-
$font_face .= "font-weight:{$font_weight};";
|
160 |
-
|
161 |
-
// Get the font-names.
|
162 |
-
$font_name_0 = $this->get_local_font_name( $variant, false );
|
163 |
-
$font_name_1 = $this->get_local_font_name( $variant, true );
|
164 |
-
$font_face .= "src:local('{$font_name_0}'),";
|
165 |
-
if ( $font_name_0 !== $font_name_1 ) {
|
166 |
-
$font_face .= "local('{$font_name_1}'),";
|
167 |
-
}
|
168 |
-
|
169 |
-
// Get the font-url.
|
170 |
-
$font_url = $this->get_variant_local_url( $variant );
|
171 |
-
$paths = $this->get_font_files_paths();
|
172 |
-
if ( ! file_exists( $paths[ $variant ] ) ) {
|
173 |
-
$font_url = $this->files[ $variant ];
|
174 |
-
}
|
175 |
-
|
176 |
-
// Get the font-format.
|
177 |
-
$font_format = ( strpos( $font_url, '.woff2' ) ) ? 'woff2' : 'truetype';
|
178 |
-
$font_format = ( strpos( $font_url, '.woff' ) && ! strpos( $font_url, '.woff2' ) ) ? 'woff' : $font_format;
|
179 |
-
$font_face .= "url({$font_url}) format('{$font_format}');}";
|
180 |
-
|
181 |
-
return $font_face;
|
182 |
-
}
|
183 |
-
|
184 |
-
/**
|
185 |
-
* Gets the local URL for a variant.
|
186 |
-
*
|
187 |
-
* @access public
|
188 |
-
* @since 3.0.28
|
189 |
-
* @param string $variant The variant.
|
190 |
-
* @return string The URL.
|
191 |
-
*/
|
192 |
-
public function get_variant_local_url( $variant ) {
|
193 |
-
$local_urls = $this->get_font_files_urls_local();
|
194 |
-
|
195 |
-
if ( empty( $local_urls ) ) {
|
196 |
-
return;
|
197 |
-
}
|
198 |
-
|
199 |
-
// Return the specific variant if we can find it.
|
200 |
-
if ( isset( $local_urls[ $variant ] ) ) {
|
201 |
-
return $local_urls[ $variant ];
|
202 |
-
}
|
203 |
-
|
204 |
-
// Return regular if the one we want could not be found.
|
205 |
-
if ( isset( $local_urls['regular'] ) ) {
|
206 |
-
return $local_urls['regular'];
|
207 |
-
}
|
208 |
-
|
209 |
-
// Return the first available if all else failed.
|
210 |
-
$vals = array_values( $local_urls );
|
211 |
-
return $vals[0];
|
212 |
-
}
|
213 |
-
|
214 |
-
/**
|
215 |
-
* Get the name of the font-family.
|
216 |
-
* This is used by @font-face in case the user already has the font downloaded locally.
|
217 |
-
*
|
218 |
-
* @access public
|
219 |
-
* @since 3.0.28
|
220 |
-
* @param string $variant The variant.
|
221 |
-
* @param bool $compact Whether we want the compact formatting or not.
|
222 |
-
* @return string
|
223 |
-
*/
|
224 |
-
public function get_local_font_name( $variant, $compact = false ) {
|
225 |
-
$variant_names = array(
|
226 |
-
'100' => 'Thin',
|
227 |
-
'100i' => 'Thin Italic',
|
228 |
-
'100italic' => 'Thin Italic',
|
229 |
-
'200' => 'Extra-Light',
|
230 |
-
'200i' => 'Extra-Light Italic',
|
231 |
-
'200italic' => 'Extra-Light Italic',
|
232 |
-
'300' => 'Light',
|
233 |
-
'300i' => 'Light Italic',
|
234 |
-
'300italic' => 'Light Italic',
|
235 |
-
'400' => 'Regular',
|
236 |
-
'regular' => 'Regular',
|
237 |
-
'400i' => 'Regular Italic',
|
238 |
-
'italic' => 'Italic',
|
239 |
-
'400italic' => 'Regular Italic',
|
240 |
-
'500' => 'Medium',
|
241 |
-
'500i' => 'Medium Italic',
|
242 |
-
'500italic' => 'Medium Italic',
|
243 |
-
'600' => 'Semi-Bold',
|
244 |
-
'600i' => 'Semi-Bold Italic',
|
245 |
-
'600italic' => 'Semi-Bold Italic',
|
246 |
-
'700' => 'Bold',
|
247 |
-
'700i' => 'Bold Italic',
|
248 |
-
'700italic' => 'Bold Italic',
|
249 |
-
'800' => 'Extra-Bold',
|
250 |
-
'800i' => 'Extra-Bold Italic',
|
251 |
-
'800italic' => 'Extra-Bold Italic',
|
252 |
-
'900' => 'Black',
|
253 |
-
'900i' => 'Black Italic',
|
254 |
-
'900italic' => 'Black Italic',
|
255 |
-
);
|
256 |
-
|
257 |
-
$variant = (string) $variant;
|
258 |
-
if ( $compact ) {
|
259 |
-
if ( isset( $variant_names[ $variant ] ) ) {
|
260 |
-
return str_replace( array( ' ', '-' ), '', $this->family ) . '-' . str_replace( array( ' ', '-' ), '', $variant_names[ $variant ] );
|
261 |
-
}
|
262 |
-
return str_replace( array( ' ', '-' ), '', $this->family );
|
263 |
-
}
|
264 |
-
|
265 |
-
if ( isset( $variant_names[ $variant ] ) ) {
|
266 |
-
return $this->family . ' ' . $variant_names[ $variant ];
|
267 |
-
}
|
268 |
-
return $this->family;
|
269 |
-
}
|
270 |
-
|
271 |
-
/**
|
272 |
-
* Get an array of font-files.
|
273 |
-
* Only contains the filenames.
|
274 |
-
*
|
275 |
-
* @access public
|
276 |
-
* @since 3.0.28
|
277 |
-
* @return array
|
278 |
-
*/
|
279 |
-
public function get_font_files() {
|
280 |
-
$files = array();
|
281 |
-
foreach ( $this->files as $key => $url ) {
|
282 |
-
$files[ $key ] = $this->get_filename_from_url( $url );
|
283 |
-
}
|
284 |
-
return $files;
|
285 |
-
}
|
286 |
-
|
287 |
-
/**
|
288 |
-
* Get an array of local file URLs.
|
289 |
-
*
|
290 |
-
* @access public
|
291 |
-
* @since 3.0.28
|
292 |
-
* @return array
|
293 |
-
*/
|
294 |
-
public function get_font_files_urls_local() {
|
295 |
-
$urls = array();
|
296 |
-
$files = $this->get_font_files();
|
297 |
-
foreach ( $files as $key => $file ) {
|
298 |
-
$urls[ $key ] = $this->folder_url . '/' . $file;
|
299 |
-
}
|
300 |
-
return $urls;
|
301 |
-
}
|
302 |
-
|
303 |
-
/**
|
304 |
-
* Get an array of local file paths.
|
305 |
-
*
|
306 |
-
* @access public
|
307 |
-
* @since 3.0.28
|
308 |
-
* @return array
|
309 |
-
*/
|
310 |
-
public function get_font_files_paths() {
|
311 |
-
$paths = array();
|
312 |
-
$files = $this->get_font_files();
|
313 |
-
foreach ( $files as $key => $file ) {
|
314 |
-
$paths[ $key ] = $this->folder_path . '/' . $file;
|
315 |
-
}
|
316 |
-
return $paths;
|
317 |
-
}
|
318 |
-
|
319 |
-
/**
|
320 |
-
* Downloads a font-file and saves it locally.
|
321 |
-
*
|
322 |
-
* @access private
|
323 |
-
* @since 3.0.28
|
324 |
-
* @param string $url The URL of the file we want to get.
|
325 |
-
* @return bool
|
326 |
-
*/
|
327 |
-
private function download_font_file( $url ) {
|
328 |
-
$contents = $this->get_remote_url_contents( $url );
|
329 |
-
$path = $this->folder_path . '/' . $this->get_filename_from_url( $url );
|
330 |
-
|
331 |
-
// If the folder doesn't exist, create it.
|
332 |
-
if ( ! file_exists( $this->folder_path ) ) {
|
333 |
-
wp_mkdir_p( $this->folder_path );
|
334 |
-
}
|
335 |
-
// If the file exists no reason to do anything.
|
336 |
-
if ( file_exists( $path ) ) {
|
337 |
-
return true;
|
338 |
-
}
|
339 |
-
|
340 |
-
// Write file.
|
341 |
-
return Kirki_Helper::init_filesystem()->put_contents( $path, $contents, FS_CHMOD_FILE );
|
342 |
-
}
|
343 |
-
|
344 |
-
/**
|
345 |
-
* Get a font-family from the array of google-fonts.
|
346 |
-
*
|
347 |
-
* @access public
|
348 |
-
* @since 3.0.28
|
349 |
-
* @return array
|
350 |
-
*/
|
351 |
-
public function get_font_family() {
|
352 |
-
|
353 |
-
// Get the fonts array.
|
354 |
-
$fonts = $this->get_fonts();
|
355 |
-
if ( isset( $fonts[ $this->family ] ) ) {
|
356 |
-
return $fonts[ $this->family ];
|
357 |
-
}
|
358 |
-
return array();
|
359 |
-
}
|
360 |
-
|
361 |
-
/**
|
362 |
-
* Gets the filename by breaking-down the URL parts.
|
363 |
-
*
|
364 |
-
* @access private
|
365 |
-
* @since 3.0.28
|
366 |
-
* @param string $url The URL.
|
367 |
-
* @return string The filename.
|
368 |
-
*/
|
369 |
-
private function get_filename_from_url( $url ) {
|
370 |
-
$url_parts = explode( '/', $url );
|
371 |
-
$parts_count = count( $url_parts );
|
372 |
-
if ( 1 < $parts_count ) {
|
373 |
-
return $url_parts[ count( $url_parts ) - 1 ];
|
374 |
-
}
|
375 |
-
return $url;
|
376 |
-
}
|
377 |
-
|
378 |
-
/**
|
379 |
-
* Get the font defined in the google-fonts API.
|
380 |
-
*
|
381 |
-
* @access private
|
382 |
-
* @since 3.0.28
|
383 |
-
* @return array
|
384 |
-
*/
|
385 |
-
private function get_fonts() {
|
386 |
-
ob_start();
|
387 |
-
include wp_normalize_path( dirname( __FILE__ ) . '/webfont-files.json' );
|
388 |
-
$json = ob_get_clean();
|
389 |
-
return json_decode( $json, true );
|
390 |
-
}
|
391 |
-
|
392 |
-
/**
|
393 |
-
* Gets the root fonts folder path.
|
394 |
-
* Other paths are built based on this.
|
395 |
-
*
|
396 |
-
* @since 1.5
|
397 |
-
* @access public
|
398 |
-
* @return string
|
399 |
-
*/
|
400 |
-
public function get_root_path() {
|
401 |
-
|
402 |
-
// Get the upload directory for this site.
|
403 |
-
$upload_dir = wp_upload_dir();
|
404 |
-
$path = untrailingslashit( wp_normalize_path( $upload_dir['basedir'] ) ) . '/webfonts';
|
405 |
-
|
406 |
-
// If the folder doesn't exist, create it.
|
407 |
-
if ( ! file_exists( $path ) ) {
|
408 |
-
wp_mkdir_p( $path );
|
409 |
-
}
|
410 |
-
|
411 |
-
// Return the path.
|
412 |
-
return apply_filters( 'kirki_googlefonts_root_path', $path );
|
413 |
-
}
|
414 |
-
|
415 |
-
/**
|
416 |
-
* Gets the root folder url.
|
417 |
-
* Other urls are built based on this.
|
418 |
-
*
|
419 |
-
* @since 1.5
|
420 |
-
* @access public
|
421 |
-
* @return string
|
422 |
-
*/
|
423 |
-
public function get_root_url() {
|
424 |
-
|
425 |
-
// Get the upload directory for this site.
|
426 |
-
$upload_dir = wp_upload_dir();
|
427 |
-
|
428 |
-
// The URL.
|
429 |
-
$url = trailingslashit( $upload_dir['baseurl'] );
|
430 |
-
|
431 |
-
// Take care of domain mapping.
|
432 |
-
// When using domain mapping we have to make sure that the URL to the file
|
433 |
-
// does not include the original domain but instead the mapped domain.
|
434 |
-
if ( defined( 'DOMAIN_MAPPING' ) && DOMAIN_MAPPING ) {
|
435 |
-
if ( function_exists( 'domain_mapping_siteurl' ) && function_exists( 'get_original_url' ) ) {
|
436 |
-
$mapped_domain = domain_mapping_siteurl( false );
|
437 |
-
$original_domain = get_original_url( 'siteurl' );
|
438 |
-
$url = str_replace( $original_domain, $mapped_domain, $url );
|
439 |
-
}
|
440 |
-
}
|
441 |
-
$url = str_replace( array( 'https://', 'http://' ), '//', $url );
|
442 |
-
return apply_filters( 'kirki_googlefonts_root_url', untrailingslashit( esc_url_raw( $url ) ) . '/webfonts' );
|
443 |
-
}
|
444 |
-
|
445 |
-
/**
|
446 |
-
* Download font-family files.
|
447 |
-
*
|
448 |
-
* @access public
|
449 |
-
* @since 3.0.28
|
450 |
-
* @param array $variants An array of variants to download. Leave empty to download all.
|
451 |
-
* @return void
|
452 |
-
*/
|
453 |
-
public function download_font_family( $variants = array() ) {
|
454 |
-
if ( empty( $variants ) ) {
|
455 |
-
$variants = array_keys( $this->files );
|
456 |
-
}
|
457 |
-
foreach ( $this->files as $variant => $file ) {
|
458 |
-
if ( in_array( $variant, $variants ) ) { // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
|
459 |
-
$this->download_font_file( $file );
|
460 |
-
}
|
461 |
-
}
|
462 |
-
}
|
463 |
-
|
464 |
-
/**
|
465 |
-
* Gets the remote URL contents.
|
466 |
-
*
|
467 |
-
* @access private
|
468 |
-
* @since 3.0.28
|
469 |
-
* @param string $url The URL we want to get.
|
470 |
-
* @return string The contents of the remote URL.
|
471 |
-
*/
|
472 |
-
public function get_remote_url_contents( $url ) {
|
473 |
-
$response = wp_remote_get( $url );
|
474 |
-
if ( is_wp_error( $response ) ) {
|
475 |
-
return array();
|
476 |
-
}
|
477 |
-
$html = wp_remote_retrieve_body( $response );
|
478 |
-
if ( is_wp_error( $html ) ) {
|
479 |
-
return;
|
480 |
-
}
|
481 |
-
return $html;
|
482 |
-
}
|
483 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/webfonts/class-kirki-fonts-google.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
-
* @author
|
9 |
-
* @copyright Copyright (c)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
@@ -110,7 +110,6 @@ final class Kirki_Fonts_Google {
|
|
110 |
* @param array $args The field arguments.
|
111 |
*/
|
112 |
public function generate_google_font( $args ) {
|
113 |
-
global $wp_customize;
|
114 |
|
115 |
// Process typography fields.
|
116 |
if ( isset( $args['type'] ) && 'kirki-typography' === $args['type'] ) {
|
@@ -118,12 +117,8 @@ final class Kirki_Fonts_Google {
|
|
118 |
// Get the value.
|
119 |
$value = Kirki_Values::get_sanitized_field_value( $args );
|
120 |
|
121 |
-
if ( isset( $value['downloadFont'] ) && $value['downloadFont'] ) {
|
122 |
-
$this->hosted_fonts[] = $value['font-family'];
|
123 |
-
}
|
124 |
-
|
125 |
// If we don't have a font-family then we can skip this.
|
126 |
-
if ( !
|
127 |
return;
|
128 |
}
|
129 |
|
@@ -234,7 +229,7 @@ final class Kirki_Fonts_Google {
|
|
234 |
* @return void
|
235 |
*/
|
236 |
public function get_googlefonts_json() {
|
237 |
-
include wp_normalize_path( dirname( __FILE__ ) . '/webfonts.json' );
|
238 |
wp_die();
|
239 |
}
|
240 |
|
@@ -248,15 +243,4 @@ final class Kirki_Fonts_Google {
|
|
248 |
echo wp_json_encode( Kirki_Fonts::get_standard_fonts() );
|
249 |
wp_die();
|
250 |
}
|
251 |
-
|
252 |
-
/**
|
253 |
-
* Gets $this->hosted_fonts.
|
254 |
-
*
|
255 |
-
* @access public
|
256 |
-
* @since 3.0.32
|
257 |
-
* @return array
|
258 |
-
*/
|
259 |
-
public function get_hosted_fonts() {
|
260 |
-
return $this->hosted_fonts;
|
261 |
-
}
|
262 |
}
|
5 |
*
|
6 |
* @package Kirki
|
7 |
* @category Core
|
8 |
+
* @author Ari Stathopoulos (@aristath)
|
9 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
10 |
* @license https://opensource.org/licenses/MIT
|
11 |
* @since 1.0
|
12 |
*/
|
110 |
* @param array $args The field arguments.
|
111 |
*/
|
112 |
public function generate_google_font( $args ) {
|
|
|
113 |
|
114 |
// Process typography fields.
|
115 |
if ( isset( $args['type'] ) && 'kirki-typography' === $args['type'] ) {
|
117 |
// Get the value.
|
118 |
$value = Kirki_Values::get_sanitized_field_value( $args );
|
119 |
|
|
|
|
|
|
|
|
|
120 |
// If we don't have a font-family then we can skip this.
|
121 |
+
if ( ! isset( $value['font-family'] ) || in_array( $value['font-family'], $this->hosted_fonts, true ) ) {
|
122 |
return;
|
123 |
}
|
124 |
|
229 |
* @return void
|
230 |
*/
|
231 |
public function get_googlefonts_json() {
|
232 |
+
include wp_normalize_path( dirname( __FILE__ ) . '/webfonts.json' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
233 |
wp_die();
|
234 |
}
|
235 |
|
243 |
echo wp_json_encode( Kirki_Fonts::get_standard_fonts() );
|
244 |
wp_die();
|
245 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
}
|
modules/webfonts/class-kirki-fonts-helper.php
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Helper methods for fonts.
|
4 |
+
*
|
5 |
+
* @package Kirki
|
6 |
+
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
+
* @license https://opensource.org/licenses/MIT
|
10 |
+
* @since 3.0.36
|
11 |
+
*/
|
12 |
+
|
13 |
+
// Do not allow directly accessing this file.
|
14 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
+
exit( 'Direct script access denied.' );
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* The Kirki_Fonts object.
|
20 |
+
*
|
21 |
+
* @since 3.0.28
|
22 |
+
*/
|
23 |
+
final class Kirki_Fonts_Helper {
|
24 |
+
|
25 |
+
/**
|
26 |
+
* Gets the remote URL contents.
|
27 |
+
*
|
28 |
+
* @static
|
29 |
+
* @access public
|
30 |
+
* @since 3.0.36
|
31 |
+
* @param string $url The URL we want to get.
|
32 |
+
* @param array $args An array of arguments for the wp_remote_retrieve_body() function.
|
33 |
+
* @return string The contents of the remote URL.
|
34 |
+
*/
|
35 |
+
public static function get_remote_url_contents( $url, $args = array() ) {
|
36 |
+
$response = wp_remote_get( $url, $args );
|
37 |
+
if ( is_wp_error( $response ) ) {
|
38 |
+
return array();
|
39 |
+
}
|
40 |
+
$html = wp_remote_retrieve_body( $response );
|
41 |
+
if ( is_wp_error( $html ) ) {
|
42 |
+
return;
|
43 |
+
}
|
44 |
+
return $html;
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Gets the root fonts folder path.
|
49 |
+
* Other paths are built based on this.
|
50 |
+
*
|
51 |
+
* @static
|
52 |
+
* @since 3.0.36
|
53 |
+
* @access public
|
54 |
+
* @return string
|
55 |
+
*/
|
56 |
+
public static function get_root_path() {
|
57 |
+
|
58 |
+
// Get the upload directory for this site.
|
59 |
+
$upload_dir = wp_upload_dir();
|
60 |
+
$path = untrailingslashit( wp_normalize_path( $upload_dir['basedir'] ) ) . '/webfonts';
|
61 |
+
|
62 |
+
// If the folder doesn't exist, create it.
|
63 |
+
if ( ! file_exists( $path ) ) {
|
64 |
+
wp_mkdir_p( $path );
|
65 |
+
}
|
66 |
+
|
67 |
+
// Return the path.
|
68 |
+
return apply_filters( 'kirki_googlefonts_root_path', $path );
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Gets the filename by breaking-down the URL parts.
|
73 |
+
*
|
74 |
+
* @static
|
75 |
+
* @access private
|
76 |
+
* @since 3.0.28
|
77 |
+
* @param string $url The URL.
|
78 |
+
* @return string The filename.
|
79 |
+
*/
|
80 |
+
private static function get_filename_from_url( $url ) {
|
81 |
+
$url_parts = explode( '/', $url );
|
82 |
+
$parts_count = count( $url_parts );
|
83 |
+
if ( 1 < $parts_count ) {
|
84 |
+
return $url_parts[ count( $url_parts ) - 1 ];
|
85 |
+
}
|
86 |
+
return $url;
|
87 |
+
}
|
88 |
+
|
89 |
+
/**
|
90 |
+
* Downloads a font-file and saves it locally.
|
91 |
+
*
|
92 |
+
* @access public
|
93 |
+
* @since 3.0.28
|
94 |
+
* @param string $url The URL of the file we want to get.
|
95 |
+
* @return bool
|
96 |
+
*/
|
97 |
+
public static function download_font_file( $url ) {
|
98 |
+
|
99 |
+
// Gives us access to the download_url() and wp_handle_sideload() functions.
|
100 |
+
require_once ABSPATH . 'wp-admin/includes/file.php';
|
101 |
+
|
102 |
+
$timeout_seconds = 5;
|
103 |
+
|
104 |
+
// Download file to temp dir.
|
105 |
+
$temp_file = download_url( $url, $timeout_seconds );
|
106 |
+
|
107 |
+
if ( is_wp_error( $temp_file ) ) {
|
108 |
+
return false;
|
109 |
+
}
|
110 |
+
|
111 |
+
// Array based on $_FILE as seen in PHP file uploads.
|
112 |
+
$file = array(
|
113 |
+
'name' => basename( $url ),
|
114 |
+
'type' => 'font/woff',
|
115 |
+
'tmp_name' => $temp_file,
|
116 |
+
'error' => 0,
|
117 |
+
'size' => filesize( $temp_file ),
|
118 |
+
);
|
119 |
+
|
120 |
+
$overrides = array(
|
121 |
+
'test_form' => false,
|
122 |
+
'test_size' => true,
|
123 |
+
);
|
124 |
+
|
125 |
+
// Move the temporary file into the uploads directory.
|
126 |
+
$results = wp_handle_sideload( $file, $overrides );
|
127 |
+
|
128 |
+
if ( empty( $results['error'] ) ) {
|
129 |
+
return $results['url'];
|
130 |
+
}
|
131 |
+
return false;
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Gets the root folder url.
|
136 |
+
* Other urls are built based on this.
|
137 |
+
*
|
138 |
+
* @static
|
139 |
+
* @since 3.0.36
|
140 |
+
* @access public
|
141 |
+
* @return string
|
142 |
+
*/
|
143 |
+
public static function get_root_url() {
|
144 |
+
|
145 |
+
// Get the upload directory for this site.
|
146 |
+
$upload_dir = wp_upload_dir();
|
147 |
+
|
148 |
+
// The URL.
|
149 |
+
$url = trailingslashit( $upload_dir['baseurl'] );
|
150 |
+
|
151 |
+
// Take care of domain mapping.
|
152 |
+
// When using domain mapping we have to make sure that the URL to the file
|
153 |
+
// does not include the original domain but instead the mapped domain.
|
154 |
+
if ( defined( 'DOMAIN_MAPPING' ) && DOMAIN_MAPPING ) {
|
155 |
+
if ( function_exists( 'domain_mapping_siteurl' ) && function_exists( 'get_original_url' ) ) {
|
156 |
+
$mapped_domain = domain_mapping_siteurl( false );
|
157 |
+
$original_domain = get_original_url( 'siteurl' );
|
158 |
+
$url = str_replace( $original_domain, $mapped_domain, $url );
|
159 |
+
}
|
160 |
+
}
|
161 |
+
$url = str_replace( array( 'https://', 'http://' ), '//', $url );
|
162 |
+
return apply_filters( 'kirki_googlefonts_root_url', untrailingslashit( esc_url_raw( $url ) ) . '/webfonts' );
|
163 |
+
}
|
164 |
+
}
|
modules/webfonts/class-kirki-fonts.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
@@ -134,7 +134,7 @@ final class Kirki_Fonts {
|
|
134 |
|
135 |
// If we got this far, cache was empty so we need to get from JSON.
|
136 |
ob_start();
|
137 |
-
include wp_normalize_path( dirname( __FILE__ ) . '/webfonts.json' );
|
138 |
|
139 |
$fonts_json = ob_get_clean();
|
140 |
$fonts = json_decode( $fonts_json, true );
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 1.0
|
11 |
*/
|
134 |
|
135 |
// If we got this far, cache was empty so we need to get from JSON.
|
136 |
ob_start();
|
137 |
+
include wp_normalize_path( dirname( __FILE__ ) . '/webfonts.json' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
138 |
|
139 |
$fonts_json = ob_get_clean();
|
140 |
$fonts = json_decode( $fonts_json, true );
|
modules/webfonts/class-kirki-modules-webfonts-async.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0
|
11 |
*/
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0
|
11 |
*/
|
modules/webfonts/class-kirki-modules-webfonts-embed.php
ADDED
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Adds the Webfont Loader to load fonts asyncronously.
|
4 |
+
*
|
5 |
+
* @package Kirki
|
6 |
+
* @category Core
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
+
* @license https://opensource.org/licenses/MIT
|
10 |
+
* @since 3.0
|
11 |
+
*/
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Manages the way Google Fonts are enqueued.
|
15 |
+
*/
|
16 |
+
final class Kirki_Modules_Webfonts_Embed {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* The config ID.
|
20 |
+
*
|
21 |
+
* @access protected
|
22 |
+
* @since 3.0.0
|
23 |
+
* @var string
|
24 |
+
*/
|
25 |
+
protected $config_id;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* The Kirki_Modules_Webfonts object.
|
29 |
+
*
|
30 |
+
* @access protected
|
31 |
+
* @since 3.0.0
|
32 |
+
* @var object
|
33 |
+
*/
|
34 |
+
protected $webfonts;
|
35 |
+
|
36 |
+
/**
|
37 |
+
* The Kirki_Fonts_Google object.
|
38 |
+
*
|
39 |
+
* @access protected
|
40 |
+
* @since 3.0.0
|
41 |
+
* @var object
|
42 |
+
*/
|
43 |
+
protected $googlefonts;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Fonts to load.
|
47 |
+
*
|
48 |
+
* @access protected
|
49 |
+
* @since 3.0.26
|
50 |
+
* @var array
|
51 |
+
*/
|
52 |
+
protected $fonts_to_load = array();
|
53 |
+
|
54 |
+
/**
|
55 |
+
* Constructor.
|
56 |
+
*
|
57 |
+
* @access public
|
58 |
+
* @since 3.0
|
59 |
+
* @param string $config_id The config-ID.
|
60 |
+
* @param object $webfonts The Kirki_Modules_Webfonts object.
|
61 |
+
* @param object $googlefonts The Kirki_Fonts_Google object.
|
62 |
+
* @param array $args Extra args we want to pass.
|
63 |
+
*/
|
64 |
+
public function __construct( $config_id, $webfonts, $googlefonts, $args = array() ) {
|
65 |
+
$this->config_id = $config_id;
|
66 |
+
$this->webfonts = $webfonts;
|
67 |
+
$this->googlefonts = $googlefonts;
|
68 |
+
|
69 |
+
add_action( 'wp', array( $this, 'init' ), 9 );
|
70 |
+
add_filter( 'wp_resource_hints', array( $this, 'resource_hints' ), 10, 2 );
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Init.
|
75 |
+
*
|
76 |
+
* @access public
|
77 |
+
* @since 3.0.36
|
78 |
+
* @return void
|
79 |
+
*/
|
80 |
+
public function init() {
|
81 |
+
$this->populate_fonts();
|
82 |
+
add_action( 'kirki_dynamic_css', array( $this, 'the_css' ) );
|
83 |
+
}
|
84 |
+
|
85 |
+
/**
|
86 |
+
* Add preconnect for Google Fonts.
|
87 |
+
*
|
88 |
+
* @access public
|
89 |
+
* @param array $urls URLs to print for resource hints.
|
90 |
+
* @param string $relation_type The relation type the URLs are printed.
|
91 |
+
* @return array $urls URLs to print for resource hints.
|
92 |
+
*/
|
93 |
+
public function resource_hints( $urls, $relation_type ) {
|
94 |
+
$fonts_to_load = $this->googlefonts->fonts;
|
95 |
+
|
96 |
+
if ( ! empty( $fonts_to_load ) && 'preconnect' === $relation_type ) {
|
97 |
+
$urls[] = array(
|
98 |
+
'href' => 'https://fonts.gstatic.com',
|
99 |
+
'crossorigin',
|
100 |
+
);
|
101 |
+
}
|
102 |
+
return $urls;
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Webfont Loader for Google Fonts.
|
107 |
+
*
|
108 |
+
* @access public
|
109 |
+
* @since 3.0.0
|
110 |
+
*/
|
111 |
+
public function populate_fonts() {
|
112 |
+
|
113 |
+
// Go through our fields and populate $this->fonts.
|
114 |
+
$this->webfonts->loop_fields( $this->config_id );
|
115 |
+
|
116 |
+
$this->googlefonts->fonts = apply_filters( 'kirki_enqueue_google_fonts', $this->googlefonts->fonts );
|
117 |
+
|
118 |
+
// Goes through $this->fonts and adds or removes things as needed.
|
119 |
+
$this->googlefonts->process_fonts();
|
120 |
+
|
121 |
+
foreach ( $this->googlefonts->fonts as $font => $weights ) {
|
122 |
+
foreach ( $weights as $key => $value ) {
|
123 |
+
if ( 'italic' === $value ) {
|
124 |
+
$weights[ $key ] = '400i';
|
125 |
+
} else {
|
126 |
+
$weights[ $key ] = str_replace( array( 'regular', 'bold', 'italic' ), array( '400', '', 'i' ), $value );
|
127 |
+
}
|
128 |
+
}
|
129 |
+
$this->fonts_to_load[] = array(
|
130 |
+
'family' => $font,
|
131 |
+
'weights' => $weights,
|
132 |
+
);
|
133 |
+
}
|
134 |
+
}
|
135 |
+
|
136 |
+
/**
|
137 |
+
* Webfont Loader script for Google Fonts.
|
138 |
+
*
|
139 |
+
* @access public
|
140 |
+
* @since 3.0.0
|
141 |
+
*/
|
142 |
+
public function the_css() {
|
143 |
+
foreach ( $this->fonts_to_load as $font ) {
|
144 |
+
$family = str_replace( ' ', '+', trim( $font['family'] ) );
|
145 |
+
$weights = join( ',', $font['weights'] );
|
146 |
+
$url = "https://fonts.googleapis.com/css?family={$family}:{$weights}&subset=cyrillic,cyrillic-ext,devanagari,greek,greek-ext,khmer,latin,latin-ext,vietnamese,hebrew,arabic,bengali,gujarati,tamil,telugu,thai";
|
147 |
+
|
148 |
+
$transient_id = 'kirki_gfonts_' . md5( $url );
|
149 |
+
$contents = get_site_transient( $transient_id );
|
150 |
+
/**
|
151 |
+
* Note to code reviewers:
|
152 |
+
* There's no need to check nonces or anything else, this is a simple true/false evaluation.
|
153 |
+
*/
|
154 |
+
if ( ! empty( $_GET['action'] ) && 'kirki-reset-cache' === $_GET['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification
|
155 |
+
$contents = false;
|
156 |
+
}
|
157 |
+
if ( ! $contents ) {
|
158 |
+
|
159 |
+
// Get the contents of the remote URL.
|
160 |
+
$contents = Kirki_Fonts_Helper::get_remote_url_contents(
|
161 |
+
$url,
|
162 |
+
array(
|
163 |
+
'headers' => array(
|
164 |
+
/**
|
165 |
+
* Set user-agent to firefox so that we get woff files.
|
166 |
+
* If we want woff2, use this instead: 'Mozilla/5.0 (X11; Linux i686; rv:64.0) Gecko/20100101 Firefox/64.0'
|
167 |
+
*/
|
168 |
+
'user-agent' => 'Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0',
|
169 |
+
),
|
170 |
+
)
|
171 |
+
);
|
172 |
+
|
173 |
+
/**
|
174 |
+
* Allow filtering the font-display property.
|
175 |
+
*/
|
176 |
+
$font_display = apply_filters( 'kirki_googlefonts_font_display', 'swap' );
|
177 |
+
|
178 |
+
if ( $contents ) {
|
179 |
+
|
180 |
+
// Add font-display:swap to improve rendering speed.
|
181 |
+
$contents = str_replace( '@font-face {', '@font-face{', $contents );
|
182 |
+
$contents = str_replace( '@font-face{', '@font-face{font-display:' . $font_display . ';', $contents );
|
183 |
+
|
184 |
+
// Remove blank lines and extra spaces.
|
185 |
+
$contents = str_replace(
|
186 |
+
array( ': ', '; ', '; ', ' ' ),
|
187 |
+
array( ':', ';', ';', ' ' ),
|
188 |
+
preg_replace( "/\r|\n/", '', $contents )
|
189 |
+
);
|
190 |
+
|
191 |
+
// Use local fonts.
|
192 |
+
if ( apply_filters( 'kirki_use_local_fonts', true ) ) {
|
193 |
+
$contents = $this->use_local_files( $contents );
|
194 |
+
}
|
195 |
+
|
196 |
+
// Set the transient for a week.
|
197 |
+
set_site_transient( $transient_id, $contents, WEEK_IN_SECONDS );
|
198 |
+
}
|
199 |
+
}
|
200 |
+
if ( $contents ) {
|
201 |
+
/**
|
202 |
+
* Note to code reviewers:
|
203 |
+
*
|
204 |
+
* Though all output should be run through an escaping function, this is pure CSS
|
205 |
+
* and it is added on a call that has a PHP `header( 'Content-type: text/css' );`.
|
206 |
+
* No code, script or anything else can be executed from inside a stylesheet.
|
207 |
+
* For extra security we're using the wp_strip_all_tags() function here
|
208 |
+
* just to make sure there's no <script> tags in there or anything else.
|
209 |
+
*/
|
210 |
+
echo wp_strip_all_tags( $contents ); // phpcs:ignore WordPress.Security.EscapeOutput
|
211 |
+
}
|
212 |
+
}
|
213 |
+
}
|
214 |
+
|
215 |
+
/**
|
216 |
+
* Downloads font-files locally and uses the local files instead of the ones from Google's servers.
|
217 |
+
* This addresses any and all GDPR concerns, as well as firewalls that exist in some parts of the world.
|
218 |
+
*
|
219 |
+
* @access private
|
220 |
+
* @since 3.0.36
|
221 |
+
* @param string $css The CSS with original URLs.
|
222 |
+
* @return string The CSS with local URLs.
|
223 |
+
*/
|
224 |
+
private function use_local_files( $css ) {
|
225 |
+
preg_match( '/https\:.*?\.woff/', $css, $matches );
|
226 |
+
foreach ( $matches as $match ) {
|
227 |
+
if ( 0 === strpos( $match, 'https://fonts.gstatic.com' ) ) {
|
228 |
+
$new_url = Kirki_Fonts_Helper::download_font_file( $match );
|
229 |
+
if ( $new_url ) {
|
230 |
+
$css = str_replace( $match, $new_url, $css );
|
231 |
+
}
|
232 |
+
}
|
233 |
+
}
|
234 |
+
return $css;
|
235 |
+
}
|
236 |
+
}
|
modules/webfonts/class-kirki-modules-webfonts-local.php
DELETED
@@ -1,105 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Handles adding to the footer the @font-face CSS for locally-hosted google-fonts.
|
4 |
-
* Solves privacy concerns with Google's CDN and their sometimes less-than-transparent policies.
|
5 |
-
*
|
6 |
-
* @package Kirki
|
7 |
-
* @category Core
|
8 |
-
* @author Aristeides Stathopoulos
|
9 |
-
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
|
10 |
-
* @license https://opensource.org/licenses/MIT
|
11 |
-
* @since 3.0.28
|
12 |
-
*/
|
13 |
-
|
14 |
-
/**
|
15 |
-
* Manages the way Google Fonts are enqueued.
|
16 |
-
*/
|
17 |
-
final class Kirki_Modules_Webfonts_Local {
|
18 |
-
|
19 |
-
/**
|
20 |
-
* The config ID.
|
21 |
-
*
|
22 |
-
* @access protected
|
23 |
-
* @since 3.0.28
|
24 |
-
* @var string
|
25 |
-
*/
|
26 |
-
protected $config_id;
|
27 |
-
|
28 |
-
/**
|
29 |
-
* The Kirki_Modules_Webfonts object.
|
30 |
-
*
|
31 |
-
* @access protected
|
32 |
-
* @since 3.0.28
|
33 |
-
* @var object
|
34 |
-
*/
|
35 |
-
protected $webfonts;
|
36 |
-
|
37 |
-
/**
|
38 |
-
* The Kirki_Fonts_Google object.
|
39 |
-
*
|
40 |
-
* @access protected
|
41 |
-
* @since 3.0.28
|
42 |
-
* @var object
|
43 |
-
*/
|
44 |
-
protected $googlefonts;
|
45 |
-
|
46 |
-
/**
|
47 |
-
* Fonts to load.
|
48 |
-
*
|
49 |
-
* @access protected
|
50 |
-
* @since 3.0.28
|
51 |
-
* @var array
|
52 |
-
*/
|
53 |
-
protected $fonts_to_load = array();
|
54 |
-
|
55 |
-
/**
|
56 |
-
* Constructor.
|
57 |
-
*
|
58 |
-
* @access public
|
59 |
-
* @since 3..28
|
60 |
-
* @param object $webfonts The Kirki_Modules_Webfonts object.
|
61 |
-
* @param object $googlefonts The Kirki_Fonts_Google object.
|
62 |
-
*/
|
63 |
-
public function __construct( $webfonts, $googlefonts ) {
|
64 |
-
$this->webfonts = $webfonts;
|
65 |
-
$this->googlefonts = $googlefonts;
|
66 |
-
|
67 |
-
add_action( 'wp_footer', array( $this, 'add_styles' ) );
|
68 |
-
add_action( 'admin_footer', array( $this, 'add_styles' ) );
|
69 |
-
}
|
70 |
-
|
71 |
-
/**
|
72 |
-
* Webfont Loader for Google Fonts.
|
73 |
-
*
|
74 |
-
* @access public
|
75 |
-
* @since 3.0.28
|
76 |
-
*/
|
77 |
-
public function add_styles() {
|
78 |
-
|
79 |
-
// Go through our fields and populate $this->fonts.
|
80 |
-
$this->webfonts->loop_fields( $this->config_id );
|
81 |
-
$this->googlefonts->process_fonts();
|
82 |
-
$hosted_fonts = $this->googlefonts->get_hosted_fonts();
|
83 |
-
|
84 |
-
// Early exit if we don't need to add any fonts.
|
85 |
-
if ( empty( $hosted_fonts ) ) {
|
86 |
-
return;
|
87 |
-
}
|
88 |
-
|
89 |
-
// Make sure we only do this once per font-family.
|
90 |
-
$hosted_fonts = array_unique( $hosted_fonts );
|
91 |
-
|
92 |
-
// Start CSS.
|
93 |
-
$css = '';
|
94 |
-
foreach ( $hosted_fonts as $family ) {
|
95 |
-
|
96 |
-
// Add the @font-face CSS for this font-family.
|
97 |
-
$css .= Kirki_Fonts_Google_Local::init( $family )->get_css();
|
98 |
-
}
|
99 |
-
|
100 |
-
// If we've got CSS, add to the footer.
|
101 |
-
if ( $css ) {
|
102 |
-
echo '<style id="kirki-local-webfonts-' . esc_attr( sanitize_key( $this->config_id ) ) . '">' . $css . '</style>'; // WPCS: XSS ok.
|
103 |
-
}
|
104 |
-
}
|
105 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/webfonts/class-kirki-modules-webfonts.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
-
* @author
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
@@ -47,9 +47,9 @@ class Kirki_Modules_Webfonts {
|
|
47 |
*/
|
48 |
protected function __construct() {
|
49 |
|
50 |
-
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts.php' );
|
51 |
-
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts
|
52 |
-
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts-google
|
53 |
|
54 |
add_action( 'wp_loaded', array( $this, 'run' ) );
|
55 |
|
@@ -90,11 +90,11 @@ class Kirki_Modules_Webfonts {
|
|
90 |
*/
|
91 |
protected function init() {
|
92 |
foreach ( array_keys( Kirki::$config ) as $config_id ) {
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
96 |
}
|
97 |
-
new Kirki_Modules_Webfonts_Local( $this, $this->fonts_google );
|
98 |
}
|
99 |
|
100 |
/**
|
@@ -102,27 +102,11 @@ class Kirki_Modules_Webfonts {
|
|
102 |
*
|
103 |
* @access public
|
104 |
* @since 3.0.0
|
|
|
105 |
* @return string
|
106 |
*/
|
107 |
public function get_method() {
|
108 |
-
|
109 |
-
// Figure out which method to use.
|
110 |
-
$method = apply_filters( 'kirki_googlefonts_load_method', 'async' );
|
111 |
-
|
112 |
-
// Fallback to 'async' if value is invalid.
|
113 |
-
if ( 'async' !== $method && 'embed' !== $method && 'link' !== $method ) {
|
114 |
-
$method = 'async';
|
115 |
-
}
|
116 |
-
|
117 |
-
$classname = 'Kirki_Modules_Webfonts_' . ucfirst( $method );
|
118 |
-
if ( ! class_exists( $classname ) ) {
|
119 |
-
$method = 'async';
|
120 |
-
}
|
121 |
-
|
122 |
-
// Force using the JS method while in the customizer.
|
123 |
-
// This will help us work-out the live-previews for typography fields.
|
124 |
-
// If we're not in the customizer use the defined method.
|
125 |
-
return ( is_customize_preview() ) ? 'async' : $method;
|
126 |
}
|
127 |
|
128 |
/**
|
4 |
*
|
5 |
* @package Kirki
|
6 |
* @category Modules
|
7 |
+
* @author Ari Stathopoulos (@aristath)
|
8 |
+
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
|
9 |
* @license https://opensource.org/licenses/MIT
|
10 |
* @since 3.0.0
|
11 |
*/
|
47 |
*/
|
48 |
protected function __construct() {
|
49 |
|
50 |
+
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts-helper.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
51 |
+
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
52 |
+
include_once wp_normalize_path( dirname( __FILE__ ) . '/class-kirki-fonts-google.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude
|
53 |
|
54 |
add_action( 'wp_loaded', array( $this, 'run' ) );
|
55 |
|
90 |
*/
|
91 |
protected function init() {
|
92 |
foreach ( array_keys( Kirki::$config ) as $config_id ) {
|
93 |
+
if ( 'async' === $this->get_method() ) {
|
94 |
+
new Kirki_Modules_Webfonts_Async( $config_id, $this, $this->fonts_google );
|
95 |
+
}
|
96 |
+
new Kirki_Modules_Webfonts_Embed( $config_id, $this, $this->fonts_google );
|
97 |
}
|
|
|
98 |
}
|
99 |
|
100 |
/**
|
102 |
*
|
103 |
* @access public
|
104 |
* @since 3.0.0
|
105 |
+
* @deprecated in 3.0.36.
|
106 |
* @return string
|
107 |
*/
|
108 |
public function get_method() {
|
109 |
+
return ( is_customize_preview() ) ? 'async' : 'embed';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
/**
|
modules/webfonts/webfont-files.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"Roboto":{"100":"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgWxP.ttf","300":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5vAw.ttf","500":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9vAw.ttf","700":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlvAw.ttf","900":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmYUtvAw.ttf","100italic":"http://fonts.gstatic.com/s/roboto/v18/KFOiCnqEu92Fr1Mu51QrIzc.ttf","300italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TjARc9.ttf","regular":"http://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Me5Q.ttf","italic":"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu52xP.ttf","500italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ABc9.ttf","700italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBhc9.ttf","900italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TLBBc9.ttf"},"Open Sans":{"300":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8-VQ.ttf","600":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirk-VQ.ttf","700":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rg-VQ.ttf","800":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rs-VQ.ttf","300italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWyV-hs.ttf","regular":"http://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-U1Ug.ttf","italic":"http://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUJ0e.ttf","600italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKXGUehs.ttf","700italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWiUOhs.ttf","800italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKW-U-hs.ttf"},"Lato":{"100":"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHh30wWw.ttf","300":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh7USew8.ttf","700":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVew8.ttf","900":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50Xew8.ttf","100italic":"http://fonts.gstatic.com/s/lato/v14/S6u-w4BMUTPHjxsIPy-v.ttf","300italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI9w2PHA.ttf","regular":"http://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHvxk.ttf","italic":"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHjxswWw.ttf","700italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI5wqPHA.ttf","900italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI3wiPHA.ttf"},"Montserrat":{"100":"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm45_Qphzg.ttf","200":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_aZA7g4.ttf","300":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_cJD7g4.ttf","500":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC7g4.ttf","600":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF7g4.ttf","700":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE7g4.ttf","800":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H7g4.ttf","900":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG7g4.ttf","100italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUOjIg1_i6t8kCHKm459WxZqi7j.ttf","200italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZBg_D-w.ttf","300italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZYgzD-w.ttf","regular":"http://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm45xW4.ttf","italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm459Wxhzg.ttf","500italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZOg3D-w.ttf","600italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZFgrD-w.ttf","700italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZcgvD-w.ttf","800italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZbgjD-w.ttf","900italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZSgnD-w.ttf"},"Roboto Condensed":{"300":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCM.ttf","700":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCM.ttf","300italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYag.ttf","regular":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-59U.ttf","italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CA.ttf","700italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYag.ttf"},"Oswald":{"200":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-1h4jvQ.ttf","300":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-sh0jvQ.ttf","500":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-6hwjvQ.ttf","600":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-xhsjvQ.ttf","700":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-ohojvQ.ttf","regular":"http://fonts.gstatic.com/s/oswald/v16/TK3iWkUHHAIjg75GHg.ttf"},"Source Sans Pro":{"200":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkA.ttf","300":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkA.ttf","600":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkA.ttf","700":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkA.ttf","900":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkA.ttf","200italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr.ttf","300italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr.ttf","regular":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPw.ttf","italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7g.ttf","600italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr.ttf","700italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr.ttf","900italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr.ttf"},"Raleway":{"100":"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNwE4ISg.ttf","200":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwOIpaqE.ttf","300":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIYqaqE.ttf","500":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwN4raqE.ttf","600":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwPIsaqE.ttf","700":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwJYtaqE.ttf","800":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIouaqE.ttf","900":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwK4vaqE.ttf","100italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptqg8zYS_SKggPNyCgwLoFv.ttf","200italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwgqBPBQ.ttf","300italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw5qNPBQ.ttf","regular":"http://fonts.gstatic.com/s/raleway/v12/1Ptug8zYS_SKggPN-Co.ttf","italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNyCgISg.ttf","500italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwvqJPBQ.ttf","600italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwkqVPBQ.ttf","700italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw9qRPBQ.ttf","800italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw6qdPBQ.ttf","900italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwzqZPBQ.ttf"},"PT Sans":{"700":"http://fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh4Ok.ttf","regular":"http://fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79P0U.ttf","italic":"http://fonts.gstatic.com/s/ptsans/v9/jizYRExUiTo99u79D0eEwA.ttf","700italic":"http://fonts.gstatic.com/s/ptsans/v9/jizdRExUiTo99u79D0e8fOytKA.ttf"},"Merriweather":{"300":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l521wRpXw.ttf","700":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52xwNpXw.ttf","900":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52_wFpXw.ttf","300italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_.ttf","regular":"http://fonts.gstatic.com/s/merriweather/v19/u-440qyriQwlOrhSvowK_l5Oew.ttf","italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4m0qyriQwlOrhSvowK_l5-eSZJ.ttf","700italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_.ttf","900italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_.ttf"},"Slabo 27px":{"regular":"http://fonts.gstatic.com/s/slabo27px/v4/mFT0WbgBwKPR_Z4hGN2qsxg.ttf"},"Roboto Slab":{"100":"http://fonts.gstatic.com/s/robotoslab/v7/BngOUXZYTXPIvIBgJJSb6u-u5qA.ttf","300":"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u9mxICB.ttf","700":"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u92w4CB.ttf","regular":"http://fonts.gstatic.com/s/robotoslab/v7/BngMUXZYTXPIvIBgJJSb6tfK.ttf"},"Noto Sans":{"700":"http://fonts.gstatic.com/s/notosans/v7/o-0NIpQlx3QUlC5A4PNjXhFlYw.ttf","regular":"http://fonts.gstatic.com/s/notosans/v7/o-0IIpQlx3QUlC5A4PNb4g.ttf","italic":"http://fonts.gstatic.com/s/notosans/v7/o-0OIpQlx3QUlC5A4PNr4DRF.ttf","700italic":"http://fonts.gstatic.com/s/notosans/v7/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf"},"Poppins":{"100":"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrLPTedw.ttf","200":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLFj_V1s.ttf","300":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDz8V1s.ttf","500":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLGT9V1s.ttf","600":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLEj6V1s.ttf","700":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLCz7V1s.ttf","800":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDD4V1s.ttf","900":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLBT5V1s.ttf","100italic":"http://fonts.gstatic.com/s/poppins/v5/pxiAyp8kv8JHgFVrJJLmE3tF.ttf","200italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmv1plEA.ttf","300italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm21llEA.ttf","regular":"http://fonts.gstatic.com/s/poppins/v5/pxiEyp8kv8JHgFVrFJA.ttf","italic":"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrJJLedw.ttf","500italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmg1hlEA.ttf","600italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmr19lEA.ttf","700italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmy15lEA.ttf","800italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm111lEA.ttf","900italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm81xlEA.ttf"},"Ubuntu":{"300":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoC1CzTtw.ttf","500":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoCjC3Ttw.ttf","700":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoCxCvTtw.ttf","300italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejZftWyI.ttf","regular":"http://fonts.gstatic.com/s/ubuntu/v12/4iCs6KVjbNBYlgo6eA.ttf","italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCu6KVjbNBYlgoKeg7z.ttf","500italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejYHtGyI.ttf","700italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejZPsmyI.ttf"},"Open Sans Condensed":{"300":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuI.ttf","700":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuI.ttf","300italic":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQg.ttf"},"Roboto Mono":{"100":"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjAoq3o.ttf","300":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDgiVq2.ttf","500":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjC4iFq2.ttf","700":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDwjlq2.ttf","100italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xlDF4xlVMF-BfR8bXMIjhOkx6WXw.ttf","300italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7o.ttf","regular":"http://fonts.gstatic.com/s/robotomono/v5/L0x5DF4xlVMF-BfR8bXMIghM.ttf","italic":"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjhOq3o.ttf","500italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk461f7o.ttf","700italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7o.ttf"},"Playfair Display":{"700":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWk.ttf","900":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWk.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFiD-vYSZviVYUb_rj3ij__anPXPTs.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhQ.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4w.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4w.ttf"},"PT Serif":{"700":"http://fonts.gstatic.com/s/ptserif/v9/EJRSQgYoZZY2vCFuvAnt65qV.ttf","regular":"http://fonts.gstatic.com/s/ptserif/v9/EJRVQgYoZZY2vCFuvDFR.ttf","italic":"http://fonts.gstatic.com/s/ptserif/v9/EJRTQgYoZZY2vCFuvAFTzro.ttf","700italic":"http://fonts.gstatic.com/s/ptserif/v9/EJRQQgYoZZY2vCFuvAFT9gaQVy4.ttf"},"Lora":{"700":"http://fonts.gstatic.com/s/lora/v12/0QIgMX1D_JOuO7HeBts.ttf","regular":"http://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuAw0.ttf","italic":"http://fonts.gstatic.com/s/lora/v12/0QIhMX1D_JOuMw_7Jg.ttf","700italic":"http://fonts.gstatic.com/s/lora/v12/0QIiMX1D_JOuMw_Dmt5unw.ttf"},"Muli":{"200":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adf3nCCI.ttf","300":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adZnkCCI.ttf","600":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-ade3iCCI.ttf","700":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adYnjCCI.ttf","800":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adZXgCCI.ttf","900":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adbHhCCI.ttf","200italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-4CP2yg.ttf","300italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-hCD2yg.ttf","regular":"http://fonts.gstatic.com/s/muli/v12/7Auwp_0qiz-aTTU.ttf","italic":"http://fonts.gstatic.com/s/muli/v12/7Au-p_0qiz-afTfGKA.ttf","600italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-8Cb2yg.ttf","700italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-lCf2yg.ttf","800italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-iCT2yg.ttf","900italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-rCX2yg.ttf"},"Mukta":{"200":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEOjFma.ttf","300":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFqj1ma.ttf","500":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEyjlma.ttf","600":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEeiVma.ttf","700":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbF6iFma.ttf","800":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFmi1ma.ttf","regular":"http://fonts.gstatic.com/s/mukta/v5/iJWKBXyXfDDVXYnG.ttf"},"PT Sans Narrow":{"700":"http://fonts.gstatic.com/s/ptsansnarrow/v9/BngSUXNadjH0qYEzV7ab-oWlsbg95DiC.ttf","regular":"http://fonts.gstatic.com/s/ptsansnarrow/v9/BngRUXNadjH0qYEzV7ab-oWlsYCB.ttf"},"Titillium Web":{"200":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIw.ttf","300":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIw.ttf","600":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf","700":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf","900":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIw.ttf","200italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZg.ttf","300italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZg.ttf","regular":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf","italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf","600italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZg.ttf","700italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf"},"Arimo":{"700":"http://fonts.gstatic.com/s/arimo/v11/P5sBzZCDf9_T_1Wi4QRE.ttf","regular":"http://fonts.gstatic.com/s/arimo/v11/P5sMzZCDf9_T_20e.ttf","italic":"http://fonts.gstatic.com/s/arimo/v11/P5sCzZCDf9_T_10cxCQ.ttf","700italic":"http://fonts.gstatic.com/s/arimo/v11/P5sHzZCDf9_T_10c_JhBrZc.ttf"},"Nunito":{"200":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA-sekZg.ttf","300":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSkZg.ttf","600":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA6sKkZg.ttf","700":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOkZg.ttf","800":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCkZg.ttf","900":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAtsGkZg.ttf","200italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5MZ-vN.ttf","300italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4oZOvN.ttf","regular":"http://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKof4Mg.ttf","italic":"http://fonts.gstatic.com/s/nunito/v9/XRXX3I6Li01BKofIMOaE.ttf","600italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5cYuvN.ttf","700italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN44Y-vN.ttf","800italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4kYOvN.ttf","900italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4AYevN.ttf"},"Fira Sans":{"100":"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5Vn9IjO.ttf","200":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnWKnuQQ.ttf","300":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnPKruQQ.ttf","500":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnZKvuQQ.ttf","600":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnSKzuQQ.ttf","700":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnLK3uQQ.ttf","800":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnMK7uQQ.ttf","900":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnFK_uQQ.ttf","100italic":"http://fonts.gstatic.com/s/firasans/v8/va9A4kDNxMZdWfMOD5VvkrCqYTc.ttf","200italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAGQBf_.ttf","300italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBiQxf_.ttf","regular":"http://fonts.gstatic.com/s/firasans/v8/va9E4kDNxMZdWfMOD5VfkA.ttf","italic":"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5VvkojO.ttf","500italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrA6Qhf_.ttf","600italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAWRRf_.ttf","700italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrByRBf_.ttf","800italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBuRxf_.ttf","900italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBKRhf_.ttf"},"Nanum Gothic":{"700":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_oRfi-oW3hYwmKDpxS7F_LQv37zg.ttf","800":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_oRfi-oW3hYwmKDpxS7F_LXv77zg.ttf","regular":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_3Rfi-oW3hYwmKDpxS7F_z_g.ttf"},"Noto Serif":{"700":"http://fonts.gstatic.com/s/notoserif/v6/ga6Law1J5X9T9RW6j9bNdOwzTRA.ttf","regular":"http://fonts.gstatic.com/s/notoserif/v6/ga6Iaw1J5X9T9RW6j9bNTFA.ttf","italic":"http://fonts.gstatic.com/s/notoserif/v6/ga6Kaw1J5X9T9RW6j9bNfFIWbQ.ttf","700italic":"http://fonts.gstatic.com/s/notoserif/v6/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedA.ttf"},"Work Sans":{"100":"http://fonts.gstatic.com/s/worksans/v3/QGYqz_wNahGAdqQ43Rh3H6Ds.ttf","200":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3s4HMnw.ttf","300":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh314LMnw.ttf","500":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3j4PMnw.ttf","600":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3o4TMnw.ttf","700":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3x4XMnw.ttf","800":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh324bMnw.ttf","900":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3_4fMnw.ttf","regular":"http://fonts.gstatic.com/s/worksans/v3/QGYsz_wNahGAdqQ43RhPew.ttf"},"Dosis":{"200":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGnKtCC.ttf","300":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHDKdCC.ttf","500":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGbKNCC.ttf","600":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzG3L9CC.ttf","700":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHTLtCC.ttf","800":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHPLdCC.ttf","regular":"http://fonts.gstatic.com/s/dosis/v7/HhyaU5sn9vOmLwlv.ttf"},"Rubik":{"300":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Fqj1ma.ttf","500":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Eyjlma.ttf","700":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7F6iFma.ttf","900":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7FCilma.ttf","300italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nEldWY8WU.ttf","regular":"http://fonts.gstatic.com/s/rubik/v7/iJWKBXyIfDnIV4nG.ttf","italic":"http://fonts.gstatic.com/s/rubik/v7/iJWEBXyIfDnIV7nErXk.ttf","500italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElY2Z8WU.ttf","700italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElcWf8WU.ttf","900italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElf2d8WU.ttf"},"Quicksand":{"300":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYoSA.ttf","500":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_p2HcoSA.ttf","700":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pkHEoSA.ttf","regular":"http://fonts.gstatic.com/s/quicksand/v8/6xKtdSZaM9iE8KbpRA_RLA.ttf"},"Inconsolata":{"700":"http://fonts.gstatic.com/s/inconsolata/v16/QldXNThLqRwH-OJ1UHjlKGHiw41u.ttf","regular":"http://fonts.gstatic.com/s/inconsolata/v16/QldKNThLqRwH-OJ1UHjlKFle.ttf"},"Noto Sans KR":{"100":"http://fonts.gstatic.com/s/notosanskr/v8/Pby6FmXiEBPT4ITbgNA5CgmOsn7u.otf","300":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOelzI7g.otf","500":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7g.otf","700":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOalvI7g.otf","900":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7g.otf","regular":"http://fonts.gstatic.com/s/notosanskr/v8/PbykFmXiEBPT4ITbgNA5Cgm20A.otf"},"Hind":{"300":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfMJaIRs.ttf","500":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfJpbIRs.ttf","600":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfLZcIRs.ttf","700":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfNJdIRs.ttf","regular":"http://fonts.gstatic.com/s/hind/v8/5aU69_a8oxmIRG4.ttf"},"Crimson Text":{"600":"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJXsCx2Cw.ttf","700":"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJX1C12Cw.ttf","regular":"http://fonts.gstatic.com/s/crimsontext/v8/wlp2gwHKFkZgtmSR3NB0oRJvaA.ttf","italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlpogwHKFkZgtmSR3NB0oRJfaghW.ttf","600italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV.ttf","700italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV.ttf"},"Oxygen":{"300":"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCJW8Dbw.ttf","700":"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCNWgDbw.ttf","regular":"http://fonts.gstatic.com/s/oxygen/v7/2sDfZG1Wl4Lcnbu6iQ.ttf"},"Lobster":{"regular":"http://fonts.gstatic.com/s/lobster/v20/neILzCirqoswsqX9_oU.ttf"},"Libre Baskerville":{"700":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYw.ttf","regular":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNe.ttf","italic":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxY.ttf"},"Bitter":{"700":"http://fonts.gstatic.com/s/bitter/v13/rax_HiqOu8IVPmnzxKlMBA.ttf","regular":"http://fonts.gstatic.com/s/bitter/v13/rax8HiqOu8IVPmnLeA.ttf","italic":"http://fonts.gstatic.com/s/bitter/v13/rax-HiqOu8IVPmn7eoxs.ttf"},"Libre Franklin":{"100":"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRi182zI.ttf","200":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIz.ttf","300":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi20-RIz.ttf","500":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3s-BIz.ttf","600":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3A_xIz.ttf","700":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2k_hIz.ttf","800":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi24_RIz.ttf","900":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2c_BIz.ttf","100italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizHREVItHgc8qDIbSTKq4XkRiUa41YTiw.ttf","200italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq14.ttf","300italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa454xq14.ttf","regular":"http://fonts.gstatic.com/s/librefranklin/v2/jizDREVItHgc8qDIbSTKq4XkRhUY.ttf","italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRiUa2zI.ttf","500italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq14.ttf","600italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q14.ttf","700italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4442q14.ttf","800italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q14.ttf","900italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q14.ttf"},"Indie Flower":{"regular":"http://fonts.gstatic.com/s/indieflower/v9/m8JVjfNVeKWVnh3QMuKkFcZlbg.ttf"},"Josefin Sans":{"100":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9.ttf","300":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfA.ttf","600":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfA.ttf","700":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5EctlldfA.ttf","100italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0.ttf","300italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0k.ttf","regular":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3aZQNVED7rKGKxtqIqX5EkCg.ttf","italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5EUCHx9.ttf","600italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0k.ttf","700italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0k.ttf"},"Anton":{"regular":"http://fonts.gstatic.com/s/anton/v9/1Ptgg87LROyAm0K0.ttf"},"Cabin":{"500":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdfD3Nhi.ttf","600":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-Pdfv29hi.ttf","700":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdeL2thi.ttf","regular":"http://fonts.gstatic.com/s/cabin/v12/u-4x0qWljRw-Pe83.ttf","italic":"http://fonts.gstatic.com/s/cabin/v12/u-4_0qWljRw-Pd81__g.ttf","500italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xwxhuyw.ttf","600italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xyBmuyw.ttf","700italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81x0Rnuyw.ttf"},"Fjalla One":{"regular":"http://fonts.gstatic.com/s/fjallaone/v5/Yq6R-LCAWCX3-6Ky7FAFnOY.ttf"},"Exo 2":{"100":"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbt5LK-s.ttf","200":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7nCss8.ttf","300":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6DCcs8.ttf","500":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7bCMs8.ttf","600":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt73D8s8.ttf","700":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6TDss8.ttf","800":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6PDcs8.ttf","900":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6rDMs8.ttf","100italic":"http://fonts.gstatic.com/s/exo2/v4/7cHqv4okm5zmbtYtE48c4A.ttf","200italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEyM9wHo.ttf","300italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0c-wHo.ttf","regular":"http://fonts.gstatic.com/s/exo2/v4/7cHmv4okm5zmbuYv.ttf","italic":"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbtYtK-s.ttf","500italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEx8_wHo.ttf","600italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEzM4wHo.ttf","700italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE1c5wHo.ttf","800italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0s6wHo.ttf","900italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE287wHo.ttf"},"Nunito Sans":{"200":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9yAv5q.ttf","300":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8WAf5q.ttf","600":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9iB_5q.ttf","700":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8GBv5q.ttf","800":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8aBf5q.ttf","900":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8-BP5q.ttf","200italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GxZrU1Q.ttf","300italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G3JoU1Q.ttf","regular":"http://fonts.gstatic.com/s/nunitosans/v3/pe0qMImSLYBIv1o4X1M8cfe6.ttf","italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe0oMImSLYBIv1o4X1M8cce4I94.ttf","600italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GwZuU1Q.ttf","700italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G2JvU1Q.ttf","800italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G35sU1Q.ttf","900italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G1ptU1Q.ttf"},"Arvo":{"700":"http://fonts.gstatic.com/s/arvo/v10/tDbM2oWUg0MKoZw1yLQ.ttf","regular":"http://fonts.gstatic.com/s/arvo/v10/tDbD2oWUg0MKmSA.ttf","italic":"http://fonts.gstatic.com/s/arvo/v10/tDbN2oWUg0MKqSIQ6A.ttf","700italic":"http://fonts.gstatic.com/s/arvo/v10/tDbO2oWUg0MKqSIoVLHK9g.ttf"},"Encode Sans Condensed":{"100":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-J.ttf","200":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pBw.ttf","300":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pBw.ttf","500":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypBw.ttf","600":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupBw.ttf","700":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpBw.ttf","800":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpBw.ttf","900":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipBw.ttf","regular":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgQ.ttf"},"Noto Sans JP":{"100":"http://fonts.gstatic.com/s/notosansjp/v20/-F6ofjtqLzI2JPCgQBnw7HFQoggM.otf","300":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQaioq1A.otf","500":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQMisq1A.otf","700":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQei0q1A.otf","900":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1A.otf","regular":"http://fonts.gstatic.com/s/notosansjp/v20/-F62fjtqLzI2JPCgQBnw7HFowA.otf"},"Hind Siliguri":{"300":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRDf44uE.ttf","500":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRG_54uE.ttf","600":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoREP-4uE.ttf","700":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uE.ttf","regular":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwTs5juQtsyLLR5jN4cxBEofJs.ttf"},"Varela Round":{"regular":"http://fonts.gstatic.com/s/varelaround/v10/w8gdH283Tvk__Lua32TysjIvoA.ttf"},"Karla":{"700":"http://fonts.gstatic.com/s/karla/v6/qkBWXvYC6trAT7zuC_m-.ttf","regular":"http://fonts.gstatic.com/s/karla/v6/qkBbXvYC6trAT4RS.ttf","italic":"http://fonts.gstatic.com/s/karla/v6/qkBVXvYC6trAT7RQLtk.ttf","700italic":"http://fonts.gstatic.com/s/karla/v6/qkBQXvYC6trAT7RQFmW7xL4.ttf"},"Pacifico":{"regular":"http://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ96A.ttf"},"Abel":{"regular":"http://fonts.gstatic.com/s/abel/v8/MwQ5bhbm2POE6Vg.ttf"},"Shadows Into Light":{"regular":"http://fonts.gstatic.com/s/shadowsintolight/v7/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcg.ttf"},"Yanone Kaffeesatz":{"200":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-t.ttf","300":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-t.ttf","700":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-t.ttf","regular":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y976aknfjLm_3lMKjiMgmUUYBs04b8c.ttf"},"Righteous":{"regular":"http://fonts.gstatic.com/s/righteous/v6/1cXxaUPXBpj2rGoU7C9mjw.ttf"},"Dancing Script":{"700":"http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr8Qt.ttf","regular":"http://fonts.gstatic.com/s/dancingscript/v9/If2RXTr6YS-zF4S-kcSWSVi_swLn.ttf"},"Merriweather Sans":{"300":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD.ttf","700":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD.ttf","800":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD.ttf","300italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hM.ttf","regular":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXy.ttf","italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjA.ttf","700italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hM.ttf","800italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hM.ttf"},"Source Serif Pro":{"600":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSs.ttf","700":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSs.ttf","regular":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM.ttf"},"Kanit":{"100":"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcr72GwU.ttf","200":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5aOiWg.ttf","300":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4-OSWg.ttf","500":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5mOCWg.ttf","600":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5KPyWg.ttf","700":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4uPiWg.ttf","800":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4yPSWg.ttf","900":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4WPCWg.ttf","100italic":"http://fonts.gstatic.com/s/kanit/v3/nKKV-Go6G5tXcraQI2GAdQ.ttf","200italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI82hVaQ.ttf","300italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6miVaQ.ttf","regular":"http://fonts.gstatic.com/s/kanit/v3/nKKZ-Go6G5tXcoaS.ttf","italic":"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcraQGwU.ttf","500italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI_GjVaQ.ttf","600italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI92kVaQ.ttf","700italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI7mlVaQ.ttf","800italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6WmVaQ.ttf","900italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI4GnVaQ.ttf"},"Abril Fatface":{"regular":"http://fonts.gstatic.com/s/abrilfatface/v9/zOL64pLDlL1D99S8g8PtiKchm-A.ttf"},"Exo":{"100":"http://fonts.gstatic.com/s/exo/v7/4UaMrEtFpBIaEH6m.ttf","200":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIavF-G8A.ttf","300":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa2FyG8A.ttf","500":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIagF2G8A.ttf","600":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIarFqG8A.ttf","700":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIayFuG8A.ttf","800":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa1FiG8A.ttf","900":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa8FmG8A.ttf","100italic":"http://fonts.gstatic.com/s/exo/v7/4UaCrEtFpBISdkbC0DI.ttf","200italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZu8RLm.ttf","300italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYK8hLm.ttf","regular":"http://fonts.gstatic.com/s/exo/v7/4UaOrEtFpBIidA.ttf","italic":"http://fonts.gstatic.com/s/exo/v7/4UaMrEtFpBISdn6m.ttf","500italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZS8xLm.ttf","600italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZ-9BLm.ttf","700italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYa9RLm.ttf","800italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYG9hLm.ttf","900italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYi9xLm.ttf"},"Bree Serif":{"regular":"http://fonts.gstatic.com/s/breeserif/v7/4UaHrEJCrhhnVA3DgluAx60.ttf"},"Acme":{"regular":"http://fonts.gstatic.com/s/acme/v7/RrQfboBx-C5_bx0.ttf"},"Comfortaa":{"300":"http://fonts.gstatic.com/s/comfortaa/v12/1Ptpg8LJRfWJmhDAuUsw5qNPBQ.ttf","700":"http://fonts.gstatic.com/s/comfortaa/v12/1Ptpg8LJRfWJmhDAuUsw9qRPBQ.ttf","regular":"http://fonts.gstatic.com/s/comfortaa/v12/1Ptsg8LJRfWJmhDAuUsISg.ttf"},"Asap":{"500":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw8g9xUw.ttf","600":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw-Q6xUw.ttf","700":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw4A7xUw.ttf","regular":"http://fonts.gstatic.com/s/asap/v8/KFOoCniXp96a-zw.ttf","italic":"http://fonts.gstatic.com/s/asap/v8/KFOmCniXp96ayz4e5Q.ttf","500italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mEU9vAw.ttf","600italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mPUhvAw.ttf","700italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mWUlvAw.ttf"},"Ubuntu Condensed":{"regular":"http://fonts.gstatic.com/s/ubuntucondensed/v8/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-c.ttf"},"Cairo":{"200":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalrub76M.ttf","300":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6HkvalqKbL6M.ttf","600":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalr-ar6M.ttf","700":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalqaa76M.ttf","900":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalqiab6M.ttf","regular":"http://fonts.gstatic.com/s/cairo/v4/SLXGc1nY6HkvamIm.ttf"},"Amatic SC":{"700":"http://fonts.gstatic.com/s/amaticsc/v11/TUZ3zwprpvBS1izr_vOMscG6eQ.ttf","regular":"http://fonts.gstatic.com/s/amaticsc/v11/TUZyzwprpvBS1izr_vO0DQ.ttf"},"Catamaran":{"100":"http://fonts.gstatic.com/s/catamaran/v4/o-0OIpQoyXQa2RxT7-5jhjRF.ttf","200":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jKhVlYw.ttf","300":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jThZlYw.ttf","500":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jFhdlYw.ttf","600":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jOhBlYw.ttf","700":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jXhFlYw.ttf","800":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jQhJlYw.ttf","900":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jZhNlYw.ttf","regular":"http://fonts.gstatic.com/s/catamaran/v4/o-0IIpQoyXQa2RxT7-5b4g.ttf"},"Signika":{"300":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE_oEI3A.ttf","600":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE44CI3A.ttf","700":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE-oDI3A.ttf","regular":"http://fonts.gstatic.com/s/signika/v8/vEFR2_JTCgwQ5ejvK1Y.ttf"},"EB Garamond":{"500":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyGaxwV.ttf","600":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyqbBwV.ttf","700":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzObRwV.ttf","800":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzSbhwV.ttf","regular":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGUmQSNjdsmc35JDF1K5FRy.ttf","italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGWmQSNjdsmc35JDF1K5GRwSDw.ttf","500italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgs.ttf","600italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgs.ttf","700italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgs.ttf","800italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgs.ttf"},"Questrial":{"regular":"http://fonts.gstatic.com/s/questrial/v7/QdVUSTchPBm7nuUeVf7EuQ.ttf"},"Teko":{"300":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdQhfgCM.ttf","500":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdVBegCM.ttf","600":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdXxZgCM.ttf","700":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdRhYgCM.ttf","regular":"http://fonts.gstatic.com/s/teko/v7/LYjNdG7kmE0gTaQ.ttf"},"Heebo":{"100":"http://fonts.gstatic.com/s/heebo/v3/NGS0v5_NC0k9P9mVTbQ.ttf","300":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9ldb5RL.ttf","500":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9kFbpRL.ttf","700":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lNaJRL.ttf","800":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lRa5RL.ttf","900":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9l1apRL.ttf","regular":"http://fonts.gstatic.com/s/heebo/v3/NGS6v5_NC0k9P-Hx.ttf"},"Archivo Narrow":{"500":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla.ttf","600":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla.ttf","700":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla.ttf","regular":"http://fonts.gstatic.com/s/archivonarrow/v8/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3.ttf","italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXk.ttf","500italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9c.ttf","600italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9c.ttf","700italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9c.ttf"},"Permanent Marker":{"regular":"http://fonts.gstatic.com/s/permanentmarker/v7/Fh4uPib9Iyv2ucM6pGQMWimMp004Hao.ttf"},"Play":{"700":"http://fonts.gstatic.com/s/play/v9/6ae84K2oVqwItm4TOpc.ttf","regular":"http://fonts.gstatic.com/s/play/v9/6aez4K2oVqwIjtI.ttf"},"Noto Sans TC":{"100":"http://fonts.gstatic.com/s/notosanstc/v4/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf","300":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf","500":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf","700":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf","900":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf","regular":"http://fonts.gstatic.com/s/notosanstc/v4/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf"},"Source Code Pro":{"200":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztA.ttf","300":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztA.ttf","500":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztA.ttf","600":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztA.ttf","700":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztA.ttf","900":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztA.ttf","regular":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOg.ttf"},"Crete Round":{"regular":"http://fonts.gstatic.com/s/creteround/v6/55xoey1sJNPjPiv1ZZZrxJ18.ttf","italic":"http://fonts.gstatic.com/s/creteround/v6/55xqey1sJNPjPiv1ZZZrxK1-0bg.ttf"},"Maven Pro":{"500":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OPkctOA.ttf","700":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OdkEtOA.ttf","900":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OTkMtOA.ttf","regular":"http://fonts.gstatic.com/s/mavenpro/v11/7Au9p_AqnyWWAxW2Wk32yg.ttf"},"Hind Madurai":{"300":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfXaUneQ.ttf","500":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfBaQneQ.ttf","600":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfKaMneQ.ttf","700":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfTaIneQ.ttf","regular":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xx0e2p98ZvDXdZQIOcpqjn8Q.ttf"},"Cuprum":{"700":"http://fonts.gstatic.com/s/cuprum/v9/dg4n_pLmvrkcOkBFnc5njw.ttf","regular":"http://fonts.gstatic.com/s/cuprum/v9/dg4k_pLmvrkcOkB9IQ.ttf","italic":"http://fonts.gstatic.com/s/cuprum/v9/dg4m_pLmvrkcOkBNI-tH.ttf","700italic":"http://fonts.gstatic.com/s/cuprum/v9/dg4h_pLmvrkcOkBNI9P7ipwt.ttf"},"Gloria Hallelujah":{"regular":"http://fonts.gstatic.com/s/gloriahallelujah/v9/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy.ttf"},"Francois One":{"regular":"http://fonts.gstatic.com/s/francoisone/v12/_Xmr-H4zszafZw3A-KPSZutNxg.ttf"},"Fira Sans Condensed":{"100":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqA.ttf","200":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMM.ttf","300":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMM.ttf","500":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMM.ttf","600":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMM.ttf","700":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMM.ttf","800":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMM.ttf","900":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMM.ttf","100italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONU.ttf","200italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dw.ttf","300italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dw.ttf","regular":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfE.ttf","italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqA.ttf","500italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dw.ttf","600italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dw.ttf","700italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dw.ttf","800italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dw.ttf","900italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dw.ttf"},"PT Sans Caption":{"700":"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSw.ttf","regular":"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQ.ttf"},"Rokkitt":{"100":"http://fonts.gstatic.com/s/rokkitt/v12/qFdG35qfgYFjGy5hmCWCcw.ttf","200":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmImjU94.ttf","300":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmO2gU94.ttf","500":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmLWhU94.ttf","600":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmJmmU94.ttf","700":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmP2nU94.ttf","800":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmOGkU94.ttf","900":"http://fonts.gstatic.com/s/rokkitt/v12/qFdB35qfgYFjGy5hmMWlU94.ttf","regular":"http://fonts.gstatic.com/s/rokkitt/v12/qFdE35qfgYFjGy5hoEE.ttf"},"Assistant":{"200":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7p0ScAw.ttf","300":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7w0ecAw.ttf","600":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7t0GcAw.ttf","700":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk700CcAw.ttf","800":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7z0OcAw.ttf","regular":"http://fonts.gstatic.com/s/assistant/v2/2sDcZGJYnIjSi6H75xkDbw.ttf"},"Alegreya":{"500":"http://fonts.gstatic.com/s/alegreya/v11/4UaGrEBBsBhlBjvfkSoS5I3J.ttf","700":"http://fonts.gstatic.com/s/alegreya/v11/4UaGrEBBsBhlBjvfkSpa4o3J.ttf","800":"http://fonts.gstatic.com/s/alegreya/v11/4UaGrEBBsBhlBjvfkSpG4Y3J.ttf","900":"http://fonts.gstatic.com/s/alegreya/v11/4UaGrEBBsBhlBjvfkSpi4I3J.ttf","regular":"http://fonts.gstatic.com/s/alegreya/v11/4UaBrEBBsBhlBjvfkRLm.ttf","italic":"http://fonts.gstatic.com/s/alegreya/v11/4UaHrEBBsBhlBjvfkSLkx60.ttf","500italic":"http://fonts.gstatic.com/s/alegreya/v11/4UaErEBBsBhlBjvfkSLk_1nKwps.ttf","700italic":"http://fonts.gstatic.com/s/alegreya/v11/4UaErEBBsBhlBjvfkSLk_xHMwps.ttf","800italic":"http://fonts.gstatic.com/s/alegreya/v11/4UaErEBBsBhlBjvfkSLk_w3Pwps.ttf","900italic":"http://fonts.gstatic.com/s/alegreya/v11/4UaErEBBsBhlBjvfkSLk_ynOwps.ttf"},"Domine":{"700":"http://fonts.gstatic.com/s/domine/v5/L0x_DFMnlVwD4h3pAN-CTQ.ttf","regular":"http://fonts.gstatic.com/s/domine/v5/L0x8DFMnlVwD4h3RvA.ttf"},"Patua One":{"regular":"http://fonts.gstatic.com/s/patuaone/v8/ZXuke1cDvLCKLDcimxBI5A.ttf"},"Courgette":{"regular":"http://fonts.gstatic.com/s/courgette/v5/wEO_EBrAnc9BLjLQAUkFUQ.ttf"},"Rajdhani":{"300":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pasEcOs.ttf","500":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pb0EMOs.ttf","600":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pbYF8Os.ttf","700":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pa8FsOs.ttf","regular":"http://fonts.gstatic.com/s/rajdhani/v7/LDIxapCSOBg7S-QT7q4A.ttf"},"Prompt":{"100":"http://fonts.gstatic.com/s/prompt/v2/-W_9XJnvUD7dzB2CA9oY.ttf","200":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cr_s4bg.ttf","300":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cy_g4bg.ttf","500":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Ck_k4bg.ttf","600":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cv_44bg.ttf","700":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2C2_84bg.ttf","800":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2Cx_w4bg.ttf","900":"http://fonts.gstatic.com/s/prompt/v2/-W_8XJnvUD7dzB2C4_04bg.ttf","100italic":"http://fonts.gstatic.com/s/prompt/v2/-W_7XJnvUD7dzB2KZeJ8TkM.ttf","200italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLQb2Mr.ttf","300italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeK0bGMr.ttf","regular":"http://fonts.gstatic.com/s/prompt/v2/-W__XJnvUD7dzB26Zw.ttf","italic":"http://fonts.gstatic.com/s/prompt/v2/-W_9XJnvUD7dzB2KZdoY.ttf","500italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLsbWMr.ttf","600italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeLAamMr.ttf","700italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeKka2Mr.ttf","800italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeK4aGMr.ttf","900italic":"http://fonts.gstatic.com/s/prompt/v2/-W_6XJnvUD7dzB2KZeKcaWMr.ttf"},"Cinzel":{"700":"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzTUHeFA.ttf","900":"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzdUPeFA.ttf","regular":"http://fonts.gstatic.com/s/cinzel/v7/8vIJ7ww63mVu7gtL8Q.ttf"},"Vollkorn":{"600":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxH2TGg-.ttf","700":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGSTWg-.ttf","900":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGqT2g-.ttf","regular":"http://fonts.gstatic.com/s/vollkorn/v8/0yb9GDoxxrvAnPhYGyku.ttf","italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb7GDoxxrvAnPhYGxksaEg.ttf","600italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUJA6jBA.ttf","700italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUPQ7jBA.ttf","900italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUMw5jBA.ttf"},"Satisfy":{"regular":"http://fonts.gstatic.com/s/satisfy/v8/rP2Hp2yn6lkG50LoOZQ.ttf"},"Istok Web":{"700":"http://fonts.gstatic.com/s/istokweb/v12/3qTqojGmgSyUukBzKslhvU5a_g.ttf","regular":"http://fonts.gstatic.com/s/istokweb/v12/3qTvojGmgSyUukBzKslZAQ.ttf","italic":"http://fonts.gstatic.com/s/istokweb/v12/3qTpojGmgSyUukBzKslpA2t6.ttf","700italic":"http://fonts.gstatic.com/s/istokweb/v12/3qT0ojGmgSyUukBzKslpA1PG-2MQ.ttf"},"Ropa Sans":{"regular":"http://fonts.gstatic.com/s/ropasans/v7/EYqxmaNOzLlWtsZSScyKWg.ttf","italic":"http://fonts.gstatic.com/s/ropasans/v7/EYq3maNOzLlWtsZSScy6WDNs.ttf"},"Alegreya Sans":{"100":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUt9_-1phKLFgshYDvh6Vwt5TltuA.ttf","300":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE0.ttf","500":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5alOmE0.ttf","700":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5eFImE0.ttf","800":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE0.ttf","900":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE0.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1W.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jg.ttf","regular":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUz9_-1phKLFgshYDvh6Vwt3V0.ttf","italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUt9_-1phKLFgshYDvh6Vwt7V9tuA.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jg.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jg.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jg.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasans/v8/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jg.ttf"},"Old Standard TT":{"700":"http://fonts.gstatic.com/s/oldstandardtt/v10/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTA.ttf","regular":"http://fonts.gstatic.com/s/oldstandardtt/v10/MwQubh3o1vLImiwAVvYawgcf2eVurQ.ttf","italic":"http://fonts.gstatic.com/s/oldstandardtt/v10/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9.ttf"},"Special Elite":{"regular":"http://fonts.gstatic.com/s/specialelite/v8/XLYgIZbkc4JPUL5CVArUVL0nhnc.ttf"},"ABeeZee":{"regular":"http://fonts.gstatic.com/s/abeezee/v11/esDR31xSG-6AGleN6tI.ttf","italic":"http://fonts.gstatic.com/s/abeezee/v11/esDT31xSG-6AGleN2tCklQ.ttf"},"Cantarell":{"700":"http://fonts.gstatic.com/s/cantarell/v7/B50IF7ZDq37KMUvlO01xN4dOFA.ttf","regular":"http://fonts.gstatic.com/s/cantarell/v7/B50NF7ZDq37KMUvlO01Jiw.ttf","italic":"http://fonts.gstatic.com/s/cantarell/v7/B50LF7ZDq37KMUvlO015iaJu.ttf","700italic":"http://fonts.gstatic.com/s/cantarell/v7/B50WF7ZDq37KMUvlO015iZrSEY6a.ttf"},"Concert One":{"regular":"http://fonts.gstatic.com/s/concertone/v8/VEM1Ro9xs5PjtzCu-srDqRTl.ttf"},"Gochi Hand":{"regular":"http://fonts.gstatic.com/s/gochihand/v8/hES06XlsOjtJsgCkx1PkTo4.ttf"},"Amiri":{"700":"http://fonts.gstatic.com/s/amiri/v11/J7acnpd8CGxBHp2VkZY4.ttf","regular":"http://fonts.gstatic.com/s/amiri/v11/J7aRnpd8CGxBHqUp.ttf","italic":"http://fonts.gstatic.com/s/amiri/v11/J7afnpd8CGxBHpUrtLY.ttf","700italic":"http://fonts.gstatic.com/s/amiri/v11/J7aanpd8CGxBHpUrjAo9zps.ttf"},"Cardo":{"700":"http://fonts.gstatic.com/s/cardo/v9/wlpygwjKBV1pqhND-aQR.ttf","regular":"http://fonts.gstatic.com/s/cardo/v9/wlp_gwjKBV1pqiv_.ttf","italic":"http://fonts.gstatic.com/s/cardo/v9/wlpxgwjKBV1pqhv93IQ.ttf"},"Kaushan Script":{"regular":"http://fonts.gstatic.com/s/kaushanscript/v6/vm8vdRfvXFLG3OLnsO15WYS5DF7_.ttf"},"Barlow":{"100":"http://fonts.gstatic.com/s/barlow/v2/7cHrv4kjgoGqM7E3b8s8.ttf","200":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3w-oc4A.ttf","300":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3p-kc4A.ttf","500":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3_-gc4A.ttf","600":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E30-8c4A.ttf","700":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3t-4c4A.ttf","800":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3q-0c4A.ttf","900":"http://fonts.gstatic.com/s/barlow/v2/7cHqv4kjgoGqM7E3j-wc4A.ttf","100italic":"http://fonts.gstatic.com/s/barlow/v2/7cHtv4kjgoGqM7E_CfNYwHo.ttf","200italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfP04Vop.ttf","300italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfOQ4lop.ttf","regular":"http://fonts.gstatic.com/s/barlow/v2/7cHpv4kjgoGqM7EPCw.ttf","italic":"http://fonts.gstatic.com/s/barlow/v2/7cHrv4kjgoGqM7E_Ccs8.ttf","500italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfPI41op.ttf","600italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfPk5Fop.ttf","700italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfOA5Vop.ttf","800italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfOc5lop.ttf","900italic":"http://fonts.gstatic.com/s/barlow/v2/7cHsv4kjgoGqM7E_CfO451op.ttf"},"Orbitron":{"500":"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QJIVAhx.ttf","700":"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QIAUghx.ttf","900":"http://fonts.gstatic.com/s/orbitron/v9/yMJWMIlzdpvBhQQL_QI4UAhx.ttf","regular":"http://fonts.gstatic.com/s/orbitron/v9/yMJRMIlzdpvBhQQL_Tq8.ttf"},"Caveat":{"700":"http://fonts.gstatic.com/s/caveat/v4/Wnz5HAc5bAfYB2Qz3RM9og.ttf","regular":"http://fonts.gstatic.com/s/caveat/v4/Wnz6HAc5bAfYB2QLYQ.ttf"},"Great Vibes":{"regular":"http://fonts.gstatic.com/s/greatvibes/v5/RWmMoKWR9v4ksMfaWd_JN-XC.ttf"},"Viga":{"regular":"http://fonts.gstatic.com/s/viga/v6/xMQbuFFdSaiX_QI.ttf"},"Quattrocento Sans":{"700":"http://fonts.gstatic.com/s/quattrocentosans/v10/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrW.ttf","regular":"http://fonts.gstatic.com/s/quattrocentosans/v10/va9c4lja2NVIDdIAAoMR5MfuElaRB3zO.ttf","italic":"http://fonts.gstatic.com/s/quattrocentosans/v10/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0o.ttf","700italic":"http://fonts.gstatic.com/s/quattrocentosans/v10/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXk.ttf"},"Cookie":{"regular":"http://fonts.gstatic.com/s/cookie/v9/syky-y18lb0tSbfNlQ.ttf"},"Tinos":{"700":"http://fonts.gstatic.com/s/tinos/v11/buE1poGnedXvwj1AW0Fp.ttf","regular":"http://fonts.gstatic.com/s/tinos/v11/buE4poGnedXvwgX8.ttf","italic":"http://fonts.gstatic.com/s/tinos/v11/buE2poGnedXvwjX-fmE.ttf","700italic":"http://fonts.gstatic.com/s/tinos/v11/buEzpoGnedXvwjX-Rt1s0Co.ttf"},"Noticia Text":{"700":"http://fonts.gstatic.com/s/noticiatext/v7/VuJpdNDF2Yv9qppOePKYRP1-3R59vw.ttf","regular":"http://fonts.gstatic.com/s/noticiatext/v7/VuJ2dNDF2Yv9qppOePKYRP1GYQ.ttf","italic":"http://fonts.gstatic.com/s/noticiatext/v7/VuJodNDF2Yv9qppOePKYRP12Yztd.ttf","700italic":"http://fonts.gstatic.com/s/noticiatext/v7/VuJrdNDF2Yv9qppOePKYRP12YwPhumvV.ttf"},"News Cycle":{"700":"http://fonts.gstatic.com/s/newscycle/v14/CSR54z1Qlv-GDxkbKVQ_dFsvaNM.ttf","regular":"http://fonts.gstatic.com/s/newscycle/v14/CSR64z1Qlv-GDxkbKVQ_TOc.ttf"},"Hammersmith One":{"regular":"http://fonts.gstatic.com/s/hammersmithone/v8/qWcyB624q4L_C4jGQ9IK0O_dFlnbsg.ttf"},"Arapey":{"regular":"http://fonts.gstatic.com/s/arapey/v6/-W__XJn-UDDA2RC6Zw.ttf","italic":"http://fonts.gstatic.com/s/arapey/v6/-W_9XJn-UDDA2RCKZdoY.ttf"},"Signika Negative":{"300":"http://fonts.gstatic.com/s/signikanegative/v8/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipE.ttf","600":"http://fonts.gstatic.com/s/signikanegative/v8/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipE.ttf","700":"http://fonts.gstatic.com/s/signikanegative/v8/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipE.ttf","regular":"http://fonts.gstatic.com/s/signikanegative/v8/E218_cfngu7HiRpPX3ZpNE4kY5zKUvI.ttf"},"Cormorant Garamond":{"300":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQ.ttf","500":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQ.ttf","600":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQ.ttf","700":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQ.ttf","300italic":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-N.ttf","regular":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3bmX5slCNuHLi8bLeY9MK7whWMhyjorg.ttf","italic":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtP.ttf","500italic":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-N.ttf","600italic":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-N.ttf","700italic":"http://fonts.gstatic.com/s/cormorantgaramond/v5/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-N.ttf"},"Barlow Condensed":{"100":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT3w.ttf","200":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3E.ttf","300":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3E.ttf","500":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3E.ttf","600":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3E.ttf","700":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3E.ttf","800":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3E.ttf","900":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3E.ttf","100italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2.ttf","200italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvA.ttf","300italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvA.ttf","regular":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xY.ttf","italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT3w.ttf","500italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvA.ttf","600italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvA.ttf","700italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvA.ttf","800italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvA.ttf","900italic":"http://fonts.gstatic.com/s/barlowcondensed/v2/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvA.ttf"},"Merienda":{"700":"http://fonts.gstatic.com/s/merienda/v6/gNMAW3x8Qoy5_mf8uWu-Fa-y.ttf","regular":"http://fonts.gstatic.com/s/merienda/v6/gNMHW3x8Qoy5_mf8uVMC.ttf"},"Poiret One":{"regular":"http://fonts.gstatic.com/s/poiretone/v6/UqyVK80NJXN4zfRgbdfbk5k.ttf"},"Alfa Slab One":{"regular":"http://fonts.gstatic.com/s/alfaslabone/v7/6NUQ8FmMKwSEKjnm5-4v-4Jh6dU.ttf"},"Lobster Two":{"700":"http://fonts.gstatic.com/s/lobstertwo/v10/BngRUXZGTXPUvIoyV6yN5-92w4CB.ttf","regular":"http://fonts.gstatic.com/s/lobstertwo/v10/BngMUXZGTXPUvIoyV6yN59fK.ttf","italic":"http://fonts.gstatic.com/s/lobstertwo/v10/BngOUXZGTXPUvIoyV6yN5-fI5qA.ttf","700italic":"http://fonts.gstatic.com/s/lobstertwo/v10/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRg.ttf"},"Pathway Gothic One":{"regular":"http://fonts.gstatic.com/s/pathwaygothicone/v6/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTA.ttf"},"Fredoka One":{"regular":"http://fonts.gstatic.com/s/fredokaone/v5/k3kUo8kEI-tA1RRcTZGmTmHB.ttf"},"Monda":{"700":"http://fonts.gstatic.com/s/monda/v7/TK3gWkYFABsmjsLaGz8D.ttf","regular":"http://fonts.gstatic.com/s/monda/v7/TK3tWkYFABsmjvpm.ttf"},"Nanum Myeongjo":{"700":"http://fonts.gstatic.com/s/nanummyeongjo/v11/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0.ttf","800":"http://fonts.gstatic.com/s/nanummyeongjo/v11/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0.ttf","regular":"http://fonts.gstatic.com/s/nanummyeongjo/v11/9Btx3DZF0dXLMZlywRbVRNhxy1Lr.ttf"},"Russo One":{"regular":"http://fonts.gstatic.com/s/russoone/v6/Z9XUDmZRWg6M1LvRYsH-yA.ttf"},"Hind Guntur":{"300":"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_yGn1cz.ttf","500":"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_zenlcz.ttf","600":"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_zymVcz.ttf","700":"http://fonts.gstatic.com/s/hindguntur/v3/wXKyE3UZrok56nvamSuJd_yWmFcz.ttf","regular":"http://fonts.gstatic.com/s/hindguntur/v3/wXKvE3UZrok56nvamSuJd8Qq.ttf"},"Kalam":{"300":"http://fonts.gstatic.com/s/kalam/v8/YA9Qr0Wd4kDdMtD6GgLL.ttf","700":"http://fonts.gstatic.com/s/kalam/v8/YA9Qr0Wd4kDdMtDqHQLL.ttf","regular":"http://fonts.gstatic.com/s/kalam/v8/YA9dr0Wd4kDdMuhW.ttf"},"Tangerine":{"700":"http://fonts.gstatic.com/s/tangerine/v9/Iurd6Y5j_oScZZow4VO5srNpjA.ttf","regular":"http://fonts.gstatic.com/s/tangerine/v9/IurY6Y5j_oScZZow4VOBDg.ttf"},"Archivo Black":{"regular":"http://fonts.gstatic.com/s/archivoblack/v7/HTxqL289NzCGg4MzN6KJ7eW6OYs.ttf"},"BenchNine":{"300":"http://fonts.gstatic.com/s/benchnine/v6/ahcev8612zF4jxrwMosT--tRhQ.ttf","700":"http://fonts.gstatic.com/s/benchnine/v6/ahcev8612zF4jxrwMosT6-xRhQ.ttf","regular":"http://fonts.gstatic.com/s/benchnine/v6/ahcbv8612zF4jxrwMosrVw.ttf"},"Tenor Sans":{"regular":"http://fonts.gstatic.com/s/tenorsans/v9/bx6ANxqUneKx06UkIXISr3I.ttf"},"Passion One":{"700":"http://fonts.gstatic.com/s/passionone/v8/Pby6FmL8HhTPqbjUzux3JEMq037o.ttf","900":"http://fonts.gstatic.com/s/passionone/v8/Pby6FmL8HhTPqbjUzux3JEMS0X7o.ttf","regular":"http://fonts.gstatic.com/s/passionone/v8/PbynFmL8HhTPqbjUzux3JHuW.ttf"},"Chivo":{"300":"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjDY8Z_.ttf","700":"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjTZMZ_.ttf","900":"http://fonts.gstatic.com/s/chivo/v9/va9F4kzIxd1KFrjrZsZ_.ttf","300italic":"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteUp9sKg.ttf","regular":"http://fonts.gstatic.com/s/chivo/v9/va9I4kzIxd1KFoBv.ttf","italic":"http://fonts.gstatic.com/s/chivo/v9/va9G4kzIxd1KFrBtQeY.ttf","700italic":"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteVp6sKg.ttf","900italic":"http://fonts.gstatic.com/s/chivo/v9/va9D4kzIxd1KFrBteWJ4sKg.ttf"},"Volkhov":{"700":"http://fonts.gstatic.com/s/volkhov/v9/SlGVmQieoJcKemNeeY4hoHQ.ttf","regular":"http://fonts.gstatic.com/s/volkhov/v9/SlGQmQieoJcKemNeQTI.ttf","italic":"http://fonts.gstatic.com/s/volkhov/v9/SlGSmQieoJcKemNecTAEgA.ttf","700italic":"http://fonts.gstatic.com/s/volkhov/v9/SlGXmQieoJcKemNecTA8PHFSaA.ttf"},"Ultra":{"regular":"http://fonts.gstatic.com/s/ultra/v10/zOLy4prXmrtY-tT6.ttf"},"Playfair Display SC":{"700":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcs.ttf","900":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcs.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFQ.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XKw.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v7/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXKw.ttf"},"Pontano Sans":{"regular":"http://fonts.gstatic.com/s/pontanosans/v5/qFdD35GdgYR8EzR6oBLDHa3qwg.ttf"},"Marck Script":{"regular":"http://fonts.gstatic.com/s/marckscript/v8/nwpTtK2oNgBA3Or78gapdwuCzw.ttf"},"Cabin Condensed":{"500":"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97A.ttf","600":"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97A.ttf","700":"http://fonts.gstatic.com/s/cabincondensed/v11/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97A.ttf","regular":"http://fonts.gstatic.com/s/cabincondensed/v11/nwpMtK6mNhBK2err_hqkYhHRqmwaYA.ttf"},"Sigmar One":{"regular":"http://fonts.gstatic.com/s/sigmarone/v8/co3DmWZ8kjZuErj9Ta3dk6M.ttf"},"Fira Sans Extra Condensed":{"100":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuvw.ttf","200":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn38.ttf","300":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn38.ttf","500":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn38.ttf","600":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn38.ttf","700":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn38.ttf","800":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn38.ttf","900":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn38.ttf","100italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-e.ttf","200italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pA.ttf","300italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pA.ttf","regular":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fg.ttf","italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquvw.ttf","500italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pA.ttf","600italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pA.ttf","700italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pA.ttf","800italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pA.ttf","900italic":"http://fonts.gstatic.com/s/firasansextracondensed/v2/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pA.ttf"},"Philosopher":{"700":"http://fonts.gstatic.com/s/philosopher/v9/vEFI2_5QCwIS4_Dhez5jcWjVamgc.ttf","regular":"http://fonts.gstatic.com/s/philosopher/v9/vEFV2_5QCwIS4_Dhez5jcVBp.ttf","italic":"http://fonts.gstatic.com/s/philosopher/v9/vEFX2_5QCwIS4_Dhez5jcWBrT0g.ttf","700italic":"http://fonts.gstatic.com/s/philosopher/v9/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tI.ttf"},"Sacramento":{"regular":"http://fonts.gstatic.com/s/sacramento/v5/buEzpo6gcdjy0EiZMBUG0Co.ttf"},"Handlee":{"regular":"http://fonts.gstatic.com/s/handlee/v6/-F6xfjBsISg9aMakDmo.ttf"},"M PLUS 1p":{"100":"http://fonts.gstatic.com/s/mplus1p/v15/e3tleuShHdiFyPFzBRrQnDQA.ttf","300":"http://fonts.gstatic.com/s/mplus1p/v15/e3tmeuShHdiFyPFzBRrQVBYgew.ttf","500":"http://fonts.gstatic.com/s/mplus1p/v15/e3tmeuShHdiFyPFzBRrQDBcgew.ttf","700":"http://fonts.gstatic.com/s/mplus1p/v15/e3tmeuShHdiFyPFzBRrQRBEgew.ttf","800":"http://fonts.gstatic.com/s/mplus1p/v15/e3tmeuShHdiFyPFzBRrQWBIgew.ttf","900":"http://fonts.gstatic.com/s/mplus1p/v15/e3tmeuShHdiFyPFzBRrQfBMgew.ttf","regular":"http://fonts.gstatic.com/s/mplus1p/v15/e3tjeuShHdiFyPFzBRro-A.ttf"},"Overpass":{"100":"http://fonts.gstatic.com/s/overpass/v2/qFdB35WCmI96Ajtm81nGU94.ttf","200":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81lqcv7K.ttf","300":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kOcf7K.ttf","600":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81l6d_7K.ttf","700":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kedv7K.ttf","800":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kCdf7K.ttf","900":"http://fonts.gstatic.com/s/overpass/v2/qFdA35WCmI96Ajtm81kmdP7K.ttf","100italic":"http://fonts.gstatic.com/s/overpass/v2/qFdD35WCmI96Ajtm81Gga7rqwg.ttf","200italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81GgaxbL4h8.ttf","300italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga3LI4h8.ttf","regular":"http://fonts.gstatic.com/s/overpass/v2/qFdH35WCmI96Ajtm82Gi.ttf","italic":"http://fonts.gstatic.com/s/overpass/v2/qFdB35WCmI96Ajtm81GgU94.ttf","600italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81GgawbO4h8.ttf","700italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga2LP4h8.ttf","800italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga37M4h8.ttf","900italic":"http://fonts.gstatic.com/s/overpass/v2/qFdC35WCmI96Ajtm81Gga1rN4h8.ttf"},"Josefin Slab":{"100":"http://fonts.gstatic.com/s/josefinslab/v8/lW-nwjwOK3Ps5GSJlNNkMalvyQ6q.ttf","300":"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvASyKLg.ttf","600":"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLg.ttf","700":"http://fonts.gstatic.com/s/josefinslab/v8/lW-mwjwOK3Ps5GSJlNNkMalvESuKLg.ttf","100italic":"http://fonts.gstatic.com/s/josefinslab/v8/lW-lwjwOK3Ps5GSJlNNkMalnrzbODso.ttf","300italic":"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrg.ttf","regular":"http://fonts.gstatic.com/s/josefinslab/v8/lW-5wjwOK3Ps5GSJlNNkMalXrQ.ttf","italic":"http://fonts.gstatic.com/s/josefinslab/v8/lW-nwjwOK3Ps5GSJlNNkMalnrw6q.ttf","600italic":"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurg.ttf","700italic":"http://fonts.gstatic.com/s/josefinslab/v8/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rg.ttf"},"Monoton":{"regular":"http://fonts.gstatic.com/s/monoton/v7/5h1aiZUrOngCibe4fkY.ttf"},"Boogaloo":{"regular":"http://fonts.gstatic.com/s/boogaloo/v9/kmK-Zq45GAvOdnaW6x1F.ttf"},"Gudea":{"700":"http://fonts.gstatic.com/s/gudea/v7/neIIzCqgsI0mp9gz26WG.ttf","regular":"http://fonts.gstatic.com/s/gudea/v7/neIFzCqgsI0mp-CP.ttf","italic":"http://fonts.gstatic.com/s/gudea/v7/neILzCqgsI0mp9CN_oU.ttf"},"Luckiest Guy":{"regular":"http://fonts.gstatic.com/s/luckiestguy/v8/_gP_1RrxsjcxVyin9l9n_j2RSg.ttf"},"Didact Gothic":{"regular":"http://fonts.gstatic.com/s/didactgothic/v11/ahcfv8qz1zt6hCC5G4F_P4ASpUw.ttf"},"Quattrocento":{"700":"http://fonts.gstatic.com/s/quattrocento/v9/OZpbg_xvsDZQL_LKIF7q4jP_eE3fdw.ttf","regular":"http://fonts.gstatic.com/s/quattrocento/v9/OZpEg_xvsDZQL_LKIF7q4jPHxA.ttf"},"IBM Plex Sans":{"100":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX-KVElMYYaJe8bpLHnCwDKjbLeEA.ttf","200":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIY.ttf","300":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIY.ttf","500":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIY.ttf","600":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIY.ttf","700":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIY.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZM.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX7KVElMYYaJe8bpLHnCwDKhdTm2IdscQ.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscQ.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYXgKVElMYYaJe8bpLHnCwDKtdY.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX-KVElMYYaJe8bpLHnCwDKhdTeEA.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscQ.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscQ.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsans/v3/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscQ.ttf"},"Yantramanav":{"100":"http://fonts.gstatic.com/s/yantramanav/v3/flU-Rqu5zY00QEpyWJYWN5-QXeM.ttf","300":"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59Yf8NZ.ttf","500":"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN58AfsNZ.ttf","700":"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59IeMNZ.ttf","900":"http://fonts.gstatic.com/s/yantramanav/v3/flUhRqu5zY00QEpyWJYWN59wesNZ.ttf","regular":"http://fonts.gstatic.com/s/yantramanav/v3/flU8Rqu5zY00QEpyWJYWN6f0.ttf"},"Khand":{"300":"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bL5cFE3.ttf","500":"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bKhcVE3.ttf","600":"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bKNdlE3.ttf","700":"http://fonts.gstatic.com/s/khand/v6/TwMN-IINQlQQ0bLpd1E3.ttf","regular":"http://fonts.gstatic.com/s/khand/v6/TwMA-IINQlQQ0YpV.ttf"},"Changa":{"200":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcsqb2bUg.ttf","300":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcszb6bUg.ttf","500":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcslb-bUg.ttf","600":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcsubibUg.ttf","700":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcs3bmbUg.ttf","800":"http://fonts.gstatic.com/s/changa/v5/2-cl9JNi2YuVOUcswbqbUg.ttf","regular":"http://fonts.gstatic.com/s/changa/v5/2-cm9JNi2YuVOUcUYQ.ttf"},"Sorts Mill Goudy":{"regular":"http://fonts.gstatic.com/s/sortsmillgoudy/v7/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0.ttf","italic":"http://fonts.gstatic.com/s/sortsmillgoudy/v7/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8Eig.ttf"},"Armata":{"regular":"http://fonts.gstatic.com/s/armata/v9/gokvH63_HV5jQ-E9lA.ttf"},"Martel":{"200":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVqekahQ.ttf","300":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVzeoahQ.ttf","600":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVuewahQ.ttf","700":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XV3e0ahQ.ttf","800":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XVwe4ahQ.ttf","900":"http://fonts.gstatic.com/s/martel/v2/PN_yRfK9oXHga0XV5e8ahQ.ttf","regular":"http://fonts.gstatic.com/s/martel/v2/PN_xRfK9oXHga0XtYQ.ttf"},"Bangers":{"regular":"http://fonts.gstatic.com/s/bangers/v10/FeVQS0BTqb0h60ACL5k.ttf"},"Tajawal":{"200":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l_6gLrY.ttf","300":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l5qjLrY.ttf","500":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l8KiLrY.ttf","700":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l4qkLrY.ttf","800":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l5anLrY.ttf","900":"http://fonts.gstatic.com/s/tajawal/v1/Iurf6YBj_oCad4k1l7KmLrY.ttf","regular":"http://fonts.gstatic.com/s/tajawal/v1/Iura6YBj_oCad4k1rzY.ttf"},"Sawarabi Mincho":{"regular":"http://fonts.gstatic.com/s/sawarabimincho/v6/8QIRdiDaitzr7brc8ahpxt6GcIJTLQ.ttf"},"Zilla Slab":{"300":"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYpEY2HQ.ttf","500":"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYskZ2HQ.ttf","600":"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYuUe2HQ.ttf","700":"http://fonts.gstatic.com/s/zillaslab/v3/dFa5ZfeM_74wlPZtksIFYoEf2HQ.ttf","300italic":"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CVHapXg.ttf","regular":"http://fonts.gstatic.com/s/zillaslab/v3/dFa6ZfeM_74wlPZtksIFWj0.ttf","italic":"http://fonts.gstatic.com/s/zillaslab/v3/dFa4ZfeM_74wlPZtksIFaj86-A.ttf","500italic":"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CDHepXg.ttf","600italic":"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CIHCpXg.ttf","700italic":"http://fonts.gstatic.com/s/zillaslab/v3/dFanZfeM_74wlPZtksIFaj8CRHGpXg.ttf"},"Ruda":{"700":"http://fonts.gstatic.com/s/ruda/v9/k3kQo8YQJOpFosM4Td4.ttf","900":"http://fonts.gstatic.com/s/ruda/v9/k3kQo8YQJOpFovs6Td4.ttf","regular":"http://fonts.gstatic.com/s/ruda/v9/k3kfo8YQJOpFmn8.ttf"},"Hind Vadodara":{"300":"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM.ttf","500":"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM.ttf","600":"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM.ttf","700":"http://fonts.gstatic.com/s/hindvadodara/v4/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM.ttf","regular":"http://fonts.gstatic.com/s/hindvadodara/v4/neINzCKvrIcn5pbuuuriV9tTcJU.ttf"},"Neucha":{"regular":"http://fonts.gstatic.com/s/neucha/v9/q5uGsou0JOdh94bvug.ttf"},"Lalezar":{"regular":"http://fonts.gstatic.com/s/lalezar/v4/zrfl0HLVx-HwTP82UaA.ttf"},"El Messiri":{"500":"http://fonts.gstatic.com/s/elmessiri/v4/K2F3fZBRmr9vQ1pHEey6On6jJyo.ttf","600":"http://fonts.gstatic.com/s/elmessiri/v4/K2F3fZBRmr9vQ1pHEey6OlKkJyo.ttf","700":"http://fonts.gstatic.com/s/elmessiri/v4/K2F3fZBRmr9vQ1pHEey6OjalJyo.ttf","regular":"http://fonts.gstatic.com/s/elmessiri/v4/K2F0fZBRmr9vQ1pHEey6Aoo.ttf"},"Patrick Hand":{"regular":"http://fonts.gstatic.com/s/patrickhand/v11/LDI1apSQOAYtSuYWp8ZhfYeMWQ.ttf"},"Unica One":{"regular":"http://fonts.gstatic.com/s/unicaone/v5/DPEuYwWHyAYGVTSmalshdg.ttf"},"Pragati Narrow":{"700":"http://fonts.gstatic.com/s/pragatinarrow/v3/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_.ttf","regular":"http://fonts.gstatic.com/s/pragatinarrow/v3/vm8vdRf0T0bS1ffgsPB7WZ-mD17_.ttf"},"Vidaloka":{"regular":"http://fonts.gstatic.com/s/vidaloka/v10/7cHrv4c3ipenMKlEass8.ttf"},"Do Hyeon":{"regular":"http://fonts.gstatic.com/s/dohyeon/v7/TwMN-I8CRRU2zM86HFE3.ttf"},"Neuton":{"200":"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKAKkfeg.ttf","300":"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKZKofeg.ttf","700":"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKdK0feg.ttf","800":"http://fonts.gstatic.com/s/neuton/v10/UMBQrPtMoH62xUZKaK4feg.ttf","regular":"http://fonts.gstatic.com/s/neuton/v10/UMBTrPtMoH62xUZyyA.ttf","italic":"http://fonts.gstatic.com/s/neuton/v10/UMBRrPtMoH62xUZCyog_.ttf"},"Prata":{"regular":"http://fonts.gstatic.com/s/prata/v8/6xKhdSpbNNCT-vWI.ttf"},"Economica":{"700":"http://fonts.gstatic.com/s/economica/v5/Qw3aZQZaHCLgIWa29ZBTjeckCg.ttf","regular":"http://fonts.gstatic.com/s/economica/v5/Qw3fZQZaHCLgIWa29ZBrMQ.ttf","italic":"http://fonts.gstatic.com/s/economica/v5/Qw3ZZQZaHCLgIWa29ZBbM8IE.ttf","700italic":"http://fonts.gstatic.com/s/economica/v5/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9.ttf"},"Taviraj":{"100":"http://fonts.gstatic.com/s/taviraj/v3/ahcbv8Cj3ylylTXzRIorVw.ttf","200":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRCYKd-k.ttf","300":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzREIJd-k.ttf","500":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRBoId-k.ttf","600":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRDYPd-k.ttf","700":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRFIOd-k.ttf","800":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRE4Nd-k.ttf","900":"http://fonts.gstatic.com/s/taviraj/v3/ahccv8Cj3ylylTXzRGoMd-k.ttf","100italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcdv8Cj3ylylTXzTOwTM8lx.ttf","200italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTn-hRhQ.ttf","300italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT--tRhQ.ttf","regular":"http://fonts.gstatic.com/s/taviraj/v3/ahcZv8Cj3ylylTXzfO4.ttf","italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcbv8Cj3ylylTXzTOwrVw.ttf","500italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTo-pRhQ.ttf","600italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwTj-1RhQ.ttf","700italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT6-xRhQ.ttf","800italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT9-9RhQ.ttf","900italic":"http://fonts.gstatic.com/s/taviraj/v3/ahcev8Cj3ylylTXzTOwT0-5RhQ.ttf"},"Press Start 2P":{"regular":"http://fonts.gstatic.com/s/pressstart2p/v6/e3t4euO8T-267oIAQAu6jDQyK0nS.ttf"},"Yrsa":{"300":"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3af93IQ.ttf","500":"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3f_83IQ.ttf","600":"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3dP73IQ.ttf","700":"http://fonts.gstatic.com/s/yrsa/v3/wlpxgwnQFlxs3bf63IQ.ttf","regular":"http://fonts.gstatic.com/s/yrsa/v3/wlp-gwnQFlxs5Qs.ttf"},"Sanchez":{"regular":"http://fonts.gstatic.com/s/sanchez/v5/Ycm2sZJORluHnXbITm4.ttf","italic":"http://fonts.gstatic.com/s/sanchez/v5/Ycm0sZJORluHnXbIfmxR-A.ttf"},"Carter One":{"regular":"http://fonts.gstatic.com/s/carterone/v9/q5uCsoe5IOB2-pXv9UcNIxQ.ttf"},"Hanalei Fill":{"regular":"http://fonts.gstatic.com/s/hanaleifill/v6/fC1mPYtObGbfyQznIaQzPQiMVw.ttf"},"Audiowide":{"regular":"http://fonts.gstatic.com/s/audiowide/v6/l7gdbjpo0cum0ckerWCtkQ.ttf"},"Adamina":{"regular":"http://fonts.gstatic.com/s/adamina/v11/j8_r6-DH1bjoc-dwu-o.ttf"},"Advent Pro":{"100":"http://fonts.gstatic.com/s/adventpro/v8/V8mCoQfxVT4Dvddr_yOwjVmtLQ.ttf","200":"http://fonts.gstatic.com/s/adventpro/v8/V8mDoQfxVT4Dvddr_yOwjfWMDbY.ttf","300":"http://fonts.gstatic.com/s/adventpro/v8/V8mDoQfxVT4Dvddr_yOwjZGPDbY.ttf","500":"http://fonts.gstatic.com/s/adventpro/v8/V8mDoQfxVT4Dvddr_yOwjcmODbY.ttf","600":"http://fonts.gstatic.com/s/adventpro/v8/V8mDoQfxVT4Dvddr_yOwjeWJDbY.ttf","700":"http://fonts.gstatic.com/s/adventpro/v8/V8mDoQfxVT4Dvddr_yOwjYGIDbY.ttf","regular":"http://fonts.gstatic.com/s/adventpro/v8/V8mAoQfxVT4Dvddr_yOwtT0.ttf"},"Barlow Semi Condensed":{"100":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qv.ttf","200":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAA.ttf","300":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAA.ttf","500":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAA.ttf","600":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAA.ttf","700":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAA.ttf","800":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAA.ttf","900":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAA.ttf","100italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEs.ttf","200italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsg.ttf","300italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsg.ttf","regular":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnfw.ttf","italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqv.ttf","500italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sg.ttf","600italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsg.ttf","700italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsg.ttf","800italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsg.ttf","900italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v3/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sg.ttf"},"Shrikhand":{"regular":"http://fonts.gstatic.com/s/shrikhand/v3/a8IbNovtLWfR7T7bMJwbBA.ttf"},"Alice":{"regular":"http://fonts.gstatic.com/s/alice/v9/OpNCnoEEmtHa6FcJ.ttf"},"Paytone One":{"regular":"http://fonts.gstatic.com/s/paytoneone/v10/0nksC9P7MfYHj2oFtYm2CiTq.ttf"},"Architects Daughter":{"regular":"http://fonts.gstatic.com/s/architectsdaughter/v8/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY4.ttf"},"Enriqueta":{"700":"http://fonts.gstatic.com/s/enriqueta/v6/gokpH6L7AUFrRvV44HVr92-HmA.ttf","regular":"http://fonts.gstatic.com/s/enriqueta/v6/goksH6L7AUFrRvV44HVTSw.ttf"},"Frank Ruhl Libre":{"300":"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJA.ttf","500":"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJA.ttf","700":"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJA.ttf","900":"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJA.ttf","regular":"http://fonts.gstatic.com/s/frankruhllibre/v3/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7c.ttf"},"Bad Script":{"regular":"http://fonts.gstatic.com/s/badscript/v6/6NUT8F6PJgbFWQn47_x7lOw.ttf"},"Yellowtail":{"regular":"http://fonts.gstatic.com/s/yellowtail/v8/OZpGg_pnoDtINPfRIlLotlw.ttf"},"PT Serif Caption":{"regular":"http://fonts.gstatic.com/s/ptserifcaption/v9/ieVl2ZhbGCW-JoW6S34pSDpqYKU059U.ttf","italic":"http://fonts.gstatic.com/s/ptserifcaption/v9/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CA.ttf"},"Montserrat Alternates":{"100":"http://fonts.gstatic.com/s/montserratalternates/v9/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfV.ttf","200":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1AA.ttf","300":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1AA.ttf","500":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1AA.ttf","600":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1AA.ttf","700":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1AA.ttf","800":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1AA.ttf","900":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1AA.ttf","100italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJw.ttf","200italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD.ttf","300italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD.ttf","regular":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7A.ttf","italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfV.ttf","500italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD.ttf","600italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD.ttf","700italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD.ttf","800italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD.ttf","900italic":"http://fonts.gstatic.com/s/montserratalternates/v9/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD.ttf"},"Amaranth":{"700":"http://fonts.gstatic.com/s/amaranth/v8/KtkpALODe433f0j1zMF-OPWi.ttf","regular":"http://fonts.gstatic.com/s/amaranth/v8/KtkuALODe433f0j1zPnC.ttf","italic":"http://fonts.gstatic.com/s/amaranth/v8/KtkoALODe433f0j1zMnAHdU.ttf","700italic":"http://fonts.gstatic.com/s/amaranth/v8/KtkrALODe433f0j1zMnAJWmn42Q.ttf"},"Gentium Basic":{"700":"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzgHAw9aB_JD2VGQVR80We3JLasrTo.ttf","regular":"http://fonts.gstatic.com/s/gentiumbasic/v9/Wnz9HAw9aB_JD2VGQVR80We3HAo.ttf","italic":"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzjHAw9aB_JD2VGQVR80We3LAiJjQ.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbasic/v9/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaA.ttf"},"PT Mono":{"regular":"http://fonts.gstatic.com/s/ptmono/v5/9oRONYoBnWILk-9ArCg.ttf"},"Gentium Book Basic":{"700":"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfyw.ttf","regular":"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIVw.ttf","italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v8/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc.ttf"},"Khula":{"300":"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-ljCvU.ttf","600":"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G_RiivU.ttf","700":"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-1iyvU.ttf","800":"http://fonts.gstatic.com/s/khula/v3/OpNPnoEOns3V7G-piCvU.ttf","regular":"http://fonts.gstatic.com/s/khula/v3/OpNCnoEOns3V7FcJ.ttf"},"Antic Slab":{"regular":"http://fonts.gstatic.com/s/anticslab/v6/bWt97fPFfRzkCa9Jlp6IWcI.ttf"},"Prosto One":{"regular":"http://fonts.gstatic.com/s/prostoone/v6/OpNJno4VhNfK-RgpwWWxpio.ttf"},"Shadows Into Light Two":{"regular":"http://fonts.gstatic.com/s/shadowsintolighttwo/v5/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAs.ttf"},"Arbutus Slab":{"regular":"http://fonts.gstatic.com/s/arbutusslab/v6/oY1Z8e7OuLXkJGbXtr5ba7ZVaw.ttf"},"Glegoo":{"700":"http://fonts.gstatic.com/s/glegoo/v7/_Xmu-HQyrTKWaw2xN4a9CA.ttf","regular":"http://fonts.gstatic.com/s/glegoo/v7/_Xmt-HQyrTKWaw2Jiw.ttf"},"Sarala":{"700":"http://fonts.gstatic.com/s/sarala/v2/uK_x4riEZv4o1w9ptjI3Og.ttf","regular":"http://fonts.gstatic.com/s/sarala/v2/uK_y4riEZv4o1w9RCg.ttf"},"Jura":{"300":"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVW9rdCw.ttf","500":"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVTdqdCw.ttf","600":"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVRttdCw.ttf","700":"http://fonts.gstatic.com/s/jura/v9/z7NUdRfiaC4VVX9sdCw.ttf","regular":"http://fonts.gstatic.com/s/jura/v9/z7NbdRfiaC4VbcM.ttf"},"Grand Hotel":{"regular":"http://fonts.gstatic.com/s/grandhotel/v5/7Au7p_IgjDKdCRWuR1azpmQN.ttf"},"Julius Sans One":{"regular":"http://fonts.gstatic.com/s/juliussansone/v6/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xQ.ttf"},"Kreon":{"300":"http://fonts.gstatic.com/s/kreon/v12/t5tjIRIUKY-TFH1sUU23.ttf","700":"http://fonts.gstatic.com/s/kreon/v12/t5tjIRIUKY-TFH18Vk23.ttf","regular":"http://fonts.gstatic.com/s/kreon/v12/t5tuIRIUKY-TFEXA.ttf"},"Playball":{"regular":"http://fonts.gstatic.com/s/playball/v7/TK3gWksYAxQ7jbsKcj8D.ttf"},"Scada":{"700":"http://fonts.gstatic.com/s/scada/v6/RLp8K5Pv5qumeVrU6BEg.ttf","regular":"http://fonts.gstatic.com/s/scada/v6/RLpxK5Pv5qumeWJo.ttf","italic":"http://fonts.gstatic.com/s/scada/v6/RLp_K5Pv5qumeVJqzTE.ttf","700italic":"http://fonts.gstatic.com/s/scada/v6/RLp6K5Pv5qumeVJq9Y0lT1M.ttf"},"Oleo Script":{"700":"http://fonts.gstatic.com/s/oleoscript/v6/raxkHieDvtMOe0iICsUccCDmnmrY.ttf","regular":"http://fonts.gstatic.com/s/oleoscript/v6/rax5HieDvtMOe0iICsUccBha.ttf"},"Rock Salt":{"regular":"http://fonts.gstatic.com/s/rocksalt/v8/MwQ0bhv11fWD6QsAVOZbsA.ttf"},"Covered By Your Grace":{"regular":"http://fonts.gstatic.com/s/coveredbyyourgrace/v7/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0Fg.ttf"},"Ubuntu Mono":{"700":"http://fonts.gstatic.com/s/ubuntumono/v7/KFO-CneDtsqEr0keqCMhbC-BL-Hy.ttf","regular":"http://fonts.gstatic.com/s/ubuntumono/v7/KFOjCneDtsqEr0keqCMhbBc9.ttf","italic":"http://fonts.gstatic.com/s/ubuntumono/v7/KFOhCneDtsqEr0keqCMhbCc_CsE.ttf","700italic":"http://fonts.gstatic.com/s/ubuntumono/v7/KFO8CneDtsqEr0keqCMhbCc_Mn33tYg.ttf"},"Damion":{"regular":"http://fonts.gstatic.com/s/damion/v7/hv-XlzJ3KEUe_YZUbQ.ttf"},"Pridi":{"200":"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1SiE0j.ttf","300":"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc02i00j.ttf","500":"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1uik0j.ttf","600":"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc1CjU0j.ttf","700":"http://fonts.gstatic.com/s/pridi/v3/2sDdZG5JnZLfkc0mjE0j.ttf","regular":"http://fonts.gstatic.com/s/pridi/v3/2sDQZG5JnZLfkfWa.ttf"},"Actor":{"regular":"http://fonts.gstatic.com/s/actor/v7/wEOzEBbCkc5cO3ek.ttf"},"Fugaz One":{"regular":"http://fonts.gstatic.com/s/fugazone/v7/rax_HiWKp9EAITukFslMBA.ttf"},"Karma":{"300":"http://fonts.gstatic.com/s/karma/v8/va9F4kzAzMZRGLjDY8Z_.ttf","500":"http://fonts.gstatic.com/s/karma/v8/va9F4kzAzMZRGLibYsZ_.ttf","600":"http://fonts.gstatic.com/s/karma/v8/va9F4kzAzMZRGLi3ZcZ_.ttf","700":"http://fonts.gstatic.com/s/karma/v8/va9F4kzAzMZRGLjTZMZ_.ttf","regular":"http://fonts.gstatic.com/s/karma/v8/va9I4kzAzMZRGIBv.ttf"},"Sintony":{"700":"http://fonts.gstatic.com/s/sintony/v5/XoHj2YDqR7-98cVUGYgIn9c.ttf","regular":"http://fonts.gstatic.com/s/sintony/v5/XoHm2YDqR7-98cVUITQ.ttf"},"Average":{"regular":"http://fonts.gstatic.com/s/average/v6/fC1hPYBHe23MxA7rIeI.ttf"},"Alegreya Sans SC":{"100":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g.ttf","300":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iQ.ttf","500":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iQ.ttf","700":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iQ.ttf","800":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iQ.ttf","900":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iQ.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRB.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNQ.ttf","regular":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk4.ttf","italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNQ.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNQ.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNQ.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasanssc/v7/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNQ.ttf"},"Electrolize":{"regular":"http://fonts.gstatic.com/s/electrolize/v6/cIf5Ma1dtE0zSiGSiED7AUEG.ttf"},"Homemade Apple":{"regular":"http://fonts.gstatic.com/s/homemadeapple/v8/Qw3EZQFXECDrI2q789EKQZJob3x9.ttf"},"Saira Extra Condensed":{"100":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx.ttf","200":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3A.ttf","300":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3A.ttf","500":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3A.ttf","600":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3A.ttf","700":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3A.ttf","800":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3A.ttf","900":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3A.ttf","regular":"http://fonts.gstatic.com/s/sairaextracondensed/v3/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT7w.ttf"},"Marmelad":{"regular":"http://fonts.gstatic.com/s/marmelad/v7/Qw3eZQdSHj_jK2e-8tFL.ttf"},"Michroma":{"regular":"http://fonts.gstatic.com/s/michroma/v8/PN_zRfy9qWD8fEagAMg6.ttf"},"Lusitana":{"700":"http://fonts.gstatic.com/s/lusitana/v5/CSR74z9ShvucWzsMKyDmaccq.ttf","regular":"http://fonts.gstatic.com/s/lusitana/v5/CSR84z9ShvucWzsMKxha.ttf"},"Baloo":{"regular":"http://fonts.gstatic.com/s/baloo/v3/6xKhdSpJJ92I9PWI.ttf"},"Mitr":{"200":"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8fMZFJA.ttf","300":"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8ZcaFJA.ttf","500":"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8c8bFJA.ttf","600":"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8eMcFJA.ttf","700":"http://fonts.gstatic.com/s/mitr/v3/pxiEypw5ucZF8YcdFJA.ttf","regular":"http://fonts.gstatic.com/s/mitr/v3/pxiLypw5ucZFyTs.ttf"},"Jaldi":{"700":"http://fonts.gstatic.com/s/jaldi/v4/or3hQ67z0_CI33voSbT3.ttf","regular":"http://fonts.gstatic.com/s/jaldi/v4/or3sQ67z0_CI30NU.ttf"},"Bungee":{"regular":"http://fonts.gstatic.com/s/bungee/v3/N0bU2SZBIuF2PU_ECg.ttf"},"Allura":{"regular":"http://fonts.gstatic.com/s/allura/v6/9oRPNYsQpS4zjuAPjA.ttf"},"Parisienne":{"regular":"http://fonts.gstatic.com/s/parisienne/v5/E21i_d3kivvAkxhLEVZpcy8.ttf"},"Oranienbaum":{"regular":"http://fonts.gstatic.com/s/oranienbaum/v6/OZpHg_txtzZKMuXLIVrx-3zn.ttf"},"Nothing You Could Do":{"regular":"http://fonts.gstatic.com/s/nothingyoucoulddo/v7/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJ.ttf"},"Allerta Stencil":{"regular":"http://fonts.gstatic.com/s/allertastencil/v8/HTx0L209KT-LmIE9N7OR6eiycOeF-w.ttf"},"Varela":{"regular":"http://fonts.gstatic.com/s/varela/v8/DPEtYwqExx0AWHXJBA.ttf"},"Anaheim":{"regular":"http://fonts.gstatic.com/s/anaheim/v5/8vII7w042Wp87g4G0UQ.ttf"},"Unna":{"700":"http://fonts.gstatic.com/s/unna/v11/AYCLpXzofN0NMiQusGk.ttf","regular":"http://fonts.gstatic.com/s/unna/v11/AYCEpXzofN0NCpg.ttf","italic":"http://fonts.gstatic.com/s/unna/v11/AYCKpXzofN0NOpoLkA.ttf","700italic":"http://fonts.gstatic.com/s/unna/v11/AYCJpXzofN0NOpozLGzjQA.ttf"},"Chewy":{"regular":"http://fonts.gstatic.com/s/chewy/v9/uK_94ruUb-k-wk5x.ttf"},"Forum":{"regular":"http://fonts.gstatic.com/s/forum/v8/6aey4Ky-Vb8Ew_IW.ttf"},"Happy Monkey":{"regular":"http://fonts.gstatic.com/s/happymonkey/v6/K2F2fZZcl-9SXwl5F_C4R_OABw.ttf"},"Reenie Beanie":{"regular":"http://fonts.gstatic.com/s/reeniebeanie/v8/z7NSdR76eDkaJKZJFkkjuvWxbP0.ttf"},"Molengo":{"regular":"http://fonts.gstatic.com/s/molengo/v8/I_uuMpWeuBzZNBtQbbQ.ttf"},"Cormorant":{"300":"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiRLmYgg.ttf","500":"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiHLiYgg.ttf","600":"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiML-Ygg.ttf","700":"http://fonts.gstatic.com/s/cormorant/v6/H4cgBXOCl9bbnla_nHIiVL6Ygg.ttf","300italic":"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qMUgIa2.ttf","regular":"http://fonts.gstatic.com/s/cormorant/v6/H4clBXOCl9bbnla_nHIa6A.ttf","italic":"http://fonts.gstatic.com/s/cormorant/v6/H4cjBXOCl9bbnla_nHIq6pu4.ttf","500italic":"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qNMgYa2.ttf","600italic":"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qNghoa2.ttf","700italic":"http://fonts.gstatic.com/s/cormorant/v6/H4c-BXOCl9bbnla_nHIq6qMEh4a2.ttf"},"Sawarabi Gothic":{"regular":"http://fonts.gstatic.com/s/sawarabigothic/v4/x3d4ckfVaqqa-BEj-I9mE65u3k3NBQ.ttf"},"Cantata One":{"regular":"http://fonts.gstatic.com/s/cantataone/v7/PlI5Fl60Nb5obNzNe2jslVxE.ttf"},"Hanuman":{"700":"http://fonts.gstatic.com/s/hanuman/v11/VuJ0dNvD15HhpJJBQBr4HIk.ttf","regular":"http://fonts.gstatic.com/s/hanuman/v11/VuJxdNvD15HhpJJBeKY.ttf"},"Black Ops One":{"regular":"http://fonts.gstatic.com/s/blackopsone/v9/qWcsB6-ypo7xBdr6Xshe96H3WDw.ttf"},"Archivo":{"500":"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdSrLC0E.ttf","600":"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdQbMC0E.ttf","700":"http://fonts.gstatic.com/s/archivo/v3/k3kVo8UDI-1M0wlSdWLNC0E.ttf","regular":"http://fonts.gstatic.com/s/archivo/v3/k3kQo8UDI-1M0wlSTd4.ttf","italic":"http://fonts.gstatic.com/s/archivo/v3/k3kSo8UDI-1M0wlSfdzoKw.ttf","500italic":"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQ30LhKQ.ttf","600italic":"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQ80XhKQ.ttf","700italic":"http://fonts.gstatic.com/s/archivo/v3/k3kXo8UDI-1M0wlSfdzQl0ThKQ.ttf"},"Bevan":{"regular":"http://fonts.gstatic.com/s/bevan/v9/4iCj6KZ0a9NXjF8a.ttf"},"Saira":{"100":"http://fonts.gstatic.com/s/saira/v2/mem-Ya2wxmKQyNFETZY.ttf","200":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNHobLYV.ttf","300":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGMb7YV.ttf","500":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNHUbrYV.ttf","600":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNH4abYV.ttf","700":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGcaLYV.ttf","800":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGAa7YV.ttf","900":"http://fonts.gstatic.com/s/saira/v2/mem9Ya2wxmKQyNGkarYV.ttf","regular":"http://fonts.gstatic.com/s/saira/v2/memwYa2wxmKQyOkg.ttf"},"Ovo":{"regular":"http://fonts.gstatic.com/s/ovo/v9/yYLl0h7Wyfzjyw.ttf"},"Alex Brush":{"regular":"http://fonts.gstatic.com/s/alexbrush/v9/SZc83FzrJKuqFbwMKk6EtUI.ttf"},"Nanum Gothic Coding":{"700":"http://fonts.gstatic.com/s/nanumgothiccoding/v10/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsU.ttf","regular":"http://fonts.gstatic.com/s/nanumgothiccoding/v10/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6Q.ttf"},"Coustard":{"900":"http://fonts.gstatic.com/s/coustard/v8/3XFuErgg3YsZ5fqUU-2LkEHm.ttf","regular":"http://fonts.gstatic.com/s/coustard/v8/3XFpErgg3YsZ5fqUU9UP.ttf"},"Rochester":{"regular":"http://fonts.gstatic.com/s/rochester/v8/6ae-4KCqVa4Zy6Fif-Uy3w.ttf"},"VT323":{"regular":"http://fonts.gstatic.com/s/vt323/v9/pxiKyp0ihIEF2hsY.ttf"},"Pangolin":{"regular":"http://fonts.gstatic.com/s/pangolin/v3/cY9GfjGcW0FPpi-tWPfK.ttf"},"Scheherazade":{"700":"http://fonts.gstatic.com/s/scheherazade/v15/YA9Lr0yF4ETZN60keViq1kQYC7yMjg.ttf","regular":"http://fonts.gstatic.com/s/scheherazade/v15/YA9Ur0yF4ETZN60keViq1kQgtw.ttf"},"Niconne":{"regular":"http://fonts.gstatic.com/s/niconne/v7/w8gaH2QvRug1_rTfrQs.ttf"},"Spinnaker":{"regular":"http://fonts.gstatic.com/s/spinnaker/v9/w8gYH2oyX-I0_rvR6Hmn3A.ttf"},"Nobile":{"500":"http://fonts.gstatic.com/s/nobile/v9/m8JQjflSeaOVl1iOqo7zcA.ttf","700":"http://fonts.gstatic.com/s/nobile/v9/m8JQjflSeaOVl1iO4ojzcA.ttf","regular":"http://fonts.gstatic.com/s/nobile/v9/m8JTjflSeaOVl1i2Xg.ttf","italic":"http://fonts.gstatic.com/s/nobile/v9/m8JRjflSeaOVl1iGXK3T.ttf","500italic":"http://fonts.gstatic.com/s/nobile/v9/m8JWjflSeaOVl1iGXJUnc5RF.ttf","700italic":"http://fonts.gstatic.com/s/nobile/v9/m8JWjflSeaOVl1iGXJVvdZRF.ttf"},"Rambla":{"700":"http://fonts.gstatic.com/s/rambla/v5/snfos0ip98hx6mrMn50qPg.ttf","regular":"http://fonts.gstatic.com/s/rambla/v5/snfrs0ip98hx6mr0Iw.ttf","italic":"http://fonts.gstatic.com/s/rambla/v5/snfps0ip98hx6mrEIbgK.ttf","700italic":"http://fonts.gstatic.com/s/rambla/v5/snfus0ip98hx6mrEIYC2O_l8.ttf"},"Allerta":{"regular":"http://fonts.gstatic.com/s/allerta/v8/TwMO-IAHRlkbx940UnE.ttf"},"Pinyon Script":{"regular":"http://fonts.gstatic.com/s/pinyonscript/v7/6xKpdSJbL9-e9LuoeQiDRQR8aOI.ttf"},"Fredericka the Great":{"regular":"http://fonts.gstatic.com/s/frederickathegreat/v6/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Sk.ttf"},"Leckerli One":{"regular":"http://fonts.gstatic.com/s/leckerlione/v8/V8mCoQH8VCsNttEnxnGQ-1itLQ.ttf"},"Quantico":{"700":"http://fonts.gstatic.com/s/quantico/v7/rax5HiSdp9cPL3KIF7TQARha.ttf","regular":"http://fonts.gstatic.com/s/quantico/v7/rax-HiSdp9cPL3KIF4xs.ttf","italic":"http://fonts.gstatic.com/s/quantico/v7/rax4HiSdp9cPL3KIF7xuJDg.ttf","700italic":"http://fonts.gstatic.com/s/quantico/v7/rax7HiSdp9cPL3KIF7xuHIRfu0o.ttf"},"Saira Semi Condensed":{"100":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM.ttf","200":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMW.ttf","300":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMW.ttf","500":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MW.ttf","600":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMW.ttf","700":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMW.ttf","800":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMW.ttf","900":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MW.ttf","regular":"http://fonts.gstatic.com/s/sairasemicondensed/v3/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8L.ttf"},"Nanum Pen Script":{"regular":"http://fonts.gstatic.com/s/nanumpenscript/v11/daaDSSYiLGqEal3MvdA_FOL_3FkN2z4.ttf"},"Syncopate":{"700":"http://fonts.gstatic.com/s/syncopate/v9/pe0pMIuPIYBCpEV5eFdKvtKaAw.ttf","regular":"http://fonts.gstatic.com/s/syncopate/v9/pe0sMIuPIYBCpEV5eFdyAg.ttf"},"Reem Kufi":{"regular":"http://fonts.gstatic.com/s/reemkufi/v5/2sDcZGJLip7W2J7v7wQDbw.ttf"},"Rancho":{"regular":"http://fonts.gstatic.com/s/rancho/v8/46kulbzmXjLaqZRlbQ.ttf"},"Space Mono":{"700":"http://fonts.gstatic.com/s/spacemono/v3/i7dMIFZifjKcF5UAWdDRaPpZYFI.ttf","regular":"http://fonts.gstatic.com/s/spacemono/v3/i7dPIFZifjKcF5UAWdDRUEY.ttf","italic":"http://fonts.gstatic.com/s/spacemono/v3/i7dNIFZifjKcF5UAWdDRYER8QA.ttf","700italic":"http://fonts.gstatic.com/s/spacemono/v3/i7dSIFZifjKcF5UAWdDRYERE_FeaGw.ttf"},"Lustria":{"regular":"http://fonts.gstatic.com/s/lustria/v5/9oRONYodvDEyjuhOrCg.ttf"},"Rasa":{"300":"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdg52sgA.ttf","500":"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdlZ3sgA.ttf","600":"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdnpwsgA.ttf","700":"http://fonts.gstatic.com/s/rasa/v3/xn7gYHIn1mWmdh5xsgA.ttf","regular":"http://fonts.gstatic.com/s/rasa/v3/xn7vYHIn1mWmTqI.ttf"},"Italianno":{"regular":"http://fonts.gstatic.com/s/italianno/v7/dg4n_p3sv6gCJkwzT6Rnjw.ttf"},"Cabin Sketch":{"700":"http://fonts.gstatic.com/s/cabinsketch/v11/QGY2z_kZZAGCONcK2A4bGOj0I_1o4Q.ttf","regular":"http://fonts.gstatic.com/s/cabinsketch/v11/QGYpz_kZZAGCONcK2A4bGOjMnw.ttf"},"Marcellus":{"regular":"http://fonts.gstatic.com/s/marcellus/v5/wEO_EBrOk8hQLDvIAF8FUQ.ttf"},"Arsenal":{"700":"http://fonts.gstatic.com/s/arsenal/v2/wXKuE3kQtZQ4pF3D7-P5JeQ.ttf","regular":"http://fonts.gstatic.com/s/arsenal/v2/wXKrE3kQtZQ4pF3D118.ttf","italic":"http://fonts.gstatic.com/s/arsenal/v2/wXKpE3kQtZQ4pF3D513cBQ.ttf","700italic":"http://fonts.gstatic.com/s/arsenal/v2/wXKsE3kQtZQ4pF3D513kueEKnQ.ttf"},"Aldrich":{"regular":"http://fonts.gstatic.com/s/aldrich/v8/MCoTzAn-1s3IGyJMZaA.ttf"},"Noto Sans SC":{"100":"http://fonts.gstatic.com/s/notosanssc/v4/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf","300":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf","500":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf","700":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf","900":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf","regular":"http://fonts.gstatic.com/s/notosanssc/v4/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf"},"Mr Dafoe":{"regular":"http://fonts.gstatic.com/s/mrdafoe/v6/lJwE-pIzkS5NXuMMrGiq.ttf"},"IBM Plex Serif":{"100":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizBREVNn1dOx-zrZ2X3pZvkTi182zI.ttf","200":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIz.ttf","300":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIz.ttf","500":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIz.ttf","600":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIz.ttf","700":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIz.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTiw.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq14.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq14.ttf","regular":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizDREVNn1dOx-zrZ2X3pZvkThUY.ttf","italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zI.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq14.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q14.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexserif/v4/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q14.ttf"},"Lilita One":{"regular":"http://fonts.gstatic.com/s/lilitaone/v5/i7dPIFZ9Zz-WBtRtedDbUEY.ttf"},"Magra":{"700":"http://fonts.gstatic.com/s/magra/v6/uK_w4ruaZus72nbNDxcX.ttf","regular":"http://fonts.gstatic.com/s/magra/v6/uK_94ruaZus72k5x.ttf"},"Kameron":{"700":"http://fonts.gstatic.com/s/kameron/v8/vm8zdR7vXErQxuzniAIfC-0.ttf","regular":"http://fonts.gstatic.com/s/kameron/v8/vm82dR7vXErQxuznsL4.ttf"},"Caveat Brush":{"regular":"http://fonts.gstatic.com/s/caveatbrush/v3/EYq0maZfwr9S9-ETZc3fKXtMWw.ttf"},"Coda":{"800":"http://fonts.gstatic.com/s/coda/v13/SLXIc1jY5nQ8HeIgTp4.ttf","regular":"http://fonts.gstatic.com/s/coda/v13/SLXHc1jY5nQ8JUI.ttf"},"Alef":{"700":"http://fonts.gstatic.com/s/alef/v9/FeVQS0NQpLYglo50L5k.ttf","regular":"http://fonts.gstatic.com/s/alef/v9/FeVfS0NQpLYgrjI.ttf"},"Overlock":{"700":"http://fonts.gstatic.com/s/overlock/v7/Z9XSDmdMWRiN1_T9Z7xizcmM.ttf","900":"http://fonts.gstatic.com/s/overlock/v7/Z9XSDmdMWRiN1_T9Z7xaz8mM.ttf","regular":"http://fonts.gstatic.com/s/overlock/v7/Z9XVDmdMWRiN1_T9Z4Te.ttf","italic":"http://fonts.gstatic.com/s/overlock/v7/Z9XTDmdMWRiN1_T9Z7Tc6Ok.ttf","700italic":"http://fonts.gstatic.com/s/overlock/v7/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrk.ttf","900italic":"http://fonts.gstatic.com/s/overlock/v7/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrk.ttf"},"Fauna One":{"regular":"http://fonts.gstatic.com/s/faunaone/v5/wlpzgwTPBVpjpCuwkuEx2Q.ttf"},"Gothic A1":{"100":"http://fonts.gstatic.com/s/gothica1/v4/CSR74z5ZnPydRjlCCwlCCMcq.ttf","200":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlCpOYKSA.ttf","300":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlCwOUKSA.ttf","500":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlCmOQKSA.ttf","600":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlCtOMKSA.ttf","700":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlC0OIKSA.ttf","800":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlCzOEKSA.ttf","900":"http://fonts.gstatic.com/s/gothica1/v4/CSR44z5ZnPydRjlCCwlC6OAKSA.ttf","regular":"http://fonts.gstatic.com/s/gothica1/v4/CSR94z5ZnPydRjlCCwl6bA.ttf"},"Itim":{"regular":"http://fonts.gstatic.com/s/itim/v2/0nknC9ziJOYewAQ.ttf"},"Palanquin":{"100":"http://fonts.gstatic.com/s/palanquin/v3/9XUhlJ90n1fBFg7ceXwUEltI.ttf","200":"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUvnpoxA.ttf","300":"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwU2nloxA.ttf","500":"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUgnhoxA.ttf","600":"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUrn9oxA.ttf","700":"http://fonts.gstatic.com/s/palanquin/v3/9XUilJ90n1fBFg7ceXwUyn5oxA.ttf","regular":"http://fonts.gstatic.com/s/palanquin/v3/9XUnlJ90n1fBFg7ceXwsdg.ttf"},"Biryani":{"200":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddYQyGTA.ttf","300":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddeAxGTA.ttf","600":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddZQ3GTA.ttf","700":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84YddfA2GTA.ttf","800":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84Yddew1GTA.ttf","900":"http://fonts.gstatic.com/s/biryani/v3/hv-TlzNxIFoO84Yddcg0GTA.ttf","regular":"http://fonts.gstatic.com/s/biryani/v3/hv-WlzNxIFoO84YdTUw.ttf"},"Basic":{"regular":"http://fonts.gstatic.com/s/basic/v7/xfu_0WLxV2_XKQN3.ttf"},"Antic":{"regular":"http://fonts.gstatic.com/s/antic/v9/TuGfUVB8XY5DRaZL.ttf"},"Days One":{"regular":"http://fonts.gstatic.com/s/daysone/v7/mem9YaCnxnKRiYZOCLYV.ttf"},"Carrois Gothic":{"regular":"http://fonts.gstatic.com/s/carroisgothic/v8/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD.ttf"},"Squada One":{"regular":"http://fonts.gstatic.com/s/squadaone/v6/BCasqZ8XsOrx4mcOk6MtWaA.ttf"},"Coming Soon":{"regular":"http://fonts.gstatic.com/s/comingsoon/v8/qWcuB6mzpYL7AJ2VfdQR1u-S.ttf"},"Radley":{"regular":"http://fonts.gstatic.com/s/radley/v12/LYjDdGzinEIjCN19oA.ttf","italic":"http://fonts.gstatic.com/s/radley/v12/LYjBdGzinEIjCN1NogNA.ttf"},"Changa One":{"regular":"http://fonts.gstatic.com/s/changaone/v10/xfu00W3wXn3QLUJXhzq46AY.ttf","italic":"http://fonts.gstatic.com/s/changaone/v10/xfu20W3wXn3QLUJXhzq42ATivA.ttf"},"Share":{"700":"http://fonts.gstatic.com/s/share/v8/i7dJIFliZjKNF63xM56-.ttf","regular":"http://fonts.gstatic.com/s/share/v8/i7dEIFliZjKNF5VN.ttf","italic":"http://fonts.gstatic.com/s/share/v8/i7dKIFliZjKNF6VPFr4.ttf","700italic":"http://fonts.gstatic.com/s/share/v8/i7dPIFliZjKNF6VPLgK7UEY.ttf"},"Slabo 13px":{"regular":"http://fonts.gstatic.com/s/slabo13px/v5/11hEGp_azEvXZUdSBzzRcKc.ttf"},"Contrail One":{"regular":"http://fonts.gstatic.com/s/contrailone/v7/eLGbP-j_JA-kG0_Zo51noafdZQ.ttf"},"Bowlby One SC":{"regular":"http://fonts.gstatic.com/s/bowlbyonesc/v9/DtVlJxerQqQm37tzN3wMug9Pzgg.ttf"},"Carme":{"regular":"http://fonts.gstatic.com/s/carme/v8/ptRHTiWdbvZIDOjG.ttf"},"Berkshire Swash":{"regular":"http://fonts.gstatic.com/s/berkshireswash/v6/ptRRTi-cavZOGqCvnNJDl5m5XmNPrQ.ttf"},"Cousine":{"700":"http://fonts.gstatic.com/s/cousine/v12/d6lNkaiiRdih4SpP9Z8K6T4.ttf","regular":"http://fonts.gstatic.com/s/cousine/v12/d6lIkaiiRdih4SpPzSM.ttf","italic":"http://fonts.gstatic.com/s/cousine/v12/d6lKkaiiRdih4SpP_SEvyQ.ttf","700italic":"http://fonts.gstatic.com/s/cousine/v12/d6lPkaiiRdih4SpP_SEXdTvM1w.ttf"},"Sue Ellen Francisco":{"regular":"http://fonts.gstatic.com/s/sueellenfrancisco/v8/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9roo.ttf"},"Just Another Hand":{"regular":"http://fonts.gstatic.com/s/justanotherhand/v9/845CNN4-AJyIGvIou-6yJKyptyOpOcr_.ttf"},"Titan One":{"regular":"http://fonts.gstatic.com/s/titanone/v5/mFTzWbsGxbbS_J5cQcjykw.ttf"},"Bungee Inline":{"regular":"http://fonts.gstatic.com/s/bungeeinline/v3/Gg8zN58UcgnlCweMrih332VuDGI.ttf"},"Yeseva One":{"regular":"http://fonts.gstatic.com/s/yesevaone/v12/OpNJno4ck8vc-xYpwWWxpio.ttf"},"Mukta Vaani":{"200":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGXNV8BD.ttf","300":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGWpVMBD.ttf","500":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGXxVcBD.ttf","600":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGXdUsBD.ttf","700":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGW5U8BD.ttf","800":"http://fonts.gstatic.com/s/muktavaani/v5/3JnkSD_-ynaxmxnEfVHPIGWlUMBD.ttf","regular":"http://fonts.gstatic.com/s/muktavaani/v5/3Jn5SD_-ynaxmxnEfVHPIF0F.ttf"},"Caudex":{"700":"http://fonts.gstatic.com/s/caudex/v7/esDT311QOP6BJUrwdteklQ.ttf","regular":"http://fonts.gstatic.com/s/caudex/v7/esDQ311QOP6BJUrIyg.ttf","italic":"http://fonts.gstatic.com/s/caudex/v7/esDS311QOP6BJUr4yPKE.ttf","700italic":"http://fonts.gstatic.com/s/caudex/v7/esDV311QOP6BJUr4yMo4kJ8G.ttf"},"Candal":{"regular":"http://fonts.gstatic.com/s/candal/v7/XoHn2YH6T7-t_8cNAQ.ttf"},"Aclonica":{"regular":"http://fonts.gstatic.com/s/aclonica/v8/K2FyfZJVlfNNSEBXGb7T.ttf"},"Lateef":{"regular":"http://fonts.gstatic.com/s/lateef/v13/hESw6XVnNCxEvkbMpg.ttf"},"Abhaya Libre":{"500":"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYj2ryqg.ttf","600":"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYo23yqg.ttf","700":"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEYx2zyqg.ttf","800":"http://fonts.gstatic.com/s/abhayalibre/v3/e3t5euGtX-Co5MNzeAOqinEY22_yqg.ttf","regular":"http://fonts.gstatic.com/s/abhayalibre/v3/e3tmeuGtX-Co5MNzeAOqinEgew.ttf"},"Buenard":{"700":"http://fonts.gstatic.com/s/buenard/v9/OD5GuM6Cyma8FnnsB4vSjGA.ttf","regular":"http://fonts.gstatic.com/s/buenard/v9/OD5DuM6Cyma8FnnsPzc.ttf"},"Spectral":{"200":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9v2s13G.ttf","300":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uSsF3G.ttf","500":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9vKsV3G.ttf","600":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9vmtl3G.ttf","700":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uCt13G.ttf","800":"http://fonts.gstatic.com/s/spectral/v4/rnCs-xNNww_2s0amA9uetF3G.ttf","200italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qrXHafM.ttf","300italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qtHEafM.ttf","regular":"http://fonts.gstatic.com/s/spectral/v4/rnCr-xNNww_2s0amA-M-.ttf","italic":"http://fonts.gstatic.com/s/spectral/v4/rnCt-xNNww_2s0amA9M8kn0.ttf","500italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qonFafM.ttf","600italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qqXCafM.ttf","700italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qsHDafM.ttf","800italic":"http://fonts.gstatic.com/s/spectral/v4/rnCu-xNNww_2s0amA9M8qt3AafM.ttf"},"IM Fell Double Pica":{"regular":"http://fonts.gstatic.com/s/imfelldoublepica/v7/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0Q.ttf","italic":"http://fonts.gstatic.com/s/imfelldoublepica/v7/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VA.ttf"},"Martel Sans":{"200":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hAX5suH.ttf","300":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBz5cuH.ttf","600":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hAH48uH.ttf","700":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBj4suH.ttf","800":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hB_4cuH.ttf","900":"http://fonts.gstatic.com/s/martelsans/v4/h0GxssGi7VdzDgKjM-4d8hBb4MuH.ttf","regular":"http://fonts.gstatic.com/s/martelsans/v4/h0GsssGi7VdzDgKjM-4d8ijf.ttf"},"GFS Didot":{"regular":"http://fonts.gstatic.com/s/gfsdidot/v7/Jqzh5TybZ9vZMWFssvwiFw.ttf"},"Rufina":{"700":"http://fonts.gstatic.com/s/rufina/v5/Yq6W-LyURyLy-aKKHztAvA.ttf","regular":"http://fonts.gstatic.com/s/rufina/v5/Yq6V-LyURyLy-aKyow.ttf"},"Six Caps":{"regular":"http://fonts.gstatic.com/s/sixcaps/v8/6ae_4KGrU7VR7bNmabcS.ttf"},"Lekton":{"700":"http://fonts.gstatic.com/s/lekton/v8/SZc73FDmLaWmWpBm4zjMlQ.ttf","regular":"http://fonts.gstatic.com/s/lekton/v8/SZc43FDmLaWmWpBeXw.ttf","italic":"http://fonts.gstatic.com/s/lekton/v8/SZc63FDmLaWmWpBuXR3s.ttf"},"Voltaire":{"regular":"http://fonts.gstatic.com/s/voltaire/v7/1Pttg8PcRfSblAvGvQoo.ttf"},"Eczar":{"500":"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzXWL8t6.ttf","600":"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzX6KMt6.ttf","700":"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzWeKct6.ttf","800":"http://fonts.gstatic.com/s/eczar/v6/BXRovF3Pi-DLmzWCKst6.ttf","regular":"http://fonts.gstatic.com/s/eczar/v6/BXRlvF3Pi-DLmw0i.ttf"},"Anonymous Pro":{"700":"http://fonts.gstatic.com/s/anonymouspro/v11/rP2cp2a15UIB7Un-bOeISG3pFuAT0Ck.ttf","regular":"http://fonts.gstatic.com/s/anonymouspro/v11/rP2Bp2a15UIB7Un-bOeISG3pLlw.ttf","italic":"http://fonts.gstatic.com/s/anonymouspro/v11/rP2fp2a15UIB7Un-bOeISG3pHl428A.ttf","700italic":"http://fonts.gstatic.com/s/anonymouspro/v11/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6A.ttf"},"Wendy One":{"regular":"http://fonts.gstatic.com/s/wendyone/v6/2sDcZGJOipXfgfXV5wgDbw.ttf"},"Racing Sans One":{"regular":"http://fonts.gstatic.com/s/racingsansone/v5/sykr-yRtm7EvTrXNxkv5jfKKyDCwLw.ttf"},"Limelight":{"regular":"http://fonts.gstatic.com/s/limelight/v8/XLYkIZL7aopJVbZJHDuYPQ.ttf"},"Mada":{"200":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSdf3nCCI.ttf","300":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSdZnkCCI.ttf","500":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSdcHlCCI.ttf","600":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSde3iCCI.ttf","700":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSdYnjCCI.ttf","900":"http://fonts.gstatic.com/s/mada/v6/7Au_p_0qnzeSdbHhCCI.ttf","regular":"http://fonts.gstatic.com/s/mada/v6/7Auwp_0qnzeSTTU.ttf"},"Petit Formal Script":{"regular":"http://fonts.gstatic.com/s/petitformalscript/v5/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHk.ttf"},"Share Tech Mono":{"regular":"http://fonts.gstatic.com/s/sharetechmono/v7/J7aHnp1uDWRBEqV98dVQztYldFc7pA.ttf"},"Yesteryear":{"regular":"http://fonts.gstatic.com/s/yesteryear/v6/dg4g_p78rroaKl8kRKo1r7w.ttf"},"Kurale":{"regular":"http://fonts.gstatic.com/s/kurale/v4/4iCs6KV9e9dXjho6eAT3v02QFg.ttf"},"Noto Serif JP":{"200":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZBaPRkg.otf","300":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZHKMRkg.otf","500":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZCqNRkg.otf","600":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZAaKRkg.otf","700":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZGKLRkg.otf","900":"http://fonts.gstatic.com/s/notoserifjp/v3/xn77YHs72GKoTvER4Gn3b5eMZFqJRkg.otf","regular":"http://fonts.gstatic.com/s/notoserifjp/v3/xn7mYHs72GKoTvER4Gn3b5eMXNg.otf"},"Oxygen Mono":{"regular":"http://fonts.gstatic.com/s/oxygenmono/v5/h0GsssGg9FxgDgCjLeAd7ijf.ttf"},"Secular One":{"regular":"http://fonts.gstatic.com/s/secularone/v2/8QINdiTajsj_87rMuMdKypDl.ttf"},"M PLUS Rounded 1c":{"100":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLs.ttf","300":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psK.ttf","500":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sK.ttf","700":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsK.ttf","800":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psK.ttf","900":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sK.ttf","regular":"http://fonts.gstatic.com/s/mplusrounded1c/v6/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWG.ttf"},"Marcellus SC":{"regular":"http://fonts.gstatic.com/s/marcellussc/v5/ke8iOgUHP1dg-Rmi6RWjbLEPgQ.ttf"},"Nanum Brush Script":{"regular":"http://fonts.gstatic.com/s/nanumbrushscript/v13/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjg.ttf"},"Cinzel Decorative":{"700":"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelD.ttf","900":"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lD.ttf","regular":"http://fonts.gstatic.com/s/cinzeldecorative/v6/daaCSScvJGqLYhG8nNt8KPPswUAPnh7U.ttf"},"Marvel":{"700":"http://fonts.gstatic.com/s/marvel/v7/nwpWtKeoNgBV0qawLXHgBw.ttf","regular":"http://fonts.gstatic.com/s/marvel/v7/nwpVtKeoNgBV0qaIkQ.ttf","italic":"http://fonts.gstatic.com/s/marvel/v7/nwpXtKeoNgBV0qa4k1TA.ttf","700italic":"http://fonts.gstatic.com/s/marvel/v7/nwpQtKeoNgBV0qa4k2x8Al-i.ttf"},"Alegreya SC":{"500":"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZZc-rUx.ttf","700":"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYU_LUx.ttf","800":"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYI_7Ux.ttf","900":"http://fonts.gstatic.com/s/alegreyasc/v9/taiTGmRtCJ62-O0HhNEa-ZYs_rUx.ttf","regular":"http://fonts.gstatic.com/s/alegreyasc/v9/taiOGmRtCJ62-O0HhNEa-a6o.ttf","italic":"http://fonts.gstatic.com/s/alegreyasc/v9/taiMGmRtCJ62-O0HhNEa-Z6q2ZU.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK8.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK8.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK8.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasc/v9/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK8.ttf"},"Saira Condensed":{"100":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA.ttf","200":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8A.ttf","300":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8A.ttf","500":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8A.ttf","600":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8A.ttf","700":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8A.ttf","800":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8A.ttf","900":"http://fonts.gstatic.com/s/sairacondensed/v3/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8A.ttf","regular":"http://fonts.gstatic.com/s/sairacondensed/v3/EJROQgErUN8XuHNEtX81i9TmEkrfpQ.ttf"},"Aladin":{"regular":"http://fonts.gstatic.com/s/aladin/v6/ZgNSjPJFPrvJV5f16Q.ttf"},"Rosario":{"700":"http://fonts.gstatic.com/s/rosario/v12/xfu00WDhWW_fOEoY0OjY6AY.ttf","regular":"http://fonts.gstatic.com/s/rosario/v12/xfux0WDhWW_fOEoY6FQ.ttf","italic":"http://fonts.gstatic.com/s/rosario/v12/xfuz0WDhWW_fOEoY2Fb9yA.ttf","700italic":"http://fonts.gstatic.com/s/rosario/v12/xfu20WDhWW_fOEoY2FbFdAPivA.ttf"},"Arima Madurai":{"100":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t4IRoeKYORG0WNMgnC3seB1V3Pqg.ttf","200":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1fHuips.ttf","300":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1ZXtips.ttf","500":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1c3sips.ttf","700":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1YXqips.ttf","800":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1Znpips.ttf","900":"http://fonts.gstatic.com/s/arimamadurai/v3/t5t7IRoeKYORG0WNMgnC3seB1b3oips.ttf","regular":"http://fonts.gstatic.com/s/arimamadurai/v3/t5tmIRoeKYORG0WNMgnC3seB7Tk.ttf"},"Metrophobic":{"regular":"http://fonts.gstatic.com/s/metrophobic/v10/sJoA3LZUhMSAPV_u0qwiAT-J.ttf"},"Norican":{"regular":"http://fonts.gstatic.com/s/norican/v6/MwQ2bhXp1eSBqjkPGJI.ttf"},"Annie Use Your Telescope":{"regular":"http://fonts.gstatic.com/s/annieuseyourtelescope/v8/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlA.ttf"},"Nixie One":{"regular":"http://fonts.gstatic.com/s/nixieone/v8/lW-8wjkKLXjg5y2o2uUoUA.ttf"},"Jockey One":{"regular":"http://fonts.gstatic.com/s/jockeyone/v7/HTxpL2g2KjCFj4x8WI6ArIY.ttf"},"Ceviche One":{"regular":"http://fonts.gstatic.com/s/cevicheone/v8/gyB4hws1IcA6JzR-GB_JX6zd.ttf"},"Maitree":{"200":"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklhGNWJE.ttf","300":"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklnWOWJE.ttf","500":"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrkli2PWJE.ttf","600":"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklgGIWJE.ttf","700":"http://fonts.gstatic.com/s/maitree/v2/MjQDmil5tffhpBrklmWJWJE.ttf","regular":"http://fonts.gstatic.com/s/maitree/v2/MjQGmil5tffhpBrkrtk.ttf"},"Londrina Solid":{"100":"http://fonts.gstatic.com/s/londrinasolid/v7/flUjRq6sw40kQEJxWNgkLuudGfs9KBY.ttf","300":"http://fonts.gstatic.com/s/londrinasolid/v7/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0.ttf","900":"http://fonts.gstatic.com/s/londrinasolid/v7/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0.ttf","regular":"http://fonts.gstatic.com/s/londrinasolid/v7/flUhRq6sw40kQEJxWNgkLuudGcNZ.ttf"},"Pattaya":{"regular":"http://fonts.gstatic.com/s/pattaya/v3/ea8ZadcqV_zkHY-XNdA.ttf"},"Copse":{"regular":"http://fonts.gstatic.com/s/copse/v7/11hPGpDKz1rGb0dj.ttf"},"Baloo Bhaina":{"regular":"http://fonts.gstatic.com/s/baloobhaina/v3/Noa16Uzzzp2FIkfhq5vm9thxPA.ttf"},"Freckle Face":{"regular":"http://fonts.gstatic.com/s/freckleface/v6/AMOWz4SXrmKHCvXTohxY-YI0Uw.ttf"},"Markazi Text":{"500":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4M.ttf","600":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4M.ttf","700":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4M.ttf","regular":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4M.ttf"},"Gruppo":{"regular":"http://fonts.gstatic.com/s/gruppo/v8/WwkfxPmzE06v_ZWFWQ.ttf"},"Telex":{"regular":"http://fonts.gstatic.com/s/telex/v6/ieVw2Y1fKWmIO9fT.ttf"},"Skranji":{"700":"http://fonts.gstatic.com/s/skranji/v5/OZpGg_dtriVFNerMW4eBtlw.ttf","regular":"http://fonts.gstatic.com/s/skranji/v5/OZpDg_dtriVFNerMYzs.ttf"},"Encode Sans":{"100":"http://fonts.gstatic.com/s/encodesans/v2/LDI0apOFNxEwR-Bd1O9uYPvIeeI.ttf","200":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPtkWMLO.ttf","300":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsAW8LO.ttf","500":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPtYWsLO.ttf","600":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPt0XcLO.ttf","700":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsQXMLO.ttf","800":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsMX8LO.ttf","900":"http://fonts.gstatic.com/s/encodesans/v2/LDIrapOFNxEwR-Bd1O9uYPsoXsLO.ttf","regular":"http://fonts.gstatic.com/s/encodesans/v2/LDI2apOFNxEwR-Bd1O9uYMOs.ttf"},"Shojumaru":{"regular":"http://fonts.gstatic.com/s/shojumaru/v5/rax_HiWfutkLLnaKCtlMBA.ttf"},"Raleway Dots":{"regular":"http://fonts.gstatic.com/s/ralewaydots/v5/6NUR8FifJg6AfQvzpshgwJ8kyQ.ttf"},"Goudy Bookletter 1911":{"regular":"http://fonts.gstatic.com/s/goudybookletter1911/v7/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tQ.ttf"},"Andada":{"regular":"http://fonts.gstatic.com/s/andada/v9/uK_y4riWaego3w9RCg.ttf"},"Belleza":{"regular":"http://fonts.gstatic.com/s/belleza/v6/0nkoC9_pNeMfhX4BtcY.ttf"},"Schoolbell":{"regular":"http://fonts.gstatic.com/s/schoolbell/v8/92zQtBZWOrcgoe-fgnJIVxI.ttf"},"Average Sans":{"regular":"http://fonts.gstatic.com/s/averagesans/v6/1Ptpg8fLXP2dlAXR-HlJJNJPBQ.ttf"},"Doppio One":{"regular":"http://fonts.gstatic.com/s/doppioone/v5/Gg8wN5gSaBfyBw2MqCh-lgs.ttf"},"Corben":{"700":"http://fonts.gstatic.com/s/corben/v11/LYjAdGzzklQtCMpFHCZgrQ.ttf","regular":"http://fonts.gstatic.com/s/corben/v11/LYjDdGzzklQtCMp9oA.ttf"},"Tauri":{"regular":"http://fonts.gstatic.com/s/tauri/v6/TwMA-IISS0AM3IpV.ttf"},"Calligraffitti":{"regular":"http://fonts.gstatic.com/s/calligraffitti/v9/46k2lbT3XjDVqJw3DCmCFjE0vnFZ.ttf"},"Homenaje":{"regular":"http://fonts.gstatic.com/s/homenaje/v7/FwZY7-Q-xVAi_l-6Ld6A.ttf"},"Mountains of Christmas":{"700":"http://fonts.gstatic.com/s/mountainsofchristmas/v10/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPs.ttf","regular":"http://fonts.gstatic.com/s/mountainsofchristmas/v10/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNY.ttf"},"Love Ya Like A Sister":{"regular":"http://fonts.gstatic.com/s/loveyalikeasister/v8/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78g.ttf"},"Bubblegum Sans":{"regular":"http://fonts.gstatic.com/s/bubblegumsans/v6/AYCSpXb_Z9EORv1M5QTjEzMEtdaH.ttf"},"Puritan":{"700":"http://fonts.gstatic.com/s/puritan/v9/845dNMgkAJ2VTtIozCbfYd4.ttf","regular":"http://fonts.gstatic.com/s/puritan/v9/845YNMgkAJ2VTtIo9Jo.ttf","italic":"http://fonts.gstatic.com/s/puritan/v9/845aNMgkAJ2VTtIoxJj6QQ.ttf","700italic":"http://fonts.gstatic.com/s/puritan/v9/845fNMgkAJ2VTtIoxJjC_dup_w.ttf"},"Kelly Slab":{"regular":"http://fonts.gstatic.com/s/kellyslab/v8/-W_7XJX0Rz3cxUnJC5t6TkM.ttf"},"Judson":{"700":"http://fonts.gstatic.com/s/judson/v10/FeVSS0Fbvbc14Vxps5xQ3Q.ttf","regular":"http://fonts.gstatic.com/s/judson/v10/FeVRS0Fbvbc14VxRDw.ttf","italic":"http://fonts.gstatic.com/s/judson/v10/FeVTS0Fbvbc14VxhDblw.ttf"},"Cutive":{"regular":"http://fonts.gstatic.com/s/cutive/v9/NaPZcZ_fHOhV3Ip7Tw.ttf"},"Bentham":{"regular":"http://fonts.gstatic.com/s/bentham/v8/VdGeAZQPEpYfmHglKWw.ttf"},"Sumana":{"700":"http://fonts.gstatic.com/s/sumana/v2/4UaArE5TqRBjGj--TDfG5w.ttf","regular":"http://fonts.gstatic.com/s/sumana/v2/4UaDrE5TqRBjGj-G8A.ttf"},"Life Savers":{"700":"http://fonts.gstatic.com/s/lifesavers/v7/ZXu_e1UftKKabUQMgxAal8HXOS5T.ttf","regular":"http://fonts.gstatic.com/s/lifesavers/v7/ZXuie1UftKKabUQMgxAal_lr.ttf"},"Allan":{"700":"http://fonts.gstatic.com/s/allan/v10/ea8aadU7WuTxEu5KEPCN.ttf","regular":"http://fonts.gstatic.com/s/allan/v10/ea8XadU7WuTxEtb2.ttf"},"Mukta Malar":{"200":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqIMwBtAB.ttf","300":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqINUBdAB.ttf","500":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqIMMBNAB.ttf","600":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqIMgA9AB.ttf","700":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqINEAtAB.ttf","800":"http://fonts.gstatic.com/s/muktamalar/v4/MCoKzAXyz8LOE2FpJMxZqINYAdAB.ttf","regular":"http://fonts.gstatic.com/s/muktamalar/v4/MCoXzAXyz8LOE2FpJMxZqLv4.ttf"},"Herr Von Muellerhoff":{"regular":"http://fonts.gstatic.com/s/herrvonmuellerhoff/v7/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6.ttf"},"Carrois Gothic SC":{"regular":"http://fonts.gstatic.com/s/carroisgothicsc/v7/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28n.ttf"},"Gilda Display":{"regular":"http://fonts.gstatic.com/s/gildadisplay/v5/t5tmIRoYMoaYG0WEOh7HwMeR7Tk.ttf"},"Averia Libre":{"300":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf","700":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf","300italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf","regular":"http://fonts.gstatic.com/s/averialibre/v7/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf","italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf","700italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf"},"Asap Condensed":{"500":"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO9_S2lE.ttf","600":"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO9TTGlE.ttf","700":"http://fonts.gstatic.com/s/asapcondensed/v2/pxieypY1o9NHyXh3WvSbGSggdO83TWlE.ttf","regular":"http://fonts.gstatic.com/s/asapcondensed/v2/pxidypY1o9NHyXh3WvSbGSggdNeL.ttf","italic":"http://fonts.gstatic.com/s/asapcondensed/v2/pxifypY1o9NHyXh3WvSbGSggdOeJaEk.ttf","500italic":"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him4.ttf","600italic":"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim4.ttf","700italic":"http://fonts.gstatic.com/s/asapcondensed/v2/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim4.ttf"},"Balthazar":{"regular":"http://fonts.gstatic.com/s/balthazar/v7/d6lKkaajS8Gm4CVQjFEvyQ.ttf"},"Duru Sans":{"regular":"http://fonts.gstatic.com/s/durusans/v11/xn7iYH8xwmSyTvEV_HOxTw.ttf"},"Emilys Candy":{"regular":"http://fonts.gstatic.com/s/emilyscandy/v5/2EbgL-1mD1Rnb0OGKudbk0y5rw.ttf"},"Graduate":{"regular":"http://fonts.gstatic.com/s/graduate/v5/C8cg4cs3o2n15t_2YxgR.ttf"},"Kristi":{"regular":"http://fonts.gstatic.com/s/kristi/v9/uK_y4ricdeU6zwdRCg.ttf"},"Trirong":{"100":"http://fonts.gstatic.com/s/trirong/v3/7r3EqXNgp8wxdOdOl-go3Q.ttf","200":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl0QJ_a4.ttf","300":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlyAK_a4.ttf","500":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl3gL_a4.ttf","600":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOl1QM_a4.ttf","700":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlzAN_a4.ttf","800":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlywO_a4.ttf","900":"http://fonts.gstatic.com/s/trirong/v3/7r3DqXNgp8wxdOdOlwgP_a4.ttf","100italic":"http://fonts.gstatic.com/s/trirong/v3/7r3CqXNgp8wxdOdOn44QuY5h.ttf","200italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QFa9B4g.ttf","300italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QcaxB4g.ttf","regular":"http://fonts.gstatic.com/s/trirong/v3/7r3GqXNgp8wxdOdOr4w.ttf","italic":"http://fonts.gstatic.com/s/trirong/v3/7r3EqXNgp8wxdOdOn44o3Q.ttf","500italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QKa1B4g.ttf","600italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QBapB4g.ttf","700italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QYatB4g.ttf","800italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QfahB4g.ttf","900italic":"http://fonts.gstatic.com/s/trirong/v3/7r3BqXNgp8wxdOdOn44QWalB4g.ttf"},"Cutive Mono":{"regular":"http://fonts.gstatic.com/s/cutivemono/v6/m8JWjfRfY7WVjVi2E-K9H5RF.ttf"},"Halant":{"300":"http://fonts.gstatic.com/s/halant/v5/u-490qaujRI2Pbsvc_pCmw.ttf","500":"http://fonts.gstatic.com/s/halant/v5/u-490qaujRI2PbsvK_tCmw.ttf","600":"http://fonts.gstatic.com/s/halant/v5/u-490qaujRI2PbsvB_xCmw.ttf","700":"http://fonts.gstatic.com/s/halant/v5/u-490qaujRI2PbsvY_1Cmw.ttf","regular":"http://fonts.gstatic.com/s/halant/v5/u-4-0qaujRI2PbsX3w.ttf"},"Faster One":{"regular":"http://fonts.gstatic.com/s/fasterone/v9/H4ciBXCHmdfClFb-vWhfyLs.ttf"},"Fira Mono":{"500":"http://fonts.gstatic.com/s/firamono/v6/N0bS2SlFPv1weGeLZDto1d33mQ.ttf","700":"http://fonts.gstatic.com/s/firamono/v6/N0bS2SlFPv1weGeLZDtondv3mQ.ttf","regular":"http://fonts.gstatic.com/s/firamono/v6/N0bX2SlFPv1weGeLZDtQIQ.ttf"},"Palanquin Dark":{"500":"http://fonts.gstatic.com/s/palanquindark/v4/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41.ttf","600":"http://fonts.gstatic.com/s/palanquindark/v4/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41.ttf","700":"http://fonts.gstatic.com/s/palanquindark/v4/xn76YHgl1nqmANMB-26xC7yuF8YyY241.ttf","regular":"http://fonts.gstatic.com/s/palanquindark/v4/xn75YHgl1nqmANMB-26xC7yuF_6O.ttf"},"The Girl Next Door":{"regular":"http://fonts.gstatic.com/s/thegirlnextdoor/v8/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIVw.ttf"},"Delius":{"regular":"http://fonts.gstatic.com/s/delius/v7/PN_xRfK0pW_9e1rtYQ.ttf"},"Capriola":{"regular":"http://fonts.gstatic.com/s/capriola/v5/wXKoE3YSppcvo1PDln_8.ttf"},"Arizonia":{"regular":"http://fonts.gstatic.com/s/arizonia/v8/neIIzCemt4A5qa7mv6WG.ttf"},"Inder":{"regular":"http://fonts.gstatic.com/s/inder/v6/w8gUH2YoQe8_4vq6.ttf"},"Averia Serif Libre":{"300":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwQ.ttf","700":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwQ.ttf","300italic":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60u.ttf","regular":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQ.ttf","italic":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK.ttf","700italic":"http://fonts.gstatic.com/s/averiaseriflibre/v7/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0u.ttf"},"Amethysta":{"regular":"http://fonts.gstatic.com/s/amethysta/v6/rP2Fp2K15kgb_F3ibfWIGA.ttf"},"Aref Ruqaa":{"700":"http://fonts.gstatic.com/s/arefruqaa/v6/WwkYxPW1E165rajQKDulKDwNcNI.ttf","regular":"http://fonts.gstatic.com/s/arefruqaa/v6/WwkbxPW1E165rajQKDulEIA.ttf"},"Chelsea Market":{"regular":"http://fonts.gstatic.com/s/chelseamarket/v5/BCawqZsHqfr89WNP_IApC8tzKBhl.ttf"},"Baloo Bhaijaan":{"regular":"http://fonts.gstatic.com/s/baloobhaijaan/v4/RWmRoKCU5fcqq8fOWNzFLqSjx4EC.ttf"},"Vesper Libre":{"500":"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0g.ttf","700":"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0g.ttf","900":"http://fonts.gstatic.com/s/vesperlibre/v9/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0g.ttf","regular":"http://fonts.gstatic.com/s/vesperlibre/v9/bx6CNxyWnf-uxPdXDHUD_Rd4Dw.ttf"},"Cambo":{"regular":"http://fonts.gstatic.com/s/cambo/v6/IFSqHeNEk8FJk416.ttf"},"Trocchi":{"regular":"http://fonts.gstatic.com/s/trocchi/v6/qWcqB6WkuIDxDZLcDrs.ttf"},"Mr De Haviland":{"regular":"http://fonts.gstatic.com/s/mrdehaviland/v6/OpNVnooIhJj96FdB73296ksbOj3C.ttf"},"Lemonada":{"300":"http://fonts.gstatic.com/s/lemonada/v5/0QIkMXFD9oygTWy_R8PindGu.ttf","600":"http://fonts.gstatic.com/s/lemonada/v5/0QIkMXFD9oygTWy_R8OWm9Gu.ttf","700":"http://fonts.gstatic.com/s/lemonada/v5/0QIkMXFD9oygTWy_R8PymtGu.ttf","regular":"http://fonts.gstatic.com/s/lemonada/v5/0QIjMXFD9oygTWy_R_tO.ttf"},"Padauk":{"700":"http://fonts.gstatic.com/s/padauk/v4/RrQSboJg-id7Onb512DE1A.ttf","regular":"http://fonts.gstatic.com/s/padauk/v4/RrQRboJg-id7OnbBaw.ttf"},"Cormorant SC":{"300":"http://fonts.gstatic.com/s/cormorantsc/v6/0ybmGD4kxqXBmOVLG30OGwsmABIU_Q.ttf","500":"http://fonts.gstatic.com/s/cormorantsc/v6/0ybmGD4kxqXBmOVLG30OGwsmWBMU_Q.ttf","600":"http://fonts.gstatic.com/s/cormorantsc/v6/0ybmGD4kxqXBmOVLG30OGwsmdBQU_Q.ttf","700":"http://fonts.gstatic.com/s/cormorantsc/v6/0ybmGD4kxqXBmOVLG30OGwsmEBUU_Q.ttf","regular":"http://fonts.gstatic.com/s/cormorantsc/v6/0yb5GD4kxqXBmOVLG30OGwserA.ttf"},"Mouse Memoirs":{"regular":"http://fonts.gstatic.com/s/mousememoirs/v5/t5tmIRoSNJ-PH0WNNgDYxdSb7Tk.ttf"},"Amiko":{"600":"http://fonts.gstatic.com/s/amiko/v2/WwkdxPq1DFK04uJ9XXrE.ttf","700":"http://fonts.gstatic.com/s/amiko/v2/WwkdxPq1DFK04uIZXHrE.ttf","regular":"http://fonts.gstatic.com/s/amiko/v2/WwkQxPq1DFK04tql.ttf"},"Merienda One":{"regular":"http://fonts.gstatic.com/s/meriendaone/v8/H4cgBXaMndbflEq6kyZ1ht6Ygg.ttf"},"Andika":{"regular":"http://fonts.gstatic.com/s/andika/v9/mem_Ya6iyW-LwqgAbQ.ttf"},"Mate":{"regular":"http://fonts.gstatic.com/s/mate/v6/m8JdjftRd7WZ2z0.ttf","italic":"http://fonts.gstatic.com/s/mate/v6/m8JTjftRd7WZ6z-2Xg.ttf"},"Federo":{"regular":"http://fonts.gstatic.com/s/federo/v9/iJWFBX-cbD_ETsbmjQ.ttf"},"Poly":{"regular":"http://fonts.gstatic.com/s/poly/v8/MQpb-W6wKNitRLA.ttf","italic":"http://fonts.gstatic.com/s/poly/v8/MQpV-W6wKNitdLKKrw.ttf"},"Rammetto One":{"regular":"http://fonts.gstatic.com/s/rammettoone/v6/LhWiMV3HOfMbMetJG3lQDpp9Mg.ttf"},"Rozha One":{"regular":"http://fonts.gstatic.com/s/rozhaone/v5/AlZy_zVFtYP12Zncg2khdQ.ttf"},"Pompiere":{"regular":"http://fonts.gstatic.com/s/pompiere/v7/VEMyRoxis5Dwuyeov6Wt.ttf"},"Cambay":{"700":"http://fonts.gstatic.com/s/cambay/v4/SLXKc1rY6H0_ZDs-0pusxw.ttf","regular":"http://fonts.gstatic.com/s/cambay/v4/SLXJc1rY6H0_ZDsGbg.ttf","italic":"http://fonts.gstatic.com/s/cambay/v4/SLXLc1rY6H0_ZDs2bL6M.ttf","700italic":"http://fonts.gstatic.com/s/cambay/v4/SLXMc1rY6H0_ZDs2bIYwwvN0.ttf"},"Cormorant Upright":{"300":"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDs.ttf","500":"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDs.ttf","600":"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDs.ttf","700":"http://fonts.gstatic.com/s/cormorantupright/v4/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDs.ttf","regular":"http://fonts.gstatic.com/s/cormorantupright/v4/VuJrdM3I2Y35poFONtLdafkUCHw1y2vV.ttf"},"Oregano":{"regular":"http://fonts.gstatic.com/s/oregano/v5/If2IXTPxciS3H4S2kZc.ttf","italic":"http://fonts.gstatic.com/s/oregano/v5/If2KXTPxciS3H4S2oZXVOw.ttf"},"Knewave":{"regular":"http://fonts.gstatic.com/s/knewave/v6/sykz-yx0lLcxQaSItSo.ttf"},"Rouge Script":{"regular":"http://fonts.gstatic.com/s/rougescript/v6/LYjFdGbiklMoCIQOw1Ep3S4PVA.ttf"},"Gabriela":{"regular":"http://fonts.gstatic.com/s/gabriela/v6/qkBWXvsO6sreR8E-b_m-.ttf"},"Kadwa":{"700":"http://fonts.gstatic.com/s/kadwa/v2/rnCr-x5V0g7ipix7auM-.ttf","regular":"http://fonts.gstatic.com/s/kadwa/v2/rnCm-x5V0g7iphTH.ttf"},"Proza Libre":{"500":"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyELbV__f.ttf","600":"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEL3UP_f.ttf","700":"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEKTUf_f.ttf","800":"http://fonts.gstatic.com/s/prozalibre/v2/LYjbdGHgj0k1DIQRyUEyyEKPUv_f.ttf","regular":"http://fonts.gstatic.com/s/prozalibre/v2/LYjGdGHgj0k1DIQRyUEyyHov.ttf","italic":"http://fonts.gstatic.com/s/prozalibre/v2/LYjEdGHgj0k1DIQRyUEyyEotdN8.ttf","500italic":"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTCvceJQ.ttf","600italic":"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJQ.ttf","700italic":"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJQ.ttf","800italic":"http://fonts.gstatic.com/s/prozalibre/v2/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJQ.ttf"},"Sedgwick Ave":{"regular":"http://fonts.gstatic.com/s/sedgwickave/v3/uK_04rKEYuguzAcSYRdWTJq8Xg.ttf"},"Laila":{"300":"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLzxogNA.ttf","500":"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLypowNA.ttf","600":"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLyFpANA.ttf","700":"http://fonts.gstatic.com/s/laila/v4/LYjBdG_8nE8jDLzhpQNA.ttf","regular":"http://fonts.gstatic.com/s/laila/v4/LYjMdG_8nE8jDIRd.ttf"},"Battambang":{"700":"http://fonts.gstatic.com/s/battambang/v11/uk-lEGe7raEw-HjkzZabNsmMxyQ.ttf","regular":"http://fonts.gstatic.com/s/battambang/v11/uk-mEGe7raEw-HjkzZabDnU.ttf"},"Artifika":{"regular":"http://fonts.gstatic.com/s/artifika/v8/VEMyRoxzronptCuxu6Wt.ttf"},"Seaweed Script":{"regular":"http://fonts.gstatic.com/s/seaweedscript/v5/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ.ttf"},"Qwigley":{"regular":"http://fonts.gstatic.com/s/qwigley/v7/1cXzaU3UGJb5tGoCuVw.ttf"},"Bai Jamjuree":{"200":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIqapSCOBt_aeQQ7ftydoa0kePukw.ttf","300":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIqapSCOBt_aeQQ7ftydoa09eDukw.ttf","500":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIqapSCOBt_aeQQ7ftydoa0reHukw.ttf","600":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIqapSCOBt_aeQQ7ftydoa0gebukw.ttf","700":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIqapSCOBt_aeQQ7ftydoa05efukw.ttf","200italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox.ttf","300italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox.ttf","regular":"http://fonts.gstatic.com/s/baijamjuree/v1/LDI1apSCOBt_aeQQ7ftydoaMWQ.ttf","italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIrapSCOBt_aeQQ7ftydoa8W8LO.ttf","500italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox.ttf","600italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox.ttf","700italic":"http://fonts.gstatic.com/s/baijamjuree/v1/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox.ttf"},"Gravitas One":{"regular":"http://fonts.gstatic.com/s/gravitasone/v7/5h1diZ4hJ3cblKy3LWakKQmaDQ.ttf"},"Montez":{"regular":"http://fonts.gstatic.com/s/montez/v8/845ZNMk5GoGIX8lm1A.ttf"},"Rye":{"regular":"http://fonts.gstatic.com/s/rye/v5/r05XGLJT86YDFg.ttf"},"Metamorphous":{"regular":"http://fonts.gstatic.com/s/metamorphous/v8/Wnz8HA03aAXcC39ZEX5y1330PA.ttf"},"Give You Glory":{"regular":"http://fonts.gstatic.com/s/giveyouglory/v7/8QIQdiHOgt3vv4LR7ahjw9-XYc1z.ttf"},"Alike":{"regular":"http://fonts.gstatic.com/s/alike/v10/HI_EiYEYI6BIoEjB.ttf"},"Athiti":{"200":"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAxDNyAg.ttf","300":"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAoDByAg.ttf","500":"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wA-DFyAg.ttf","600":"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wA1DZyAg.ttf","700":"http://fonts.gstatic.com/s/athiti/v2/pe0sMISdLIZIv1wAsDdyAg.ttf","regular":"http://fonts.gstatic.com/s/athiti/v2/pe0vMISdLIZIv1w4DA.ttf"},"Short Stack":{"regular":"http://fonts.gstatic.com/s/shortstack/v7/bMrzmS2X6p0jZC6EcmPFX-SS.ttf"},"Uncial Antiqua":{"regular":"http://fonts.gstatic.com/s/uncialantiqua/v6/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf"},"Clicker Script":{"regular":"http://fonts.gstatic.com/s/clickerscript/v5/raxkHiKPvt8CMH6ZWP8PdlEq72rY.ttf"},"Bowlby One":{"regular":"http://fonts.gstatic.com/s/bowlbyone/v9/taiPGmVuC4y96PFeqp8smo4.ttf"},"Cormorant Infant":{"300":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DM.ttf","500":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DM.ttf","600":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DM.ttf","700":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DM.ttf","300italic":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRg.ttf","regular":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyPU44g9vKiM1sORYSiWeAsLN993_A.ttf","italic":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3A.ttf","500italic":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRg.ttf","600italic":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRg.ttf","700italic":"http://fonts.gstatic.com/s/cormorantinfant/v6/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRg.ttf"},"Holtwood One SC":{"regular":"http://fonts.gstatic.com/s/holtwoodonesc/v9/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf"},"Quando":{"regular":"http://fonts.gstatic.com/s/quando/v6/xMQVuFNaVa6YuW0pCw.ttf"},"Prociono":{"regular":"http://fonts.gstatic.com/s/prociono/v7/r05YGLlR-KxAf9GGO8up.ttf"},"Expletus Sans":{"500":"http://fonts.gstatic.com/s/expletussans/v11/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6k.ttf","600":"http://fonts.gstatic.com/s/expletussans/v11/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6k.ttf","700":"http://fonts.gstatic.com/s/expletussans/v11/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6k.ttf","regular":"http://fonts.gstatic.com/s/expletussans/v11/RLp5K5v5_bqufTYdnhFzDj2dRfk.ttf","italic":"http://fonts.gstatic.com/s/expletussans/v11/RLpnK5v5_bqufTYdnhFzDj2ddfsYvw.ttf","500italic":"http://fonts.gstatic.com/s/expletussans/v11/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVA.ttf","600italic":"http://fonts.gstatic.com/s/expletussans/v11/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVA.ttf","700italic":"http://fonts.gstatic.com/s/expletussans/v11/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVA.ttf"},"Chonburi":{"regular":"http://fonts.gstatic.com/s/chonburi/v2/8AtqGs-wOpGRTBq66IWa.ttf"},"Strait":{"regular":"http://fonts.gstatic.com/s/strait/v5/DtViJxy6WaEr1LZzeA.ttf"},"Convergence":{"regular":"http://fonts.gstatic.com/s/convergence/v6/rax5HiePvdgXPmmMHcIPYRha.ttf"},"Sniglet":{"800":"http://fonts.gstatic.com/s/sniglet/v9/cIf4MaFLtkE3UjaJ_ImHRGE.ttf","regular":"http://fonts.gstatic.com/s/sniglet/v9/cIf9MaFLtkE3UjaJxCk.ttf"},"K2D":{"100":"http://fonts.gstatic.com/s/k2d/v1/J7aRnpF2V0ErE6Up.ttf","200":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Erv4QJlA.ttf","300":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Er24cJlA.ttf","500":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Erg4YJlA.ttf","600":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Err4EJlA.ttf","700":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Ery4AJlA.ttf","800":"http://fonts.gstatic.com/s/k2d/v1/J7aenpF2V0Er14MJlA.ttf","100italic":"http://fonts.gstatic.com/s/k2d/v1/J7afnpF2V0EjdZ1NtLY.ttf","200italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ3hlZY4.ttf","300italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ2FlpY4.ttf","regular":"http://fonts.gstatic.com/s/k2d/v1/J7aTnpF2V0ETdw.ttf","italic":"http://fonts.gstatic.com/s/k2d/v1/J7aRnpF2V0EjdaUp.ttf","500italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ3dl5Y4.ttf","600italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ3xkJY4.ttf","700italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ2VkZY4.ttf","800italic":"http://fonts.gstatic.com/s/k2d/v1/J7acnpF2V0EjdZ2JkpY4.ttf"},"Fanwood Text":{"regular":"http://fonts.gstatic.com/s/fanwoodtext/v7/3XFtErwl05Ad_vSCF6Fq7xXGRQ.ttf","italic":"http://fonts.gstatic.com/s/fanwoodtext/v7/3XFzErwl05Ad_vSCF6Fq7xX2R9zc.ttf"},"Iceland":{"regular":"http://fonts.gstatic.com/s/iceland/v6/rax9HiuFsdMNOnWPWKw.ttf"},"Fondamento":{"regular":"http://fonts.gstatic.com/s/fondamento/v8/4UaHrEJGsxNmFTPDnkaJx60.ttf","italic":"http://fonts.gstatic.com/s/fondamento/v8/4UaFrEJGsxNmFTPDnkaJ96_p4g.ttf"},"Vast Shadow":{"regular":"http://fonts.gstatic.com/s/vastshadow/v7/pe0qMImKOZ1V62ZwbVY9dfe6.ttf"},"Sarpanch":{"500":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf","600":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf","700":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf","800":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf","900":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf","regular":"http://fonts.gstatic.com/s/sarpanch/v4/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf"},"Denk One":{"regular":"http://fonts.gstatic.com/s/denkone/v5/dg4m_pzhrqcFb2IzROtH.ttf"},"Suranna":{"regular":"http://fonts.gstatic.com/s/suranna/v5/gokuH6ztGkFjWe58tBQ.ttf"},"Lily Script One":{"regular":"http://fonts.gstatic.com/s/lilyscriptone/v5/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gg.ttf"},"Ranga":{"700":"http://fonts.gstatic.com/s/ranga/v3/C8cg4cYisGb28qY-AxgR.ttf","regular":"http://fonts.gstatic.com/s/ranga/v3/C8ct4cYisGb28p6C.ttf"},"Sunflower":{"300":"http://fonts.gstatic.com/s/sunflower/v5/RWmPoKeF8fUjqIj7Vc-06MfiqQ.ttf","500":"http://fonts.gstatic.com/s/sunflower/v5/RWmPoKeF8fUjqIj7Vc-0sMbiqQ.ttf","700":"http://fonts.gstatic.com/s/sunflower/v5/RWmPoKeF8fUjqIj7Vc-0-MDiqQ.ttf"},"IM Fell English":{"regular":"http://fonts.gstatic.com/s/imfellenglish/v7/Ktk1ALSLW8zDe0rthJysWrnLsAz3Fw.ttf","italic":"http://fonts.gstatic.com/s/imfellenglish/v7/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOd.ttf"},"Podkova":{"500":"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYGrQAoo.ttf","600":"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYEbXAoo.ttf","700":"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYCLWAoo.ttf","800":"http://fonts.gstatic.com/s/podkova/v11/K2F0fZ1EmftJSV9VYD7VAoo.ttf","regular":"http://fonts.gstatic.com/s/podkova/v11/K2FxfZ1EmftJSV9VWJ4.ttf"},"Crafty Girls":{"regular":"http://fonts.gstatic.com/s/craftygirls/v7/va9B4kXI39VaDdlPJo8N_NvuQQ.ttf"},"Elsie":{"900":"http://fonts.gstatic.com/s/elsie/v7/BCaqqZABrez54x6q2-1I.ttf","regular":"http://fonts.gstatic.com/s/elsie/v7/BCanqZABrez54yYu.ttf"},"Cedarville Cursive":{"regular":"http://fonts.gstatic.com/s/cedarvillecursive/v9/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJQ.ttf"},"Baumans":{"regular":"http://fonts.gstatic.com/s/baumans/v7/-W_-XJj9QyTd3QfpR_o.ttf"},"Wire One":{"regular":"http://fonts.gstatic.com/s/wireone/v8/qFdH35Wah5htUhV75WGi.ttf"},"Mako":{"regular":"http://fonts.gstatic.com/s/mako/v9/H4coBX6Mmc_Z0SQ.ttf"},"Sofia":{"regular":"http://fonts.gstatic.com/s/sofia/v6/8QIHdirahM3j_vu-.ttf"},"NTR":{"regular":"http://fonts.gstatic.com/s/ntr/v5/RLpzK5Xy0ZjiGA.ttf"},"Mirza":{"500":"http://fonts.gstatic.com/s/mirza/v5/co3FmWlikiN5EtIpAeO4.ttf","600":"http://fonts.gstatic.com/s/mirza/v5/co3FmWlikiN5EtIFBuO4.ttf","700":"http://fonts.gstatic.com/s/mirza/v5/co3FmWlikiN5EtJhB-O4.ttf","regular":"http://fonts.gstatic.com/s/mirza/v5/co3ImWlikiN5Eurd.ttf"},"Spicy Rice":{"regular":"http://fonts.gstatic.com/s/spicyrice/v6/uK_24rSEd-Uqwk4jY1RyGv8.ttf"},"Brawler":{"regular":"http://fonts.gstatic.com/s/brawler/v8/xn7gYHE3xXewAscGsgA.ttf"},"Harmattan":{"regular":"http://fonts.gstatic.com/s/harmattan/v4/goksH6L2DkFvVvRp9XpTSw.ttf"},"Crushed":{"regular":"http://fonts.gstatic.com/s/crushed/v8/U9Mc6dym6WXImTlFT1k.ttf"},"Sriracha":{"regular":"http://fonts.gstatic.com/s/sriracha/v2/0nkrC9D4IuYBgWcI9ObY.ttf"},"Faustina":{"500":"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVdMPulC.ttf","600":"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVdgOelC.ttf","700":"http://fonts.gstatic.com/s/faustina/v2/XLYiIZPxYpJfTbZAFVcEOOlC.ttf","regular":"http://fonts.gstatic.com/s/faustina/v2/XLYlIZPxYpJfTbZAFW-4.ttf","italic":"http://fonts.gstatic.com/s/faustina/v2/XLYjIZPxYpJfTbZAFV-6Hck.ttf","500italic":"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JT1Bhnc.ttf","600italic":"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JRFGhnc.ttf","700italic":"http://fonts.gstatic.com/s/faustina/v2/XLYgIZPxYpJfTbZAFV-6JXVHhnc.ttf"},"Patrick Hand SC":{"regular":"http://fonts.gstatic.com/s/patrickhandsc/v5/0nkwC9f7MfsBiWcLtY65AWDK873ViQ.ttf"},"Gurajada":{"regular":"http://fonts.gstatic.com/s/gurajada/v5/FwZY7-Qx308m-l-0Kd6A.ttf"},"UnifrakturMaguntia":{"regular":"http://fonts.gstatic.com/s/unifrakturmaguntia/v8/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVunw.ttf"},"Walter Turncoat":{"regular":"http://fonts.gstatic.com/s/walterturncoat/v8/snfys0Gs98ln43n0d-14ULoToe67YA.ttf"},"IM Fell DW Pica":{"regular":"http://fonts.gstatic.com/s/imfelldwpica/v7/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZA.ttf","italic":"http://fonts.gstatic.com/s/imfelldwpica/v7/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQ.ttf"},"Over the Rainbow":{"regular":"http://fonts.gstatic.com/s/overtherainbow/v8/11haGoXG1k_HKhMLUWz7Mc7vvW5upvM.ttf"},"Fontdiner Swanky":{"regular":"http://fonts.gstatic.com/s/fontdinerswanky/v8/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uE.ttf"},"Bilbo Swash Caps":{"regular":"http://fonts.gstatic.com/s/bilboswashcaps/v10/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAM.ttf"},"Belgrano":{"regular":"http://fonts.gstatic.com/s/belgrano/v8/55xvey5tM9rwKWrJZcMF.ttf"},"Imprima":{"regular":"http://fonts.gstatic.com/s/imprima/v6/VEMxRoN7sY3yuy-7-oU.ttf"},"Della Respira":{"regular":"http://fonts.gstatic.com/s/dellarespira/v6/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf"},"Euphoria Script":{"regular":"http://fonts.gstatic.com/s/euphoriascript/v6/mFTpWb0X2bLb_cx6To2B8GpKoD5akw.ttf"},"Loved by the King":{"regular":"http://fonts.gstatic.com/s/lovedbytheking/v7/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiN.ttf"},"Tulpen One":{"regular":"http://fonts.gstatic.com/s/tulpenone/v8/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf"},"Oleo Script Swash Caps":{"700":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v5/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYU.ttf","regular":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v5/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXo.ttf"},"Frijole":{"regular":"http://fonts.gstatic.com/s/frijole/v7/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf"},"Zeyada":{"regular":"http://fonts.gstatic.com/s/zeyada/v7/11hAGpPTxVPUbgZDNA.ttf"},"Waiting for the Sunrise":{"regular":"http://fonts.gstatic.com/s/waitingforthesunrise/v8/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ.ttf"},"Pavanam":{"regular":"http://fonts.gstatic.com/s/pavanam/v3/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf"},"Meddon":{"regular":"http://fonts.gstatic.com/s/meddon/v10/kmK8ZqA2EgDNeHTZhA.ttf"},"Megrim":{"regular":"http://fonts.gstatic.com/s/megrim/v8/46kulbz5WjvLqJZlbQ.ttf"},"Port Lligat Slab":{"regular":"http://fonts.gstatic.com/s/portlligatslab/v6/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7o.ttf"},"Aguafina Script":{"regular":"http://fonts.gstatic.com/s/aguafinascript/v6/If2QXTv_ZzSxGIO30LemWEOmt1bHqg.ttf"},"Salsa":{"regular":"http://fonts.gstatic.com/s/salsa/v7/gNMKW3FiRpKj-imY.ttf"},"Ledger":{"regular":"http://fonts.gstatic.com/s/ledger/v5/j8_q6-HK1L3if_sxmw.ttf"},"La Belle Aurore":{"regular":"http://fonts.gstatic.com/s/labelleaurore/v8/RrQIbot8-mNYKnGNDkWlocovHeIIGw.ttf"},"Just Me Again Down Here":{"regular":"http://fonts.gstatic.com/s/justmeagaindownhere/v9/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwH.ttf"},"Medula One":{"regular":"http://fonts.gstatic.com/s/medulaone/v7/YA9Wr0qb5kjJM6l2V0yukiE.ttf"},"Niramit":{"200":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf","300":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf","500":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf","600":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf","700":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf","200italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf","300italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf","regular":"http://fonts.gstatic.com/s/niramit/v3/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf","italic":"http://fonts.gstatic.com/s/niramit/v3/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf","500italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf","600italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf","700italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf"},"Rubik Mono One":{"regular":"http://fonts.gstatic.com/s/rubikmonoone/v6/UqyJK8kPP3hjw6ANTdfRk9YSN-8w.ttf"},"Ramabhadra":{"regular":"http://fonts.gstatic.com/s/ramabhadra/v7/EYq2maBOwqRW9P1SQ83LehM.ttf"},"Cherry Swash":{"700":"http://fonts.gstatic.com/s/cherryswash/v6/i7dSIFByZjaNAMxtZcnfAy5E_FeaGw.ttf","regular":"http://fonts.gstatic.com/s/cherryswash/v6/i7dNIFByZjaNAMxtZcnfAy58QA.ttf"},"McLaren":{"regular":"http://fonts.gstatic.com/s/mclaren/v5/2EbnL-ZuAXFqZFXISYY.ttf"},"Amita":{"700":"http://fonts.gstatic.com/s/amita/v3/HhyXU5si9Om7PTHTLtCC.ttf","regular":"http://fonts.gstatic.com/s/amita/v3/HhyaU5si9Om7PQlv.ttf"},"Tienne":{"700":"http://fonts.gstatic.com/s/tienne/v10/AYCJpX7pe9YCRP0zLGzjQA.ttf","900":"http://fonts.gstatic.com/s/tienne/v10/AYCJpX7pe9YCRP0zFG7jQA.ttf","regular":"http://fonts.gstatic.com/s/tienne/v10/AYCKpX7pe9YCRP0LkA.ttf"},"Baloo Paaji":{"regular":"http://fonts.gstatic.com/s/baloopaaji/v4/8AttGsyxM5KQQU-Y4MTwVZnT.ttf"},"Shanti":{"regular":"http://fonts.gstatic.com/s/shanti/v9/t5thIREMM4uSDgzgUw.ttf"},"Delius Swash Caps":{"regular":"http://fonts.gstatic.com/s/deliusswashcaps/v9/oY1E8fPLr7v4JWCExZpWebxVKORpXXed.ttf"},"Dekko":{"regular":"http://fonts.gstatic.com/s/dekko/v4/46khlb_wWjfSrttF.ttf"},"Lemon":{"regular":"http://fonts.gstatic.com/s/lemon/v6/HI_EiYEVKqRMq0jB.ttf"},"Suez One":{"regular":"http://fonts.gstatic.com/s/suezone/v2/taiJGmd_EZ6rqscQgNFJ.ttf"},"Ruslan Display":{"regular":"http://fonts.gstatic.com/s/ruslandisplay/v9/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf"},"Sansita":{"700":"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JKWUaXk.ttf","800":"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JLmXaXk.ttf","900":"http://fonts.gstatic.com/s/sansita/v2/QldLNTRRphEb_-V7JJ2WaXk.ttf","regular":"http://fonts.gstatic.com/s/sansita/v2/QldONTRRphEb_-V7HBk.ttf","italic":"http://fonts.gstatic.com/s/sansita/v2/QldMNTRRphEb_-V7LBuxSQ.ttf","700italic":"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJ9Xx-xg.ttf","800italic":"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJ6X9-xg.ttf","900italic":"http://fonts.gstatic.com/s/sansita/v2/QldJNTRRphEb_-V7LBuJzX5-xg.ttf"},"Gafata":{"regular":"http://fonts.gstatic.com/s/gafata/v6/XRXV3I6Cn0VJKon4Mg.ttf"},"Nosifer":{"regular":"http://fonts.gstatic.com/s/nosifer/v7/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf"},"Spirax":{"regular":"http://fonts.gstatic.com/s/spirax/v7/buE3poKgYNLy0F3cXktt-Csn-Q.ttf"},"Montserrat Subrayada":{"700":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf"},"Katibeh":{"regular":"http://fonts.gstatic.com/s/katibeh/v5/ZGjXol5MQJog4bxDaC0.ttf"},"Averia Sans Libre":{"300":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQ.ttf","700":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQ.ttf","300italic":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5c.ttf","regular":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJ.ttf","italic":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc.ttf","700italic":"http://fonts.gstatic.com/s/averiasanslibre/v6/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5c.ttf"},"Wallpoet":{"regular":"http://fonts.gstatic.com/s/wallpoet/v9/f0X10em2_8RnXVVdUNbu.ttf"},"Dawning of a New Day":{"regular":"http://fonts.gstatic.com/s/dawningofanewday/v8/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8b.ttf"},"Mallanna":{"regular":"http://fonts.gstatic.com/s/mallanna/v5/hv-Vlzx-KEQb84YaDGwz.ttf"},"Share Tech":{"regular":"http://fonts.gstatic.com/s/sharetech/v7/7cHtv4Uyi5K0OeZ7bohUwHo.ttf"},"Nova Round":{"regular":"http://fonts.gstatic.com/s/novaround/v10/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf"},"Stardos Stencil":{"700":"http://fonts.gstatic.com/s/stardosstencil/v7/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg.ttf","regular":"http://fonts.gstatic.com/s/stardosstencil/v7/X7n94bcuGPC8hrvEOHXOgaKCc2TR7w.ttf"},"Vampiro One":{"regular":"http://fonts.gstatic.com/s/vampiroone/v8/gokqH6DoDl5yXvJytFsdLkqn.ttf"},"Orienta":{"regular":"http://fonts.gstatic.com/s/orienta/v5/PlI9FlK4Jrl5Y9zNeyc.ttf"},"Nova Square":{"regular":"http://fonts.gstatic.com/s/novasquare/v10/RrQUbo9-9DV7b06QHgSWsZhA.ttf"},"Codystar":{"300":"http://fonts.gstatic.com/s/codystar/v5/FwZf7-Q1xVk-40qxOuYsyuyr.ttf","regular":"http://fonts.gstatic.com/s/codystar/v5/FwZY7-Q1xVk-40qxOt6A.ttf"},"Finger Paint":{"regular":"http://fonts.gstatic.com/s/fingerpaint/v8/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf"},"Bellefair":{"regular":"http://fonts.gstatic.com/s/bellefair/v4/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf"},"Alike Angular":{"regular":"http://fonts.gstatic.com/s/alikeangular/v9/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf"},"Coda Caption":{"800":"http://fonts.gstatic.com/s/codacaption/v11/ieVm2YRII2GMY7SyXSoDRiQGqcx6xw.ttf"},"IBM Plex Mono":{"100":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6pfjptAgt5VM-kVkqdyU8n3kwq0g.ttf","200":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6qfjptAgt5VM-kVkqdyU8n3uAL8lc.ttf","300":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6qfjptAgt5VM-kVkqdyU8n3oQI8lc.ttf","500":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lc.ttf","600":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6qfjptAgt5VM-kVkqdyU8n3vAO8lc.ttf","700":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6qfjptAgt5VM-kVkqdyU8n3pQP8lc.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6rfjptAgt5VM-kVkqdyU8n1ioStndl.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFhw.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFhw.ttf","regular":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F63fjptAgt5VM-kVkqdyU8n5ig.ttf","italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6pfjptAgt5VM-kVkqdyU8n1ioq0g.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFhw.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFhw.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexmono/v3/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFhw.ttf"},"Galada":{"regular":"http://fonts.gstatic.com/s/galada/v4/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf"},"Quintessential":{"regular":"http://fonts.gstatic.com/s/quintessential/v6/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf"},"Miriam Libre":{"700":"http://fonts.gstatic.com/s/miriamlibre/v4/DdT-798HsHwubBAqfkcBTL_X3LbbRQ.ttf","regular":"http://fonts.gstatic.com/s/miriamlibre/v4/DdTh798HsHwubBAqfkcBTL_vYA.ttf"},"Noto Serif KR":{"200":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf","300":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf","500":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf","600":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf","700":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf","900":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf","regular":"http://fonts.gstatic.com/s/notoserifkr/v3/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf"},"Unkempt":{"700":"http://fonts.gstatic.com/s/unkempt/v9/2EbiL-Z2DFZue0DScTow1zU.ttf","regular":"http://fonts.gstatic.com/s/unkempt/v9/2EbnL-Z2DFZue0DSSYY.ttf"},"Atma":{"300":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf","500":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf","600":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf","700":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf","regular":"http://fonts.gstatic.com/s/atma/v4/uK_84rqWc-Eom25bDj8WIv4.ttf"},"Fjord One":{"regular":"http://fonts.gstatic.com/s/fjordone/v6/zOL-4pbEnKBY_9S1jNKr6Q.ttf"},"Milonga":{"regular":"http://fonts.gstatic.com/s/milonga/v6/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf"},"Spectral SC":{"200":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf","300":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf","500":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf","600":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf","700":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf","800":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf","200italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf","300italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf","regular":"http://fonts.gstatic.com/s/spectralsc/v4/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf","italic":"http://fonts.gstatic.com/s/spectralsc/v4/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf","500italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf","600italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf","700italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf","800italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf"},"Voces":{"regular":"http://fonts.gstatic.com/s/voces/v7/-F6_fjJyLyU8d4PB.ttf"},"Nova Mono":{"regular":"http://fonts.gstatic.com/s/novamono/v8/Cn-0JtiGWQ5Ajb--MRKfYA.ttf"},"Germania One":{"regular":"http://fonts.gstatic.com/s/germaniaone/v6/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf"},"Habibi":{"regular":"http://fonts.gstatic.com/s/habibi/v7/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf"},"IM Fell English SC":{"regular":"http://fonts.gstatic.com/s/imfellenglishsc/v7/a8IENpD3CDX-4zrWfr1VY879qFF05pZLOw.ttf"},"Bungee Shade":{"regular":"http://fonts.gstatic.com/s/bungeeshade/v4/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf"},"Headland One":{"regular":"http://fonts.gstatic.com/s/headlandone/v5/yYLu0hHR2vKnp89Tk1TCq3Tx0A.ttf"},"Sail":{"regular":"http://fonts.gstatic.com/s/sail/v9/DPEjYwiBxwYJFBTDADYAbvw.ttf"},"Arya":{"700":"http://fonts.gstatic.com/s/arya/v4/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf","regular":"http://fonts.gstatic.com/s/arya/v4/ga6CawNG-HJd9Ub1-beqdFE.ttf"},"Scope One":{"regular":"http://fonts.gstatic.com/s/scopeone/v4/WBLnrEXKYFlGHrOKmGD1Ww.ttf"},"Black Han Sans":{"regular":"http://fonts.gstatic.com/s/blackhansans/v5/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf"},"Encode Sans Semi Condensed":{"100":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf","300":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf","500":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf","600":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf","700":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf","800":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf","900":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf"},"Yatra One":{"regular":"http://fonts.gstatic.com/s/yatraone/v4/C8ch4copsHzj8p7NaF0xww.ttf"},"Londrina Outline":{"regular":"http://fonts.gstatic.com/s/londrinaoutline/v8/C8c44dM8vmb14dfsZxhetg3pDH-Sfuo.ttf"},"BioRhyme":{"200":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf","300":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf","700":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf","800":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf","regular":"http://fonts.gstatic.com/s/biorhyme/v3/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf"},"Rakkas":{"regular":"http://fonts.gstatic.com/s/rakkas/v6/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf"},"Cantora One":{"regular":"http://fonts.gstatic.com/s/cantoraone/v7/gyB4hws1JdgnKy56GB_JX6zd.ttf"},"Iceberg":{"regular":"http://fonts.gstatic.com/s/iceberg/v6/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf"},"Kosugi Maru":{"regular":"http://fonts.gstatic.com/s/kosugimaru/v3/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf"},"Kranky":{"regular":"http://fonts.gstatic.com/s/kranky/v9/hESw6XVgJzlPsFnMpheEZo_H_w.ttf"},"Chicle":{"regular":"http://fonts.gstatic.com/s/chicle/v7/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf"},"Mandali":{"regular":"http://fonts.gstatic.com/s/mandali/v7/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf"},"Overpass Mono":{"300":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf","600":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf","700":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf","regular":"http://fonts.gstatic.com/s/overpassmono/v4/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf"},"Krona One":{"regular":"http://fonts.gstatic.com/s/kronaone/v6/jAnEgHdjHcjgfIb1ZcUCMQ.ttf"},"David Libre":{"500":"http://fonts.gstatic.com/s/davidlibre/v2/snfzs0W_99N64iuYSvp4W8GIw7qb.ttf","700":"http://fonts.gstatic.com/s/davidlibre/v2/snfzs0W_99N64iuYSvp4W8HAxbqb.ttf","regular":"http://fonts.gstatic.com/s/davidlibre/v2/snfus0W_99N64iuYSvp4W_l8.ttf"},"Geo":{"regular":"http://fonts.gstatic.com/s/geo/v9/CSRz4zRZlufVLw.ttf","italic":"http://fonts.gstatic.com/s/geo/v9/CSRx4zRZluflLXpi.ttf"},"Vibur":{"regular":"http://fonts.gstatic.com/s/vibur/v8/DPEiYwmEzw0QRjTp.ttf"},"Engagement":{"regular":"http://fonts.gstatic.com/s/engagement/v8/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf"},"Baloo Tamma":{"regular":"http://fonts.gstatic.com/s/balootamma/v4/JTUTjIk68Cy27gWhOWIghE5B.ttf"},"Slackey":{"regular":"http://fonts.gstatic.com/s/slackey/v9/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf"},"Pirata One":{"regular":"http://fonts.gstatic.com/s/pirataone/v7/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf"},"Cherry Cream Soda":{"regular":"http://fonts.gstatic.com/s/cherrycreamsoda/v9/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf"},"Baloo Chettan":{"regular":"http://fonts.gstatic.com/s/baloochettan/v4/0QImMXRN8o2gTC2YTr4665DA07z8_ApHqqk.ttf"},"Encode Sans Semi Expanded":{"100":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf","300":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf","500":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf","600":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf","700":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf","800":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf","900":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf"},"Dynalight":{"regular":"http://fonts.gstatic.com/s/dynalight/v7/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf"},"Mate SC":{"regular":"http://fonts.gstatic.com/s/matesc/v7/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf"},"Peralta":{"regular":"http://fonts.gstatic.com/s/peralta/v6/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf"},"Nova Slim":{"regular":"http://fonts.gstatic.com/s/novaslim/v10/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf"},"Fenix":{"regular":"http://fonts.gstatic.com/s/fenix/v5/XoHo2YL_S7-g5ost.ttf"},"Sura":{"700":"http://fonts.gstatic.com/s/sura/v3/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf","regular":"http://fonts.gstatic.com/s/sura/v3/SZc23FL5PbyzFf5UWzXtjUM.ttf"},"Amarante":{"regular":"http://fonts.gstatic.com/s/amarante/v6/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf"},"Creepster":{"regular":"http://fonts.gstatic.com/s/creepster/v6/AlZy_zVUqJz4yMrniH4hdQ.ttf"},"Khmer":{"regular":"http://fonts.gstatic.com/s/khmer/v11/MjQImit_vPPwpF-BpN2EeYmD.ttf"},"Koulen":{"regular":"http://fonts.gstatic.com/s/koulen/v12/AMOQz46as3KIBPeWgnA9kuYMUg.ttf"},"Cagliostro":{"regular":"http://fonts.gstatic.com/s/cagliostro/v7/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf"},"Kite One":{"regular":"http://fonts.gstatic.com/s/kiteone/v6/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf"},"Numans":{"regular":"http://fonts.gstatic.com/s/numans/v8/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf"},"Rationale":{"regular":"http://fonts.gstatic.com/s/rationale/v10/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf"},"Mrs Saint Delafield":{"regular":"http://fonts.gstatic.com/s/mrssaintdelafield/v6/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf"},"Kotta One":{"regular":"http://fonts.gstatic.com/s/kottaone/v6/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf"},"League Script":{"regular":"http://fonts.gstatic.com/s/leaguescript/v9/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf"},"Timmana":{"regular":"http://fonts.gstatic.com/s/timmana/v3/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf"},"Condiment":{"regular":"http://fonts.gstatic.com/s/condiment/v5/pONk1hggFNmwvXALyH6Sqw.ttf"},"Chela One":{"regular":"http://fonts.gstatic.com/s/chelaone/v7/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf"},"Antic Didone":{"regular":"http://fonts.gstatic.com/s/anticdidone/v7/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf"},"Mukta Mahee":{"200":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf","300":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf","500":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf","600":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf","700":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf","800":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf","regular":"http://fonts.gstatic.com/s/muktamahee/v4/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf"},"Dorsa":{"regular":"http://fonts.gstatic.com/s/dorsa/v9/yYLn0hjd0OGwqo493XCFxAnQ.ttf"},"Poller One":{"regular":"http://fonts.gstatic.com/s/pollerone/v7/ahccv82n0TN3gia5E4Bud-k.ttf"},"Mystery Quest":{"regular":"http://fonts.gstatic.com/s/mysteryquest/v6/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf"},"Risque":{"regular":"http://fonts.gstatic.com/s/risque/v6/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf"},"Paprika":{"regular":"http://fonts.gstatic.com/s/paprika/v6/8QIJdijZitv49rDfuIgOq7jkAOw.ttf"},"Farsan":{"regular":"http://fonts.gstatic.com/s/farsan/v4/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf"},"Nova Flat":{"regular":"http://fonts.gstatic.com/s/novaflat/v10/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf"},"Chau Philomene One":{"regular":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf","italic":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf"},"Stoke":{"300":"http://fonts.gstatic.com/s/stoke/v8/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf","regular":"http://fonts.gstatic.com/s/stoke/v8/z7NadRb7aTMfKONpfihK1YTV.ttf"},"Baloo Bhai":{"regular":"http://fonts.gstatic.com/s/baloobhai/v4/ZgNWjP5GM7bCUdmXgWyVjGXEM4COoE4.ttf"},"Charm":{"700":"http://fonts.gstatic.com/s/charm/v3/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf","regular":"http://fonts.gstatic.com/s/charm/v3/7cHmv4oii5K0MeYvIe804WIo.ttf"},"IM Fell French Canon":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf","italic":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf"},"Rosarivo":{"regular":"http://fonts.gstatic.com/s/rosarivo/v6/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf","italic":"http://fonts.gstatic.com/s/rosarivo/v6/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf"},"Simonetta":{"900":"http://fonts.gstatic.com/s/simonetta/v8/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf","regular":"http://fonts.gstatic.com/s/simonetta/v8/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf","italic":"http://fonts.gstatic.com/s/simonetta/v8/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf","900italic":"http://fonts.gstatic.com/s/simonetta/v8/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf"},"Sarina":{"regular":"http://fonts.gstatic.com/s/sarina/v7/-F6wfjF3ITQwasLhLkDUriBQxw.ttf"},"Baloo Thambi":{"regular":"http://fonts.gstatic.com/s/baloothambi/v4/va9B4kXJzNhTFoA7CYcS8sHuQR37fF3Wlg.ttf"},"Asul":{"700":"http://fonts.gstatic.com/s/asul/v8/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf","regular":"http://fonts.gstatic.com/s/asul/v8/VuJ-dNjKxYr46fMFXK78JIg.ttf"},"Odor Mean Chey":{"regular":"http://fonts.gstatic.com/s/odormeanchey/v10/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf"},"Englebert":{"regular":"http://fonts.gstatic.com/s/englebert/v6/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf"},"Mogra":{"regular":"http://fonts.gstatic.com/s/mogra/v5/f0X40eSs8c95TBo4DvLmxtnG.ttf"},"IBM Plex Sans Condensed":{"100":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf","200":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf","300":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf","500":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf","600":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf","700":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf"},"Angkor":{"regular":"http://fonts.gstatic.com/s/angkor/v11/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf"},"Delius Unicase":{"700":"http://fonts.gstatic.com/s/deliusunicase/v12/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf","regular":"http://fonts.gstatic.com/s/deliusunicase/v12/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf"},"Buda":{"300":"http://fonts.gstatic.com/s/buda/v9/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf"},"Stint Ultra Expanded":{"regular":"http://fonts.gstatic.com/s/stintultraexpanded/v6/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf"},"Stalemate":{"regular":"http://fonts.gstatic.com/s/stalemate/v6/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf"},"Ribeye":{"regular":"http://fonts.gstatic.com/s/ribeye/v7/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf"},"Bubbler One":{"regular":"http://fonts.gstatic.com/s/bubblerone/v7/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf"},"Text Me One":{"regular":"http://fonts.gstatic.com/s/textmeone/v6/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf"},"Maiden Orange":{"regular":"http://fonts.gstatic.com/s/maidenorange/v9/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf"},"Petrona":{"regular":"http://fonts.gstatic.com/s/petrona/v7/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf"},"Flamenco":{"300":"http://fonts.gstatic.com/s/flamenco/v9/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf","regular":"http://fonts.gstatic.com/s/flamenco/v9/neIIzCehqYguo67ssaWGHK06UY30.ttf"},"Underdog":{"regular":"http://fonts.gstatic.com/s/underdog/v7/CHygV-jCElj7diMroVSiU14GN2Il.ttf"},"Coiny":{"regular":"http://fonts.gstatic.com/s/coiny/v4/gyByhwU1K989PXwbElSvO5Tc.ttf"},"Joti One":{"regular":"http://fonts.gstatic.com/s/jotione/v7/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf"},"Kosugi":{"regular":"http://fonts.gstatic.com/s/kosugi/v3/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf"},"Stint Ultra Condensed":{"regular":"http://fonts.gstatic.com/s/stintultracondensed/v7/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf"},"Encode Sans Expanded":{"100":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf","200":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf","300":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf","500":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf","600":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf","700":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf","800":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf","900":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf","regular":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf"},"Junge":{"regular":"http://fonts.gstatic.com/s/junge/v6/gokgH670Gl1lUqAdvhB7SnKm.ttf"},"Ruluko":{"regular":"http://fonts.gstatic.com/s/ruluko/v6/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf"},"Mali":{"200":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf","300":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf","500":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf","600":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf","700":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf","200italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf","300italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf","regular":"http://fonts.gstatic.com/s/mali/v2/N0ba2SRONuN4eCrODlxxOd8.ttf","italic":"http://fonts.gstatic.com/s/mali/v2/N0bU2SRONuN4SCjECn50Kd_PmA.ttf","500italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf","600italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf","700italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf"},"Esteban":{"regular":"http://fonts.gstatic.com/s/esteban/v7/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf"},"Content":{"700":"http://fonts.gstatic.com/s/content/v11/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf","regular":"http://fonts.gstatic.com/s/content/v11/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf"},"Sirin Stencil":{"regular":"http://fonts.gstatic.com/s/sirinstencil/v7/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf"},"UnifrakturCook":{"700":"http://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf"},"Port Lligat Sans":{"regular":"http://fonts.gstatic.com/s/portlligatsans/v7/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf"},"Siemreap":{"regular":"http://fonts.gstatic.com/s/siemreap/v11/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf"},"Princess Sofia":{"regular":"http://fonts.gstatic.com/s/princesssofia/v7/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf"},"Autour One":{"regular":"http://fonts.gstatic.com/s/autourone/v8/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf"},"Trade Winds":{"regular":"http://fonts.gstatic.com/s/tradewinds/v7/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf"},"Wellfleet":{"regular":"http://fonts.gstatic.com/s/wellfleet/v6/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf"},"IM Fell French Canon SC":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v8/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf"},"Inknut Antiqua":{"300":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf","500":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf","600":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf","700":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf","800":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf","900":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf","regular":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf"},"Sancreek":{"regular":"http://fonts.gstatic.com/s/sancreek/v9/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf"},"Trykker":{"regular":"http://fonts.gstatic.com/s/trykker/v7/KtktALyWZJXudUPzhNnoOd2j22U.ttf"},"Ranchers":{"regular":"http://fonts.gstatic.com/s/ranchers/v5/zrfm0H3Lx-P2Xvs2AoDY.ttf"},"Plaster":{"regular":"http://fonts.gstatic.com/s/plaster/v10/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf"},"Lovers Quarrel":{"regular":"http://fonts.gstatic.com/s/loversquarrel/v6/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf"},"Swanky and Moo Moo":{"regular":"http://fonts.gstatic.com/s/swankyandmoomoo/v8/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf"},"Eater":{"regular":"http://fonts.gstatic.com/s/eater/v6/mtG04_FCK7bOvpu2.ttf"},"Sonsie One":{"regular":"http://fonts.gstatic.com/s/sonsieone/v7/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf"},"Meera Inimai":{"regular":"http://fonts.gstatic.com/s/meerainimai/v3/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf"},"Almendra":{"700":"http://fonts.gstatic.com/s/almendra/v11/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf","regular":"http://fonts.gstatic.com/s/almendra/v11/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf","italic":"http://fonts.gstatic.com/s/almendra/v11/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf","700italic":"http://fonts.gstatic.com/s/almendra/v11/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf"},"Bokor":{"regular":"http://fonts.gstatic.com/s/bokor/v11/m8JcjfpeeaqTiR2WdInbcaxE.ttf"},"Henny Penny":{"regular":"http://fonts.gstatic.com/s/hennypenny/v6/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf"},"Eagle Lake":{"regular":"http://fonts.gstatic.com/s/eaglelake/v6/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf"},"New Rocker":{"regular":"http://fonts.gstatic.com/s/newrocker/v7/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf"},"Overlock SC":{"regular":"http://fonts.gstatic.com/s/overlocksc/v7/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf"},"Fresca":{"regular":"http://fonts.gstatic.com/s/fresca/v7/6ae94K--SKgCzbM2Gr0W13DKPA.ttf"},"Averia Gruesa Libre":{"regular":"http://fonts.gstatic.com/s/averiagruesalibre/v7/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf"},"Diplomata SC":{"regular":"http://fonts.gstatic.com/s/diplomatasc/v7/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf"},"Linden Hill":{"regular":"http://fonts.gstatic.com/s/lindenhill/v8/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf","italic":"http://fonts.gstatic.com/s/lindenhill/v8/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf"},"Donegal One":{"regular":"http://fonts.gstatic.com/s/donegalone/v6/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf"},"Purple Purse":{"regular":"http://fonts.gstatic.com/s/purplepurse/v7/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf"},"Italiana":{"regular":"http://fonts.gstatic.com/s/italiana/v7/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf"},"Croissant One":{"regular":"http://fonts.gstatic.com/s/croissantone/v6/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf"},"Inika":{"700":"http://fonts.gstatic.com/s/inika/v7/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/inika/v7/rnCm-x5X3QP-phTHRcc2s2XH.ttf"},"Nokora":{"700":"http://fonts.gstatic.com/s/nokora/v12/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf","regular":"http://fonts.gstatic.com/s/nokora/v12/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf"},"Manuale":{"500":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPALt58Ht9a8GYeA.ttf","600":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPC7q58Ht9a8GYeA.ttf","700":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPErr58Ht9a8GYeA.ttf","regular":"http://fonts.gstatic.com/s/manuale/v3/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf","italic":"http://fonts.gstatic.com/s/manuale/v3/f0X00eas_8Z-TFZdNPTOx-vD-aYfeA.ttf","500italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2M8Ln8Y0DceA0OQ.ttf","600italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2H8Xn8Y0DceA0OQ.ttf","700italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2e8Tn8Y0DceA0OQ.ttf"},"Glass Antiqua":{"regular":"http://fonts.gstatic.com/s/glassantiqua/v6/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf"},"Elsie Swash Caps":{"900":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf","regular":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf"},"Revalia":{"regular":"http://fonts.gstatic.com/s/revalia/v6/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf"},"Galindo":{"regular":"http://fonts.gstatic.com/s/galindo/v6/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf"},"Ramaraja":{"regular":"http://fonts.gstatic.com/s/ramaraja/v3/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf"},"Julee":{"regular":"http://fonts.gstatic.com/s/julee/v8/TuGfUVB3RpZPQ6ZLodgzydtk.ttf"},"Molle":{"italic":"http://fonts.gstatic.com/s/molle/v7/E21n_dL5hOXFhWEsXzgmVydREus.ttf"},"Ruge Boogie":{"regular":"http://fonts.gstatic.com/s/rugeboogie/v9/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf"},"Chango":{"regular":"http://fonts.gstatic.com/s/chango/v7/2V0cKI0OB5U7WaJyz324TFUaAw.ttf"},"Marko One":{"regular":"http://fonts.gstatic.com/s/markoone/v8/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf"},"Rhodium Libre":{"regular":"http://fonts.gstatic.com/s/rhodiumlibre/v3/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf"},"Redressed":{"regular":"http://fonts.gstatic.com/s/redressed/v9/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf"},"Gugi":{"regular":"http://fonts.gstatic.com/s/gugi/v5/A2BVn5dXywshVA6A9DEfgqM.ttf"},"Oldenburg":{"regular":"http://fonts.gstatic.com/s/oldenburg/v6/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf"},"Fascinate Inline":{"regular":"http://fonts.gstatic.com/s/fascinateinline/v8/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf"},"Flavors":{"regular":"http://fonts.gstatic.com/s/flavors/v7/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf"},"Mina":{"700":"http://fonts.gstatic.com/s/mina/v2/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf","regular":"http://fonts.gstatic.com/s/mina/v2/-nFzOGc18vARrz9j7i3y65o.ttf"},"IM Fell Great Primer":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf","italic":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf"},"Ravi Prakash":{"regular":"http://fonts.gstatic.com/s/raviprakash/v5/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf"},"Offside":{"regular":"http://fonts.gstatic.com/s/offside/v6/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf"},"Akronim":{"regular":"http://fonts.gstatic.com/s/akronim/v8/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf"},"Jua":{"regular":"http://fonts.gstatic.com/s/jua/v4/co3KmW9ljjAjcw.ttf"},"Bilbo":{"regular":"http://fonts.gstatic.com/s/bilbo/v8/o-0EIpgpwWwZ210hpIRz4wxE.ttf"},"Cormorant Unicase":{"300":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf","500":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf","600":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf","700":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf","regular":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf"},"Poor Story":{"regular":"http://fonts.gstatic.com/s/poorstory/v5/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf"},"Barrio":{"regular":"http://fonts.gstatic.com/s/barrio/v3/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf"},"Chakra Petch":{"300":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf","500":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf","600":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf","700":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf","300italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf","regular":"http://fonts.gstatic.com/s/chakrapetch/v2/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf","italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf","500italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf","600italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf","700italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf"},"Sree Krushnadevaraya":{"regular":"http://fonts.gstatic.com/s/sreekrushnadevaraya/v6/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf"},"Combo":{"regular":"http://fonts.gstatic.com/s/combo/v7/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf"},"Monofett":{"regular":"http://fonts.gstatic.com/s/monofett/v8/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf"},"Snippet":{"regular":"http://fonts.gstatic.com/s/snippet/v8/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf"},"Kavoon":{"regular":"http://fonts.gstatic.com/s/kavoon/v7/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf"},"MedievalSharp":{"regular":"http://fonts.gstatic.com/s/medievalsharp/v11/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf"},"Miltonian Tattoo":{"regular":"http://fonts.gstatic.com/s/miltoniantattoo/v14/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf"},"Ruthie":{"regular":"http://fonts.gstatic.com/s/ruthie/v9/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf"},"Jim Nightshade":{"regular":"http://fonts.gstatic.com/s/jimnightshade/v6/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf"},"Diplomata":{"regular":"http://fonts.gstatic.com/s/diplomata/v10/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf"},"Griffy":{"regular":"http://fonts.gstatic.com/s/griffy/v7/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf"},"Asset":{"regular":"http://fonts.gstatic.com/s/asset/v9/SLXGc1na-mM4cWImRJqExst1.ttf"},"IM Fell DW Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldwpicasc/v8/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf"},"Keania One":{"regular":"http://fonts.gstatic.com/s/keaniaone/v6/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf"},"Kumar One":{"regular":"http://fonts.gstatic.com/s/kumarone/v3/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf"},"Monsieur La Doulaise":{"regular":"http://fonts.gstatic.com/s/monsieurladoulaise/v7/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf"},"Smythe":{"regular":"http://fonts.gstatic.com/s/smythe/v9/MwQ3bhT01--coT1BOLh_uGInjA.ttf"},"Dr Sugiyama":{"regular":"http://fonts.gstatic.com/s/drsugiyama/v8/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf"},"Baloo Tammudu":{"regular":"http://fonts.gstatic.com/s/balootammudu/v5/mFT3Wb8Qza7c_Z5HTsC_5nxW8EpQl9RWxD8.ttf"},"Tillana":{"500":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf","600":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf","700":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf","800":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/tillana/v4/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf"},"Rum Raisin":{"regular":"http://fonts.gstatic.com/s/rumraisin/v6/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf"},"Lancelot":{"regular":"http://fonts.gstatic.com/s/lancelot/v8/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf"},"Irish Grover":{"regular":"http://fonts.gstatic.com/s/irishgrover/v9/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf"},"Krub":{"200":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf","300":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf","500":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf","600":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf","700":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf","200italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf","300italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf","regular":"http://fonts.gstatic.com/s/krub/v2/sZlLdRyC6CRYXkYQDLlTW6E.ttf","italic":"http://fonts.gstatic.com/s/krub/v2/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf","500italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf","600italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf","700italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf"},"Modak":{"regular":"http://fonts.gstatic.com/s/modak/v4/EJRYQgs1XtIEsnMH8BVZ76KU.ttf"},"Sahitya":{"700":"http://fonts.gstatic.com/s/sahitya/v3/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf","regular":"http://fonts.gstatic.com/s/sahitya/v3/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf"},"Montaga":{"regular":"http://fonts.gstatic.com/s/montaga/v6/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf"},"Mrs Sheppards":{"regular":"http://fonts.gstatic.com/s/mrssheppards/v7/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf"},"Bigshot One":{"regular":"http://fonts.gstatic.com/s/bigshotone/v9/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf"},"Dangrek":{"regular":"http://fonts.gstatic.com/s/dangrek/v10/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf"},"Margarine":{"regular":"http://fonts.gstatic.com/s/margarine/v7/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf"},"Kantumruy":{"300":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf","700":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf","regular":"http://fonts.gstatic.com/s/kantumruy/v5/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf"},"Modern Antiqua":{"regular":"http://fonts.gstatic.com/s/modernantiqua/v8/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf"},"Caesar Dressing":{"regular":"http://fonts.gstatic.com/s/caesardressing/v7/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf"},"Devonshire":{"regular":"http://fonts.gstatic.com/s/devonshire/v7/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf"},"Metal Mania":{"regular":"http://fonts.gstatic.com/s/metalmania/v8/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf"},"Gaegu":{"300":"http://fonts.gstatic.com/s/gaegu/v5/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf","700":"http://fonts.gstatic.com/s/gaegu/v5/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf","regular":"http://fonts.gstatic.com/s/gaegu/v5/TuGfUVB6Up9NU6ZLodgzydtk.ttf"},"Jacques Francois Shadow":{"regular":"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v7/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf"},"Galdeano":{"regular":"http://fonts.gstatic.com/s/galdeano/v8/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf"},"Noto Serif TC":{"200":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf","300":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf","500":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf","600":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf","700":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf","900":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf","regular":"http://fonts.gstatic.com/s/notoseriftc/v2/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf"},"Suwannaphum":{"regular":"http://fonts.gstatic.com/s/suwannaphum/v12/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf"},"Jomhuria":{"regular":"http://fonts.gstatic.com/s/jomhuria/v6/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf"},"Bayon":{"regular":"http://fonts.gstatic.com/s/bayon/v12/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf"},"Chathura":{"100":"http://fonts.gstatic.com/s/chathura/v4/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf","300":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf","700":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf","800":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf","regular":"http://fonts.gstatic.com/s/chathura/v4/_gP71R7-rzUuVjim418goUC5S-Zy.ttf"},"Gamja Flower":{"regular":"http://fonts.gstatic.com/s/gamjaflower/v5/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf"},"Meie Script":{"regular":"http://fonts.gstatic.com/s/meiescript/v6/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf"},"IM Fell Great Primer SC":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimersc/v8/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf"},"Baloo Da":{"regular":"http://fonts.gstatic.com/s/balooda/v4/LhWmMVnXOfIZO795FXkfSvtVM8mZ.ttf"},"Atomic Age":{"regular":"http://fonts.gstatic.com/s/atomicage/v11/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf"},"Kavivanar":{"regular":"http://fonts.gstatic.com/s/kavivanar/v4/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf"},"Sunshiney":{"regular":"http://fonts.gstatic.com/s/sunshiney/v9/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf"},"Bahiana":{"regular":"http://fonts.gstatic.com/s/bahiana/v3/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf"},"Seymour One":{"regular":"http://fonts.gstatic.com/s/seymourone/v6/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf"},"Kirang Haerang":{"regular":"http://fonts.gstatic.com/s/kiranghaerang/v5/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf"},"Asar":{"regular":"http://fonts.gstatic.com/s/asar/v6/sZlLdRyI6TBIXkYQDLlTW6E.ttf"},"Ribeye Marrow":{"regular":"http://fonts.gstatic.com/s/ribeyemarrow/v8/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf"},"Miniver":{"regular":"http://fonts.gstatic.com/s/miniver/v7/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf"},"Noto Serif SC":{"200":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf","300":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf","500":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf","600":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf","700":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf","900":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf","regular":"http://fonts.gstatic.com/s/notoserifsc/v2/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf"},"Moul":{"regular":"http://fonts.gstatic.com/s/moul/v10/nuF2D__FSo_3E-RYiJCy-00.ttf"},"Felipa":{"regular":"http://fonts.gstatic.com/s/felipa/v6/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf"},"Macondo":{"regular":"http://fonts.gstatic.com/s/macondo/v7/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf"},"Vollkorn SC":{"600":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf","700":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf","900":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf","regular":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf"},"Snowburst One":{"regular":"http://fonts.gstatic.com/s/snowburstone/v6/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf"},"Ewert":{"regular":"http://fonts.gstatic.com/s/ewert/v6/va9I4kzO2tFODYBvS-J3kbDP.ttf"},"Original Surfer":{"regular":"http://fonts.gstatic.com/s/originalsurfer/v7/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf"},"Zilla Slab Highlight":{"700":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf","regular":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf"},"Song Myung":{"regular":"http://fonts.gstatic.com/s/songmyung/v5/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf"},"IM Fell Double Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldoublepicasc/v8/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf"},"Charmonman":{"700":"http://fonts.gstatic.com/s/charmonman/v2/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf","regular":"http://fonts.gstatic.com/s/charmonman/v2/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf"},"Trochut":{"700":"http://fonts.gstatic.com/s/trochut/v6/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf","regular":"http://fonts.gstatic.com/s/trochut/v6/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf","italic":"http://fonts.gstatic.com/s/trochut/v6/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf"},"Kdam Thmor":{"regular":"http://fonts.gstatic.com/s/kdamthmor/v6/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf"},"Astloch":{"700":"http://fonts.gstatic.com/s/astloch/v9/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf","regular":"http://fonts.gstatic.com/s/astloch/v9/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf"},"KoHo":{"200":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf","300":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf","500":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf","600":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf","700":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf","200italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf","300italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf","regular":"http://fonts.gstatic.com/s/koho/v2/K2F-fZ5fmddNBikefJbSOos.ttf","italic":"http://fonts.gstatic.com/s/koho/v2/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf","500italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf","600italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf","700italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf"},"Goblin One":{"regular":"http://fonts.gstatic.com/s/goblinone/v8/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf"},"Moulpali":{"regular":"http://fonts.gstatic.com/s/moulpali/v11/H4ckBXKMl9HagUWymyY6wr-wg763.ttf"},"Kenia":{"regular":"http://fonts.gstatic.com/s/kenia/v10/jizURE5PuHQH9qCONUGswfGM.ttf"},"Nova Script":{"regular":"http://fonts.gstatic.com/s/novascript/v11/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf"},"Staatliches":{"regular":"http://fonts.gstatic.com/s/staatliches/v1/HI_OiY8KO6hCsQSoAPmtMbec.ttf"},"Arbutus":{"regular":"http://fonts.gstatic.com/s/arbutus/v8/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf"},"Piedra":{"regular":"http://fonts.gstatic.com/s/piedra/v7/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf"},"Warnes":{"regular":"http://fonts.gstatic.com/s/warnes/v8/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf"},"Libre Barcode 128":{"regular":"http://fonts.gstatic.com/s/librebarcode128/v8/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf"},"Romanesco":{"regular":"http://fonts.gstatic.com/s/romanesco/v7/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf"},"Almendra Display":{"regular":"http://fonts.gstatic.com/s/almendradisplay/v9/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf"},"Unlock":{"regular":"http://fonts.gstatic.com/s/unlock/v8/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf"},"Nova Cut":{"regular":"http://fonts.gstatic.com/s/novacut/v10/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf"},"Miss Fajardose":{"regular":"http://fonts.gstatic.com/s/missfajardose/v8/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf"},"Bigelow Rules":{"regular":"http://fonts.gstatic.com/s/bigelowrules/v7/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf"},"Almendra SC":{"regular":"http://fonts.gstatic.com/s/almendrasc/v9/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf"},"Suravaram":{"regular":"http://fonts.gstatic.com/s/suravaram/v5/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf"},"Miltonian":{"regular":"http://fonts.gstatic.com/s/miltonian/v12/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf"},"Jolly Lodger":{"regular":"http://fonts.gstatic.com/s/jollylodger/v6/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf"},"Nova Oval":{"regular":"http://fonts.gstatic.com/s/novaoval/v10/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf"},"Bonbon":{"regular":"http://fonts.gstatic.com/s/bonbon/v10/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf"},"Smokum":{"regular":"http://fonts.gstatic.com/s/smokum/v9/TK3iWkUbAhopmrdGHjUHte5fKg.ttf"},"Taprom":{"regular":"http://fonts.gstatic.com/s/taprom/v10/UcCn3F82JHycULbFQyk3-0kvHg.ttf"},"Freehand":{"regular":"http://fonts.gstatic.com/s/freehand/v10/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf"},"Londrina Shadow":{"regular":"http://fonts.gstatic.com/s/londrinashadow/v8/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf"},"Tenali Ramakrishna":{"regular":"http://fonts.gstatic.com/s/tenaliramakrishna/v4/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KA.ttf"},"Bungee Outline":{"regular":"http://fonts.gstatic.com/s/bungeeoutline/v4/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf"},"Passero One":{"regular":"http://fonts.gstatic.com/s/passeroone/v10/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf"},"Sedgwick Ave Display":{"regular":"http://fonts.gstatic.com/s/sedgwickavedisplay/v4/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf"},"Metal":{"regular":"http://fonts.gstatic.com/s/metal/v11/lW-wwjUJIXTo7i3nnoQAUdN2.ttf"},"Jacques Francois":{"regular":"http://fonts.gstatic.com/s/jacquesfrancois/v6/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf"},"Butterfly Kids":{"regular":"http://fonts.gstatic.com/s/butterflykids/v7/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf"},"Lakki Reddy":{"regular":"http://fonts.gstatic.com/s/lakkireddy/v5/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf"},"GFS Neohellenic":{"700":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf","regular":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf","italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf","700italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf"},"Geostar Fill":{"regular":"http://fonts.gstatic.com/s/geostarfill/v9/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf"},"Gorditas":{"700":"http://fonts.gstatic.com/s/gorditas/v6/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf","regular":"http://fonts.gstatic.com/s/gorditas/v6/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf"},"Fascinate":{"regular":"http://fonts.gstatic.com/s/fascinate/v7/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf"},"Bungee Hairline":{"regular":"http://fonts.gstatic.com/s/bungeehairline/v4/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf"},"Sofadi One":{"regular":"http://fonts.gstatic.com/s/sofadione/v7/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf"},"Chenla":{"regular":"http://fonts.gstatic.com/s/chenla/v11/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf"},"Aleo":{"300":"http://fonts.gstatic.com/s/aleo/v1/c4mg1nF8G8_syKbr9DU.ttf","700":"http://fonts.gstatic.com/s/aleo/v1/c4mg1nF8G8_syLbs9DU.ttf","300italic":"http://fonts.gstatic.com/s/aleo/v1/c4mi1nF8G8_swAjxeDdJmg.ttf","regular":"http://fonts.gstatic.com/s/aleo/v1/c4mv1nF8G8_s8Ao.ttf","italic":"http://fonts.gstatic.com/s/aleo/v1/c4mh1nF8G8_swAjJ1A.ttf","700italic":"http://fonts.gstatic.com/s/aleo/v1/c4mi1nF8G8_swAjxaDBJmg.ttf"},"East Sea Dokdo":{"regular":"http://fonts.gstatic.com/s/eastseadokdo/v5/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf"},"Gidugu":{"regular":"http://fonts.gstatic.com/s/gidugu/v5/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf"},"Supermercado One":{"regular":"http://fonts.gstatic.com/s/supermercadoone/v8/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf"},"Sevillana":{"regular":"http://fonts.gstatic.com/s/sevillana/v7/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf"},"Kodchasan":{"200":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf","300":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf","500":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf","600":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf","700":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf","200italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf","300italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf","regular":"http://fonts.gstatic.com/s/kodchasan/v2/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf","italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf","500italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf","600italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf","700italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf"},"Preahvihear":{"regular":"http://fonts.gstatic.com/s/preahvihear/v10/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf"},"Stalinist One":{"regular":"http://fonts.gstatic.com/s/stalinistone/v20/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf"},"Aubrey":{"regular":"http://fonts.gstatic.com/s/aubrey/v11/q5uGsou7NPBw-p7vugNsCxVEgA.ttf"},"Libre Barcode 39 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39text/v8/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf"},"ZCOOL XiaoWei":{"regular":"http://fonts.gstatic.com/s/zcoolxiaowei/v1/i7dMIFFrTRywPpUVX9_RJyM1YFI.ttf"},"Macondo Swash Caps":{"regular":"http://fonts.gstatic.com/s/macondoswashcaps/v6/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf"},"Geostar":{"regular":"http://fonts.gstatic.com/s/geostar/v9/sykz-yx4n701VLOftSq9-trEvlQ.ttf"},"Major Mono Display":{"regular":"http://fonts.gstatic.com/s/majormonodisplay/v1/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCg.ttf"},"Erica One":{"regular":"http://fonts.gstatic.com/s/ericaone/v9/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf"},"Federant":{"regular":"http://fonts.gstatic.com/s/federant/v10/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf"},"Peddana":{"regular":"http://fonts.gstatic.com/s/peddana/v6/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf"},"Fruktur":{"regular":"http://fonts.gstatic.com/s/fruktur/v11/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf"},"Libre Barcode 39 Extended Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39extendedtext/v7/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf"},"Londrina Sketch":{"regular":"http://fonts.gstatic.com/s/londrinasketch/v7/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf"},"Butcherman":{"regular":"http://fonts.gstatic.com/s/butcherman/v10/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf"},"Mr Bedfort":{"regular":"http://fonts.gstatic.com/s/mrbedfort/v7/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf"},"Emblema One":{"regular":"http://fonts.gstatic.com/s/emblemaone/v7/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf"},"Thasadith":{"700":"http://fonts.gstatic.com/s/thasadith/v2/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf","regular":"http://fonts.gstatic.com/s/thasadith/v2/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf","italic":"http://fonts.gstatic.com/s/thasadith/v2/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf","700italic":"http://fonts.gstatic.com/s/thasadith/v2/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf"},"Fasthand":{"regular":"http://fonts.gstatic.com/s/fasthand/v9/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf"},"Dokdo":{"regular":"http://fonts.gstatic.com/s/dokdo/v5/esDf315XNuCBLxLo4NaMlKcH.ttf"},"Fahkwang":{"200":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf","300":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf","500":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf","600":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf","700":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf","200italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf","300italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf","regular":"http://fonts.gstatic.com/s/fahkwang/v2/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf","italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf","500italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf","600italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf","700italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf"},"Stylish":{"regular":"http://fonts.gstatic.com/s/stylish/v5/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf"},"Hanalei":{"regular":"http://fonts.gstatic.com/s/hanalei/v8/E21n_dD8iufIjBRHXzgmVydREus.ttf"},"Dhurjati":{"regular":"http://fonts.gstatic.com/s/dhurjati/v6/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf"},"Sarabun":{"100":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf","200":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf","300":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf","500":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf","600":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf","700":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf","800":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf","100italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf","200italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf","300italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf","regular":"http://fonts.gstatic.com/s/sarabun/v6/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf","italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf","500italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf","600italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf","700italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf","800italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf"},"Libre Barcode 39 Extended":{"regular":"http://fonts.gstatic.com/s/librebarcode39extended/v7/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf"},"Cute Font":{"regular":"http://fonts.gstatic.com/s/cutefont/v5/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf"},"Kumar One Outline":{"regular":"http://fonts.gstatic.com/s/kumaroneoutline/v4/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf"},"Black And White Picture":{"regular":"http://fonts.gstatic.com/s/blackandwhitepicture/v5/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf"},"Libre Barcode 39":{"regular":"http://fonts.gstatic.com/s/librebarcode39/v8/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf"},"Hi Melody":{"regular":"http://fonts.gstatic.com/s/himelody/v5/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf"},"BioRhyme Expanded":{"200":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf","300":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf","700":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf","800":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf","regular":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf"},"Yeon Sung":{"regular":"http://fonts.gstatic.com/s/yeonsung/v5/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf"},"Notable":{"regular":"http://fonts.gstatic.com/s/notable/v3/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf"},"Srisakdi":{"700":"http://fonts.gstatic.com/s/srisakdi/v2/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/srisakdi/v2/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf"},"Libre Barcode 128 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode128text/v8/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf"},"ZCOOL QingKe HuangYou":{"regular":"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v1/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIiw.ttf"},"ZCOOL KuaiLe":{"regular":"http://fonts.gstatic.com/s/zcoolkuaile/v1/tssqApdaRQokwFjFJjvM6h2Wpg.ttf"},"B612 Mono":{"700":"http://fonts.gstatic.com/s/b612mono/v1/kmK6Zq85QVWbN1eW6lJdayv4og.ttf","regular":"http://fonts.gstatic.com/s/b612mono/v1/kmK_Zq85QVWbN1eW6lJl1w.ttf","italic":"http://fonts.gstatic.com/s/b612mono/v1/kmK5Zq85QVWbN1eW6lJV1Q7Y.ttf","700italic":"http://fonts.gstatic.com/s/b612mono/v1/kmKkZq85QVWbN1eW6lJV1TZkp8VL.ttf"},"B612":{"700":"http://fonts.gstatic.com/s/b612/v1/3Jn9SDDxiSz34oWXPDA.ttf","regular":"http://fonts.gstatic.com/s/b612/v1/3JnySDDxiSz32jk.ttf","italic":"http://fonts.gstatic.com/s/b612/v1/3Jn8SDDxiSz36juyHA.ttf","700italic":"http://fonts.gstatic.com/s/b612/v1/3Jn_SDDxiSz36juKoDWBSQ.ttf"}}
|
1 |
+
{"Roboto":{"100":"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgWxP.ttf","300":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5vAw.ttf","500":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9vAw.ttf","700":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlvAw.ttf","900":"http://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmYUtvAw.ttf","100italic":"http://fonts.gstatic.com/s/roboto/v18/KFOiCnqEu92Fr1Mu51QrIzc.ttf","300italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TjARc9.ttf","regular":"http://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Me5Q.ttf","italic":"http://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu52xP.ttf","500italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ABc9.ttf","700italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBhc9.ttf","900italic":"http://fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TLBBc9.ttf"},"Open Sans":{"300":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8-VQ.ttf","600":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirk-VQ.ttf","700":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rg-VQ.ttf","800":"http://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN8rs-VQ.ttf","300italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWyV-hs.ttf","regular":"http://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-U1Ug.ttf","italic":"http://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUJ0e.ttf","600italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKXGUehs.ttf","700italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWiUOhs.ttf","800italic":"http://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKW-U-hs.ttf"},"Lato":{"100":"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHh30wWw.ttf","300":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh7USew8.ttf","700":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVew8.ttf","900":"http://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50Xew8.ttf","100italic":"http://fonts.gstatic.com/s/lato/v14/S6u-w4BMUTPHjxsIPy-v.ttf","300italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI9w2PHA.ttf","regular":"http://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHvxk.ttf","italic":"http://fonts.gstatic.com/s/lato/v14/S6u8w4BMUTPHjxswWw.ttf","700italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI5wqPHA.ttf","900italic":"http://fonts.gstatic.com/s/lato/v14/S6u_w4BMUTPHjxsI3wiPHA.ttf"},"Montserrat":{"100":"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm45_Qphzg.ttf","200":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_aZA7g4.ttf","300":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_cJD7g4.ttf","500":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC7g4.ttf","600":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF7g4.ttf","700":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_dJE7g4.ttf","800":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_c5H7g4.ttf","900":"http://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_epG7g4.ttf","100italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUOjIg1_i6t8kCHKm459WxZqi7j.ttf","200italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZBg_D-w.ttf","300italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZYgzD-w.ttf","regular":"http://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm45xW4.ttf","italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUQjIg1_i6t8kCHKm459Wxhzg.ttf","500italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZOg3D-w.ttf","600italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZFgrD-w.ttf","700italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZcgvD-w.ttf","800italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZbgjD-w.ttf","900italic":"http://fonts.gstatic.com/s/montserrat/v12/JTUPjIg1_i6t8kCHKm459WxZSgnD-w.ttf"},"Roboto Condensed":{"300":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCM.ttf","700":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCM.ttf","300italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYag.ttf","regular":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVl2ZhZI2eCN5jzbjEETS9weq8-59U.ttf","italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CA.ttf","700italic":"http://fonts.gstatic.com/s/robotocondensed/v16/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYag.ttf"},"Source Sans Pro":{"200":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkA.ttf","300":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkA.ttf","600":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkA.ttf","700":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkA.ttf","900":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkA.ttf","200italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr.ttf","300italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr.ttf","regular":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3aPw.ttf","italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7g.ttf","600italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr.ttf","700italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr.ttf","900italic":"http://fonts.gstatic.com/s/sourcesanspro/v11/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr.ttf"},"Oswald":{"200":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-1h4jvQ.ttf","300":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-sh0jvQ.ttf","500":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-6hwjvQ.ttf","600":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-xhsjvQ.ttf","700":"http://fonts.gstatic.com/s/oswald/v16/TK3hWkUHHAIjg75-ohojvQ.ttf","regular":"http://fonts.gstatic.com/s/oswald/v16/TK3iWkUHHAIjg75GHg.ttf"},"Raleway":{"100":"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNwE4ISg.ttf","200":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwOIpaqE.ttf","300":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIYqaqE.ttf","500":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwN4raqE.ttf","600":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwPIsaqE.ttf","700":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwJYtaqE.ttf","800":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwIouaqE.ttf","900":"http://fonts.gstatic.com/s/raleway/v12/1Ptrg8zYS_SKggPNwK4vaqE.ttf","100italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptqg8zYS_SKggPNyCgwLoFv.ttf","200italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwgqBPBQ.ttf","300italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw5qNPBQ.ttf","regular":"http://fonts.gstatic.com/s/raleway/v12/1Ptug8zYS_SKggPN-Co.ttf","italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptsg8zYS_SKggPNyCgISg.ttf","500italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwvqJPBQ.ttf","600italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwkqVPBQ.ttf","700italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw9qRPBQ.ttf","800italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgw6qdPBQ.ttf","900italic":"http://fonts.gstatic.com/s/raleway/v12/1Ptpg8zYS_SKggPNyCgwzqZPBQ.ttf"},"Merriweather":{"300":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l521wRpXw.ttf","700":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52xwNpXw.ttf","900":"http://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52_wFpXw.ttf","300italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_.ttf","regular":"http://fonts.gstatic.com/s/merriweather/v19/u-440qyriQwlOrhSvowK_l5Oew.ttf","italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4m0qyriQwlOrhSvowK_l5-eSZJ.ttf","700italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_.ttf","900italic":"http://fonts.gstatic.com/s/merriweather/v19/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_.ttf"},"PT Sans":{"700":"http://fonts.gstatic.com/s/ptsans/v9/jizfRExUiTo99u79B_mh4Ok.ttf","regular":"http://fonts.gstatic.com/s/ptsans/v9/jizaRExUiTo99u79P0U.ttf","italic":"http://fonts.gstatic.com/s/ptsans/v9/jizYRExUiTo99u79D0eEwA.ttf","700italic":"http://fonts.gstatic.com/s/ptsans/v9/jizdRExUiTo99u79D0e8fOytKA.ttf"},"Roboto Slab":{"100":"http://fonts.gstatic.com/s/robotoslab/v7/BngOUXZYTXPIvIBgJJSb6u-u5qA.ttf","300":"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u9mxICB.ttf","700":"http://fonts.gstatic.com/s/robotoslab/v7/BngRUXZYTXPIvIBgJJSb6u92w4CB.ttf","regular":"http://fonts.gstatic.com/s/robotoslab/v7/BngMUXZYTXPIvIBgJJSb6tfK.ttf"},"Slabo 27px":{"regular":"http://fonts.gstatic.com/s/slabo27px/v4/mFT0WbgBwKPR_Z4hGN2qsxg.ttf"},"Poppins":{"100":"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrLPTedw.ttf","200":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLFj_V1s.ttf","300":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDz8V1s.ttf","500":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLGT9V1s.ttf","600":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLEj6V1s.ttf","700":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLCz7V1s.ttf","800":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLDD4V1s.ttf","900":"http://fonts.gstatic.com/s/poppins/v5/pxiByp8kv8JHgFVrLBT5V1s.ttf","100italic":"http://fonts.gstatic.com/s/poppins/v5/pxiAyp8kv8JHgFVrJJLmE3tF.ttf","200italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmv1plEA.ttf","300italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm21llEA.ttf","regular":"http://fonts.gstatic.com/s/poppins/v5/pxiEyp8kv8JHgFVrFJA.ttf","italic":"http://fonts.gstatic.com/s/poppins/v5/pxiGyp8kv8JHgFVrJJLedw.ttf","500italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmg1hlEA.ttf","600italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmr19lEA.ttf","700italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLmy15lEA.ttf","800italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm111lEA.ttf","900italic":"http://fonts.gstatic.com/s/poppins/v5/pxiDyp8kv8JHgFVrJJLm81xlEA.ttf"},"Noto Sans":{"700":"http://fonts.gstatic.com/s/notosans/v7/o-0NIpQlx3QUlC5A4PNjXhFlYw.ttf","regular":"http://fonts.gstatic.com/s/notosans/v7/o-0IIpQlx3QUlC5A4PNb4g.ttf","italic":"http://fonts.gstatic.com/s/notosans/v7/o-0OIpQlx3QUlC5A4PNr4DRF.ttf","700italic":"http://fonts.gstatic.com/s/notosans/v7/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf"},"Ubuntu":{"300":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoC1CzTtw.ttf","500":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoCjC3Ttw.ttf","700":"http://fonts.gstatic.com/s/ubuntu/v12/4iCv6KVjbNBYlgoCxCvTtw.ttf","300italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejZftWyI.ttf","regular":"http://fonts.gstatic.com/s/ubuntu/v12/4iCs6KVjbNBYlgo6eA.ttf","italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCu6KVjbNBYlgoKeg7z.ttf","500italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejYHtGyI.ttf","700italic":"http://fonts.gstatic.com/s/ubuntu/v12/4iCp6KVjbNBYlgoKejZPsmyI.ttf"},"Open Sans Condensed":{"300":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuI.ttf","700":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuI.ttf","300italic":"http://fonts.gstatic.com/s/opensanscondensed/v12/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQg.ttf"},"Playfair Display":{"700":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWk.ttf","900":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWk.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFiD-vYSZviVYUb_rj3ij__anPXPTs.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhQ.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4w.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplay/v13/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4w.ttf"},"Roboto Mono":{"100":"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjAoq3o.ttf","300":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDgiVq2.ttf","500":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjC4iFq2.ttf","700":"http://fonts.gstatic.com/s/robotomono/v5/L0xkDF4xlVMF-BfR8bXMIjDwjlq2.ttf","100italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xlDF4xlVMF-BfR8bXMIjhOkx6WXw.ttf","300italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7o.ttf","regular":"http://fonts.gstatic.com/s/robotomono/v5/L0x5DF4xlVMF-BfR8bXMIghM.ttf","italic":"http://fonts.gstatic.com/s/robotomono/v5/L0x7DF4xlVMF-BfR8bXMIjhOq3o.ttf","500italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk461f7o.ttf","700italic":"http://fonts.gstatic.com/s/robotomono/v5/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7o.ttf"},"Lora":{"700":"http://fonts.gstatic.com/s/lora/v12/0QIgMX1D_JOuO7HeBts.ttf","regular":"http://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuAw0.ttf","italic":"http://fonts.gstatic.com/s/lora/v12/0QIhMX1D_JOuMw_7Jg.ttf","700italic":"http://fonts.gstatic.com/s/lora/v12/0QIiMX1D_JOuMw_Dmt5unw.ttf"},"PT Serif":{"700":"http://fonts.gstatic.com/s/ptserif/v9/EJRSQgYoZZY2vCFuvAnt65qV.ttf","regular":"http://fonts.gstatic.com/s/ptserif/v9/EJRVQgYoZZY2vCFuvDFR.ttf","italic":"http://fonts.gstatic.com/s/ptserif/v9/EJRTQgYoZZY2vCFuvAFTzro.ttf","700italic":"http://fonts.gstatic.com/s/ptserif/v9/EJRQQgYoZZY2vCFuvAFT9gaQVy4.ttf"},"Muli":{"200":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adf3nCCI.ttf","300":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adZnkCCI.ttf","600":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-ade3iCCI.ttf","700":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adYnjCCI.ttf","800":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adZXgCCI.ttf","900":"http://fonts.gstatic.com/s/muli/v12/7Au_p_0qiz-adbHhCCI.ttf","200italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-4CP2yg.ttf","300italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-hCD2yg.ttf","regular":"http://fonts.gstatic.com/s/muli/v12/7Auwp_0qiz-aTTU.ttf","italic":"http://fonts.gstatic.com/s/muli/v12/7Au-p_0qiz-afTfGKA.ttf","600italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-8Cb2yg.ttf","700italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-lCf2yg.ttf","800italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-iCT2yg.ttf","900italic":"http://fonts.gstatic.com/s/muli/v12/7Au9p_0qiz-afTf-rCX2yg.ttf"},"Titillium Web":{"200":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIw.ttf","300":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIw.ttf","600":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf","700":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf","900":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIw.ttf","200italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZg.ttf","300italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZg.ttf","regular":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf","italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf","600italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZg.ttf","700italic":"http://fonts.gstatic.com/s/titilliumweb/v6/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf"},"Mukta":{"200":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEOjFma.ttf","300":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFqj1ma.ttf","500":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEyjlma.ttf","600":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbEeiVma.ttf","700":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbF6iFma.ttf","800":"http://fonts.gstatic.com/s/mukta/v5/iJWHBXyXfDDVXbFmi1ma.ttf","regular":"http://fonts.gstatic.com/s/mukta/v5/iJWKBXyXfDDVXYnG.ttf"},"PT Sans Narrow":{"700":"http://fonts.gstatic.com/s/ptsansnarrow/v9/BngSUXNadjH0qYEzV7ab-oWlsbg95DiC.ttf","regular":"http://fonts.gstatic.com/s/ptsansnarrow/v9/BngRUXNadjH0qYEzV7ab-oWlsYCB.ttf"},"Nunito":{"200":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA-sekZg.ttf","300":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAnsSkZg.ttf","600":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofA6sKkZg.ttf","700":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAjsOkZg.ttf","800":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAksCkZg.ttf","900":"http://fonts.gstatic.com/s/nunito/v9/XRXW3I6Li01BKofAtsGkZg.ttf","200italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5MZ-vN.ttf","300italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4oZOvN.ttf","regular":"http://fonts.gstatic.com/s/nunito/v9/XRXV3I6Li01BKof4Mg.ttf","italic":"http://fonts.gstatic.com/s/nunito/v9/XRXX3I6Li01BKofIMOaE.ttf","600italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN5cYuvN.ttf","700italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN44Y-vN.ttf","800italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4kYOvN.ttf","900italic":"http://fonts.gstatic.com/s/nunito/v9/XRXQ3I6Li01BKofIMN4AYevN.ttf"},"Arimo":{"700":"http://fonts.gstatic.com/s/arimo/v11/P5sBzZCDf9_T_1Wi4QRE.ttf","regular":"http://fonts.gstatic.com/s/arimo/v11/P5sMzZCDf9_T_20e.ttf","italic":"http://fonts.gstatic.com/s/arimo/v11/P5sCzZCDf9_T_10cxCQ.ttf","700italic":"http://fonts.gstatic.com/s/arimo/v11/P5sHzZCDf9_T_10c_JhBrZc.ttf"},"Fira Sans":{"100":"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5Vn9IjO.ttf","200":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnWKnuQQ.ttf","300":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnPKruQQ.ttf","500":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnZKvuQQ.ttf","600":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnSKzuQQ.ttf","700":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnLK3uQQ.ttf","800":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnMK7uQQ.ttf","900":"http://fonts.gstatic.com/s/firasans/v8/va9B4kDNxMZdWfMOD5VnFK_uQQ.ttf","100italic":"http://fonts.gstatic.com/s/firasans/v8/va9A4kDNxMZdWfMOD5VvkrCqYTc.ttf","200italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAGQBf_.ttf","300italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBiQxf_.ttf","regular":"http://fonts.gstatic.com/s/firasans/v8/va9E4kDNxMZdWfMOD5VfkA.ttf","italic":"http://fonts.gstatic.com/s/firasans/v8/va9C4kDNxMZdWfMOD5VvkojO.ttf","500italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrA6Qhf_.ttf","600italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrAWRRf_.ttf","700italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrByRBf_.ttf","800italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBuRxf_.ttf","900italic":"http://fonts.gstatic.com/s/firasans/v8/va9f4kDNxMZdWfMOD5VvkrBKRhf_.ttf"},"Noto Serif":{"700":"http://fonts.gstatic.com/s/notoserif/v6/ga6Law1J5X9T9RW6j9bNdOwzTRA.ttf","regular":"http://fonts.gstatic.com/s/notoserif/v6/ga6Iaw1J5X9T9RW6j9bNTFA.ttf","italic":"http://fonts.gstatic.com/s/notoserif/v6/ga6Kaw1J5X9T9RW6j9bNfFIWbQ.ttf","700italic":"http://fonts.gstatic.com/s/notoserif/v6/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedA.ttf"},"Work Sans":{"100":"http://fonts.gstatic.com/s/worksans/v3/QGYqz_wNahGAdqQ43Rh3H6Ds.ttf","200":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3s4HMnw.ttf","300":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh314LMnw.ttf","500":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3j4PMnw.ttf","600":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3o4TMnw.ttf","700":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3x4XMnw.ttf","800":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh324bMnw.ttf","900":"http://fonts.gstatic.com/s/worksans/v3/QGYpz_wNahGAdqQ43Rh3_4fMnw.ttf","regular":"http://fonts.gstatic.com/s/worksans/v3/QGYsz_wNahGAdqQ43RhPew.ttf"},"Rubik":{"300":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Fqj1ma.ttf","500":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7Eyjlma.ttf","700":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7F6iFma.ttf","900":"http://fonts.gstatic.com/s/rubik/v7/iJWHBXyIfDnIV7FCilma.ttf","300italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nEldWY8WU.ttf","regular":"http://fonts.gstatic.com/s/rubik/v7/iJWKBXyIfDnIV4nG.ttf","italic":"http://fonts.gstatic.com/s/rubik/v7/iJWEBXyIfDnIV7nErXk.ttf","500italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElY2Z8WU.ttf","700italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElcWf8WU.ttf","900italic":"http://fonts.gstatic.com/s/rubik/v7/iJWBBXyIfDnIV7nElf2d8WU.ttf"},"Nanum Gothic":{"700":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_oRfi-oW3hYwmKDpxS7F_LQv37zg.ttf","800":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_oRfi-oW3hYwmKDpxS7F_LXv77zg.ttf","regular":"http://fonts.gstatic.com/s/nanumgothic/v13/PN_3Rfi-oW3hYwmKDpxS7F_z_g.ttf"},"Quicksand":{"300":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYoSA.ttf","500":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_p2HcoSA.ttf","700":"http://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pkHEoSA.ttf","regular":"http://fonts.gstatic.com/s/quicksand/v8/6xKtdSZaM9iE8KbpRA_RLA.ttf"},"Hind":{"300":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfMJaIRs.ttf","500":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfJpbIRs.ttf","600":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfLZcIRs.ttf","700":"http://fonts.gstatic.com/s/hind/v8/5aU19_a8oxmIfNJdIRs.ttf","regular":"http://fonts.gstatic.com/s/hind/v8/5aU69_a8oxmIRG4.ttf"},"Dosis":{"200":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGnKtCC.ttf","300":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHDKdCC.ttf","500":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzGbKNCC.ttf","600":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzG3L9CC.ttf","700":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHTLtCC.ttf","800":"http://fonts.gstatic.com/s/dosis/v7/HhyXU5sn9vOmLzHPLdCC.ttf","regular":"http://fonts.gstatic.com/s/dosis/v7/HhyaU5sn9vOmLwlv.ttf"},"Inconsolata":{"700":"http://fonts.gstatic.com/s/inconsolata/v16/QldXNThLqRwH-OJ1UHjlKGHiw41u.ttf","regular":"http://fonts.gstatic.com/s/inconsolata/v16/QldKNThLqRwH-OJ1UHjlKFle.ttf"},"Crimson Text":{"600":"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJXsCx2Cw.ttf","700":"http://fonts.gstatic.com/s/crimsontext/v8/wlppgwHKFkZgtmSR3NB0oRJX1C12Cw.ttf","regular":"http://fonts.gstatic.com/s/crimsontext/v8/wlp2gwHKFkZgtmSR3NB0oRJvaA.ttf","italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlpogwHKFkZgtmSR3NB0oRJfaghW.ttf","600italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV.ttf","700italic":"http://fonts.gstatic.com/s/crimsontext/v8/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV.ttf"},"Oxygen":{"300":"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCJW8Dbw.ttf","700":"http://fonts.gstatic.com/s/oxygen/v7/2sDcZG1Wl4LcnbuCNWgDbw.ttf","regular":"http://fonts.gstatic.com/s/oxygen/v7/2sDfZG1Wl4Lcnbu6iQ.ttf"},"Anton":{"regular":"http://fonts.gstatic.com/s/anton/v9/1Ptgg87LROyAm0K0.ttf"},"Libre Baskerville":{"700":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYw.ttf","regular":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNe.ttf","italic":"http://fonts.gstatic.com/s/librebaskerville/v5/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxY.ttf"},"Bitter":{"700":"http://fonts.gstatic.com/s/bitter/v13/rax_HiqOu8IVPmnzxKlMBA.ttf","regular":"http://fonts.gstatic.com/s/bitter/v13/rax8HiqOu8IVPmnLeA.ttf","italic":"http://fonts.gstatic.com/s/bitter/v13/rax-HiqOu8IVPmn7eoxs.ttf"},"Noto Sans KR":{"100":"http://fonts.gstatic.com/s/notosanskr/v8/Pby6FmXiEBPT4ITbgNA5CgmOsn7u.otf","300":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOelzI7g.otf","500":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7g.otf","700":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOalvI7g.otf","900":"http://fonts.gstatic.com/s/notosanskr/v8/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7g.otf","regular":"http://fonts.gstatic.com/s/notosanskr/v8/PbykFmXiEBPT4ITbgNA5Cgm20A.otf"},"Indie Flower":{"regular":"http://fonts.gstatic.com/s/indieflower/v9/m8JVjfNVeKWVnh3QMuKkFcZlbg.ttf"},"Cabin":{"500":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdfD3Nhi.ttf","600":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-Pdfv29hi.ttf","700":"http://fonts.gstatic.com/s/cabin/v12/u-480qWljRw-PdeL2thi.ttf","regular":"http://fonts.gstatic.com/s/cabin/v12/u-4x0qWljRw-Pe83.ttf","italic":"http://fonts.gstatic.com/s/cabin/v12/u-4_0qWljRw-Pd81__g.ttf","500italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xwxhuyw.ttf","600italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81xyBmuyw.ttf","700italic":"http://fonts.gstatic.com/s/cabin/v12/u-460qWljRw-Pd81x0Rnuyw.ttf"},"Fjalla One":{"regular":"http://fonts.gstatic.com/s/fjallaone/v5/Yq6R-LCAWCX3-6Ky7FAFnOY.ttf"},"Josefin Sans":{"100":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9.ttf","300":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfA.ttf","600":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfA.ttf","700":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3FZQNVED7rKGKxtqIqX5EctlldfA.ttf","100italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0.ttf","300italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0k.ttf","regular":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3aZQNVED7rKGKxtqIqX5EkCg.ttf","italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3EZQNVED7rKGKxtqIqX5EUCHx9.ttf","600italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0k.ttf","700italic":"http://fonts.gstatic.com/s/josefinsans/v12/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0k.ttf"},"Nunito Sans":{"200":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9yAv5q.ttf","300":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8WAf5q.ttf","600":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc9iB_5q.ttf","700":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8GBv5q.ttf","800":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8aBf5q.ttf","900":"http://fonts.gstatic.com/s/nunitosans/v3/pe03MImSLYBIv1o4X1M8cc8-BP5q.ttf","200italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GxZrU1Q.ttf","300italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G3JoU1Q.ttf","regular":"http://fonts.gstatic.com/s/nunitosans/v3/pe0qMImSLYBIv1o4X1M8cfe6.ttf","italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe0oMImSLYBIv1o4X1M8cce4I94.ttf","600italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4GwZuU1Q.ttf","700italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G2JvU1Q.ttf","800italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G35sU1Q.ttf","900italic":"http://fonts.gstatic.com/s/nunitosans/v3/pe01MImSLYBIv1o4X1M8cce4G1ptU1Q.ttf"},"Libre Franklin":{"100":"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRi182zI.ttf","200":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIz.ttf","300":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi20-RIz.ttf","500":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3s-BIz.ttf","600":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi3A_xIz.ttf","700":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2k_hIz.ttf","800":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi24_RIz.ttf","900":"http://fonts.gstatic.com/s/librefranklin/v2/jizAREVItHgc8qDIbSTKq4XkRi2c_BIz.ttf","100italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizHREVItHgc8qDIbSTKq4XkRiUa41YTiw.ttf","200italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq14.ttf","300italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa454xq14.ttf","regular":"http://fonts.gstatic.com/s/librefranklin/v2/jizDREVItHgc8qDIbSTKq4XkRhUY.ttf","italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizBREVItHgc8qDIbSTKq4XkRiUa2zI.ttf","500italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq14.ttf","600italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q14.ttf","700italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa4442q14.ttf","800italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q14.ttf","900italic":"http://fonts.gstatic.com/s/librefranklin/v2/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q14.ttf"},"Arvo":{"700":"http://fonts.gstatic.com/s/arvo/v10/tDbM2oWUg0MKoZw1yLQ.ttf","regular":"http://fonts.gstatic.com/s/arvo/v10/tDbD2oWUg0MKmSA.ttf","italic":"http://fonts.gstatic.com/s/arvo/v10/tDbN2oWUg0MKqSIQ6A.ttf","700italic":"http://fonts.gstatic.com/s/arvo/v10/tDbO2oWUg0MKqSIoVLHK9g.ttf"},"Karla":{"700":"http://fonts.gstatic.com/s/karla/v6/qkBWXvYC6trAT7zuC_m-.ttf","regular":"http://fonts.gstatic.com/s/karla/v6/qkBbXvYC6trAT4RS.ttf","italic":"http://fonts.gstatic.com/s/karla/v6/qkBVXvYC6trAT7RQLtk.ttf","700italic":"http://fonts.gstatic.com/s/karla/v6/qkBQXvYC6trAT7RQFmW7xL4.ttf"},"Lobster":{"regular":"http://fonts.gstatic.com/s/lobster/v20/neILzCirqoswsqX9_oU.ttf"},"Pacifico":{"regular":"http://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ96A.ttf"},"Exo 2":{"100":"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbt5LK-s.ttf","200":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7nCss8.ttf","300":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6DCcs8.ttf","500":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt7bCMs8.ttf","600":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt73D8s8.ttf","700":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6TDss8.ttf","800":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6PDcs8.ttf","900":"http://fonts.gstatic.com/s/exo2/v4/7cHrv4okm5zmbt6rDMs8.ttf","100italic":"http://fonts.gstatic.com/s/exo2/v4/7cHqv4okm5zmbtYtE48c4A.ttf","200italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEyM9wHo.ttf","300italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0c-wHo.ttf","regular":"http://fonts.gstatic.com/s/exo2/v4/7cHmv4okm5zmbuYv.ttf","italic":"http://fonts.gstatic.com/s/exo2/v4/7cHov4okm5zmbtYtK-s.ttf","500italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEx8_wHo.ttf","600italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtEzM4wHo.ttf","700italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE1c5wHo.ttf","800italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE0s6wHo.ttf","900italic":"http://fonts.gstatic.com/s/exo2/v4/7cHtv4okm5zmbtYtE287wHo.ttf"},"Abel":{"regular":"http://fonts.gstatic.com/s/abel/v8/MwQ5bhbm2POE6Vg.ttf"},"Varela Round":{"regular":"http://fonts.gstatic.com/s/varelaround/v10/w8gdH283Tvk__Lua32TysjIvoA.ttf"},"Encode Sans Condensed":{"100":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-J.ttf","200":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pBw.ttf","300":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pBw.ttf","500":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypBw.ttf","600":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupBw.ttf","700":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpBw.ttf","800":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpBw.ttf","900":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipBw.ttf","regular":"http://fonts.gstatic.com/s/encodesanscondensed/v2/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgQ.ttf"},"Noto Sans JP":{"100":"http://fonts.gstatic.com/s/notosansjp/v20/-F6ofjtqLzI2JPCgQBnw7HFQoggM.otf","300":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQaioq1A.otf","500":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQMisq1A.otf","700":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQei0q1A.otf","900":"http://fonts.gstatic.com/s/notosansjp/v20/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1A.otf","regular":"http://fonts.gstatic.com/s/notosansjp/v20/-F62fjtqLzI2JPCgQBnw7HFowA.otf"},"Dancing Script":{"700":"http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr8Qt.ttf","regular":"http://fonts.gstatic.com/s/dancingscript/v9/If2RXTr6YS-zF4S-kcSWSVi_swLn.ttf"},"Abril Fatface":{"regular":"http://fonts.gstatic.com/s/abrilfatface/v9/zOL64pLDlL1D99S8g8PtiKchm-A.ttf"},"Merriweather Sans":{"300":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD.ttf","700":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD.ttf","800":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD.ttf","300italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hM.ttf","regular":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXy.ttf","italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjA.ttf","700italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hM.ttf","800italic":"http://fonts.gstatic.com/s/merriweathersans/v9/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hM.ttf"},"Shadows Into Light":{"regular":"http://fonts.gstatic.com/s/shadowsintolight/v7/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcg.ttf"},"Kanit":{"100":"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcr72GwU.ttf","200":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5aOiWg.ttf","300":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4-OSWg.ttf","500":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5mOCWg.ttf","600":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr5KPyWg.ttf","700":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4uPiWg.ttf","800":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4yPSWg.ttf","900":"http://fonts.gstatic.com/s/kanit/v3/nKKU-Go6G5tXcr4WPCWg.ttf","100italic":"http://fonts.gstatic.com/s/kanit/v3/nKKV-Go6G5tXcraQI2GAdQ.ttf","200italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI82hVaQ.ttf","300italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6miVaQ.ttf","regular":"http://fonts.gstatic.com/s/kanit/v3/nKKZ-Go6G5tXcoaS.ttf","italic":"http://fonts.gstatic.com/s/kanit/v3/nKKX-Go6G5tXcraQGwU.ttf","500italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI_GjVaQ.ttf","600italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI92kVaQ.ttf","700italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI7mlVaQ.ttf","800italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI6WmVaQ.ttf","900italic":"http://fonts.gstatic.com/s/kanit/v3/nKKS-Go6G5tXcraQI4GnVaQ.ttf"},"Yanone Kaffeesatz":{"200":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-t.ttf","300":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-t.ttf","700":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-t.ttf","regular":"http://fonts.gstatic.com/s/yanonekaffeesatz/v9/3y976aknfjLm_3lMKjiMgmUUYBs04b8c.ttf"},"Acme":{"regular":"http://fonts.gstatic.com/s/acme/v7/RrQfboBx-C5_bx0.ttf"},"Bree Serif":{"regular":"http://fonts.gstatic.com/s/breeserif/v7/4UaHrEJCrhhnVA3DgluAx60.ttf"},"Righteous":{"regular":"http://fonts.gstatic.com/s/righteous/v6/1cXxaUPXBpj2rGoU7C9mjw.ttf"},"Source Serif Pro":{"600":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSs.ttf","700":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSs.ttf","regular":"http://fonts.gstatic.com/s/sourceserifpro/v5/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM.ttf"},"Hind Madurai":{"300":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfXaUneQ.ttf","500":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfBaQneQ.ttf","600":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfKaMneQ.ttf","700":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xu0e2p98ZvDXdZQIOcpqjfTaIneQ.ttf","regular":"http://fonts.gstatic.com/s/hindmadurai/v3/f0Xx0e2p98ZvDXdZQIOcpqjn8Q.ttf"},"Exo":{"100":"http://fonts.gstatic.com/s/exo/v7/4UaMrEtFpBIaEH6m.ttf","200":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIavF-G8A.ttf","300":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa2FyG8A.ttf","500":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIagF2G8A.ttf","600":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIarFqG8A.ttf","700":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIayFuG8A.ttf","800":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa1FiG8A.ttf","900":"http://fonts.gstatic.com/s/exo/v7/4UaDrEtFpBIa8FmG8A.ttf","100italic":"http://fonts.gstatic.com/s/exo/v7/4UaCrEtFpBISdkbC0DI.ttf","200italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZu8RLm.ttf","300italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYK8hLm.ttf","regular":"http://fonts.gstatic.com/s/exo/v7/4UaOrEtFpBIidA.ttf","italic":"http://fonts.gstatic.com/s/exo/v7/4UaMrEtFpBISdn6m.ttf","500italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZS8xLm.ttf","600italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkZ-9BLm.ttf","700italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYa9RLm.ttf","800italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYG9hLm.ttf","900italic":"http://fonts.gstatic.com/s/exo/v7/4UaBrEtFpBISdkYi9xLm.ttf"},"EB Garamond":{"500":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyGaxwV.ttf","600":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GyqbBwV.ttf","700":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzObRwV.ttf","800":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGJmQSNjdsmc35JDF1K5GzSbhwV.ttf","regular":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGUmQSNjdsmc35JDF1K5FRy.ttf","italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGWmQSNjdsmc35JDF1K5GRwSDw.ttf","500italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgs.ttf","600italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgs.ttf","700italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgs.ttf","800italic":"http://fonts.gstatic.com/s/ebgaramond/v9/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgs.ttf"},"Heebo":{"100":"http://fonts.gstatic.com/s/heebo/v3/NGS0v5_NC0k9P9mVTbQ.ttf","300":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9ldb5RL.ttf","500":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9kFbpRL.ttf","700":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lNaJRL.ttf","800":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9lRa5RL.ttf","900":"http://fonts.gstatic.com/s/heebo/v3/NGS3v5_NC0k9P9l1apRL.ttf","regular":"http://fonts.gstatic.com/s/heebo/v3/NGS6v5_NC0k9P-Hx.ttf"},"Asap":{"500":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw8g9xUw.ttf","600":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw-Q6xUw.ttf","700":"http://fonts.gstatic.com/s/asap/v8/KFOnCniXp96aw4A7xUw.ttf","regular":"http://fonts.gstatic.com/s/asap/v8/KFOoCniXp96a-zw.ttf","italic":"http://fonts.gstatic.com/s/asap/v8/KFOmCniXp96ayz4e5Q.ttf","500italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mEU9vAw.ttf","600italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mPUhvAw.ttf","700italic":"http://fonts.gstatic.com/s/asap/v8/KFOlCniXp96ayz4mWUlvAw.ttf"},"Archivo Narrow":{"500":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla.ttf","600":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla.ttf","700":"http://fonts.gstatic.com/s/archivonarrow/v8/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla.ttf","regular":"http://fonts.gstatic.com/s/archivonarrow/v8/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3.ttf","italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXk.ttf","500italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9c.ttf","600italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9c.ttf","700italic":"http://fonts.gstatic.com/s/archivonarrow/v8/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9c.ttf"},"Questrial":{"regular":"http://fonts.gstatic.com/s/questrial/v7/QdVUSTchPBm7nuUeVf7EuQ.ttf"},"Source Code Pro":{"200":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztA.ttf","300":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztA.ttf","500":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztA.ttf","600":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztA.ttf","700":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztA.ttf","900":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztA.ttf","regular":"http://fonts.gstatic.com/s/sourcecodepro/v8/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOg.ttf"},"Ubuntu Condensed":{"regular":"http://fonts.gstatic.com/s/ubuntucondensed/v8/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-c.ttf"},"Play":{"700":"http://fonts.gstatic.com/s/play/v9/6ae84K2oVqwItm4TOpc.ttf","regular":"http://fonts.gstatic.com/s/play/v9/6aez4K2oVqwIjtI.ttf"},"Teko":{"300":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdQhfgCM.ttf","500":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdVBegCM.ttf","600":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdXxZgCM.ttf","700":"http://fonts.gstatic.com/s/teko/v7/LYjCdG7kmE0gdRhYgCM.ttf","regular":"http://fonts.gstatic.com/s/teko/v7/LYjNdG7kmE0gTaQ.ttf"},"Comfortaa":{"300":"http://fonts.gstatic.com/s/comfortaa/v19/1Ptpg8LJRfWJmhDAuUsw5qNPBQ.ttf","700":"http://fonts.gstatic.com/s/comfortaa/v19/1Ptpg8LJRfWJmhDAuUsw9qRPBQ.ttf","regular":"http://fonts.gstatic.com/s/comfortaa/v19/1Ptsg8LJRfWJmhDAuUsISg.ttf"},"Amatic SC":{"700":"http://fonts.gstatic.com/s/amaticsc/v11/TUZ3zwprpvBS1izr_vOMscG6eQ.ttf","regular":"http://fonts.gstatic.com/s/amaticsc/v11/TUZyzwprpvBS1izr_vO0DQ.ttf"},"Signika":{"300":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE_oEI3A.ttf","600":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE44CI3A.ttf","700":"http://fonts.gstatic.com/s/signika/v8/vEFU2_JTCgwQ5ejvE-oDI3A.ttf","regular":"http://fonts.gstatic.com/s/signika/v8/vEFR2_JTCgwQ5ejvK1Y.ttf"},"Hind Siliguri":{"300":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRDf44uE.ttf","500":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRG_54uE.ttf","600":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoREP-4uE.ttf","700":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uE.ttf","regular":"http://fonts.gstatic.com/s/hindsiliguri/v4/ijwTs5juQtsyLLR5jN4cxBEofJs.ttf"},"Cairo":{"200":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalrub76M.ttf","300":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6HkvalqKbL6M.ttf","600":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalr-ar6M.ttf","700":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalqaa76M.ttf","900":"http://fonts.gstatic.com/s/cairo/v4/SLXLc1nY6Hkvalqiab6M.ttf","regular":"http://fonts.gstatic.com/s/cairo/v4/SLXGc1nY6HkvamIm.ttf"},"Maven Pro":{"500":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OPkctOA.ttf","700":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OdkEtOA.ttf","900":"http://fonts.gstatic.com/s/mavenpro/v11/7Au4p_AqnyWWAxW2Wk3OTkMtOA.ttf","regular":"http://fonts.gstatic.com/s/mavenpro/v11/7Au9p_AqnyWWAxW2Wk32yg.ttf"},"Catamaran":{"100":"http://fonts.gstatic.com/s/catamaran/v4/o-0OIpQoyXQa2RxT7-5jhjRF.ttf","200":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jKhVlYw.ttf","300":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jThZlYw.ttf","500":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jFhdlYw.ttf","600":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jOhBlYw.ttf","700":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jXhFlYw.ttf","800":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jQhJlYw.ttf","900":"http://fonts.gstatic.com/s/catamaran/v4/o-0NIpQoyXQa2RxT7-5jZhNlYw.ttf","regular":"http://fonts.gstatic.com/s/catamaran/v4/o-0IIpQoyXQa2RxT7-5b4g.ttf"},"Gloria Hallelujah":{"regular":"http://fonts.gstatic.com/s/gloriahallelujah/v9/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy.ttf"},"Crete Round":{"regular":"http://fonts.gstatic.com/s/creteround/v6/55xoey1sJNPjPiv1ZZZrxJ18.ttf","italic":"http://fonts.gstatic.com/s/creteround/v6/55xqey1sJNPjPiv1ZZZrxK1-0bg.ttf"},"Francois One":{"regular":"http://fonts.gstatic.com/s/francoisone/v12/_Xmr-H4zszafZw3A-KPSZutNxg.ttf"},"Barlow":{"100":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf","200":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf","300":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf","500":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf","600":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf","700":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf","800":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf","900":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf","100italic":"http://fonts.gstatic.com/s/barlow/v3/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf","200italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf","300italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf","regular":"http://fonts.gstatic.com/s/barlow/v3/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf","italic":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf","500italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf","600italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf","700italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf","800italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf","900italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf"},"Cinzel":{"700":"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzTUHeFA.ttf","900":"http://fonts.gstatic.com/s/cinzel/v7/8vIK7ww63mVu7gtzdUPeFA.ttf","regular":"http://fonts.gstatic.com/s/cinzel/v7/8vIJ7ww63mVu7gtL8Q.ttf"},"Vollkorn":{"600":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxH2TGg-.ttf","700":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGSTWg-.ttf","900":"http://fonts.gstatic.com/s/vollkorn/v8/0yb6GDoxxrvAnPhYGxGqT2g-.ttf","regular":"http://fonts.gstatic.com/s/vollkorn/v8/0yb9GDoxxrvAnPhYGyku.ttf","italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb7GDoxxrvAnPhYGxksaEg.ttf","600italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUJA6jBA.ttf","700italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUPQ7jBA.ttf","900italic":"http://fonts.gstatic.com/s/vollkorn/v8/0yb4GDoxxrvAnPhYGxksUMw5jBA.ttf"},"Permanent Marker":{"regular":"http://fonts.gstatic.com/s/permanentmarker/v7/Fh4uPib9Iyv2ucM6pGQMWimMp004Hao.ttf"},"Domine":{"700":"http://fonts.gstatic.com/s/domine/v5/L0x_DFMnlVwD4h3pAN-CTQ.ttf","regular":"http://fonts.gstatic.com/s/domine/v5/L0x8DFMnlVwD4h3RvA.ttf"},"Rokkitt":{"100":"http://fonts.gstatic.com/s/rokkitt/v13/qFdG35qfgYFjGy5hmCWCc_TOyh4Qig.ttf","200":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmImjU97gxhcJk1s.ttf","300":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmO2gU97gxhcJk1s.ttf","500":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmLWhU97gxhcJk1s.ttf","600":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmJmmU97gxhcJk1s.ttf","700":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmP2nU97gxhcJk1s.ttf","800":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmOGkU97gxhcJk1s.ttf","900":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmMWlU97gxhcJk1s.ttf","regular":"http://fonts.gstatic.com/s/rokkitt/v13/qFdE35qfgYFjGy5hoEGId9bL2h4.ttf"},"Assistant":{"200":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7p0ScAw.ttf","300":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7w0ecAw.ttf","600":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7t0GcAw.ttf","700":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk700CcAw.ttf","800":"http://fonts.gstatic.com/s/assistant/v2/2sDZZGJYnIjSi6H75xk7z0OcAw.ttf","regular":"http://fonts.gstatic.com/s/assistant/v2/2sDcZGJYnIjSi6H75xkDbw.ttf"},"Fira Sans Condensed":{"100":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqA.ttf","200":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMM.ttf","300":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMM.ttf","500":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMM.ttf","600":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMM.ttf","700":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMM.ttf","800":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMM.ttf","900":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMM.ttf","100italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONU.ttf","200italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dw.ttf","300italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dw.ttf","regular":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfE.ttf","italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqA.ttf","500italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dw.ttf","600italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dw.ttf","700italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dw.ttf","800italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dw.ttf","900italic":"http://fonts.gstatic.com/s/firasanscondensed/v2/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dw.ttf"},"Noto Sans TC":{"100":"http://fonts.gstatic.com/s/notosanstc/v4/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf","300":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf","500":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf","700":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf","900":"http://fonts.gstatic.com/s/notosanstc/v4/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf","regular":"http://fonts.gstatic.com/s/notosanstc/v4/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf"},"Rajdhani":{"300":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pasEcOs.ttf","500":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pb0EMOs.ttf","600":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pbYF8Os.ttf","700":"http://fonts.gstatic.com/s/rajdhani/v7/LDI2apCSOBg7S-QT7pa8FsOs.ttf","regular":"http://fonts.gstatic.com/s/rajdhani/v7/LDIxapCSOBg7S-QT7q4A.ttf"},"Satisfy":{"regular":"http://fonts.gstatic.com/s/satisfy/v9/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf"},"PT Sans Caption":{"700":"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSw.ttf","regular":"http://fonts.gstatic.com/s/ptsanscaption/v10/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQ.ttf"},"Alegreya":{"500":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf","700":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf","800":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf","900":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf","regular":"http://fonts.gstatic.com/s/alegreya/v12/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf","italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf","500italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf","700italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf","800italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf","900italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf"},"Cuprum":{"700":"http://fonts.gstatic.com/s/cuprum/v10/dg4n_pLmvrkcOkBFnc5nj5YpQwM-gg.ttf","regular":"http://fonts.gstatic.com/s/cuprum/v10/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf","italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4m_pLmvrkcOkBNI-tHpbglShon.ttf","700italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4h_pLmvrkcOkBNI9P7ipwtYQYugjW4.ttf"},"Orbitron":{"500":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QJIVAhxoNFxW0Hz.ttf","700":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QIAUghxoNFxW0Hz.ttf","900":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QI4UAhxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/orbitron/v10/yMJRMIlzdpvBhQQL_Tq8fSx5i814.ttf"},"Alegreya Sans":{"100":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf","300":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf","500":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf","700":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf","800":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf","900":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf","italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf"},"Patua One":{"regular":"http://fonts.gstatic.com/s/patuaone/v8/ZXuke1cDvLCKLDcimxBI5A.ttf"},"Prompt":{"100":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf","200":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf","300":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf","500":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf","600":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf","700":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf","800":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf","900":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf","100italic":"http://fonts.gstatic.com/s/prompt/v3/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf","200italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf","300italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf","regular":"http://fonts.gstatic.com/s/prompt/v3/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf","500italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf","600italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf","700italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf","800italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf","900italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf"},"Cantarell":{"700":"http://fonts.gstatic.com/s/cantarell/v8/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf","regular":"http://fonts.gstatic.com/s/cantarell/v8/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf","italic":"http://fonts.gstatic.com/s/cantarell/v8/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf","700italic":"http://fonts.gstatic.com/s/cantarell/v8/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf"},"ABeeZee":{"regular":"http://fonts.gstatic.com/s/abeezee/v12/esDR31xSG-6AGleN6tKukbcHCpE.ttf","italic":"http://fonts.gstatic.com/s/abeezee/v12/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf"},"Old Standard TT":{"700":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf","regular":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf","italic":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf"},"Ropa Sans":{"regular":"http://fonts.gstatic.com/s/ropasans/v8/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf","italic":"http://fonts.gstatic.com/s/ropasans/v8/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf"},"Courgette":{"regular":"http://fonts.gstatic.com/s/courgette/v6/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf"},"Cardo":{"700":"http://fonts.gstatic.com/s/cardo/v10/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf","regular":"http://fonts.gstatic.com/s/cardo/v10/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf","italic":"http://fonts.gstatic.com/s/cardo/v10/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf"},"Amiri":{"700":"http://fonts.gstatic.com/s/amiri/v12/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/amiri/v12/J7aRnpd8CGxBHqUpvrIw74NL.ttf","italic":"http://fonts.gstatic.com/s/amiri/v12/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf","700italic":"http://fonts.gstatic.com/s/amiri/v12/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf"},"Istok Web":{"700":"http://fonts.gstatic.com/s/istokweb/v12/3qTqojGmgSyUukBzKslhvU5a_g.ttf","regular":"http://fonts.gstatic.com/s/istokweb/v12/3qTvojGmgSyUukBzKslZAQ.ttf","italic":"http://fonts.gstatic.com/s/istokweb/v12/3qTpojGmgSyUukBzKslpA2t6.ttf","700italic":"http://fonts.gstatic.com/s/istokweb/v12/3qT0ojGmgSyUukBzKslpA1PG-2MQ.ttf"},"Noticia Text":{"700":"http://fonts.gstatic.com/s/noticiatext/v8/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf","regular":"http://fonts.gstatic.com/s/noticiatext/v8/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf","italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf","700italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf"},"Arapey":{"regular":"http://fonts.gstatic.com/s/arapey/v7/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/arapey/v7/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf"},"News Cycle":{"700":"http://fonts.gstatic.com/s/newscycle/v15/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf","regular":"http://fonts.gstatic.com/s/newscycle/v15/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf"},"Concert One":{"regular":"http://fonts.gstatic.com/s/concertone/v9/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf"},"Luckiest Guy":{"regular":"http://fonts.gstatic.com/s/luckiestguy/v9/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf"},"Cookie":{"regular":"http://fonts.gstatic.com/s/cookie/v10/syky-y18lb0tSbfNlQCT9tPdpw.ttf"},"Kaushan Script":{"regular":"http://fonts.gstatic.com/s/kaushanscript/v7/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"},"Caveat":{"700":"http://fonts.gstatic.com/s/caveat/v5/Wnz5HAc5bAfYB2Qz3RM9oiTQNAuxjA.ttf","regular":"http://fonts.gstatic.com/s/caveat/v5/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf"},"Kalam":{"300":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf","700":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf","regular":"http://fonts.gstatic.com/s/kalam/v9/YA9dr0Wd4kDdMuhWMibDszkB.ttf"},"Pathway Gothic One":{"regular":"http://fonts.gstatic.com/s/pathwaygothicone/v7/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf"},"Lalezar":{"regular":"http://fonts.gstatic.com/s/lalezar/v5/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf"},"Quattrocento Sans":{"700":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf","regular":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf","italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf","700italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf"},"Cormorant Garamond":{"300":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf","500":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf","600":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf","700":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf","300italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf","regular":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf","italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf","500italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf","600italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf","700italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf"},"Alfa Slab One":{"regular":"http://fonts.gstatic.com/s/alfaslabone/v8/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf"},"Great Vibes":{"regular":"http://fonts.gstatic.com/s/greatvibes/v6/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf"},"Tinos":{"700":"http://fonts.gstatic.com/s/tinos/v12/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf","regular":"http://fonts.gstatic.com/s/tinos/v12/buE4poGnedXvwgX8dGVh8TI-.ttf","italic":"http://fonts.gstatic.com/s/tinos/v12/buE2poGnedXvwjX-fmFD9CI-4NU.ttf","700italic":"http://fonts.gstatic.com/s/tinos/v12/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf"},"Hind Guntur":{"300":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf","500":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf","600":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf","700":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf","regular":"http://fonts.gstatic.com/s/hindguntur/v4/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf"},"Fira Sans Extra Condensed":{"100":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf","200":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf","300":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf","500":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf","600":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf","700":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf","800":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf","900":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf","100italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf","200italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf","300italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf","regular":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf","italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf","500italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf","600italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf","700italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf","800italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf","900italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf"},"Fredoka One":{"regular":"http://fonts.gstatic.com/s/fredokaone/v6/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf"},"Lobster Two":{"700":"http://fonts.gstatic.com/s/lobstertwo/v11/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf","regular":"http://fonts.gstatic.com/s/lobstertwo/v11/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf","italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf","700italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf"},"Russo One":{"regular":"http://fonts.gstatic.com/s/russoone/v7/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf"},"Martel":{"200":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf","300":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf","600":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf","700":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf","800":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf","900":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf","regular":"http://fonts.gstatic.com/s/martel/v3/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf"},"Archivo Black":{"regular":"http://fonts.gstatic.com/s/archivoblack/v8/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf"},"Passion One":{"700":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf","900":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf","regular":"http://fonts.gstatic.com/s/passionone/v9/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf"},"Gothic A1":{"100":"http://fonts.gstatic.com/s/gothica1/v5/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf","200":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf","300":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf","500":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf","600":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf","700":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf","800":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf","900":"http://fonts.gstatic.com/s/gothica1/v5/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf","regular":"http://fonts.gstatic.com/s/gothica1/v5/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf"},"BenchNine":{"300":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf","700":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/benchnine/v7/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf"},"Hind Vadodara":{"300":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf","500":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf","600":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf","700":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf","regular":"http://fonts.gstatic.com/s/hindvadodara/v5/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf"},"Tangerine":{"700":"http://fonts.gstatic.com/s/tangerine/v10/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf","regular":"http://fonts.gstatic.com/s/tangerine/v10/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf"},"Barlow Condensed":{"100":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf","200":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf","300":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf","500":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf","600":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf","700":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf","800":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf","900":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf","100italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf","200italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf","300italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf","regular":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf","italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf","500italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf","600italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf","700italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf","800italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf","900italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf"},"Poiret One":{"regular":"http://fonts.gstatic.com/s/poiretone/v7/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf"},"Sacramento":{"regular":"http://fonts.gstatic.com/s/sacramento/v6/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf"},"Quattrocento":{"700":"http://fonts.gstatic.com/s/quattrocento/v10/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf","regular":"http://fonts.gstatic.com/s/quattrocento/v10/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf"},"Merienda":{"700":"http://fonts.gstatic.com/s/merienda/v7/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf","regular":"http://fonts.gstatic.com/s/merienda/v7/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf"},"Volkhov":{"700":"http://fonts.gstatic.com/s/volkhov/v10/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf","regular":"http://fonts.gstatic.com/s/volkhov/v10/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf","italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf","700italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf"},"Monda":{"700":"http://fonts.gstatic.com/s/monda/v8/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf","regular":"http://fonts.gstatic.com/s/monda/v8/TK3tWkYFABsmjvpmNBsLvPdG.ttf"},"Barlow Semi Condensed":{"100":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf","200":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf","300":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf","500":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf","600":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf","700":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf","800":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf","900":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf","100italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf","200italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf","300italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf","regular":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf","italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf","500italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf","600italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf","700italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf","800italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf","900italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf"},"Josefin Slab":{"100":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf","300":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf","600":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf","700":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf","100italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf","300italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf","regular":"http://fonts.gstatic.com/s/josefinslab/v9/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf","italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf","600italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf","700italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf"},"Handlee":{"regular":"http://fonts.gstatic.com/s/handlee/v7/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf"},"IBM Plex Sans":{"100":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf","200":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf","300":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf","500":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf","600":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf","700":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsans/v4/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf"},"Didact Gothic":{"regular":"http://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf"},"Pontano Sans":{"regular":"http://fonts.gstatic.com/s/pontanosans/v6/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf"},"Special Elite":{"regular":"http://fonts.gstatic.com/s/specialelite/v9/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf"},"Khand":{"300":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf","500":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf","600":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf","700":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf","regular":"http://fonts.gstatic.com/s/khand/v7/TwMA-IINQlQQ0YpVWHU_TBqO.ttf"},"Frank Ruhl Libre":{"300":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf","500":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf","700":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf","900":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf","regular":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf"},"Bangers":{"regular":"http://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACL5la2bxii28.ttf"},"Chivo":{"300":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf","900":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf","300italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf","regular":"http://fonts.gstatic.com/s/chivo/v10/va9I4kzIxd1KFoBvS-J3kbDP.ttf","italic":"http://fonts.gstatic.com/s/chivo/v10/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf","700italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf","900italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf"},"Nanum Myeongjo":{"700":"http://fonts.gstatic.com/s/nanummyeongjo/v12/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf","800":"http://fonts.gstatic.com/s/nanummyeongjo/v12/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf","regular":"http://fonts.gstatic.com/s/nanummyeongjo/v12/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf"},"Playfair Display SC":{"700":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf","900":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf"},"Pragati Narrow":{"700":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf","regular":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf"},"Cabin Condensed":{"500":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf","600":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf","700":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf","regular":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf"},"Zilla Slab":{"300":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf","500":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf","600":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf","700":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf","300italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf","regular":"http://fonts.gstatic.com/s/zillaslab/v4/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf","italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf","500italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf","600italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf","700italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf"},"Gudea":{"700":"http://fonts.gstatic.com/s/gudea/v8/neIIzCqgsI0mp9gz26WGHK06UY30.ttf","regular":"http://fonts.gstatic.com/s/gudea/v8/neIFzCqgsI0mp-CP9IGON7Ez.ttf","italic":"http://fonts.gstatic.com/s/gudea/v8/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf"},"Signika Negative":{"300":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf","600":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf","700":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf","regular":"http://fonts.gstatic.com/s/signikanegative/v9/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf"},"Viga":{"regular":"http://fonts.gstatic.com/s/viga/v7/xMQbuFFdSaiX_QIjD4e2OX8.ttf"},"Marck Script":{"regular":"http://fonts.gstatic.com/s/marckscript/v9/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf"},"Neucha":{"regular":"http://fonts.gstatic.com/s/neucha/v10/q5uGsou0JOdh94bvugNsCxVEgA.ttf"},"Overpass":{"100":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf","200":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf","300":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf","600":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf","700":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf","800":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf","900":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf","100italic":"http://fonts.gstatic.com/s/overpass/v3/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf","200italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf","300italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf","regular":"http://fonts.gstatic.com/s/overpass/v3/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf","italic":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf","600italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf","700italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf","800italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf","900italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"},"Sawarabi Mincho":{"regular":"http://fonts.gstatic.com/s/sawarabimincho/v7/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf"},"Boogaloo":{"regular":"http://fonts.gstatic.com/s/boogaloo/v10/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf"},"Yantramanav":{"100":"http://fonts.gstatic.com/s/yantramanav/v4/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf","300":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf","500":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf","700":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf","900":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf","regular":"http://fonts.gstatic.com/s/yantramanav/v4/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf"},"Philosopher":{"700":"http://fonts.gstatic.com/s/philosopher/v10/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf","regular":"http://fonts.gstatic.com/s/philosopher/v10/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf","italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf","700italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf"},"Playball":{"regular":"http://fonts.gstatic.com/s/playball/v8/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf"},"Gochi Hand":{"regular":"http://fonts.gstatic.com/s/gochihand/v9/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf"},"M PLUS 1p":{"100":"http://fonts.gstatic.com/s/mplus1p/v16/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf","300":"http://fonts.gstatic.com/s/mplus1p/v16/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf","500":"http://fonts.gstatic.com/s/mplus1p/v16/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf","700":"http://fonts.gstatic.com/s/mplus1p/v16/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf","800":"http://fonts.gstatic.com/s/mplus1p/v16/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf","900":"http://fonts.gstatic.com/s/mplus1p/v16/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf","regular":"http://fonts.gstatic.com/s/mplus1p/v16/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf"},"Aldrich":{"regular":"http://fonts.gstatic.com/s/aldrich/v9/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf"},"Patrick Hand":{"regular":"http://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf"},"Sigmar One":{"regular":"http://fonts.gstatic.com/s/sigmarone/v9/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf"},"Neuton":{"200":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf","300":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf","700":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf","800":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf","regular":"http://fonts.gstatic.com/s/neuton/v11/UMBTrPtMoH62xUZyyII7civlBw.ttf","italic":"http://fonts.gstatic.com/s/neuton/v11/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf"},"Ultra":{"regular":"http://fonts.gstatic.com/s/ultra/v11/zOLy4prXmrtY-tT6yLOD6NxF.ttf"},"Yrsa":{"300":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf","500":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf","600":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf","700":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf","regular":"http://fonts.gstatic.com/s/yrsa/v4/wlp-gwnQFlxs5QvV-IwQwWc.ttf"},"Economica":{"700":"http://fonts.gstatic.com/s/economica/v6/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf","regular":"http://fonts.gstatic.com/s/economica/v6/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf","italic":"http://fonts.gstatic.com/s/economica/v6/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf","700italic":"http://fonts.gstatic.com/s/economica/v6/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf"},"Sanchez":{"regular":"http://fonts.gstatic.com/s/sanchez/v6/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf","italic":"http://fonts.gstatic.com/s/sanchez/v6/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf"},"Ruda":{"700":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFosM4Td7iL0nAMaM.ttf","900":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFovs6Td7iL0nAMaM.ttf","regular":"http://fonts.gstatic.com/s/ruda/v10/k3kfo8YQJOpFmn8XadbJM0A.ttf"},"Hammersmith One":{"regular":"http://fonts.gstatic.com/s/hammersmithone/v9/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf"},"Advent Pro":{"100":"http://fonts.gstatic.com/s/adventpro/v9/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf","200":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf","300":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf","500":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf","600":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf","700":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf","regular":"http://fonts.gstatic.com/s/adventpro/v9/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf"},"Saira Extra Condensed":{"100":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf","200":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf","300":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf","500":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf","600":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf","700":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf","800":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf","900":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf","regular":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf"},"Gentium Basic":{"700":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf","regular":"http://fonts.gstatic.com/s/gentiumbasic/v10/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf","italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf"},"Armata":{"regular":"http://fonts.gstatic.com/s/armata/v10/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf"},"Unica One":{"regular":"http://fonts.gstatic.com/s/unicaone/v6/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf"},"Changa":{"200":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsqb2bUsT5rZhaZg.ttf","300":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcszb6bUsT5rZhaZg.ttf","500":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcslb-bUsT5rZhaZg.ttf","600":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsubibUsT5rZhaZg.ttf","700":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcs3bmbUsT5rZhaZg.ttf","800":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcswbqbUsT5rZhaZg.ttf","regular":"http://fonts.gstatic.com/s/changa/v6/2-cm9JNi2YuVOUcUYZa_Wu_lpA.ttf"},"Monoton":{"regular":"http://fonts.gstatic.com/s/monoton/v8/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf"},"Vidaloka":{"regular":"http://fonts.gstatic.com/s/vidaloka/v11/7cHrv4c3ipenMKlEass8yn4hnCci.ttf"},"Tajawal":{"200":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf","300":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf","500":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf","700":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf","800":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf","900":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf","regular":"http://fonts.gstatic.com/s/tajawal/v2/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf"},"Audiowide":{"regular":"http://fonts.gstatic.com/s/audiowide/v7/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf"},"Prata":{"regular":"http://fonts.gstatic.com/s/prata/v9/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf"},"Bad Script":{"regular":"http://fonts.gstatic.com/s/badscript/v7/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf"},"Sorts Mill Goudy":{"regular":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf","italic":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf"},"Adamina":{"regular":"http://fonts.gstatic.com/s/adamina/v12/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf"},"Amaranth":{"700":"http://fonts.gstatic.com/s/amaranth/v9/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf","regular":"http://fonts.gstatic.com/s/amaranth/v9/KtkuALODe433f0j1zPnCF9GqwnzW.ttf","italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf","700italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf"},"Varela":{"regular":"http://fonts.gstatic.com/s/varela/v9/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf"},"Alice":{"regular":"http://fonts.gstatic.com/s/alice/v10/OpNCnoEEmtHa6FcJpA_chzJ0.ttf"},"Jura":{"300":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVW9rdCxo0JTVVPw.ttf","500":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVTdqdCxo0JTVVPw.ttf","600":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVRttdCxo0JTVVPw.ttf","700":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVX9sdCxo0JTVVPw.ttf","regular":"http://fonts.gstatic.com/s/jura/v10/z7NbdRfiaC4VbcNDUCRDzJ0.ttf"},"Shadows Into Light Two":{"regular":"http://fonts.gstatic.com/s/shadowsintolighttwo/v6/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf"},"Yellowtail":{"regular":"http://fonts.gstatic.com/s/yellowtail/v9/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf"},"Press Start 2P":{"regular":"http://fonts.gstatic.com/s/pressstart2p/v7/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf"},"Noto Sans SC":{"100":"http://fonts.gstatic.com/s/notosanssc/v4/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf","300":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf","500":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf","700":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf","900":"http://fonts.gstatic.com/s/notosanssc/v4/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf","regular":"http://fonts.gstatic.com/s/notosanssc/v4/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf"},"Paytone One":{"regular":"http://fonts.gstatic.com/s/paytoneone/v11/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf"},"Architects Daughter":{"regular":"http://fonts.gstatic.com/s/architectsdaughter/v9/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf"},"Carter One":{"regular":"http://fonts.gstatic.com/s/carterone/v10/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf"},"Glegoo":{"700":"http://fonts.gstatic.com/s/glegoo/v8/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf","regular":"http://fonts.gstatic.com/s/glegoo/v8/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf"},"Bevan":{"regular":"http://fonts.gstatic.com/s/bevan/v10/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf"},"Enriqueta":{"700":"http://fonts.gstatic.com/s/enriqueta/v7/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf","regular":"http://fonts.gstatic.com/s/enriqueta/v7/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf"},"Montserrat Alternates":{"100":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf","200":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf","300":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf","500":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf","600":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf","700":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf","800":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf","900":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf","100italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf","200italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf","300italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf","regular":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf","italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf","500italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf","600italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf","700italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf","800italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf","900italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf"},"Taviraj":{"100":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf","200":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf","300":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf","500":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf","600":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf","700":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf","800":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf","900":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf","100italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf","200italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf","300italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/taviraj/v4/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf","italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf","500italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf","600italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf","700italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf","800italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf","900italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf"},"Molengo":{"regular":"http://fonts.gstatic.com/s/molengo/v9/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf"},"PT Mono":{"regular":"http://fonts.gstatic.com/s/ptmono/v6/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf"},"Arbutus Slab":{"regular":"http://fonts.gstatic.com/s/arbutusslab/v7/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf"},"Kreon":{"300":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH1sUU23hqLgzCHu.ttf","700":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH18Vk23hqLgzCHu.ttf","regular":"http://fonts.gstatic.com/s/kreon/v13/t5tuIRIUKY-TFEXAeWm_rb7p.ttf"},"Antic Slab":{"regular":"http://fonts.gstatic.com/s/anticslab/v7/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf"},"Actor":{"regular":"http://fonts.gstatic.com/s/actor/v8/wEOzEBbCkc5cO3ekXygtUMIO.ttf"},"Gentium Book Basic":{"700":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf","regular":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf","italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf"},"Ubuntu Mono":{"700":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf","regular":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf","italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf","700italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf"},"Coda":{"800":"http://fonts.gstatic.com/s/coda/v14/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf","regular":"http://fonts.gstatic.com/s/coda/v14/SLXHc1jY5nQ8JUIMapaN39I.ttf"},"Covered By Your Grace":{"regular":"http://fonts.gstatic.com/s/coveredbyyourgrace/v8/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf"},"Allerta Stencil":{"regular":"http://fonts.gstatic.com/s/allertastencil/v9/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf"},"Cormorant":{"300":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf","500":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf","600":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf","700":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf","300italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf","regular":"http://fonts.gstatic.com/s/cormorant/v7/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf","italic":"http://fonts.gstatic.com/s/cormorant/v7/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf","500italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf","600italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf","700italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf"},"Julius Sans One":{"regular":"http://fonts.gstatic.com/s/juliussansone/v7/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf"},"Rock Salt":{"regular":"http://fonts.gstatic.com/s/rocksalt/v9/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf"},"Sintony":{"700":"http://fonts.gstatic.com/s/sintony/v6/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf","regular":"http://fonts.gstatic.com/s/sintony/v6/XoHm2YDqR7-98cVUITQnu98ojjs.ttf"},"Cousine":{"700":"http://fonts.gstatic.com/s/cousine/v13/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf","regular":"http://fonts.gstatic.com/s/cousine/v13/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf","italic":"http://fonts.gstatic.com/s/cousine/v13/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf","700italic":"http://fonts.gstatic.com/s/cousine/v13/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf"},"Sarala":{"700":"http://fonts.gstatic.com/s/sarala/v3/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf","regular":"http://fonts.gstatic.com/s/sarala/v3/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf"},"Lusitana":{"700":"http://fonts.gstatic.com/s/lusitana/v6/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf","regular":"http://fonts.gstatic.com/s/lusitana/v6/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf"},"Fugaz One":{"regular":"http://fonts.gstatic.com/s/fugazone/v8/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf"},"Damion":{"regular":"http://fonts.gstatic.com/s/damion/v8/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf"},"Caveat Brush":{"regular":"http://fonts.gstatic.com/s/caveatbrush/v4/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf"},"Alegreya Sans SC":{"100":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf","300":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf","500":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf","700":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf","800":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf","900":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf","italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf"},"Homemade Apple":{"regular":"http://fonts.gstatic.com/s/homemadeapple/v9/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf"},"Karma":{"300":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf","500":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf","600":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf","regular":"http://fonts.gstatic.com/s/karma/v9/va9I4kzAzMZRGIBvS-J3kbDP.ttf"},"Pridi":{"200":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf","300":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf","500":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf","600":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf","700":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf","regular":"http://fonts.gstatic.com/s/pridi/v4/2sDQZG5JnZLfkfWao2krbl29.ttf"},"El Messiri":{"500":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf","600":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf","700":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf","regular":"http://fonts.gstatic.com/s/elmessiri/v5/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf"},"Parisienne":{"regular":"http://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf"},"Allura":{"regular":"http://fonts.gstatic.com/s/allura/v7/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf"},"Khula":{"300":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf","600":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf","700":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf","800":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf","regular":"http://fonts.gstatic.com/s/khula/v4/OpNCnoEOns3V7FcJpA_chzJ0.ttf"},"PT Serif Caption":{"regular":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf","italic":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf"},"Oleo Script":{"700":"http://fonts.gstatic.com/s/oleoscript/v7/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf","regular":"http://fonts.gstatic.com/s/oleoscript/v7/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf"},"Nothing You Could Do":{"regular":"http://fonts.gstatic.com/s/nothingyoucoulddo/v8/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf"},"Chewy":{"regular":"http://fonts.gstatic.com/s/chewy/v10/uK_94ruUb-k-wk5xIDMfO-ed.ttf"},"Prosto One":{"regular":"http://fonts.gstatic.com/s/prostoone/v7/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf"},"Lilita One":{"regular":"http://fonts.gstatic.com/s/lilitaone/v6/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf"},"Cantata One":{"regular":"http://fonts.gstatic.com/s/cantataone/v8/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf"},"Archivo":{"500":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf","600":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf","700":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf","regular":"http://fonts.gstatic.com/s/archivo/v4/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf","italic":"http://fonts.gstatic.com/s/archivo/v4/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf","500italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf","600italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf","700italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf"},"Rambla":{"700":"http://fonts.gstatic.com/s/rambla/v6/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf","regular":"http://fonts.gstatic.com/s/rambla/v6/snfrs0ip98hx6mr0I7IONthkwQ.ttf","italic":"http://fonts.gstatic.com/s/rambla/v6/snfps0ip98hx6mrEIbgKFN10wYKa.ttf","700italic":"http://fonts.gstatic.com/s/rambla/v6/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf"},"Lustria":{"regular":"http://fonts.gstatic.com/s/lustria/v6/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf"},"Allerta":{"regular":"http://fonts.gstatic.com/s/allerta/v9/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf"},"IBM Plex Serif":{"100":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf","200":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf","300":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf","500":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf","600":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf","700":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf","regular":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf","italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexserif/v5/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf"},"Baloo":{"regular":"http://fonts.gstatic.com/s/baloo/v4/6xKhdSpJJ92I9PWIAG_5LWwJ.ttf"},"Rochester":{"regular":"http://fonts.gstatic.com/s/rochester/v9/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf"},"Bowlby One SC":{"regular":"http://fonts.gstatic.com/s/bowlbyonesc/v10/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf"},"Black Ops One":{"regular":"http://fonts.gstatic.com/s/blackopsone/v10/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf"},"Unna":{"700":"http://fonts.gstatic.com/s/unna/v12/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf","regular":"http://fonts.gstatic.com/s/unna/v12/AYCEpXzofN0NCpgBlGHCWFM.ttf","italic":"http://fonts.gstatic.com/s/unna/v12/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf","700italic":"http://fonts.gstatic.com/s/unna/v12/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf"},"Quantico":{"700":"http://fonts.gstatic.com/s/quantico/v8/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf","regular":"http://fonts.gstatic.com/s/quantico/v8/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf","italic":"http://fonts.gstatic.com/s/quantico/v8/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf","700italic":"http://fonts.gstatic.com/s/quantico/v8/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf"},"Saira":{"100":"http://fonts.gstatic.com/s/saira/v3/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf","200":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf","300":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf","500":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf","600":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf","700":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf","800":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf","900":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf","regular":"http://fonts.gstatic.com/s/saira/v3/memwYa2wxmKQyOkgR5IdU6Uf.ttf"},"Michroma":{"regular":"http://fonts.gstatic.com/s/michroma/v9/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf"},"Alex Brush":{"regular":"http://fonts.gstatic.com/s/alexbrush/v10/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf"},"Fredericka the Great":{"regular":"http://fonts.gstatic.com/s/frederickathegreat/v7/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf"},"Niconne":{"regular":"http://fonts.gstatic.com/s/niconne/v8/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf"},"Sawarabi Gothic":{"regular":"http://fonts.gstatic.com/s/sawarabigothic/v5/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf"},"Rasa":{"300":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf","500":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf","600":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf","700":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf","regular":"http://fonts.gstatic.com/s/rasa/v4/xn7vYHIn1mWmTqJelgiQV9w.ttf"},"Nobile":{"500":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf","700":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf","regular":"http://fonts.gstatic.com/s/nobile/v10/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf","italic":"http://fonts.gstatic.com/s/nobile/v10/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf","500italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf","700italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf"},"Mr Dafoe":{"regular":"http://fonts.gstatic.com/s/mrdafoe/v7/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf"},"Kameron":{"700":"http://fonts.gstatic.com/s/kameron/v9/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf","regular":"http://fonts.gstatic.com/s/kameron/v9/vm82dR7vXErQxuznsL4wL-XIYH8.ttf"},"Syncopate":{"700":"http://fonts.gstatic.com/s/syncopate/v10/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf","regular":"http://fonts.gstatic.com/s/syncopate/v10/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf"},"Reenie Beanie":{"regular":"http://fonts.gstatic.com/s/reeniebeanie/v9/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf"},"Scada":{"700":"http://fonts.gstatic.com/s/scada/v7/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf","regular":"http://fonts.gstatic.com/s/scada/v7/RLpxK5Pv5qumeWJoxzUobkvv.ttf","italic":"http://fonts.gstatic.com/s/scada/v7/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf","700italic":"http://fonts.gstatic.com/s/scada/v7/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf"},"Mitr":{"200":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf","300":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf","500":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf","600":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf","700":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf","regular":"http://fonts.gstatic.com/s/mitr/v4/pxiLypw5ucZFyTsyMJj_b1o.ttf"},"Spinnaker":{"regular":"http://fonts.gstatic.com/s/spinnaker/v10/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf"},"Rancho":{"regular":"http://fonts.gstatic.com/s/rancho/v9/46kulbzmXjLaqZRlbWXgd0RY1g.ttf"},"M PLUS Rounded 1c":{"100":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf","300":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf","500":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf","700":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf","800":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf","900":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf","regular":"http://fonts.gstatic.com/s/mplusrounded1c/v7/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf"},"Itim":{"regular":"http://fonts.gstatic.com/s/itim/v3/0nknC9ziJOYewARKkc7ZdwU.ttf"},"Italianno":{"regular":"http://fonts.gstatic.com/s/italianno/v8/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf"},"Average":{"regular":"http://fonts.gstatic.com/s/average/v7/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf"},"Forum":{"regular":"http://fonts.gstatic.com/s/forum/v9/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf"},"Shrikhand":{"regular":"http://fonts.gstatic.com/s/shrikhand/v4/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf"},"Leckerli One":{"regular":"http://fonts.gstatic.com/s/leckerlione/v9/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf"},"Electrolize":{"regular":"http://fonts.gstatic.com/s/electrolize/v7/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf"},"Just Another Hand":{"regular":"http://fonts.gstatic.com/s/justanotherhand/v10/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf"},"Palanquin":{"100":"http://fonts.gstatic.com/s/palanquin/v4/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf","200":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf","300":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf","500":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf","600":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf","700":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf","regular":"http://fonts.gstatic.com/s/palanquin/v4/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"},"Pangolin":{"regular":"http://fonts.gstatic.com/s/pangolin/v4/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf"},"Marmelad":{"regular":"http://fonts.gstatic.com/s/marmelad/v8/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf"},"Slabo 13px":{"regular":"http://fonts.gstatic.com/s/slabo13px/v6/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf"},"Biryani":{"200":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf","300":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf","600":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf","700":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf","800":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf","900":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf","regular":"http://fonts.gstatic.com/s/biryani/v4/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf"},"Pinyon Script":{"regular":"http://fonts.gstatic.com/s/pinyonscript/v8/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf"},"Basic":{"regular":"http://fonts.gstatic.com/s/basic/v8/xfu_0WLxV2_XKQN34lDVyR7D.ttf"},"Overlock":{"700":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf","900":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf","regular":"http://fonts.gstatic.com/s/overlock/v8/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf","italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf","700italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf","900italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf"},"Hanuman":{"700":"http://fonts.gstatic.com/s/hanuman/v12/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/hanuman/v12/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf"},"Nanum Gothic Coding":{"700":"http://fonts.gstatic.com/s/nanumgothiccoding/v11/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf","regular":"http://fonts.gstatic.com/s/nanumgothiccoding/v11/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf"},"Scheherazade":{"700":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf","regular":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf"},"Bungee Inline":{"regular":"http://fonts.gstatic.com/s/bungeeinline/v4/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf"},"Staatliches":{"regular":"http://fonts.gstatic.com/s/staatliches/v2/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf"},"Grand Hotel":{"regular":"http://fonts.gstatic.com/s/grandhotel/v6/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf"},"Marcellus":{"regular":"http://fonts.gstatic.com/s/marcellus/v6/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf"},"Tenor Sans":{"regular":"http://fonts.gstatic.com/s/tenorsans/v10/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf"},"Noto Serif JP":{"200":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf","300":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf","500":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf","600":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf","700":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf","900":"http://fonts.gstatic.com/s/notoserifjp/v4/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf","regular":"http://fonts.gstatic.com/s/notoserifjp/v4/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf"},"Oranienbaum":{"regular":"http://fonts.gstatic.com/s/oranienbaum/v7/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf"},"Magra":{"700":"http://fonts.gstatic.com/s/magra/v7/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf","regular":"http://fonts.gstatic.com/s/magra/v7/uK_94ruaZus72k5xIDMfO-ed.ttf"},"Share":{"700":"http://fonts.gstatic.com/s/share/v9/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf","regular":"http://fonts.gstatic.com/s/share/v9/i7dEIFliZjKNF5VNHLq2cV5d.ttf","italic":"http://fonts.gstatic.com/s/share/v9/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf","700italic":"http://fonts.gstatic.com/s/share/v9/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf"},"Fauna One":{"regular":"http://fonts.gstatic.com/s/faunaone/v6/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf"},"Radley":{"regular":"http://fonts.gstatic.com/s/radley/v13/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf","italic":"http://fonts.gstatic.com/s/radley/v13/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf"},"Days One":{"regular":"http://fonts.gstatic.com/s/daysone/v8/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf"},"Jaldi":{"700":"http://fonts.gstatic.com/s/jaldi/v5/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf","regular":"http://fonts.gstatic.com/s/jaldi/v5/or3sQ67z0_CI30NUZpD_B6g8.ttf"},"Squada One":{"regular":"http://fonts.gstatic.com/s/squadaone/v7/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf"},"Aclonica":{"regular":"http://fonts.gstatic.com/s/aclonica/v9/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf"},"VT323":{"regular":"http://fonts.gstatic.com/s/vt323/v10/pxiKyp0ihIEF2hsYHpT2dkNE.ttf"},"Saira Semi Condensed":{"100":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf","200":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf","300":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf","500":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf","600":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf","700":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf","800":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf","900":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf"},"Alef":{"700":"http://fonts.gstatic.com/s/alef/v10/FeVQS0NQpLYglo50L5la2bxii28.ttf","regular":"http://fonts.gstatic.com/s/alef/v10/FeVfS0NQpLYgrjJbC5FxxbU.ttf"},"Cabin Sketch":{"700":"http://fonts.gstatic.com/s/cabinsketch/v12/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf","regular":"http://fonts.gstatic.com/s/cabinsketch/v12/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf"},"Contrail One":{"regular":"http://fonts.gstatic.com/s/contrailone/v8/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf"},"Ovo":{"regular":"http://fonts.gstatic.com/s/ovo/v10/yYLl0h7Wyfzjy4Q5_3WVxA.ttf"},"Spectral":{"200":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf","300":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf","500":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf","600":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf","700":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf","800":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf","200italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf","300italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf","regular":"http://fonts.gstatic.com/s/spectral/v5/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf","italic":"http://fonts.gstatic.com/s/spectral/v5/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf","500italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf","600italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf","700italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf","800italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf"},"Marcellus SC":{"regular":"http://fonts.gstatic.com/s/marcellussc/v6/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf"},"Space Mono":{"700":"http://fonts.gstatic.com/s/spacemono/v4/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf","regular":"http://fonts.gstatic.com/s/spacemono/v4/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf","italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf","700italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf"},"Titan One":{"regular":"http://fonts.gstatic.com/s/titanone/v6/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf"},"Coming Soon":{"regular":"http://fonts.gstatic.com/s/comingsoon/v9/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf"},"Yesteryear":{"regular":"http://fonts.gstatic.com/s/yesteryear/v7/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf"},"Voltaire":{"regular":"http://fonts.gstatic.com/s/voltaire/v8/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf"},"Amethysta":{"regular":"http://fonts.gstatic.com/s/amethysta/v7/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf"},"Abhaya Libre":{"500":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf","600":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf","700":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf","800":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf","regular":"http://fonts.gstatic.com/s/abhayalibre/v4/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf"},"Nanum Pen Script":{"regular":"http://fonts.gstatic.com/s/nanumpenscript/v12/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf"},"Marvel":{"700":"http://fonts.gstatic.com/s/marvel/v8/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf","regular":"http://fonts.gstatic.com/s/marvel/v8/nwpVtKeoNgBV0qaIkV7ED366zg.ttf","italic":"http://fonts.gstatic.com/s/marvel/v8/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf","700italic":"http://fonts.gstatic.com/s/marvel/v8/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf"},"Carme":{"regular":"http://fonts.gstatic.com/s/carme/v9/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf"},"Buenard":{"700":"http://fonts.gstatic.com/s/buenard/v10/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf","regular":"http://fonts.gstatic.com/s/buenard/v10/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf"},"Lateef":{"regular":"http://fonts.gstatic.com/s/lateef/v14/hESw6XVnNCxEvkbMpheEZo_H_w.ttf"},"Berkshire Swash":{"regular":"http://fonts.gstatic.com/s/berkshireswash/v7/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf"},"Cinzel Decorative":{"700":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf","900":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf","regular":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf"},"Laila":{"300":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf","500":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf","600":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf","700":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf","regular":"http://fonts.gstatic.com/s/laila/v5/LYjMdG_8nE8jDIRdiidIrEIu.ttf"},"Reem Kufi":{"regular":"http://fonts.gstatic.com/s/reemkufi/v6/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf"},"Antic":{"regular":"http://fonts.gstatic.com/s/antic/v10/TuGfUVB8XY5DRaZLodgzydtk.ttf"},"Candal":{"regular":"http://fonts.gstatic.com/s/candal/v8/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf"},"Petit Formal Script":{"regular":"http://fonts.gstatic.com/s/petitformalscript/v6/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf"},"Changa One":{"regular":"http://fonts.gstatic.com/s/changaone/v11/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf","italic":"http://fonts.gstatic.com/s/changaone/v11/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf"},"Annie Use Your Telescope":{"regular":"http://fonts.gstatic.com/s/annieuseyourtelescope/v9/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf"},"Coustard":{"900":"http://fonts.gstatic.com/s/coustard/v9/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf","regular":"http://fonts.gstatic.com/s/coustard/v9/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf"},"Carrois Gothic":{"regular":"http://fonts.gstatic.com/s/carroisgothic/v9/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf"},"Racing Sans One":{"regular":"http://fonts.gstatic.com/s/racingsansone/v6/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf"},"Shojumaru":{"regular":"http://fonts.gstatic.com/s/shojumaru/v6/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf"},"Gruppo":{"regular":"http://fonts.gstatic.com/s/gruppo/v9/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf"},"Belleza":{"regular":"http://fonts.gstatic.com/s/belleza/v7/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf"},"Rufina":{"700":"http://fonts.gstatic.com/s/rufina/v6/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf","regular":"http://fonts.gstatic.com/s/rufina/v6/Yq6V-LyURyLy-aKyoxRktOdClg.ttf"},"Anonymous Pro":{"700":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf","regular":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf","italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf","700italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf"},"Jockey One":{"regular":"http://fonts.gstatic.com/s/jockeyone/v8/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf"},"Puritan":{"700":"http://fonts.gstatic.com/s/puritan/v10/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf","regular":"http://fonts.gstatic.com/s/puritan/v10/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf","italic":"http://fonts.gstatic.com/s/puritan/v10/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf","700italic":"http://fonts.gstatic.com/s/puritan/v10/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf"},"Arsenal":{"700":"http://fonts.gstatic.com/s/arsenal/v3/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf","regular":"http://fonts.gstatic.com/s/arsenal/v3/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf","italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf","700italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf"},"Raleway Dots":{"regular":"http://fonts.gstatic.com/s/ralewaydots/v6/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf"},"Love Ya Like A Sister":{"regular":"http://fonts.gstatic.com/s/loveyalikeasister/v9/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf"},"Limelight":{"regular":"http://fonts.gstatic.com/s/limelight/v9/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf"},"Martel Sans":{"200":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf","300":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf","600":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf","700":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf","800":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf","900":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf","regular":"http://fonts.gstatic.com/s/martelsans/v5/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf"},"Cambo":{"regular":"http://fonts.gstatic.com/s/cambo/v7/IFSqHeNEk8FJk416ok7xkPm8.ttf"},"Copse":{"regular":"http://fonts.gstatic.com/s/copse/v8/11hPGpDKz1rGb0djHkihUb-A.ttf"},"Telex":{"regular":"http://fonts.gstatic.com/s/telex/v7/ieVw2Y1fKWmIO9fTB1piKFIf.ttf"},"Anaheim":{"regular":"http://fonts.gstatic.com/s/anaheim/v6/8vII7w042Wp87g4G0UTUEE5eK_w.ttf"},"Encode Sans":{"100":"http://fonts.gstatic.com/s/encodesans/v3/LDI0apOFNxEwR-Bd1O9uYPvIeeLkl7Iw6yg.ttf","200":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtkWMLOub458jGL.ttf","300":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsAW8LOub458jGL.ttf","500":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtYWsLOub458jGL.ttf","600":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPt0XcLOub458jGL.ttf","700":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsQXMLOub458jGL.ttf","800":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsMX8LOub458jGL.ttf","900":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsoXsLOub458jGL.ttf","regular":"http://fonts.gstatic.com/s/encodesans/v3/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf"},"Nixie One":{"regular":"http://fonts.gstatic.com/s/nixieone/v9/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf"},"GFS Didot":{"regular":"http://fonts.gstatic.com/s/gfsdidot/v8/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf"},"Asap Condensed":{"500":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf","600":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf","700":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf","regular":"http://fonts.gstatic.com/s/asapcondensed/v3/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf","italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf","500italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf","600italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf","700italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf"},"Alegreya SC":{"500":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf","700":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf","800":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf","900":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf","regular":"http://fonts.gstatic.com/s/alegreyasc/v10/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf","italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf"},"Share Tech Mono":{"regular":"http://fonts.gstatic.com/s/sharetechmono/v8/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf"},"Metrophobic":{"regular":"http://fonts.gstatic.com/s/metrophobic/v11/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf"},"Arima Madurai":{"100":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf","200":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf","300":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf","500":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf","700":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf","800":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf","900":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf","regular":"http://fonts.gstatic.com/s/arimamadurai/v4/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf"},"Lekton":{"700":"http://fonts.gstatic.com/s/lekton/v9/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf","regular":"http://fonts.gstatic.com/s/lekton/v9/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf","italic":"http://fonts.gstatic.com/s/lekton/v9/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf"},"Yeseva One":{"regular":"http://fonts.gstatic.com/s/yesevaone/v13/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf"},"Wendy One":{"regular":"http://fonts.gstatic.com/s/wendyone/v7/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf"},"Saira Condensed":{"100":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf","200":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf","300":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf","500":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf","600":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf","700":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf","800":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf","900":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf","regular":"http://fonts.gstatic.com/s/sairacondensed/v4/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf"},"Caudex":{"700":"http://fonts.gstatic.com/s/caudex/v8/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf","regular":"http://fonts.gstatic.com/s/caudex/v8/esDQ311QOP6BJUrIyviAnb4eEw.ttf","italic":"http://fonts.gstatic.com/s/caudex/v8/esDS311QOP6BJUr4yPKEv7sOE4in.ttf","700italic":"http://fonts.gstatic.com/s/caudex/v8/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf"},"Padauk":{"700":"http://fonts.gstatic.com/s/padauk/v5/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf","regular":"http://fonts.gstatic.com/s/padauk/v5/RrQRboJg-id7OnbBa0_g3LlYbg.ttf"},"Cutive Mono":{"regular":"http://fonts.gstatic.com/s/cutivemono/v7/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf"},"Coiny":{"regular":"http://fonts.gstatic.com/s/coiny/v4/gyByhwU1K989PXwbElSvO5Tc.ttf"},"Freckle Face":{"regular":"http://fonts.gstatic.com/s/freckleface/v7/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf"},"Ceviche One":{"regular":"http://fonts.gstatic.com/s/cevicheone/v9/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf"},"Tauri":{"regular":"http://fonts.gstatic.com/s/tauri/v7/TwMA-IISS0AM3IpVWHU_TBqO.ttf"},"Norican":{"regular":"http://fonts.gstatic.com/s/norican/v7/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf"},"Baloo Bhaijaan":{"regular":"http://fonts.gstatic.com/s/baloobhaijaan/v5/RWmRoKCU5fcqq8fOWNzFLqSjx4ECJmVjC0-V.ttf"},"Herr Von Muellerhoff":{"regular":"http://fonts.gstatic.com/s/herrvonmuellerhoff/v8/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf"},"Duru Sans":{"regular":"http://fonts.gstatic.com/s/durusans/v12/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf"},"Fira Mono":{"500":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf","700":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf","regular":"http://fonts.gstatic.com/s/firamono/v7/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf"},"Oxygen Mono":{"regular":"http://fonts.gstatic.com/s/oxygenmono/v6/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf"},"Londrina Solid":{"100":"http://fonts.gstatic.com/s/londrinasolid/v8/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf","300":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf","900":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf","regular":"http://fonts.gstatic.com/s/londrinasolid/v8/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf"},"Delius":{"regular":"http://fonts.gstatic.com/s/delius/v8/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf"},"IBM Plex Mono":{"100":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf","200":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf","300":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf","500":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf","600":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf","700":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf","regular":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf","italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf"},"Aladin":{"regular":"http://fonts.gstatic.com/s/aladin/v7/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf"},"Baloo Bhaina":{"regular":"http://fonts.gstatic.com/s/baloobhaina/v4/Noa16Uzzzp2FIkfhq5vm9thxPAR9mhHobg.ttf"},"Pattaya":{"regular":"http://fonts.gstatic.com/s/pattaya/v4/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf"},"Calligraffitti":{"regular":"http://fonts.gstatic.com/s/calligraffitti/v10/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf"},"Palanquin Dark":{"500":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf","600":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf","700":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf","regular":"http://fonts.gstatic.com/s/palanquindark/v5/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"},"Bungee":{"regular":"http://fonts.gstatic.com/s/bungee/v4/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf"},"Kelly Slab":{"regular":"http://fonts.gstatic.com/s/kellyslab/v9/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf"},"Bubblegum Sans":{"regular":"http://fonts.gstatic.com/s/bubblegumsans/v7/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf"},"Nanum Brush Script":{"regular":"http://fonts.gstatic.com/s/nanumbrushscript/v14/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf"},"Goudy Bookletter 1911":{"regular":"http://fonts.gstatic.com/s/goudybookletter1911/v8/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf"},"Hanalei Fill":{"regular":"http://fonts.gstatic.com/s/hanaleifill/v7/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf"},"Judson":{"700":"http://fonts.gstatic.com/s/judson/v11/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf","regular":"http://fonts.gstatic.com/s/judson/v11/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf","italic":"http://fonts.gstatic.com/s/judson/v11/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf"},"Eczar":{"500":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf","600":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf","700":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf","800":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf","regular":"http://fonts.gstatic.com/s/eczar/v7/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf"},"Rosario":{"700":"http://fonts.gstatic.com/s/rosario/v13/xfu00WDhWW_fOEoY0OjY6AbouLfbK64.ttf","regular":"http://fonts.gstatic.com/s/rosario/v13/xfux0WDhWW_fOEoY6FT3zA7DpL4.ttf","italic":"http://fonts.gstatic.com/s/rosario/v13/xfuz0WDhWW_fOEoY2Fb9yCzGtL7CMg.ttf","700italic":"http://fonts.gstatic.com/s/rosario/v13/xfu20WDhWW_fOEoY2FbFdAPivJXeO67ISw.ttf"},"Do Hyeon":{"regular":"http://fonts.gstatic.com/s/dohyeon/v8/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf"},"Kristi":{"regular":"http://fonts.gstatic.com/s/kristi/v10/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf"},"Capriola":{"regular":"http://fonts.gstatic.com/s/capriola/v6/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf"},"Corben":{"700":"http://fonts.gstatic.com/s/corben/v12/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf","regular":"http://fonts.gstatic.com/s/corben/v12/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf"},"Homenaje":{"regular":"http://fonts.gstatic.com/s/homenaje/v8/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf"},"Mr De Haviland":{"regular":"http://fonts.gstatic.com/s/mrdehaviland/v7/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf"},"David Libre":{"500":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf","700":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf","regular":"http://fonts.gstatic.com/s/davidlibre/v3/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf"},"Doppio One":{"regular":"http://fonts.gstatic.com/s/doppioone/v6/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf"},"Knewave":{"regular":"http://fonts.gstatic.com/s/knewave/v7/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"},"Allan":{"700":"http://fonts.gstatic.com/s/allan/v11/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf","regular":"http://fonts.gstatic.com/s/allan/v11/ea8XadU7WuTxEtb2P9SF8nZE.ttf"},"Cutive":{"regular":"http://fonts.gstatic.com/s/cutive/v10/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf"},"Mukta Malar":{"200":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf","300":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf","500":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf","600":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf","700":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf","800":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf","regular":"http://fonts.gstatic.com/s/muktamalar/v5/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf"},"IM Fell Double Pica":{"regular":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf","italic":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf"},"Niramit":{"200":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf","300":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf","500":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf","600":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf","700":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf","200italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf","300italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf","regular":"http://fonts.gstatic.com/s/niramit/v3/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf","italic":"http://fonts.gstatic.com/s/niramit/v3/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf","500italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf","600italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf","700italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf"},"Gilda Display":{"regular":"http://fonts.gstatic.com/s/gildadisplay/v6/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf"},"Maitree":{"200":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf","300":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf","500":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf","600":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf","700":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf","regular":"http://fonts.gstatic.com/s/maitree/v3/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf"},"Gabriela":{"regular":"http://fonts.gstatic.com/s/gabriela/v7/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf"},"Skranji":{"700":"http://fonts.gstatic.com/s/skranji/v6/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf","regular":"http://fonts.gstatic.com/s/skranji/v6/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf"},"Mukta Vaani":{"200":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf","300":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf","500":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf","600":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf","700":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf","800":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf","regular":"http://fonts.gstatic.com/s/muktavaani/v6/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf"},"Poller One":{"regular":"http://fonts.gstatic.com/s/pollerone/v8/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf"},"Balthazar":{"regular":"http://fonts.gstatic.com/s/balthazar/v8/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf"},"K2D":{"100":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0ErE6UpvrIw74NL.ttf","200":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erv4QJlJw85ppSGw.ttf","300":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er24cJlJw85ppSGw.ttf","500":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erg4YJlJw85ppSGw.ttf","600":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Err4EJlJw85ppSGw.ttf","700":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Ery4AJlJw85ppSGw.ttf","800":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er14MJlJw85ppSGw.ttf","100italic":"http://fonts.gstatic.com/s/k2d/v2/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf","200italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf","300italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/k2d/v2/J7aTnpF2V0ETd68tnLcg7w.ttf","italic":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0EjdaUpvrIw74NL.ttf","500italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf","600italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf","700italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf","800italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf"},"Merienda One":{"regular":"http://fonts.gstatic.com/s/meriendaone/v9/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf"},"Faster One":{"regular":"http://fonts.gstatic.com/s/fasterone/v10/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf"},"Arizonia":{"regular":"http://fonts.gstatic.com/s/arizonia/v9/neIIzCemt4A5qa7mv6WGHK06UY30.ttf"},"Halant":{"300":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf","500":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf","600":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf","700":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf","regular":"http://fonts.gstatic.com/s/halant/v6/u-4-0qaujRI2PbsX39Jmky12eg.ttf"},"Averia Serif Libre":{"300":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf","700":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf","300italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf","regular":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf","italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf","700italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf"},"Average Sans":{"regular":"http://fonts.gstatic.com/s/averagesans/v7/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf"},"Bentham":{"regular":"http://fonts.gstatic.com/s/bentham/v9/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf"},"Convergence":{"regular":"http://fonts.gstatic.com/s/convergence/v7/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf"},"Graduate":{"regular":"http://fonts.gstatic.com/s/graduate/v6/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf"},"Andada":{"regular":"http://fonts.gstatic.com/s/andada/v10/uK_y4riWaego3w9RCh0TMv6EXw.ttf"},"Six Caps":{"regular":"http://fonts.gstatic.com/s/sixcaps/v9/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf"},"Trocchi":{"regular":"http://fonts.gstatic.com/s/trocchi/v7/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf"},"Schoolbell":{"regular":"http://fonts.gstatic.com/s/schoolbell/v9/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf"},"Mada":{"200":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf","300":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf","500":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf","600":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf","700":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf","900":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf","regular":"http://fonts.gstatic.com/s/mada/v7/7Auwp_0qnzeSTTXMLCrX0kU.ttf"},"Coda Caption":{"800":"http://fonts.gstatic.com/s/codacaption/v12/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf"},"Inder":{"regular":"http://fonts.gstatic.com/s/inder/v7/w8gUH2YoQe8_4vq6pw-P3U4O.ttf"},"Markazi Text":{"500":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4M.ttf","600":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4M.ttf","700":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4M.ttf","regular":"http://fonts.gstatic.com/s/markazitext/v4/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4M.ttf"},"Pompiere":{"regular":"http://fonts.gstatic.com/s/pompiere/v8/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf"},"Trirong":{"100":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf","200":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf","300":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf","500":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf","600":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf","700":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf","800":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf","900":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf","100italic":"http://fonts.gstatic.com/s/trirong/v4/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf","200italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf","300italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf","regular":"http://fonts.gstatic.com/s/trirong/v4/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf","italic":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf","500italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf","600italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf","700italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf","800italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf","900italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf"},"Emilys Candy":{"regular":"http://fonts.gstatic.com/s/emilyscandy/v6/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf"},"Clicker Script":{"regular":"http://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf"},"Happy Monkey":{"regular":"http://fonts.gstatic.com/s/happymonkey/v7/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf"},"Sue Ellen Francisco":{"regular":"http://fonts.gstatic.com/s/sueellenfrancisco/v9/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf"},"Lemonada":{"300":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PindGu2bje-RpH.ttf","600":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8OWm9Gu2bje-RpH.ttf","700":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PymtGu2bje-RpH.ttf","regular":"http://fonts.gstatic.com/s/lemonada/v6/0QIjMXFD9oygTWy_R_tOtfWm8qTX.ttf"},"Proza Libre":{"500":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf","600":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf","700":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf","800":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf","regular":"http://fonts.gstatic.com/s/prozalibre/v3/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf","italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf","500italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf","600italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf","700italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf","800italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf"},"Mate":{"regular":"http://fonts.gstatic.com/s/mate/v7/m8JdjftRd7WZ2z28WoXSaLU.ttf","italic":"http://fonts.gstatic.com/s/mate/v7/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf"},"Poly":{"regular":"http://fonts.gstatic.com/s/poly/v9/MQpb-W6wKNitRLCAq2Lpris.ttf","italic":"http://fonts.gstatic.com/s/poly/v9/MQpV-W6wKNitdLKKr0DsviuGWA.ttf"},"Give You Glory":{"regular":"http://fonts.gstatic.com/s/giveyouglory/v8/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf"},"Miriam Libre":{"700":"http://fonts.gstatic.com/s/miriamlibre/v5/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf","regular":"http://fonts.gstatic.com/s/miriamlibre/v5/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf"},"Aref Ruqaa":{"700":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf","regular":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf"},"Carrois Gothic SC":{"regular":"http://fonts.gstatic.com/s/carroisgothicsc/v8/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf"},"Federo":{"regular":"http://fonts.gstatic.com/s/federo/v10/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf"},"Chelsea Market":{"regular":"http://fonts.gstatic.com/s/chelseamarket/v6/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf"},"Gravitas One":{"regular":"http://fonts.gstatic.com/s/gravitasone/v8/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf"},"Cambay":{"700":"http://fonts.gstatic.com/s/cambay/v5/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf","regular":"http://fonts.gstatic.com/s/cambay/v5/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf","italic":"http://fonts.gstatic.com/s/cambay/v5/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf","700italic":"http://fonts.gstatic.com/s/cambay/v5/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf"},"Rammetto One":{"regular":"http://fonts.gstatic.com/s/rammettoone/v7/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf"},"Vesper Libre":{"500":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf","700":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf","900":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf","regular":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf"},"Sedgwick Ave":{"regular":"http://fonts.gstatic.com/s/sedgwickave/v4/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf"},"Podkova":{"500":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYGrQAoqKAyLzfWo.ttf","600":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYEbXAoqKAyLzfWo.ttf","700":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYCLWAoqKAyLzfWo.ttf","800":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYD7VAoqKAyLzfWo.ttf","regular":"http://fonts.gstatic.com/s/podkova/v12/K2FxfZ1EmftJSV9VWJ75JoKhHys.ttf"},"Medula One":{"regular":"http://fonts.gstatic.com/s/medulaone/v8/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf"},"Montez":{"regular":"http://fonts.gstatic.com/s/montez/v9/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf"},"Andika":{"regular":"http://fonts.gstatic.com/s/andika/v10/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf"},"IM Fell English":{"regular":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf","italic":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf"},"Athiti":{"200":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf","300":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf","500":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf","600":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf","700":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf","regular":"http://fonts.gstatic.com/s/athiti/v3/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf"},"Rozha One":{"regular":"http://fonts.gstatic.com/s/rozhaone/v6/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf"},"Alike":{"regular":"http://fonts.gstatic.com/s/alike/v11/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf"},"Short Stack":{"regular":"http://fonts.gstatic.com/s/shortstack/v8/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf"},"Gafata":{"regular":"http://fonts.gstatic.com/s/gafata/v7/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf"},"Averia Libre":{"300":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf","700":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf","300italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf","regular":"http://fonts.gstatic.com/s/averialibre/v7/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf","italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf","700italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf"},"Kosugi Maru":{"regular":"http://fonts.gstatic.com/s/kosugimaru/v3/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf"},"Seaweed Script":{"regular":"http://fonts.gstatic.com/s/seaweedscript/v6/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf"},"Qwigley":{"regular":"http://fonts.gstatic.com/s/qwigley/v8/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf"},"The Girl Next Door":{"regular":"http://fonts.gstatic.com/s/thegirlnextdoor/v9/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf"},"Cormorant Upright":{"300":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf","500":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf","600":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf","700":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf","regular":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf"},"Sriracha":{"regular":"http://fonts.gstatic.com/s/sriracha/v3/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf"},"Oregano":{"regular":"http://fonts.gstatic.com/s/oregano/v6/If2IXTPxciS3H4S2kZffPznO3yM.ttf","italic":"http://fonts.gstatic.com/s/oregano/v6/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf"},"Cedarville Cursive":{"regular":"http://fonts.gstatic.com/s/cedarvillecursive/v10/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf"},"Sarabun":{"100":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf","200":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf","300":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf","500":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf","600":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf","700":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf","800":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf","100italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf","200italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf","300italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf","regular":"http://fonts.gstatic.com/s/sarabun/v6/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf","italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf","500italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf","600italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf","700italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf","800italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf"},"Crafty Girls":{"regular":"http://fonts.gstatic.com/s/craftygirls/v8/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf"},"Belgrano":{"regular":"http://fonts.gstatic.com/s/belgrano/v9/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf"},"Baumans":{"regular":"http://fonts.gstatic.com/s/baumans/v8/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf"},"Faustina":{"500":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdMPulCjHMmTGFt.ttf","600":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdgOelCjHMmTGFt.ttf","700":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVcEOOlCjHMmTGFt.ttf","regular":"http://fonts.gstatic.com/s/faustina/v3/XLYlIZPxYpJfTbZAFW-4F81Kp28v.ttf","italic":"http://fonts.gstatic.com/s/faustina/v3/XLYjIZPxYpJfTbZAFV-6Hcloon8vVXg.ttf","500italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JT1BhncESXFtUsM.ttf","600italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JRFGhncESXFtUsM.ttf","700italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JXVHhncESXFtUsM.ttf"},"Fondamento":{"regular":"http://fonts.gstatic.com/s/fondamento/v9/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf","italic":"http://fonts.gstatic.com/s/fondamento/v9/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf"},"Rye":{"regular":"http://fonts.gstatic.com/s/rye/v6/r05XGLJT86YDFpTsXOqx4w.ttf"},"Noto Serif SC":{"200":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf","300":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf","500":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf","600":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf","700":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf","900":"http://fonts.gstatic.com/s/notoserifsc/v2/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf","regular":"http://fonts.gstatic.com/s/notoserifsc/v2/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf"},"Strait":{"regular":"http://fonts.gstatic.com/s/strait/v6/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf"},"Euphoria Script":{"regular":"http://fonts.gstatic.com/s/euphoriascript/v7/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf"},"Fanwood Text":{"regular":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf","italic":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf"},"Chonburi":{"regular":"http://fonts.gstatic.com/s/chonburi/v3/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf"},"Secular One":{"regular":"http://fonts.gstatic.com/s/secularone/v3/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf"},"Mouse Memoirs":{"regular":"http://fonts.gstatic.com/s/mousememoirs/v6/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf"},"NTR":{"regular":"http://fonts.gstatic.com/s/ntr/v6/RLpzK5Xy0ZjiGGhs5TA4bg.ttf"},"Patrick Hand SC":{"regular":"http://fonts.gstatic.com/s/patrickhandsc/v6/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf"},"Bilbo Swash Caps":{"regular":"http://fonts.gstatic.com/s/bilboswashcaps/v11/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf"},"Gurajada":{"regular":"http://fonts.gstatic.com/s/gurajada/v6/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf"},"Cormorant Infant":{"300":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf","500":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf","600":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf","700":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf","300italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf","regular":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf","italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf","500italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf","600italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf","700italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf"},"Expletus Sans":{"500":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf","600":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf","700":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf","regular":"http://fonts.gstatic.com/s/expletussans/v12/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf","italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf","500italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf","600italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf","700italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf"},"Mogra":{"regular":"http://fonts.gstatic.com/s/mogra/v5/f0X40eSs8c95TBo4DvLmxtnG.ttf"},"Mako":{"regular":"http://fonts.gstatic.com/s/mako/v10/H4coBX6Mmc_Z0ST09g478Lo.ttf"},"Mirza":{"500":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIpAeO4mafBomDi.ttf","600":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIFBuO4mafBomDi.ttf","700":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtJhB-O4mafBomDi.ttf","regular":"http://fonts.gstatic.com/s/mirza/v6/co3ImWlikiN5EurdKMewsrvI.ttf"},"IM Fell English SC":{"regular":"http://fonts.gstatic.com/s/imfellenglishsc/v8/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf"},"Prociono":{"regular":"http://fonts.gstatic.com/s/prociono/v8/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf"},"Quando":{"regular":"http://fonts.gstatic.com/s/quando/v7/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf"},"Meddon":{"regular":"http://fonts.gstatic.com/s/meddon/v11/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf"},"Ruslan Display":{"regular":"http://fonts.gstatic.com/s/ruslandisplay/v9/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf"},"Suranna":{"regular":"http://fonts.gstatic.com/s/suranna/v6/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf"},"Vast Shadow":{"regular":"http://fonts.gstatic.com/s/vastshadow/v8/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf"},"UnifrakturMaguntia":{"regular":"http://fonts.gstatic.com/s/unifrakturmaguntia/v9/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf"},"Artifika":{"regular":"http://fonts.gstatic.com/s/artifika/v9/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf"},"Bowlby One":{"regular":"http://fonts.gstatic.com/s/bowlbyone/v10/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf"},"Rouge Script":{"regular":"http://fonts.gstatic.com/s/rougescript/v7/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf"},"IM Fell DW Pica":{"regular":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf","italic":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf"},"Walter Turncoat":{"regular":"http://fonts.gstatic.com/s/walterturncoat/v9/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf"},"Aguafina Script":{"regular":"http://fonts.gstatic.com/s/aguafinascript/v7/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf"},"La Belle Aurore":{"regular":"http://fonts.gstatic.com/s/labelleaurore/v9/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf"},"Spicy Rice":{"regular":"http://fonts.gstatic.com/s/spicyrice/v7/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf"},"Lemon":{"regular":"http://fonts.gstatic.com/s/lemon/v7/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf"},"Denk One":{"regular":"http://fonts.gstatic.com/s/denkone/v6/dg4m_pzhrqcFb2IzROtHpbglShon.ttf"},"Delius Swash Caps":{"regular":"http://fonts.gstatic.com/s/deliusswashcaps/v10/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf"},"Kadwa":{"700":"http://fonts.gstatic.com/s/kadwa/v3/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/kadwa/v3/rnCm-x5V0g7iphTHRcc2s2XH.ttf"},"Sunflower":{"300":"http://fonts.gstatic.com/s/sunflower/v6/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf","500":"http://fonts.gstatic.com/s/sunflower/v6/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf","700":"http://fonts.gstatic.com/s/sunflower/v6/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf"},"Harmattan":{"regular":"http://fonts.gstatic.com/s/harmattan/v5/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf"},"Zeyada":{"regular":"http://fonts.gstatic.com/s/zeyada/v8/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf"},"Suez One":{"regular":"http://fonts.gstatic.com/s/suezone/v3/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf"},"Bai Jamjuree":{"200":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf","300":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf","500":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf","600":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf","700":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf","200italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf","300italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf","regular":"http://fonts.gstatic.com/s/baijamjuree/v2/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf","italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf","500italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf","600italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf","700italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf"},"Ranga":{"700":"http://fonts.gstatic.com/s/ranga/v4/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf","regular":"http://fonts.gstatic.com/s/ranga/v4/C8ct4cYisGb28p6CLDwZwmGE.ttf"},"Oleo Script Swash Caps":{"700":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf","regular":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf"},"Megrim":{"regular":"http://fonts.gstatic.com/s/megrim/v9/46kulbz5WjvLqJZlbWXgd0RY1g.ttf"},"Waiting for the Sunrise":{"regular":"http://fonts.gstatic.com/s/waitingforthesunrise/v9/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf"},"Stardos Stencil":{"700":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf","regular":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf"},"Lily Script One":{"regular":"http://fonts.gstatic.com/s/lilyscriptone/v6/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf"},"Amiko":{"600":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf","700":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf","regular":"http://fonts.gstatic.com/s/amiko/v3/WwkQxPq1DFK04tqlc17MMZgJ.ttf"},"Brawler":{"regular":"http://fonts.gstatic.com/s/brawler/v9/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf"},"Baloo Paaji":{"regular":"http://fonts.gstatic.com/s/baloopaaji/v5/8AttGsyxM5KQQU-Y4MTwVZnToxvQBiot.ttf"},"Cherry Swash":{"700":"http://fonts.gstatic.com/s/cherryswash/v7/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf","regular":"http://fonts.gstatic.com/s/cherryswash/v7/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf"},"Cantora One":{"regular":"http://fonts.gstatic.com/s/cantoraone/v8/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf"},"Wire One":{"regular":"http://fonts.gstatic.com/s/wireone/v9/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf"},"Tienne":{"700":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf","900":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf","regular":"http://fonts.gstatic.com/s/tienne/v11/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf"},"Cormorant SC":{"300":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf","500":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf","600":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf","700":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf","regular":"http://fonts.gstatic.com/s/cormorantsc/v7/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf"},"Noto Serif KR":{"200":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf","300":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf","500":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf","600":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf","700":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf","900":"http://fonts.gstatic.com/s/notoserifkr/v3/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf","regular":"http://fonts.gstatic.com/s/notoserifkr/v3/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf"},"Sofia":{"regular":"http://fonts.gstatic.com/s/sofia/v7/8QIHdirahM3j_vu-sowsrqjk.ttf"},"Salsa":{"regular":"http://fonts.gstatic.com/s/salsa/v8/gNMKW3FiRpKj-imY8ncKEZez.ttf"},"Sarpanch":{"500":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf","600":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf","700":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf","800":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf","900":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf","regular":"http://fonts.gstatic.com/s/sarpanch/v4/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf"},"Just Me Again Down Here":{"regular":"http://fonts.gstatic.com/s/justmeagaindownhere/v10/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf"},"Iceland":{"regular":"http://fonts.gstatic.com/s/iceland/v7/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf"},"Kurale":{"regular":"http://fonts.gstatic.com/s/kurale/v4/4iCs6KV9e9dXjho6eAT3v02QFg.ttf"},"Sumana":{"700":"http://fonts.gstatic.com/s/sumana/v3/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf","regular":"http://fonts.gstatic.com/s/sumana/v3/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf"},"Encode Sans Semi Condensed":{"100":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf","300":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf","500":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf","600":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf","700":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf","800":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf","900":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf"},"Loved by the King":{"regular":"http://fonts.gstatic.com/s/lovedbytheking/v8/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf"},"Unkempt":{"700":"http://fonts.gstatic.com/s/unkempt/v10/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf","regular":"http://fonts.gstatic.com/s/unkempt/v10/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf"},"Sansita":{"700":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf","800":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf","900":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf","regular":"http://fonts.gstatic.com/s/sansita/v3/QldONTRRphEb_-V7HBm7TXFf3qw.ttf","italic":"http://fonts.gstatic.com/s/sansita/v3/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf","700italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf","800italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf","900italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf"},"Battambang":{"700":"http://fonts.gstatic.com/s/battambang/v12/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf","regular":"http://fonts.gstatic.com/s/battambang/v12/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf"},"Fjord One":{"regular":"http://fonts.gstatic.com/s/fjordone/v7/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf"},"Holtwood One SC":{"regular":"http://fonts.gstatic.com/s/holtwoodonesc/v9/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf"},"Codystar":{"300":"http://fonts.gstatic.com/s/codystar/v6/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf","regular":"http://fonts.gstatic.com/s/codystar/v6/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf"},"Fontdiner Swanky":{"regular":"http://fonts.gstatic.com/s/fontdinerswanky/v9/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf"},"Vibur":{"regular":"http://fonts.gstatic.com/s/vibur/v9/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf"},"Chicle":{"regular":"http://fonts.gstatic.com/s/chicle/v7/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf"},"Amita":{"700":"http://fonts.gstatic.com/s/amita/v4/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf","regular":"http://fonts.gstatic.com/s/amita/v4/HhyaU5si9Om7PQlvAfSKEZZL.ttf"},"Sniglet":{"800":"http://fonts.gstatic.com/s/sniglet/v10/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf","regular":"http://fonts.gstatic.com/s/sniglet/v10/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf"},"Imprima":{"regular":"http://fonts.gstatic.com/s/imprima/v7/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf"},"Dawning of a New Day":{"regular":"http://fonts.gstatic.com/s/dawningofanewday/v9/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf"},"Krona One":{"regular":"http://fonts.gstatic.com/s/kronaone/v7/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf"},"Bellefair":{"regular":"http://fonts.gstatic.com/s/bellefair/v4/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf"},"Orienta":{"regular":"http://fonts.gstatic.com/s/orienta/v6/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf"},"Ramabhadra":{"regular":"http://fonts.gstatic.com/s/ramabhadra/v8/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf"},"Frijole":{"regular":"http://fonts.gstatic.com/s/frijole/v7/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf"},"Rubik Mono One":{"regular":"http://fonts.gstatic.com/s/rubikmonoone/v7/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf"},"Vampiro One":{"regular":"http://fonts.gstatic.com/s/vampiroone/v9/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf"},"Mallanna":{"regular":"http://fonts.gstatic.com/s/mallanna/v6/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf"},"Wallpoet":{"regular":"http://fonts.gstatic.com/s/wallpoet/v10/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf"},"Overpass Mono":{"300":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf","600":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf","700":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf","regular":"http://fonts.gstatic.com/s/overpassmono/v4/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf"},"Spirax":{"regular":"http://fonts.gstatic.com/s/spirax/v7/buE3poKgYNLy0F3cXktt-Csn-Q.ttf"},"Atma":{"300":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf","500":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf","600":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf","700":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf","regular":"http://fonts.gstatic.com/s/atma/v4/uK_84rqWc-Eom25bDj8WIv4.ttf"},"Scope One":{"regular":"http://fonts.gstatic.com/s/scopeone/v5/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf"},"Elsie":{"900":"http://fonts.gstatic.com/s/elsie/v8/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf","regular":"http://fonts.gstatic.com/s/elsie/v8/BCanqZABrez54yYu9slAeLgX.ttf"},"McLaren":{"regular":"http://fonts.gstatic.com/s/mclaren/v6/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf"},"Nova Square":{"regular":"http://fonts.gstatic.com/s/novasquare/v11/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf"},"Ledger":{"regular":"http://fonts.gstatic.com/s/ledger/v6/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf"},"Share Tech":{"regular":"http://fonts.gstatic.com/s/sharetech/v8/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf"},"Timmana":{"regular":"http://fonts.gstatic.com/s/timmana/v3/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf"},"Quintessential":{"regular":"http://fonts.gstatic.com/s/quintessential/v6/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf"},"Katibeh":{"regular":"http://fonts.gstatic.com/s/katibeh/v6/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf"},"Tulpen One":{"regular":"http://fonts.gstatic.com/s/tulpenone/v8/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf"},"Nova Flat":{"regular":"http://fonts.gstatic.com/s/novaflat/v10/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf"},"Port Lligat Slab":{"regular":"http://fonts.gstatic.com/s/portlligatslab/v7/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf"},"Finger Paint":{"regular":"http://fonts.gstatic.com/s/fingerpaint/v8/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf"},"Nova Mono":{"regular":"http://fonts.gstatic.com/s/novamono/v9/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf"},"Black Han Sans":{"regular":"http://fonts.gstatic.com/s/blackhansans/v5/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf"},"Khmer":{"regular":"http://fonts.gstatic.com/s/khmer/v11/MjQImit_vPPwpF-BpN2EeYmD.ttf"},"Life Savers":{"700":"http://fonts.gstatic.com/s/lifesavers/v8/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf","regular":"http://fonts.gstatic.com/s/lifesavers/v8/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf"},"Engagement":{"regular":"http://fonts.gstatic.com/s/engagement/v8/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf"},"Galada":{"regular":"http://fonts.gstatic.com/s/galada/v4/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf"},"Metamorphous":{"regular":"http://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf"},"Nova Round":{"regular":"http://fonts.gstatic.com/s/novaround/v10/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf"},"Eater":{"regular":"http://fonts.gstatic.com/s/eater/v7/mtG04_FCK7bOvpu2u3FwsXsR.ttf"},"Voces":{"regular":"http://fonts.gstatic.com/s/voces/v8/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf"},"Bungee Shade":{"regular":"http://fonts.gstatic.com/s/bungeeshade/v4/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf"},"Milonga":{"regular":"http://fonts.gstatic.com/s/milonga/v6/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf"},"Shanti":{"regular":"http://fonts.gstatic.com/s/shanti/v10/t5thIREMM4uSDgzgU0ezpKfwzA.ttf"},"Averia Sans Libre":{"300":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf","700":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf","300italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf","regular":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf","italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf","700italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf"},"Kranky":{"regular":"http://fonts.gstatic.com/s/kranky/v9/hESw6XVgJzlPsFnMpheEZo_H_w.ttf"},"Germania One":{"regular":"http://fonts.gstatic.com/s/germaniaone/v6/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf"},"Over the Rainbow":{"regular":"http://fonts.gstatic.com/s/overtherainbow/v9/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf"},"Baloo Tamma":{"regular":"http://fonts.gstatic.com/s/balootamma/v5/JTUTjIk68Cy27gWhOWIghE5B5Arr-s50.ttf"},"Rationale":{"regular":"http://fonts.gstatic.com/s/rationale/v10/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf"},"Chau Philomene One":{"regular":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf","italic":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf"},"Kotta One":{"regular":"http://fonts.gstatic.com/s/kottaone/v6/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf"},"Crushed":{"regular":"http://fonts.gstatic.com/s/crushed/v9/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf"},"IBM Plex Sans Condensed":{"100":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf","200":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf","300":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf","500":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf","600":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf","700":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf"},"Alike Angular":{"regular":"http://fonts.gstatic.com/s/alikeangular/v9/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf"},"Rakkas":{"regular":"http://fonts.gstatic.com/s/rakkas/v6/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf"},"Habibi":{"regular":"http://fonts.gstatic.com/s/habibi/v7/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf"},"Uncial Antiqua":{"regular":"http://fonts.gstatic.com/s/uncialantiqua/v6/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf"},"Mrs Saint Delafield":{"regular":"http://fonts.gstatic.com/s/mrssaintdelafield/v6/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf"},"Headland One":{"regular":"http://fonts.gstatic.com/s/headlandone/v6/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf"},"Fenix":{"regular":"http://fonts.gstatic.com/s/fenix/v6/XoHo2YL_S7-g5ostKzAFvs8o.ttf"},"Mountains of Christmas":{"700":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf","regular":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf"},"Spectral SC":{"200":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf","300":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf","500":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf","600":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf","700":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf","800":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf","200italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf","300italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf","regular":"http://fonts.gstatic.com/s/spectralsc/v4/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf","italic":"http://fonts.gstatic.com/s/spectralsc/v4/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf","500italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf","600italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf","700italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf","800italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf"},"Delius Unicase":{"700":"http://fonts.gstatic.com/s/deliusunicase/v12/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf","regular":"http://fonts.gstatic.com/s/deliusunicase/v12/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf"},"Cherry Cream Soda":{"regular":"http://fonts.gstatic.com/s/cherrycreamsoda/v9/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf"},"Arya":{"700":"http://fonts.gstatic.com/s/arya/v4/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf","regular":"http://fonts.gstatic.com/s/arya/v4/ga6CawNG-HJd9Ub1-beqdFE.ttf"},"Slackey":{"regular":"http://fonts.gstatic.com/s/slackey/v9/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf"},"Londrina Outline":{"regular":"http://fonts.gstatic.com/s/londrinaoutline/v9/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf"},"Baloo Bhai":{"regular":"http://fonts.gstatic.com/s/baloobhai/v4/ZgNWjP5GM7bCUdmXgWyVjGXEM4COoE4.ttf"},"Baloo Thambi":{"regular":"http://fonts.gstatic.com/s/baloothambi/v4/va9B4kXJzNhTFoA7CYcS8sHuQR37fF3Wlg.ttf"},"Amarante":{"regular":"http://fonts.gstatic.com/s/amarante/v6/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf"},"Creepster":{"regular":"http://fonts.gstatic.com/s/creepster/v7/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf"},"Montserrat Subrayada":{"700":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf"},"Peralta":{"regular":"http://fonts.gstatic.com/s/peralta/v6/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf"},"Charm":{"700":"http://fonts.gstatic.com/s/charm/v3/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf","regular":"http://fonts.gstatic.com/s/charm/v3/7cHmv4oii5K0MeYvIe804WIo.ttf"},"Lovers Quarrel":{"regular":"http://fonts.gstatic.com/s/loversquarrel/v6/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf"},"Stalemate":{"regular":"http://fonts.gstatic.com/s/stalemate/v6/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf"},"Mystery Quest":{"regular":"http://fonts.gstatic.com/s/mysteryquest/v6/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf"},"Sail":{"regular":"http://fonts.gstatic.com/s/sail/v9/DPEjYwiBxwYJFBTDADYAbvw.ttf"},"Dekko":{"regular":"http://fonts.gstatic.com/s/dekko/v5/46khlb_wWjfSrttFR0vsfl1B.ttf"},"Paprika":{"regular":"http://fonts.gstatic.com/s/paprika/v6/8QIJdijZitv49rDfuIgOq7jkAOw.ttf"},"Condiment":{"regular":"http://fonts.gstatic.com/s/condiment/v6/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf"},"Dynalight":{"regular":"http://fonts.gstatic.com/s/dynalight/v7/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf"},"Antic Didone":{"regular":"http://fonts.gstatic.com/s/anticdidone/v7/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf"},"Pirata One":{"regular":"http://fonts.gstatic.com/s/pirataone/v7/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf"},"Rosarivo":{"regular":"http://fonts.gstatic.com/s/rosarivo/v6/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf","italic":"http://fonts.gstatic.com/s/rosarivo/v6/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf"},"Stint Ultra Expanded":{"regular":"http://fonts.gstatic.com/s/stintultraexpanded/v6/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf"},"BioRhyme":{"200":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf","300":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf","700":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf","800":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf","regular":"http://fonts.gstatic.com/s/biorhyme/v3/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf"},"Geo":{"regular":"http://fonts.gstatic.com/s/geo/v10/CSRz4zRZlufVL3BmQjlCbQ.ttf","italic":"http://fonts.gstatic.com/s/geo/v10/CSRx4zRZluflLXpiYDxSbf8r.ttf"},"Mate SC":{"regular":"http://fonts.gstatic.com/s/matesc/v7/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf"},"Taprom":{"regular":"http://fonts.gstatic.com/s/taprom/v10/UcCn3F82JHycULbFQyk3-0kvHg.ttf"},"Sarina":{"regular":"http://fonts.gstatic.com/s/sarina/v7/-F6wfjF3ITQwasLhLkDUriBQxw.ttf"},"Encode Sans Semi Expanded":{"100":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf","300":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf","500":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf","600":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf","700":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf","800":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf","900":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf"},"Cagliostro":{"regular":"http://fonts.gstatic.com/s/cagliostro/v7/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf"},"Koulen":{"regular":"http://fonts.gstatic.com/s/koulen/v12/AMOQz46as3KIBPeWgnA9kuYMUg.ttf"},"Farsan":{"regular":"http://fonts.gstatic.com/s/farsan/v4/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf"},"Nova Slim":{"regular":"http://fonts.gstatic.com/s/novaslim/v10/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf"},"Stint Ultra Condensed":{"regular":"http://fonts.gstatic.com/s/stintultracondensed/v7/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf"},"Kite One":{"regular":"http://fonts.gstatic.com/s/kiteone/v6/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf"},"League Script":{"regular":"http://fonts.gstatic.com/s/leaguescript/v9/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf"},"Mandali":{"regular":"http://fonts.gstatic.com/s/mandali/v7/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf"},"Esteban":{"regular":"http://fonts.gstatic.com/s/esteban/v7/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf"},"Yatra One":{"regular":"http://fonts.gstatic.com/s/yatraone/v5/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf"},"Princess Sofia":{"regular":"http://fonts.gstatic.com/s/princesssofia/v7/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf"},"Ribeye":{"regular":"http://fonts.gstatic.com/s/ribeye/v7/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf"},"Simonetta":{"900":"http://fonts.gstatic.com/s/simonetta/v8/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf","regular":"http://fonts.gstatic.com/s/simonetta/v8/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf","italic":"http://fonts.gstatic.com/s/simonetta/v8/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf","900italic":"http://fonts.gstatic.com/s/simonetta/v8/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf"},"Encode Sans Expanded":{"100":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf","200":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf","300":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf","500":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf","600":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf","700":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf","800":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf","900":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf","regular":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf"},"Englebert":{"regular":"http://fonts.gstatic.com/s/englebert/v6/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf"},"Mukta Mahee":{"200":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf","300":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf","500":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf","600":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf","700":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf","800":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf","regular":"http://fonts.gstatic.com/s/muktamahee/v4/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf"},"Stoke":{"300":"http://fonts.gstatic.com/s/stoke/v8/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf","regular":"http://fonts.gstatic.com/s/stoke/v8/z7NadRb7aTMfKONpfihK1YTV.ttf"},"Numans":{"regular":"http://fonts.gstatic.com/s/numans/v8/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf"},"Almendra":{"700":"http://fonts.gstatic.com/s/almendra/v11/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf","regular":"http://fonts.gstatic.com/s/almendra/v11/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf","italic":"http://fonts.gstatic.com/s/almendra/v11/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf","700italic":"http://fonts.gstatic.com/s/almendra/v11/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf"},"Kosugi":{"regular":"http://fonts.gstatic.com/s/kosugi/v3/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf"},"Nosifer":{"regular":"http://fonts.gstatic.com/s/nosifer/v7/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf"},"Asul":{"700":"http://fonts.gstatic.com/s/asul/v8/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf","regular":"http://fonts.gstatic.com/s/asul/v8/VuJ-dNjKxYr46fMFXK78JIg.ttf"},"Plaster":{"regular":"http://fonts.gstatic.com/s/plaster/v10/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf"},"Sancreek":{"regular":"http://fonts.gstatic.com/s/sancreek/v9/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf"},"Bubbler One":{"regular":"http://fonts.gstatic.com/s/bubblerone/v7/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf"},"Flamenco":{"300":"http://fonts.gstatic.com/s/flamenco/v9/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf","regular":"http://fonts.gstatic.com/s/flamenco/v9/neIIzCehqYguo67ssaWGHK06UY30.ttf"},"Junge":{"regular":"http://fonts.gstatic.com/s/junge/v6/gokgH670Gl1lUqAdvhB7SnKm.ttf"},"Ranchers":{"regular":"http://fonts.gstatic.com/s/ranchers/v6/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf"},"Ramaraja":{"regular":"http://fonts.gstatic.com/s/ramaraja/v3/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf"},"Joti One":{"regular":"http://fonts.gstatic.com/s/jotione/v7/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf"},"Glass Antiqua":{"regular":"http://fonts.gstatic.com/s/glassantiqua/v6/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf"},"Italiana":{"regular":"http://fonts.gstatic.com/s/italiana/v7/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf"},"Trade Winds":{"regular":"http://fonts.gstatic.com/s/tradewinds/v7/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf"},"Inknut Antiqua":{"300":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf","500":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf","600":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf","700":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf","800":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf","900":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf","regular":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf"},"Dorsa":{"regular":"http://fonts.gstatic.com/s/dorsa/v9/yYLn0hjd0OGwqo493XCFxAnQ.ttf"},"Port Lligat Sans":{"regular":"http://fonts.gstatic.com/s/portlligatsans/v7/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf"},"IM Fell French Canon":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf","italic":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf"},"Baloo Chettan":{"regular":"http://fonts.gstatic.com/s/baloochettan/v4/0QImMXRN8o2gTC2YTr4665DA07z8_ApHqqk.ttf"},"Chela One":{"regular":"http://fonts.gstatic.com/s/chelaone/v7/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf"},"Meera Inimai":{"regular":"http://fonts.gstatic.com/s/meerainimai/v3/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf"},"Ruluko":{"regular":"http://fonts.gstatic.com/s/ruluko/v6/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf"},"Donegal One":{"regular":"http://fonts.gstatic.com/s/donegalone/v6/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf"},"Pavanam":{"regular":"http://fonts.gstatic.com/s/pavanam/v3/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf"},"Maiden Orange":{"regular":"http://fonts.gstatic.com/s/maidenorange/v9/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf"},"Galindo":{"regular":"http://fonts.gstatic.com/s/galindo/v6/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf"},"Revalia":{"regular":"http://fonts.gstatic.com/s/revalia/v6/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf"},"Sura":{"700":"http://fonts.gstatic.com/s/sura/v3/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf","regular":"http://fonts.gstatic.com/s/sura/v3/SZc23FL5PbyzFf5UWzXtjUM.ttf"},"Croissant One":{"regular":"http://fonts.gstatic.com/s/croissantone/v6/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf"},"Linden Hill":{"regular":"http://fonts.gstatic.com/s/lindenhill/v8/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf","italic":"http://fonts.gstatic.com/s/lindenhill/v8/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf"},"Mali":{"200":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf","300":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf","500":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf","600":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf","700":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf","200italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf","300italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf","regular":"http://fonts.gstatic.com/s/mali/v2/N0ba2SRONuN4eCrODlxxOd8.ttf","italic":"http://fonts.gstatic.com/s/mali/v2/N0bU2SRONuN4SCjECn50Kd_PmA.ttf","500italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf","600italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf","700italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf"},"Buda":{"300":"http://fonts.gstatic.com/s/buda/v9/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf"},"Baloo Tammudu":{"regular":"http://fonts.gstatic.com/s/balootammudu/v5/mFT3Wb8Qza7c_Z5HTsC_5nxW8EpQl9RWxD8.ttf"},"Aleo":{"300":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syKbr9DVDno985KM.ttf","700":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syLbs9DVDno985KM.ttf","300italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf","regular":"http://fonts.gstatic.com/s/aleo/v2/c4mv1nF8G8_s8ArD0D1ogoY.ttf","italic":"http://fonts.gstatic.com/s/aleo/v2/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf","700italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"},"Siemreap":{"regular":"http://fonts.gstatic.com/s/siemreap/v11/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf"},"Ruge Boogie":{"regular":"http://fonts.gstatic.com/s/rugeboogie/v9/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf"},"New Rocker":{"regular":"http://fonts.gstatic.com/s/newrocker/v7/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf"},"Fresca":{"regular":"http://fonts.gstatic.com/s/fresca/v7/6ae94K--SKgCzbM2Gr0W13DKPA.ttf"},"Miss Fajardose":{"regular":"http://fonts.gstatic.com/s/missfajardose/v8/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf"},"Text Me One":{"regular":"http://fonts.gstatic.com/s/textmeone/v6/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf"},"Angkor":{"regular":"http://fonts.gstatic.com/s/angkor/v11/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf"},"Bilbo":{"regular":"http://fonts.gstatic.com/s/bilbo/v8/o-0EIpgpwWwZ210hpIRz4wxE.ttf"},"Overlock SC":{"regular":"http://fonts.gstatic.com/s/overlocksc/v7/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf"},"Julee":{"regular":"http://fonts.gstatic.com/s/julee/v8/TuGfUVB3RpZPQ6ZLodgzydtk.ttf"},"Petrona":{"regular":"http://fonts.gstatic.com/s/petrona/v7/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf"},"Sree Krushnadevaraya":{"regular":"http://fonts.gstatic.com/s/sreekrushnadevaraya/v6/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf"},"Averia Gruesa Libre":{"regular":"http://fonts.gstatic.com/s/averiagruesalibre/v7/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf"},"Redressed":{"regular":"http://fonts.gstatic.com/s/redressed/v9/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf"},"Autour One":{"regular":"http://fonts.gstatic.com/s/autourone/v8/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf"},"Wellfleet":{"regular":"http://fonts.gstatic.com/s/wellfleet/v6/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf"},"Swanky and Moo Moo":{"regular":"http://fonts.gstatic.com/s/swankyandmoomoo/v8/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf"},"Gugi":{"regular":"http://fonts.gstatic.com/s/gugi/v5/A2BVn5dXywshVA6A9DEfgqM.ttf"},"Krub":{"200":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf","300":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf","500":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf","600":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf","700":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf","200italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf","300italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf","regular":"http://fonts.gstatic.com/s/krub/v2/sZlLdRyC6CRYXkYQDLlTW6E.ttf","italic":"http://fonts.gstatic.com/s/krub/v2/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf","500italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf","600italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf","700italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf"},"Sonsie One":{"regular":"http://fonts.gstatic.com/s/sonsieone/v7/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf"},"Griffy":{"regular":"http://fonts.gstatic.com/s/griffy/v7/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf"},"Kavoon":{"regular":"http://fonts.gstatic.com/s/kavoon/v7/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf"},"Manuale":{"500":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPALt58Ht9a8GYeA.ttf","600":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPC7q58Ht9a8GYeA.ttf","700":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPErr58Ht9a8GYeA.ttf","regular":"http://fonts.gstatic.com/s/manuale/v3/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf","italic":"http://fonts.gstatic.com/s/manuale/v3/f0X00eas_8Z-TFZdNPTOx-vD-aYfeA.ttf","500italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2M8Ln8Y0DceA0OQ.ttf","600italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2H8Xn8Y0DceA0OQ.ttf","700italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2e8Tn8Y0DceA0OQ.ttf"},"Marko One":{"regular":"http://fonts.gstatic.com/s/markoone/v8/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf"},"Bokor":{"regular":"http://fonts.gstatic.com/s/bokor/v11/m8JcjfpeeaqTiR2WdInbcaxE.ttf"},"Fascinate Inline":{"regular":"http://fonts.gstatic.com/s/fascinateinline/v8/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf"},"Miniver":{"regular":"http://fonts.gstatic.com/s/miniver/v7/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf"},"Eagle Lake":{"regular":"http://fonts.gstatic.com/s/eaglelake/v6/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf"},"Jim Nightshade":{"regular":"http://fonts.gstatic.com/s/jimnightshade/v6/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf"},"IM Fell Great Primer":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf","italic":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf"},"Rhodium Libre":{"regular":"http://fonts.gstatic.com/s/rhodiumlibre/v3/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf"},"Akronim":{"regular":"http://fonts.gstatic.com/s/akronim/v8/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf"},"Ravi Prakash":{"regular":"http://fonts.gstatic.com/s/raviprakash/v5/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf"},"Della Respira":{"regular":"http://fonts.gstatic.com/s/dellarespira/v6/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf"},"Jacques Francois":{"regular":"http://fonts.gstatic.com/s/jacquesfrancois/v6/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf"},"Offside":{"regular":"http://fonts.gstatic.com/s/offside/v6/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf"},"Henny Penny":{"regular":"http://fonts.gstatic.com/s/hennypenny/v6/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf"},"Trykker":{"regular":"http://fonts.gstatic.com/s/trykker/v7/KtktALyWZJXudUPzhNnoOd2j22U.ttf"},"Chakra Petch":{"300":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf","500":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf","600":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf","700":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf","300italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf","regular":"http://fonts.gstatic.com/s/chakrapetch/v2/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf","italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf","500italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf","600italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf","700italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf"},"Noto Serif TC":{"200":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf","300":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf","500":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf","600":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf","700":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf","900":"http://fonts.gstatic.com/s/notoseriftc/v2/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf","regular":"http://fonts.gstatic.com/s/notoseriftc/v2/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf"},"Chango":{"regular":"http://fonts.gstatic.com/s/chango/v7/2V0cKI0OB5U7WaJyz324TFUaAw.ttf"},"Purple Purse":{"regular":"http://fonts.gstatic.com/s/purplepurse/v7/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf"},"Felipa":{"regular":"http://fonts.gstatic.com/s/felipa/v6/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf"},"Ruthie":{"regular":"http://fonts.gstatic.com/s/ruthie/v9/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf"},"Cormorant Unicase":{"300":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf","500":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf","600":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf","700":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf","regular":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf"},"Song Myung":{"regular":"http://fonts.gstatic.com/s/songmyung/v5/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf"},"Molle":{"italic":"http://fonts.gstatic.com/s/molle/v7/E21n_dL5hOXFhWEsXzgmVydREus.ttf"},"Inika":{"700":"http://fonts.gstatic.com/s/inika/v7/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/inika/v7/rnCm-x5X3QP-phTHRcc2s2XH.ttf"},"Bahiana":{"regular":"http://fonts.gstatic.com/s/bahiana/v3/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf"},"Barrio":{"regular":"http://fonts.gstatic.com/s/barrio/v3/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf"},"IM Fell DW Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldwpicasc/v8/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf"},"MedievalSharp":{"regular":"http://fonts.gstatic.com/s/medievalsharp/v11/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf"},"Monsieur La Doulaise":{"regular":"http://fonts.gstatic.com/s/monsieurladoulaise/v7/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf"},"Underdog":{"regular":"http://fonts.gstatic.com/s/underdog/v7/CHygV-jCElj7diMroVSiU14GN2Il.ttf"},"UnifrakturCook":{"700":"http://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf"},"Mina":{"700":"http://fonts.gstatic.com/s/mina/v2/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf","regular":"http://fonts.gstatic.com/s/mina/v2/-nFzOGc18vARrz9j7i3y65o.ttf"},"Kdam Thmor":{"regular":"http://fonts.gstatic.com/s/kdamthmor/v6/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf"},"Jua":{"regular":"http://fonts.gstatic.com/s/jua/v5/co3KmW9ljjAjc-DZCsKgsg.ttf"},"Elsie Swash Caps":{"900":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf","regular":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf"},"Tillana":{"500":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf","600":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf","700":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf","800":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/tillana/v4/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf"},"Diplomata SC":{"regular":"http://fonts.gstatic.com/s/diplomatasc/v7/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf"},"Rum Raisin":{"regular":"http://fonts.gstatic.com/s/rumraisin/v6/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf"},"Gaegu":{"300":"http://fonts.gstatic.com/s/gaegu/v5/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf","700":"http://fonts.gstatic.com/s/gaegu/v5/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf","regular":"http://fonts.gstatic.com/s/gaegu/v5/TuGfUVB6Up9NU6ZLodgzydtk.ttf"},"Monofett":{"regular":"http://fonts.gstatic.com/s/monofett/v8/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf"},"Oldenburg":{"regular":"http://fonts.gstatic.com/s/oldenburg/v6/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf"},"Dangrek":{"regular":"http://fonts.gstatic.com/s/dangrek/v10/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf"},"Kumar One":{"regular":"http://fonts.gstatic.com/s/kumarone/v3/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf"},"Chathura":{"100":"http://fonts.gstatic.com/s/chathura/v4/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf","300":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf","700":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf","800":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf","regular":"http://fonts.gstatic.com/s/chathura/v4/_gP71R7-rzUuVjim418goUC5S-Zy.ttf"},"Miltonian Tattoo":{"regular":"http://fonts.gstatic.com/s/miltoniantattoo/v14/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf"},"Content":{"700":"http://fonts.gstatic.com/s/content/v11/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf","regular":"http://fonts.gstatic.com/s/content/v11/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf"},"Irish Grover":{"regular":"http://fonts.gstatic.com/s/irishgrover/v9/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf"},"Nokora":{"700":"http://fonts.gstatic.com/s/nokora/v12/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf","regular":"http://fonts.gstatic.com/s/nokora/v12/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf"},"Montaga":{"regular":"http://fonts.gstatic.com/s/montaga/v6/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf"},"Smythe":{"regular":"http://fonts.gstatic.com/s/smythe/v9/MwQ3bhT01--coT1BOLh_uGInjA.ttf"},"Asset":{"regular":"http://fonts.gstatic.com/s/asset/v9/SLXGc1na-mM4cWImRJqExst1.ttf"},"Galdeano":{"regular":"http://fonts.gstatic.com/s/galdeano/v8/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf"},"Margarine":{"regular":"http://fonts.gstatic.com/s/margarine/v7/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf"},"Ewert":{"regular":"http://fonts.gstatic.com/s/ewert/v6/va9I4kzO2tFODYBvS-J3kbDP.ttf"},"Modak":{"regular":"http://fonts.gstatic.com/s/modak/v4/EJRYQgs1XtIEsnMH8BVZ76KU.ttf"},"Iceberg":{"regular":"http://fonts.gstatic.com/s/iceberg/v6/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf"},"Sahitya":{"700":"http://fonts.gstatic.com/s/sahitya/v3/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf","regular":"http://fonts.gstatic.com/s/sahitya/v3/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf"},"Modern Antiqua":{"regular":"http://fonts.gstatic.com/s/modernantiqua/v8/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf"},"Nova Script":{"regular":"http://fonts.gstatic.com/s/novascript/v11/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf"},"Diplomata":{"regular":"http://fonts.gstatic.com/s/diplomata/v10/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf"},"Bigshot One":{"regular":"http://fonts.gstatic.com/s/bigshotone/v9/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf"},"Lancelot":{"regular":"http://fonts.gstatic.com/s/lancelot/v8/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf"},"Astloch":{"700":"http://fonts.gstatic.com/s/astloch/v9/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf","regular":"http://fonts.gstatic.com/s/astloch/v9/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf"},"Snippet":{"regular":"http://fonts.gstatic.com/s/snippet/v8/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf"},"Bayon":{"regular":"http://fonts.gstatic.com/s/bayon/v12/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf"},"Moul":{"regular":"http://fonts.gstatic.com/s/moul/v10/nuF2D__FSo_3E-RYiJCy-00.ttf"},"IM Fell Great Primer SC":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimersc/v8/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf"},"Odor Mean Chey":{"regular":"http://fonts.gstatic.com/s/odormeanchey/v10/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf"},"Smokum":{"regular":"http://fonts.gstatic.com/s/smokum/v9/TK3iWkUbAhopmrdGHjUHte5fKg.ttf"},"Metal Mania":{"regular":"http://fonts.gstatic.com/s/metalmania/v8/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf"},"Devonshire":{"regular":"http://fonts.gstatic.com/s/devonshire/v7/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf"},"Jacques Francois Shadow":{"regular":"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v7/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf"},"Kavivanar":{"regular":"http://fonts.gstatic.com/s/kavivanar/v4/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf"},"Arbutus":{"regular":"http://fonts.gstatic.com/s/arbutus/v8/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf"},"KoHo":{"200":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf","300":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf","500":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf","600":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf","700":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf","200italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf","300italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf","regular":"http://fonts.gstatic.com/s/koho/v2/K2F-fZ5fmddNBikefJbSOos.ttf","italic":"http://fonts.gstatic.com/s/koho/v2/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf","500italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf","600italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf","700italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf"},"Sirin Stencil":{"regular":"http://fonts.gstatic.com/s/sirinstencil/v7/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf"},"Poor Story":{"regular":"http://fonts.gstatic.com/s/poorstory/v5/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf"},"Original Surfer":{"regular":"http://fonts.gstatic.com/s/originalsurfer/v7/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf"},"Caesar Dressing":{"regular":"http://fonts.gstatic.com/s/caesardressing/v7/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf"},"IM Fell French Canon SC":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v8/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf"},"Asar":{"regular":"http://fonts.gstatic.com/s/asar/v6/sZlLdRyI6TBIXkYQDLlTW6E.ttf"},"Dr Sugiyama":{"regular":"http://fonts.gstatic.com/s/drsugiyama/v8/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf"},"Zilla Slab Highlight":{"700":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf","regular":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf"},"Piedra":{"regular":"http://fonts.gstatic.com/s/piedra/v7/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf"},"Keania One":{"regular":"http://fonts.gstatic.com/s/keaniaone/v6/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf"},"Snowburst One":{"regular":"http://fonts.gstatic.com/s/snowburstone/v6/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf"},"Kantumruy":{"300":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf","700":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf","regular":"http://fonts.gstatic.com/s/kantumruy/v5/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf"},"ZCOOL QingKe HuangYou":{"regular":"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v2/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf"},"Meie Script":{"regular":"http://fonts.gstatic.com/s/meiescript/v6/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf"},"Flavors":{"regular":"http://fonts.gstatic.com/s/flavors/v7/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf"},"Mrs Sheppards":{"regular":"http://fonts.gstatic.com/s/mrssheppards/v7/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf"},"Ribeye Marrow":{"regular":"http://fonts.gstatic.com/s/ribeyemarrow/v8/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf"},"Baloo Da":{"regular":"http://fonts.gstatic.com/s/balooda/v4/LhWmMVnXOfIZO795FXkfSvtVM8mZ.ttf"},"Atomic Age":{"regular":"http://fonts.gstatic.com/s/atomicage/v11/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf"},"Goblin One":{"regular":"http://fonts.gstatic.com/s/goblinone/v8/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf"},"Unlock":{"regular":"http://fonts.gstatic.com/s/unlock/v8/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf"},"IM Fell Double Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldoublepicasc/v8/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf"},"Supermercado One":{"regular":"http://fonts.gstatic.com/s/supermercadoone/v8/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf"},"Macondo":{"regular":"http://fonts.gstatic.com/s/macondo/v7/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf"},"Freehand":{"regular":"http://fonts.gstatic.com/s/freehand/v10/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf"},"Seymour One":{"regular":"http://fonts.gstatic.com/s/seymourone/v6/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf"},"Sunshiney":{"regular":"http://fonts.gstatic.com/s/sunshiney/v9/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf"},"Kirang Haerang":{"regular":"http://fonts.gstatic.com/s/kiranghaerang/v5/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf"},"Charmonman":{"700":"http://fonts.gstatic.com/s/charmonman/v2/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf","regular":"http://fonts.gstatic.com/s/charmonman/v2/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf"},"Combo":{"regular":"http://fonts.gstatic.com/s/combo/v7/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf"},"Trochut":{"700":"http://fonts.gstatic.com/s/trochut/v6/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf","regular":"http://fonts.gstatic.com/s/trochut/v6/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf","italic":"http://fonts.gstatic.com/s/trochut/v6/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf"},"Kenia":{"regular":"http://fonts.gstatic.com/s/kenia/v10/jizURE5PuHQH9qCONUGswfGM.ttf"},"Jomhuria":{"regular":"http://fonts.gstatic.com/s/jomhuria/v6/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf"},"Almendra SC":{"regular":"http://fonts.gstatic.com/s/almendrasc/v9/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf"},"Suwannaphum":{"regular":"http://fonts.gstatic.com/s/suwannaphum/v12/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf"},"GFS Neohellenic":{"700":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf","regular":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf","italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf","700italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf"},"Metal":{"regular":"http://fonts.gstatic.com/s/metal/v11/lW-wwjUJIXTo7i3nnoQAUdN2.ttf"},"Londrina Shadow":{"regular":"http://fonts.gstatic.com/s/londrinashadow/v8/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf"},"Romanesco":{"regular":"http://fonts.gstatic.com/s/romanesco/v7/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf"},"Bungee Outline":{"regular":"http://fonts.gstatic.com/s/bungeeoutline/v4/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf"},"Libre Barcode 128":{"regular":"http://fonts.gstatic.com/s/librebarcode128/v8/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf"},"Lakki Reddy":{"regular":"http://fonts.gstatic.com/s/lakkireddy/v5/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf"},"Vollkorn SC":{"600":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf","700":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf","900":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf","regular":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf"},"Almendra Display":{"regular":"http://fonts.gstatic.com/s/almendradisplay/v9/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf"},"Major Mono Display":{"regular":"http://fonts.gstatic.com/s/majormonodisplay/v2/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf"},"Nova Cut":{"regular":"http://fonts.gstatic.com/s/novacut/v10/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf"},"Jolly Lodger":{"regular":"http://fonts.gstatic.com/s/jollylodger/v6/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf"},"Libre Barcode 39 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39text/v8/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf"},"Fahkwang":{"200":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf","300":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf","500":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf","600":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf","700":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf","200italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf","300italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf","regular":"http://fonts.gstatic.com/s/fahkwang/v2/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf","italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf","500italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf","600italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf","700italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf"},"ZCOOL KuaiLe":{"regular":"http://fonts.gstatic.com/s/zcoolkuaile/v2/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf"},"Nova Oval":{"regular":"http://fonts.gstatic.com/s/novaoval/v10/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf"},"Bigelow Rules":{"regular":"http://fonts.gstatic.com/s/bigelowrules/v7/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf"},"Gorditas":{"700":"http://fonts.gstatic.com/s/gorditas/v6/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf","regular":"http://fonts.gstatic.com/s/gorditas/v6/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf"},"Butterfly Kids":{"regular":"http://fonts.gstatic.com/s/butterflykids/v7/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf"},"Risque":{"regular":"http://fonts.gstatic.com/s/risque/v6/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf"},"Thasadith":{"700":"http://fonts.gstatic.com/s/thasadith/v2/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf","regular":"http://fonts.gstatic.com/s/thasadith/v2/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf","italic":"http://fonts.gstatic.com/s/thasadith/v2/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf","700italic":"http://fonts.gstatic.com/s/thasadith/v2/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf"},"Passero One":{"regular":"http://fonts.gstatic.com/s/passeroone/v10/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf"},"Tenali Ramakrishna":{"regular":"http://fonts.gstatic.com/s/tenaliramakrishna/v4/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KA.ttf"},"Sedgwick Ave Display":{"regular":"http://fonts.gstatic.com/s/sedgwickavedisplay/v4/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf"},"Fascinate":{"regular":"http://fonts.gstatic.com/s/fascinate/v7/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf"},"Bungee Hairline":{"regular":"http://fonts.gstatic.com/s/bungeehairline/v4/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf"},"Miltonian":{"regular":"http://fonts.gstatic.com/s/miltonian/v12/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf"},"Kodchasan":{"200":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf","300":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf","500":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf","600":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf","700":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf","200italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf","300italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf","regular":"http://fonts.gstatic.com/s/kodchasan/v2/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf","italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf","500italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf","600italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf","700italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf"},"Sofadi One":{"regular":"http://fonts.gstatic.com/s/sofadione/v7/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf"},"Bonbon":{"regular":"http://fonts.gstatic.com/s/bonbon/v10/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf"},"Libre Barcode 39 Extended Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39extendedtext/v7/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf"},"Emblema One":{"regular":"http://fonts.gstatic.com/s/emblemaone/v7/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf"},"Geostar Fill":{"regular":"http://fonts.gstatic.com/s/geostarfill/v9/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf"},"Fruktur":{"regular":"http://fonts.gstatic.com/s/fruktur/v11/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf"},"Londrina Sketch":{"regular":"http://fonts.gstatic.com/s/londrinasketch/v7/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf"},"Macondo Swash Caps":{"regular":"http://fonts.gstatic.com/s/macondoswashcaps/v6/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf"},"Butcherman":{"regular":"http://fonts.gstatic.com/s/butcherman/v10/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf"},"Mr Bedfort":{"regular":"http://fonts.gstatic.com/s/mrbedfort/v7/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf"},"Preahvihear":{"regular":"http://fonts.gstatic.com/s/preahvihear/v10/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf"},"Chenla":{"regular":"http://fonts.gstatic.com/s/chenla/v11/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf"},"Stalinist One":{"regular":"http://fonts.gstatic.com/s/stalinistone/v20/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf"},"Aubrey":{"regular":"http://fonts.gstatic.com/s/aubrey/v11/q5uGsou7NPBw-p7vugNsCxVEgA.ttf"},"Sevillana":{"regular":"http://fonts.gstatic.com/s/sevillana/v7/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf"},"Erica One":{"regular":"http://fonts.gstatic.com/s/ericaone/v9/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf"},"Libre Barcode 39 Extended":{"regular":"http://fonts.gstatic.com/s/librebarcode39extended/v7/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf"},"Geostar":{"regular":"http://fonts.gstatic.com/s/geostar/v9/sykz-yx4n701VLOftSq9-trEvlQ.ttf"},"Gidugu":{"regular":"http://fonts.gstatic.com/s/gidugu/v5/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf"},"Fasthand":{"regular":"http://fonts.gstatic.com/s/fasthand/v9/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf"},"East Sea Dokdo":{"regular":"http://fonts.gstatic.com/s/eastseadokdo/v5/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf"},"Gamja Flower":{"regular":"http://fonts.gstatic.com/s/gamjaflower/v5/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf"},"Peddana":{"regular":"http://fonts.gstatic.com/s/peddana/v6/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf"},"Federant":{"regular":"http://fonts.gstatic.com/s/federant/v10/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf"},"Suravaram":{"regular":"http://fonts.gstatic.com/s/suravaram/v5/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf"},"Dhurjati":{"regular":"http://fonts.gstatic.com/s/dhurjati/v6/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf"},"ZCOOL XiaoWei":{"regular":"http://fonts.gstatic.com/s/zcoolxiaowei/v2/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf"},"Moulpali":{"regular":"http://fonts.gstatic.com/s/moulpali/v11/H4ckBXKMl9HagUWymyY6wr-wg763.ttf"},"Libre Barcode 39":{"regular":"http://fonts.gstatic.com/s/librebarcode39/v8/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf"},"Kumar One Outline":{"regular":"http://fonts.gstatic.com/s/kumaroneoutline/v4/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf"},"Stylish":{"regular":"http://fonts.gstatic.com/s/stylish/v5/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf"},"Hanalei":{"regular":"http://fonts.gstatic.com/s/hanalei/v8/E21n_dD8iufIjBRHXzgmVydREus.ttf"},"Hi Melody":{"regular":"http://fonts.gstatic.com/s/himelody/v5/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf"},"Libre Barcode 128 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode128text/v8/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf"},"Black And White Picture":{"regular":"http://fonts.gstatic.com/s/blackandwhitepicture/v5/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf"},"Cute Font":{"regular":"http://fonts.gstatic.com/s/cutefont/v5/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf"},"Notable":{"regular":"http://fonts.gstatic.com/s/notable/v3/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf"},"BioRhyme Expanded":{"200":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf","300":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf","700":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf","800":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf","regular":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf"},"Dokdo":{"regular":"http://fonts.gstatic.com/s/dokdo/v5/esDf315XNuCBLxLo4NaMlKcH.ttf"},"Srisakdi":{"700":"http://fonts.gstatic.com/s/srisakdi/v2/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/srisakdi/v2/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf"},"Warnes":{"regular":"http://fonts.gstatic.com/s/warnes/v8/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf"},"B612":{"700":"http://fonts.gstatic.com/s/b612/v2/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf","regular":"http://fonts.gstatic.com/s/b612/v2/3JnySDDxiSz32jm4GDigUXw.ttf","italic":"http://fonts.gstatic.com/s/b612/v2/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf","700italic":"http://fonts.gstatic.com/s/b612/v2/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf"},"Yeon Sung":{"regular":"http://fonts.gstatic.com/s/yeonsung/v5/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf"},"B612 Mono":{"700":"http://fonts.gstatic.com/s/b612mono/v2/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf","regular":"http://fonts.gstatic.com/s/b612mono/v2/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf","italic":"http://fonts.gstatic.com/s/b612mono/v2/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf","700italic":"http://fonts.gstatic.com/s/b612mono/v2/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf"}}
|
modules/webfonts/webfont-names.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Oswald","Source Sans Pro","Raleway","PT Sans","Merriweather","Slabo 27px","Roboto Slab","Noto Sans","Poppins","Ubuntu","Open Sans Condensed","Roboto Mono","Playfair Display","PT Serif","Lora","Muli","Mukta","PT Sans Narrow","Titillium Web","Arimo","Nunito","Fira Sans","Nanum Gothic","Noto Serif","Work Sans","Dosis","Rubik","Quicksand","Inconsolata","Noto Sans KR","Hind","Crimson Text","Oxygen","Lobster","Libre Baskerville","Bitter","Libre Franklin","Indie Flower","Josefin Sans","Anton","Cabin","Fjalla One","Exo 2","Nunito Sans","Arvo","Encode Sans Condensed","Noto Sans JP","Hind Siliguri","Varela Round","Karla","Pacifico","Abel","Shadows Into Light","Yanone Kaffeesatz","Righteous","Dancing Script","Merriweather Sans","Source Serif Pro","Kanit","Abril Fatface","Exo","Bree Serif","Acme","Comfortaa","Asap","Ubuntu Condensed","Cairo","Amatic SC","Catamaran","Signika","EB Garamond","Questrial","Teko","Heebo","Archivo Narrow","Permanent Marker","Play","Noto Sans TC","Source Code Pro","Crete Round","Maven Pro","Hind Madurai","Cuprum","Gloria Hallelujah","Francois One","Fira Sans Condensed","PT Sans Caption","Rokkitt","Assistant","Alegreya","Domine","Patua One","Courgette","Rajdhani","Prompt","Cinzel","Vollkorn","Satisfy","Istok Web","Ropa Sans","Alegreya Sans","Old Standard TT","Special Elite","ABeeZee","Cantarell","Concert One","Gochi Hand","Amiri","Cardo","Kaushan Script","Barlow","Orbitron","Caveat","Great Vibes","Viga","Quattrocento Sans","Cookie","Tinos","Noticia Text","News Cycle","Hammersmith One","Arapey","Signika Negative","Cormorant Garamond","Barlow Condensed","Merienda","Poiret One","Alfa Slab One","Lobster Two","Pathway Gothic One","Fredoka One","Monda","Nanum Myeongjo","Russo One","Hind Guntur","Kalam","Tangerine","Archivo Black","BenchNine","Tenor Sans","Passion One","Chivo","Volkhov","Ultra","Playfair Display SC","Pontano Sans","Marck Script","Cabin Condensed","Sigmar One","Fira Sans Extra Condensed","Philosopher","Sacramento","Handlee","M PLUS 1p","Overpass","Josefin Slab","Monoton","Boogaloo","Gudea","Luckiest Guy","Didact Gothic","Quattrocento","IBM Plex Sans","Yantramanav","Khand","Changa","Sorts Mill Goudy","Armata","Martel","Bangers","Tajawal","Sawarabi Mincho","Zilla Slab","Ruda","Hind Vadodara","Neucha","Lalezar","El Messiri","Patrick Hand","Unica One","Pragati Narrow","Vidaloka","Do Hyeon","Neuton","Prata","Economica","Taviraj","Press Start 2P","Yrsa","Sanchez","Carter One","Hanalei Fill","Audiowide","Adamina","Advent Pro","Barlow Semi Condensed","Shrikhand","Alice","Paytone One","Architects Daughter","Enriqueta","Frank Ruhl Libre","Bad Script","Yellowtail","PT Serif Caption","Montserrat Alternates","Amaranth","Gentium Basic","PT Mono","Gentium Book Basic","Khula","Antic Slab","Prosto One","Shadows Into Light Two","Arbutus Slab","Glegoo","Sarala","Jura","Grand Hotel","Julius Sans One","Kreon","Playball","Scada","Oleo Script","Rock Salt","Covered By Your Grace","Ubuntu Mono","Damion","Pridi","Actor","Fugaz One","Karma","Sintony","Average","Alegreya Sans SC","Electrolize","Homemade Apple","Saira Extra Condensed","Marmelad","Michroma","Lusitana","Baloo","Mitr","Jaldi","Bungee","Allura","Parisienne","Oranienbaum","Nothing You Could Do","Allerta Stencil","Varela","Anaheim","Unna","Chewy","Forum","Happy Monkey","Reenie Beanie","Molengo","Cormorant","Sawarabi Gothic","Cantata One","Hanuman","Black Ops One","Archivo","Bevan","Saira","Ovo","Alex Brush","Nanum Gothic Coding","Coustard","Rochester","VT323","Pangolin","Scheherazade","Niconne","Spinnaker","Nobile","Rambla","Allerta","Pinyon Script","Fredericka the Great","Leckerli One","Quantico","Saira Semi Condensed","Nanum Pen Script","Syncopate","Reem Kufi","Rancho","Space Mono","Lustria","Rasa","Italianno","Cabin Sketch","Marcellus","Arsenal","Aldrich","Noto Sans SC","Mr Dafoe","IBM Plex Serif","Lilita One","Magra","Kameron","Caveat Brush","Coda","Alef","Overlock","Fauna One","Gothic A1","Itim","Palanquin","Biryani","Basic","Antic","Days One","Carrois Gothic","Squada One","Coming Soon","Radley","Changa One","Share","Slabo 13px","Contrail One","Bowlby One SC","Carme","Berkshire Swash","Cousine","Sue Ellen Francisco","Just Another Hand","Titan One","Bungee Inline","Yeseva One","Mukta Vaani","Caudex","Candal","Aclonica","Lateef","Abhaya Libre","Buenard","Spectral","IM Fell Double Pica","Martel Sans","GFS Didot","Rufina","Six Caps","Lekton","Voltaire","Eczar","Anonymous Pro","Wendy One","Racing Sans One","Limelight","Mada","Petit Formal Script","Share Tech Mono","Yesteryear","Kurale","Noto Serif JP","Oxygen Mono","Secular One","M PLUS Rounded 1c","Marcellus SC","Nanum Brush Script","Cinzel Decorative","Marvel","Alegreya SC","Saira Condensed","Aladin","Rosario","Arima Madurai","Metrophobic","Norican","Annie Use Your Telescope","Nixie One","Jockey One","Ceviche One","Maitree","Londrina Solid","Pattaya","Copse","Baloo Bhaina","Freckle Face","Markazi Text","Gruppo","Telex","Skranji","Encode Sans","Shojumaru","Raleway Dots","Goudy Bookletter 1911","Andada","Belleza","Schoolbell","Average Sans","Doppio One","Corben","Tauri","Calligraffitti","Homenaje","Mountains of Christmas","Love Ya Like A Sister","Bubblegum Sans","Puritan","Kelly Slab","Judson","Cutive","Bentham","Sumana","Life Savers","Allan","Mukta Malar","Herr Von Muellerhoff","Carrois Gothic SC","Gilda Display","Averia Libre","Asap Condensed","Balthazar","Duru Sans","Emilys Candy","Graduate","Kristi","Trirong","Cutive Mono","Halant","Faster One","Fira Mono","Palanquin Dark","The Girl Next Door","Delius","Capriola","Arizonia","Inder","Averia Serif Libre","Amethysta","Aref Ruqaa","Chelsea Market","Baloo Bhaijaan","Vesper Libre","Cambo","Trocchi","Mr De Haviland","Lemonada","Padauk","Cormorant SC","Mouse Memoirs","Amiko","Merienda One","Andika","Mate","Federo","Poly","Rammetto One","Rozha One","Pompiere","Cambay","Cormorant Upright","Oregano","Knewave","Rouge Script","Gabriela","Kadwa","Proza Libre","Sedgwick Ave","Laila","Battambang","Artifika","Seaweed Script","Qwigley","Bai Jamjuree","Gravitas One","Montez","Rye","Metamorphous","Give You Glory","Alike","Athiti","Short Stack","Uncial Antiqua","Clicker Script","Bowlby One","Cormorant Infant","Holtwood One SC","Quando","Prociono","Expletus Sans","Chonburi","Strait","Convergence","Sniglet","K2D","Fanwood Text","Iceland","Fondamento","Vast Shadow","Sarpanch","Denk One","Suranna","Lily Script One","Ranga","Sunflower","IM Fell English","Podkova","Crafty Girls","Elsie","Cedarville Cursive","Baumans","Wire One","Mako","Sofia","NTR","Mirza","Spicy Rice","Brawler","Harmattan","Crushed","Sriracha","Faustina","Patrick Hand SC","Gurajada","UnifrakturMaguntia","Walter Turncoat","IM Fell DW Pica","Over the Rainbow","Fontdiner Swanky","Bilbo Swash Caps","Belgrano","Imprima","Della Respira","Euphoria Script","Loved by the King","Tulpen One","Oleo Script Swash Caps","Frijole","Zeyada","Waiting for the Sunrise","Pavanam","Meddon","Megrim","Port Lligat Slab","Aguafina Script","Salsa","Ledger","La Belle Aurore","Just Me Again Down Here","Medula One","Niramit","Rubik Mono One","Ramabhadra","Cherry Swash","McLaren","Amita","Tienne","Baloo Paaji","Shanti","Delius Swash Caps","Dekko","Lemon","Suez One","Ruslan Display","Sansita","Gafata","Nosifer","Spirax","Montserrat Subrayada","Katibeh","Averia Sans Libre","Wallpoet","Dawning of a New Day","Mallanna","Share Tech","Nova Round","Stardos Stencil","Vampiro One","Orienta","Nova Square","Codystar","Finger Paint","Bellefair","Alike Angular","Coda Caption","IBM Plex Mono","Galada","Quintessential","Miriam Libre","Noto Serif KR","Unkempt","Atma","Fjord One","Milonga","Spectral SC","Voces","Nova Mono","Germania One","Habibi","IM Fell English SC","Bungee Shade","Headland One","Sail","Arya","Scope One","Black Han Sans","Encode Sans Semi Condensed","Yatra One","Londrina Outline","BioRhyme","Rakkas","Cantora One","Iceberg","Kosugi Maru","Kranky","Chicle","Mandali","Overpass Mono","Krona One","David Libre","Geo","Vibur","Engagement","Baloo Tamma","Slackey","Pirata One","Cherry Cream Soda","Baloo Chettan","Encode Sans Semi Expanded","Dynalight","Mate SC","Peralta","Nova Slim","Fenix","Sura","Amarante","Creepster","Khmer","Koulen","Cagliostro","Kite One","Numans","Rationale","Mrs Saint Delafield","Kotta One","League Script","Timmana","Condiment","Chela One","Antic Didone","Mukta Mahee","Dorsa","Poller One","Mystery Quest","Risque","Paprika","Farsan","Nova Flat","Chau Philomene One","Stoke","Baloo Bhai","Charm","IM Fell French Canon","Rosarivo","Simonetta","Sarina","Baloo Thambi","Asul","Odor Mean Chey","Englebert","Mogra","IBM Plex Sans Condensed","Angkor","Delius Unicase","Buda","Stint Ultra Expanded","Stalemate","Ribeye","Bubbler One","Text Me One","Maiden Orange","Petrona","Flamenco","Underdog","Coiny","Joti One","Kosugi","Stint Ultra Condensed","Encode Sans Expanded","Junge","Ruluko","Mali","Esteban","Content","Sirin Stencil","UnifrakturCook","Port Lligat Sans","Siemreap","Princess Sofia","Autour One","Trade Winds","Wellfleet","IM Fell French Canon SC","Inknut Antiqua","Sancreek","Trykker","Ranchers","Plaster","Lovers Quarrel","Swanky and Moo Moo","Eater","Sonsie One","Meera Inimai","Almendra","Bokor","Henny Penny","Eagle Lake","New Rocker","Overlock SC","Fresca","Averia Gruesa Libre","Diplomata SC","Linden Hill","Donegal One","Purple Purse","Italiana","Croissant One","Inika","Nokora","Manuale","Glass Antiqua","Elsie Swash Caps","Revalia","Galindo","Ramaraja","Julee","Molle","Ruge Boogie","Chango","Marko One","Rhodium Libre","Redressed","Gugi","Oldenburg","Fascinate Inline","Flavors","Mina","IM Fell Great Primer","Ravi Prakash","Offside","Akronim","Jua","Bilbo","Cormorant Unicase","Poor Story","Barrio","Chakra Petch","Sree Krushnadevaraya","Combo","Monofett","Snippet","Kavoon","MedievalSharp","Miltonian Tattoo","Ruthie","Jim Nightshade","Diplomata","Griffy","Asset","IM Fell DW Pica SC","Keania One","Kumar One","Monsieur La Doulaise","Smythe","Dr Sugiyama","Baloo Tammudu","Tillana","Rum Raisin","Lancelot","Irish Grover","Krub","Modak","Sahitya","Montaga","Mrs Sheppards","Bigshot One","Dangrek","Margarine","Kantumruy","Modern Antiqua","Caesar Dressing","Devonshire","Metal Mania","Gaegu","Jacques Francois Shadow","Galdeano","Noto Serif TC","Suwannaphum","Jomhuria","Bayon","Chathura","Gamja Flower","Meie Script","IM Fell Great Primer SC","Baloo Da","Atomic Age","Kavivanar","Sunshiney","Bahiana","Seymour One","Kirang Haerang","Asar","Ribeye Marrow","Miniver","Noto Serif SC","Moul","Felipa","Macondo","Vollkorn SC","Snowburst One","Ewert","Original Surfer","Zilla Slab Highlight","Song Myung","IM Fell Double Pica SC","Charmonman","Trochut","Kdam Thmor","Astloch","KoHo","Goblin One","Moulpali","Kenia","Nova Script","Staatliches","Arbutus","Piedra","Warnes","Libre Barcode 128","Romanesco","Almendra Display","Unlock","Nova Cut","Miss Fajardose","Bigelow Rules","Almendra SC","Suravaram","Miltonian","Jolly Lodger","Nova Oval","Bonbon","Smokum","Taprom","Freehand","Londrina Shadow","Tenali Ramakrishna","Bungee Outline","Passero One","Sedgwick Ave Display","Metal","Jacques Francois","Butterfly Kids","Lakki Reddy","GFS Neohellenic","Geostar Fill","Gorditas","Fascinate","Bungee Hairline","Sofadi One","Chenla","Aleo","East Sea Dokdo","Gidugu","Supermercado One","Sevillana","Kodchasan","Preahvihear","Stalinist One","Aubrey","Libre Barcode 39 Text","ZCOOL XiaoWei","Macondo Swash Caps","Geostar","Major Mono Display","Erica One","Federant","Peddana","Fruktur","Libre Barcode 39 Extended Text","Londrina Sketch","Butcherman","Mr Bedfort","Emblema One","Thasadith","Fasthand","Dokdo","Fahkwang","Stylish","Hanalei","Dhurjati","Sarabun","Libre Barcode 39 Extended","Cute Font","Kumar One Outline","Black And White Picture","Libre Barcode 39","Hi Melody","BioRhyme Expanded","Yeon Sung","Notable","Srisakdi","Libre Barcode 128 Text","ZCOOL QingKe HuangYou","ZCOOL KuaiLe","B612 Mono","B612"]
|
1 |
+
["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Source Sans Pro","Oswald","Raleway","Merriweather","PT Sans","Roboto Slab","Slabo 27px","Poppins","Noto Sans","Ubuntu","Open Sans Condensed","Playfair Display","Roboto Mono","Lora","PT Serif","Muli","Titillium Web","Mukta","PT Sans Narrow","Nunito","Arimo","Fira Sans","Noto Serif","Work Sans","Rubik","Nanum Gothic","Quicksand","Hind","Dosis","Inconsolata","Crimson Text","Oxygen","Anton","Libre Baskerville","Bitter","Noto Sans KR","Indie Flower","Cabin","Fjalla One","Josefin Sans","Nunito Sans","Libre Franklin","Arvo","Karla","Lobster","Pacifico","Exo 2","Abel","Varela Round","Encode Sans Condensed","Noto Sans JP","Dancing Script","Abril Fatface","Merriweather Sans","Shadows Into Light","Kanit","Yanone Kaffeesatz","Acme","Bree Serif","Righteous","Source Serif Pro","Hind Madurai","Exo","EB Garamond","Heebo","Asap","Archivo Narrow","Questrial","Source Code Pro","Ubuntu Condensed","Play","Teko","Comfortaa","Amatic SC","Signika","Hind Siliguri","Cairo","Maven Pro","Catamaran","Gloria Hallelujah","Crete Round","Francois One","Barlow","Cinzel","Vollkorn","Permanent Marker","Domine","Rokkitt","Assistant","Fira Sans Condensed","Noto Sans TC","Rajdhani","Satisfy","PT Sans Caption","Alegreya","Cuprum","Orbitron","Alegreya Sans","Patua One","Prompt","Cantarell","ABeeZee","Old Standard TT","Ropa Sans","Courgette","Cardo","Amiri","Istok Web","Noticia Text","Arapey","News Cycle","Concert One","Luckiest Guy","Cookie","Kaushan Script","Caveat","Kalam","Pathway Gothic One","Lalezar","Quattrocento Sans","Cormorant Garamond","Alfa Slab One","Great Vibes","Tinos","Hind Guntur","Fira Sans Extra Condensed","Fredoka One","Lobster Two","Russo One","Martel","Archivo Black","Passion One","Gothic A1","BenchNine","Hind Vadodara","Tangerine","Barlow Condensed","Poiret One","Sacramento","Quattrocento","Merienda","Volkhov","Monda","Barlow Semi Condensed","Josefin Slab","Handlee","IBM Plex Sans","Didact Gothic","Pontano Sans","Special Elite","Khand","Frank Ruhl Libre","Bangers","Chivo","Nanum Myeongjo","Playfair Display SC","Pragati Narrow","Cabin Condensed","Zilla Slab","Gudea","Signika Negative","Viga","Marck Script","Neucha","Overpass","Sawarabi Mincho","Boogaloo","Yantramanav","Philosopher","Playball","Gochi Hand","M PLUS 1p","Aldrich","Patrick Hand","Sigmar One","Neuton","Ultra","Yrsa","Economica","Sanchez","Ruda","Hammersmith One","Advent Pro","Saira Extra Condensed","Gentium Basic","Armata","Unica One","Changa","Monoton","Vidaloka","Tajawal","Audiowide","Prata","Bad Script","Sorts Mill Goudy","Adamina","Amaranth","Varela","Alice","Jura","Shadows Into Light Two","Yellowtail","Press Start 2P","Noto Sans SC","Paytone One","Architects Daughter","Carter One","Glegoo","Bevan","Enriqueta","Montserrat Alternates","Taviraj","Molengo","PT Mono","Arbutus Slab","Kreon","Antic Slab","Actor","Gentium Book Basic","Ubuntu Mono","Coda","Covered By Your Grace","Allerta Stencil","Cormorant","Julius Sans One","Rock Salt","Sintony","Cousine","Sarala","Lusitana","Fugaz One","Damion","Caveat Brush","Alegreya Sans SC","Homemade Apple","Karma","Pridi","El Messiri","Parisienne","Allura","Khula","PT Serif Caption","Oleo Script","Nothing You Could Do","Chewy","Prosto One","Lilita One","Cantata One","Archivo","Rambla","Lustria","Allerta","IBM Plex Serif","Baloo","Rochester","Bowlby One SC","Black Ops One","Unna","Quantico","Saira","Michroma","Alex Brush","Fredericka the Great","Niconne","Sawarabi Gothic","Rasa","Nobile","Mr Dafoe","Kameron","Syncopate","Reenie Beanie","Scada","Mitr","Spinnaker","Rancho","M PLUS Rounded 1c","Itim","Italianno","Average","Forum","Shrikhand","Leckerli One","Electrolize","Just Another Hand","Palanquin","Pangolin","Marmelad","Slabo 13px","Biryani","Pinyon Script","Basic","Overlock","Hanuman","Nanum Gothic Coding","Scheherazade","Bungee Inline","Staatliches","Grand Hotel","Marcellus","Tenor Sans","Noto Serif JP","Oranienbaum","Magra","Share","Fauna One","Radley","Days One","Jaldi","Squada One","Aclonica","VT323","Saira Semi Condensed","Alef","Cabin Sketch","Contrail One","Ovo","Spectral","Marcellus SC","Space Mono","Titan One","Coming Soon","Yesteryear","Voltaire","Amethysta","Abhaya Libre","Nanum Pen Script","Marvel","Carme","Buenard","Lateef","Berkshire Swash","Cinzel Decorative","Laila","Reem Kufi","Antic","Candal","Petit Formal Script","Changa One","Annie Use Your Telescope","Coustard","Carrois Gothic","Racing Sans One","Shojumaru","Gruppo","Belleza","Rufina","Anonymous Pro","Jockey One","Puritan","Arsenal","Raleway Dots","Love Ya Like A Sister","Limelight","Martel Sans","Cambo","Copse","Telex","Anaheim","Encode Sans","Nixie One","GFS Didot","Asap Condensed","Alegreya SC","Share Tech Mono","Metrophobic","Arima Madurai","Lekton","Yeseva One","Wendy One","Saira Condensed","Caudex","Padauk","Cutive Mono","Coiny","Freckle Face","Ceviche One","Tauri","Norican","Baloo Bhaijaan","Herr Von Muellerhoff","Duru Sans","Fira Mono","Oxygen Mono","Londrina Solid","Delius","IBM Plex Mono","Aladin","Baloo Bhaina","Pattaya","Calligraffitti","Palanquin Dark","Bungee","Kelly Slab","Bubblegum Sans","Nanum Brush Script","Goudy Bookletter 1911","Hanalei Fill","Judson","Eczar","Rosario","Do Hyeon","Kristi","Capriola","Corben","Homenaje","Mr De Haviland","David Libre","Doppio One","Knewave","Allan","Cutive","Mukta Malar","IM Fell Double Pica","Niramit","Gilda Display","Maitree","Gabriela","Skranji","Mukta Vaani","Poller One","Balthazar","K2D","Merienda One","Faster One","Arizonia","Halant","Averia Serif Libre","Average Sans","Bentham","Convergence","Graduate","Andada","Six Caps","Trocchi","Schoolbell","Mada","Coda Caption","Inder","Markazi Text","Pompiere","Trirong","Emilys Candy","Clicker Script","Happy Monkey","Sue Ellen Francisco","Lemonada","Proza Libre","Mate","Poly","Give You Glory","Miriam Libre","Aref Ruqaa","Carrois Gothic SC","Federo","Chelsea Market","Gravitas One","Cambay","Rammetto One","Vesper Libre","Sedgwick Ave","Podkova","Medula One","Montez","Andika","IM Fell English","Athiti","Rozha One","Alike","Short Stack","Gafata","Averia Libre","Kosugi Maru","Seaweed Script","Qwigley","The Girl Next Door","Cormorant Upright","Sriracha","Oregano","Cedarville Cursive","Sarabun","Crafty Girls","Belgrano","Baumans","Faustina","Fondamento","Rye","Noto Serif SC","Strait","Euphoria Script","Fanwood Text","Chonburi","Secular One","Mouse Memoirs","NTR","Patrick Hand SC","Bilbo Swash Caps","Gurajada","Cormorant Infant","Expletus Sans","Mogra","Mako","Mirza","IM Fell English SC","Prociono","Quando","Meddon","Ruslan Display","Suranna","Vast Shadow","UnifrakturMaguntia","Artifika","Bowlby One","Rouge Script","IM Fell DW Pica","Walter Turncoat","Aguafina Script","La Belle Aurore","Spicy Rice","Lemon","Denk One","Delius Swash Caps","Kadwa","Sunflower","Harmattan","Zeyada","Suez One","Bai Jamjuree","Ranga","Oleo Script Swash Caps","Megrim","Waiting for the Sunrise","Stardos Stencil","Lily Script One","Amiko","Brawler","Baloo Paaji","Cherry Swash","Cantora One","Wire One","Tienne","Cormorant SC","Noto Serif KR","Sofia","Salsa","Sarpanch","Just Me Again Down Here","Iceland","Kurale","Sumana","Encode Sans Semi Condensed","Loved by the King","Unkempt","Sansita","Battambang","Fjord One","Holtwood One SC","Codystar","Fontdiner Swanky","Vibur","Chicle","Amita","Sniglet","Imprima","Dawning of a New Day","Krona One","Bellefair","Orienta","Ramabhadra","Frijole","Rubik Mono One","Vampiro One","Mallanna","Wallpoet","Overpass Mono","Spirax","Atma","Scope One","Elsie","McLaren","Nova Square","Ledger","Share Tech","Timmana","Quintessential","Katibeh","Tulpen One","Nova Flat","Port Lligat Slab","Finger Paint","Nova Mono","Black Han Sans","Khmer","Life Savers","Engagement","Galada","Metamorphous","Nova Round","Eater","Voces","Bungee Shade","Milonga","Shanti","Averia Sans Libre","Kranky","Germania One","Over the Rainbow","Baloo Tamma","Rationale","Chau Philomene One","Kotta One","Crushed","IBM Plex Sans Condensed","Alike Angular","Rakkas","Habibi","Uncial Antiqua","Mrs Saint Delafield","Headland One","Fenix","Mountains of Christmas","Spectral SC","Delius Unicase","Cherry Cream Soda","Arya","Slackey","Londrina Outline","Baloo Bhai","Baloo Thambi","Amarante","Creepster","Montserrat Subrayada","Peralta","Charm","Lovers Quarrel","Stalemate","Mystery Quest","Sail","Dekko","Paprika","Condiment","Dynalight","Antic Didone","Pirata One","Rosarivo","Stint Ultra Expanded","BioRhyme","Geo","Mate SC","Taprom","Sarina","Encode Sans Semi Expanded","Cagliostro","Koulen","Farsan","Nova Slim","Stint Ultra Condensed","Kite One","League Script","Mandali","Esteban","Yatra One","Princess Sofia","Ribeye","Simonetta","Encode Sans Expanded","Englebert","Mukta Mahee","Stoke","Numans","Almendra","Kosugi","Nosifer","Asul","Plaster","Sancreek","Bubbler One","Flamenco","Junge","Ranchers","Ramaraja","Joti One","Glass Antiqua","Italiana","Trade Winds","Inknut Antiqua","Dorsa","Port Lligat Sans","IM Fell French Canon","Baloo Chettan","Chela One","Meera Inimai","Ruluko","Donegal One","Pavanam","Maiden Orange","Galindo","Revalia","Sura","Croissant One","Linden Hill","Mali","Buda","Baloo Tammudu","Aleo","Siemreap","Ruge Boogie","New Rocker","Fresca","Miss Fajardose","Text Me One","Angkor","Bilbo","Overlock SC","Julee","Petrona","Sree Krushnadevaraya","Averia Gruesa Libre","Redressed","Autour One","Wellfleet","Swanky and Moo Moo","Gugi","Krub","Sonsie One","Griffy","Kavoon","Manuale","Marko One","Bokor","Fascinate Inline","Miniver","Eagle Lake","Jim Nightshade","IM Fell Great Primer","Rhodium Libre","Akronim","Ravi Prakash","Della Respira","Jacques Francois","Offside","Henny Penny","Trykker","Chakra Petch","Noto Serif TC","Chango","Purple Purse","Felipa","Ruthie","Cormorant Unicase","Song Myung","Molle","Inika","Bahiana","Barrio","IM Fell DW Pica SC","MedievalSharp","Monsieur La Doulaise","Underdog","UnifrakturCook","Mina","Kdam Thmor","Jua","Elsie Swash Caps","Tillana","Diplomata SC","Rum Raisin","Gaegu","Monofett","Oldenburg","Dangrek","Kumar One","Chathura","Miltonian Tattoo","Content","Irish Grover","Nokora","Montaga","Smythe","Asset","Galdeano","Margarine","Ewert","Modak","Iceberg","Sahitya","Modern Antiqua","Nova Script","Diplomata","Bigshot One","Lancelot","Astloch","Snippet","Bayon","Moul","IM Fell Great Primer SC","Odor Mean Chey","Smokum","Metal Mania","Devonshire","Jacques Francois Shadow","Kavivanar","Arbutus","KoHo","Sirin Stencil","Poor Story","Original Surfer","Caesar Dressing","IM Fell French Canon SC","Asar","Dr Sugiyama","Zilla Slab Highlight","Piedra","Keania One","Snowburst One","Kantumruy","ZCOOL QingKe HuangYou","Meie Script","Flavors","Mrs Sheppards","Ribeye Marrow","Baloo Da","Atomic Age","Goblin One","Unlock","IM Fell Double Pica SC","Supermercado One","Macondo","Freehand","Seymour One","Sunshiney","Kirang Haerang","Charmonman","Combo","Trochut","Kenia","Jomhuria","Almendra SC","Suwannaphum","GFS Neohellenic","Metal","Londrina Shadow","Romanesco","Bungee Outline","Libre Barcode 128","Lakki Reddy","Vollkorn SC","Almendra Display","Major Mono Display","Nova Cut","Jolly Lodger","Libre Barcode 39 Text","Fahkwang","ZCOOL KuaiLe","Nova Oval","Bigelow Rules","Gorditas","Butterfly Kids","Risque","Thasadith","Passero One","Tenali Ramakrishna","Sedgwick Ave Display","Fascinate","Bungee Hairline","Miltonian","Kodchasan","Sofadi One","Bonbon","Libre Barcode 39 Extended Text","Emblema One","Geostar Fill","Fruktur","Londrina Sketch","Macondo Swash Caps","Butcherman","Mr Bedfort","Preahvihear","Chenla","Stalinist One","Aubrey","Sevillana","Erica One","Libre Barcode 39 Extended","Geostar","Gidugu","Fasthand","East Sea Dokdo","Gamja Flower","Peddana","Federant","Suravaram","Dhurjati","ZCOOL XiaoWei","Moulpali","Libre Barcode 39","Kumar One Outline","Stylish","Hanalei","Hi Melody","Libre Barcode 128 Text","Black And White Picture","Cute Font","Notable","BioRhyme Expanded","Dokdo","Srisakdi","Warnes","B612","Yeon Sung","B612 Mono"]
|
modules/webfonts/webfonts.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"items":{"ABeeZee":{"family":"ABeeZee","category":"sans-serif","variants":["italic","regular"]},"Abel":{"family":"Abel","category":"sans-serif","variants":["regular"]},"Abhaya Libre":{"family":"Abhaya Libre","category":"serif","variants":["500","600","700","800","regular"]},"Abril Fatface":{"family":"Abril Fatface","category":"display","variants":["regular"]},"Aclonica":{"family":"Aclonica","category":"sans-serif","variants":["regular"]},"Acme":{"family":"Acme","category":"sans-serif","variants":["regular"]},"Actor":{"family":"Actor","category":"sans-serif","variants":["regular"]},"Adamina":{"family":"Adamina","category":"serif","variants":["regular"]},"Advent Pro":{"family":"Advent Pro","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Aguafina Script":{"family":"Aguafina Script","category":"handwriting","variants":["regular"]},"Akronim":{"family":"Akronim","category":"display","variants":["regular"]},"Aladin":{"family":"Aladin","category":"handwriting","variants":["regular"]},"Aldrich":{"family":"Aldrich","category":"sans-serif","variants":["regular"]},"Alef":{"family":"Alef","category":"sans-serif","variants":["700","regular"]},"Alegreya":{"family":"Alegreya","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya SC":{"family":"Alegreya SC","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans":{"family":"Alegreya Sans","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans SC":{"family":"Alegreya Sans SC","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Aleo":{"family":"Aleo","category":"serif","variants":["300","300italic","700","700italic","italic","regular"]},"Alex Brush":{"family":"Alex Brush","category":"handwriting","variants":["regular"]},"Alfa Slab One":{"family":"Alfa Slab One","category":"display","variants":["regular"]},"Alice":{"family":"Alice","category":"serif","variants":["regular"]},"Alike":{"family":"Alike","category":"serif","variants":["regular"]},"Alike Angular":{"family":"Alike Angular","category":"serif","variants":["regular"]},"Allan":{"family":"Allan","category":"display","variants":["700","regular"]},"Allerta":{"family":"Allerta","category":"sans-serif","variants":["regular"]},"Allerta Stencil":{"family":"Allerta Stencil","category":"sans-serif","variants":["regular"]},"Allura":{"family":"Allura","category":"handwriting","variants":["regular"]},"Almendra":{"family":"Almendra","category":"serif","variants":["700","700italic","italic","regular"]},"Almendra Display":{"family":"Almendra Display","category":"display","variants":["regular"]},"Almendra SC":{"family":"Almendra SC","category":"serif","variants":["regular"]},"Amarante":{"family":"Amarante","category":"display","variants":["regular"]},"Amaranth":{"family":"Amaranth","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Amatic SC":{"family":"Amatic SC","category":"handwriting","variants":["700","regular"]},"Amethysta":{"family":"Amethysta","category":"serif","variants":["regular"]},"Amiko":{"family":"Amiko","category":"sans-serif","variants":["600","700","regular"]},"Amiri":{"family":"Amiri","category":"serif","variants":["700","700italic","italic","regular"]},"Amita":{"family":"Amita","category":"handwriting","variants":["700","regular"]},"Anaheim":{"family":"Anaheim","category":"sans-serif","variants":["regular"]},"Andada":{"family":"Andada","category":"serif","variants":["regular"]},"Andika":{"family":"Andika","category":"sans-serif","variants":["regular"]},"Angkor":{"family":"Angkor","category":"display","variants":["regular"]},"Annie Use Your Telescope":{"family":"Annie Use Your Telescope","category":"handwriting","variants":["regular"]},"Anonymous Pro":{"family":"Anonymous Pro","category":"monospace","variants":["700","700italic","italic","regular"]},"Antic":{"family":"Antic","category":"sans-serif","variants":["regular"]},"Antic Didone":{"family":"Antic Didone","category":"serif","variants":["regular"]},"Antic Slab":{"family":"Antic Slab","category":"serif","variants":["regular"]},"Anton":{"family":"Anton","category":"sans-serif","variants":["regular"]},"Arapey":{"family":"Arapey","category":"serif","variants":["italic","regular"]},"Arbutus":{"family":"Arbutus","category":"display","variants":["regular"]},"Arbutus Slab":{"family":"Arbutus Slab","category":"serif","variants":["regular"]},"Architects Daughter":{"family":"Architects Daughter","category":"handwriting","variants":["regular"]},"Archivo":{"family":"Archivo","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Archivo Black":{"family":"Archivo Black","category":"sans-serif","variants":["regular"]},"Archivo Narrow":{"family":"Archivo Narrow","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Aref Ruqaa":{"family":"Aref Ruqaa","category":"serif","variants":["700","regular"]},"Arima Madurai":{"family":"Arima Madurai","category":"display","variants":["100","200","300","500","700","800","900","regular"]},"Arimo":{"family":"Arimo","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Arizonia":{"family":"Arizonia","category":"handwriting","variants":["regular"]},"Armata":{"family":"Armata","category":"sans-serif","variants":["regular"]},"Arsenal":{"family":"Arsenal","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Artifika":{"family":"Artifika","category":"serif","variants":["regular"]},"Arvo":{"family":"Arvo","category":"serif","variants":["700","700italic","italic","regular"]},"Arya":{"family":"Arya","category":"sans-serif","variants":["700","regular"]},"Asap":{"family":"Asap","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asap Condensed":{"family":"Asap Condensed","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asar":{"family":"Asar","category":"serif","variants":["regular"]},"Asset":{"family":"Asset","category":"display","variants":["regular"]},"Assistant":{"family":"Assistant","category":"sans-serif","variants":["200","300","600","700","800","regular"]},"Astloch":{"family":"Astloch","category":"display","variants":["700","regular"]},"Asul":{"family":"Asul","category":"sans-serif","variants":["700","regular"]},"Athiti":{"family":"Athiti","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Atma":{"family":"Atma","category":"display","variants":["300","500","600","700","regular"]},"Atomic Age":{"family":"Atomic Age","category":"display","variants":["regular"]},"Aubrey":{"family":"Aubrey","category":"display","variants":["regular"]},"Audiowide":{"family":"Audiowide","category":"display","variants":["regular"]},"Autour One":{"family":"Autour One","category":"display","variants":["regular"]},"Average":{"family":"Average","category":"serif","variants":["regular"]},"Average Sans":{"family":"Average Sans","category":"sans-serif","variants":["regular"]},"Averia Gruesa Libre":{"family":"Averia Gruesa Libre","category":"display","variants":["regular"]},"Averia Libre":{"family":"Averia Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Sans Libre":{"family":"Averia Sans Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Serif Libre":{"family":"Averia Serif Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"B612":{"family":"B612","category":"sans-serif","variants":["700","700italic","italic","regular"]},"B612 Mono":{"family":"B612 Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Bad Script":{"family":"Bad Script","category":"handwriting","variants":["regular"]},"Bahiana":{"family":"Bahiana","category":"display","variants":["regular"]},"Bai Jamjuree":{"family":"Bai Jamjuree","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Baloo":{"family":"Baloo","category":"display","variants":["regular"]},"Baloo Bhai":{"family":"Baloo Bhai","category":"display","variants":["regular"]},"Baloo Bhaijaan":{"family":"Baloo Bhaijaan","category":"display","variants":["regular"]},"Baloo Bhaina":{"family":"Baloo Bhaina","category":"display","variants":["regular"]},"Baloo Chettan":{"family":"Baloo Chettan","category":"display","variants":["regular"]},"Baloo Da":{"family":"Baloo Da","category":"display","variants":["regular"]},"Baloo Paaji":{"family":"Baloo Paaji","category":"display","variants":["regular"]},"Baloo Tamma":{"family":"Baloo Tamma","category":"display","variants":["regular"]},"Baloo Tammudu":{"family":"Baloo Tammudu","category":"display","variants":["regular"]},"Baloo Thambi":{"family":"Baloo Thambi","category":"display","variants":["regular"]},"Balthazar":{"family":"Balthazar","category":"serif","variants":["regular"]},"Bangers":{"family":"Bangers","category":"display","variants":["regular"]},"Barlow":{"family":"Barlow","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Condensed":{"family":"Barlow Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Semi Condensed":{"family":"Barlow Semi Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barrio":{"family":"Barrio","category":"display","variants":["regular"]},"Basic":{"family":"Basic","category":"sans-serif","variants":["regular"]},"Battambang":{"family":"Battambang","category":"display","variants":["700","regular"]},"Baumans":{"family":"Baumans","category":"display","variants":["regular"]},"Bayon":{"family":"Bayon","category":"display","variants":["regular"]},"Belgrano":{"family":"Belgrano","category":"serif","variants":["regular"]},"Bellefair":{"family":"Bellefair","category":"serif","variants":["regular"]},"Belleza":{"family":"Belleza","category":"sans-serif","variants":["regular"]},"BenchNine":{"family":"BenchNine","category":"sans-serif","variants":["300","700","regular"]},"Bentham":{"family":"Bentham","category":"serif","variants":["regular"]},"Berkshire Swash":{"family":"Berkshire Swash","category":"handwriting","variants":["regular"]},"Bevan":{"family":"Bevan","category":"display","variants":["regular"]},"Bigelow Rules":{"family":"Bigelow Rules","category":"display","variants":["regular"]},"Bigshot One":{"family":"Bigshot One","category":"display","variants":["regular"]},"Bilbo":{"family":"Bilbo","category":"handwriting","variants":["regular"]},"Bilbo Swash Caps":{"family":"Bilbo Swash Caps","category":"handwriting","variants":["regular"]},"BioRhyme":{"family":"BioRhyme","category":"serif","variants":["200","300","700","800","regular"]},"BioRhyme Expanded":{"family":"BioRhyme Expanded","category":"serif","variants":["200","300","700","800","regular"]},"Biryani":{"family":"Biryani","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Bitter":{"family":"Bitter","category":"serif","variants":["700","italic","regular"]},"Black And White Picture":{"family":"Black And White Picture","category":"sans-serif","variants":["regular"]},"Black Han Sans":{"family":"Black Han Sans","category":"sans-serif","variants":["regular"]},"Black Ops One":{"family":"Black Ops One","category":"display","variants":["regular"]},"Bokor":{"family":"Bokor","category":"display","variants":["regular"]},"Bonbon":{"family":"Bonbon","category":"handwriting","variants":["regular"]},"Boogaloo":{"family":"Boogaloo","category":"display","variants":["regular"]},"Bowlby One":{"family":"Bowlby One","category":"display","variants":["regular"]},"Bowlby One SC":{"family":"Bowlby One SC","category":"display","variants":["regular"]},"Brawler":{"family":"Brawler","category":"serif","variants":["regular"]},"Bree Serif":{"family":"Bree Serif","category":"serif","variants":["regular"]},"Bubblegum Sans":{"family":"Bubblegum Sans","category":"display","variants":["regular"]},"Bubbler One":{"family":"Bubbler One","category":"sans-serif","variants":["regular"]},"Buda":{"family":"Buda","category":"display","variants":["300"]},"Buenard":{"family":"Buenard","category":"serif","variants":["700","regular"]},"Bungee":{"family":"Bungee","category":"display","variants":["regular"]},"Bungee Hairline":{"family":"Bungee Hairline","category":"display","variants":["regular"]},"Bungee Inline":{"family":"Bungee Inline","category":"display","variants":["regular"]},"Bungee Outline":{"family":"Bungee Outline","category":"display","variants":["regular"]},"Bungee Shade":{"family":"Bungee Shade","category":"display","variants":["regular"]},"Butcherman":{"family":"Butcherman","category":"display","variants":["regular"]},"Butterfly Kids":{"family":"Butterfly Kids","category":"handwriting","variants":["regular"]},"Cabin":{"family":"Cabin","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Cabin Condensed":{"family":"Cabin Condensed","category":"sans-serif","variants":["500","600","700","regular"]},"Cabin Sketch":{"family":"Cabin Sketch","category":"display","variants":["700","regular"]},"Caesar Dressing":{"family":"Caesar Dressing","category":"display","variants":["regular"]},"Cagliostro":{"family":"Cagliostro","category":"sans-serif","variants":["regular"]},"Cairo":{"family":"Cairo","category":"sans-serif","variants":["200","300","600","700","900","regular"]},"Calligraffitti":{"family":"Calligraffitti","category":"handwriting","variants":["regular"]},"Cambay":{"family":"Cambay","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cambo":{"family":"Cambo","category":"serif","variants":["regular"]},"Candal":{"family":"Candal","category":"sans-serif","variants":["regular"]},"Cantarell":{"family":"Cantarell","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cantata One":{"family":"Cantata One","category":"serif","variants":["regular"]},"Cantora One":{"family":"Cantora One","category":"sans-serif","variants":["regular"]},"Capriola":{"family":"Capriola","category":"sans-serif","variants":["regular"]},"Cardo":{"family":"Cardo","category":"serif","variants":["700","italic","regular"]},"Carme":{"family":"Carme","category":"sans-serif","variants":["regular"]},"Carrois Gothic":{"family":"Carrois Gothic","category":"sans-serif","variants":["regular"]},"Carrois Gothic SC":{"family":"Carrois Gothic SC","category":"sans-serif","variants":["regular"]},"Carter One":{"family":"Carter One","category":"display","variants":["regular"]},"Catamaran":{"family":"Catamaran","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Caudex":{"family":"Caudex","category":"serif","variants":["700","700italic","italic","regular"]},"Caveat":{"family":"Caveat","category":"handwriting","variants":["700","regular"]},"Caveat Brush":{"family":"Caveat Brush","category":"handwriting","variants":["regular"]},"Cedarville Cursive":{"family":"Cedarville Cursive","category":"handwriting","variants":["regular"]},"Ceviche One":{"family":"Ceviche One","category":"display","variants":["regular"]},"Chakra Petch":{"family":"Chakra Petch","category":"sans-serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Changa":{"family":"Changa","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Changa One":{"family":"Changa One","category":"display","variants":["italic","regular"]},"Chango":{"family":"Chango","category":"display","variants":["regular"]},"Charm":{"family":"Charm","category":"handwriting","variants":["700","regular"]},"Charmonman":{"family":"Charmonman","category":"handwriting","variants":["700","regular"]},"Chathura":{"family":"Chathura","category":"sans-serif","variants":["100","300","700","800","regular"]},"Chau Philomene One":{"family":"Chau Philomene One","category":"sans-serif","variants":["italic","regular"]},"Chela One":{"family":"Chela One","category":"display","variants":["regular"]},"Chelsea Market":{"family":"Chelsea Market","category":"display","variants":["regular"]},"Chenla":{"family":"Chenla","category":"display","variants":["regular"]},"Cherry Cream Soda":{"family":"Cherry Cream Soda","category":"display","variants":["regular"]},"Cherry Swash":{"family":"Cherry Swash","category":"display","variants":["700","regular"]},"Chewy":{"family":"Chewy","category":"display","variants":["regular"]},"Chicle":{"family":"Chicle","category":"display","variants":["regular"]},"Chivo":{"family":"Chivo","category":"sans-serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Chonburi":{"family":"Chonburi","category":"display","variants":["regular"]},"Cinzel":{"family":"Cinzel","category":"serif","variants":["700","900","regular"]},"Cinzel Decorative":{"family":"Cinzel Decorative","category":"display","variants":["700","900","regular"]},"Clicker Script":{"family":"Clicker Script","category":"handwriting","variants":["regular"]},"Coda":{"family":"Coda","category":"display","variants":["800","regular"]},"Coda Caption":{"family":"Coda Caption","category":"sans-serif","variants":["800"]},"Codystar":{"family":"Codystar","category":"display","variants":["300","regular"]},"Coiny":{"family":"Coiny","category":"display","variants":["regular"]},"Combo":{"family":"Combo","category":"display","variants":["regular"]},"Comfortaa":{"family":"Comfortaa","category":"display","variants":["300","700","regular"]},"Coming Soon":{"family":"Coming Soon","category":"handwriting","variants":["regular"]},"Concert One":{"family":"Concert One","category":"display","variants":["regular"]},"Condiment":{"family":"Condiment","category":"handwriting","variants":["regular"]},"Content":{"family":"Content","category":"display","variants":["700","regular"]},"Contrail One":{"family":"Contrail One","category":"display","variants":["regular"]},"Convergence":{"family":"Convergence","category":"sans-serif","variants":["regular"]},"Cookie":{"family":"Cookie","category":"handwriting","variants":["regular"]},"Copse":{"family":"Copse","category":"serif","variants":["regular"]},"Corben":{"family":"Corben","category":"display","variants":["700","regular"]},"Cormorant":{"family":"Cormorant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Garamond":{"family":"Cormorant Garamond","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Infant":{"family":"Cormorant Infant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant SC":{"family":"Cormorant SC","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Unicase":{"family":"Cormorant Unicase","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Upright":{"family":"Cormorant Upright","category":"serif","variants":["300","500","600","700","regular"]},"Courgette":{"family":"Courgette","category":"handwriting","variants":["regular"]},"Cousine":{"family":"Cousine","category":"monospace","variants":["700","700italic","italic","regular"]},"Coustard":{"family":"Coustard","category":"serif","variants":["900","regular"]},"Covered By Your Grace":{"family":"Covered By Your Grace","category":"handwriting","variants":["regular"]},"Crafty Girls":{"family":"Crafty Girls","category":"handwriting","variants":["regular"]},"Creepster":{"family":"Creepster","category":"display","variants":["regular"]},"Crete Round":{"family":"Crete Round","category":"serif","variants":["italic","regular"]},"Crimson Text":{"family":"Crimson Text","category":"serif","variants":["600","600italic","700","700italic","italic","regular"]},"Croissant One":{"family":"Croissant One","category":"display","variants":["regular"]},"Crushed":{"family":"Crushed","category":"display","variants":["regular"]},"Cuprum":{"family":"Cuprum","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cute Font":{"family":"Cute Font","category":"display","variants":["regular"]},"Cutive":{"family":"Cutive","category":"serif","variants":["regular"]},"Cutive Mono":{"family":"Cutive Mono","category":"monospace","variants":["regular"]},"Damion":{"family":"Damion","category":"handwriting","variants":["regular"]},"Dancing Script":{"family":"Dancing Script","category":"handwriting","variants":["700","regular"]},"Dangrek":{"family":"Dangrek","category":"display","variants":["regular"]},"David Libre":{"family":"David Libre","category":"serif","variants":["500","700","regular"]},"Dawning of a New Day":{"family":"Dawning of a New Day","category":"handwriting","variants":["regular"]},"Days One":{"family":"Days One","category":"sans-serif","variants":["regular"]},"Dekko":{"family":"Dekko","category":"handwriting","variants":["regular"]},"Delius":{"family":"Delius","category":"handwriting","variants":["regular"]},"Delius Swash Caps":{"family":"Delius Swash Caps","category":"handwriting","variants":["regular"]},"Delius Unicase":{"family":"Delius Unicase","category":"handwriting","variants":["700","regular"]},"Della Respira":{"family":"Della Respira","category":"serif","variants":["regular"]},"Denk One":{"family":"Denk One","category":"sans-serif","variants":["regular"]},"Devonshire":{"family":"Devonshire","category":"handwriting","variants":["regular"]},"Dhurjati":{"family":"Dhurjati","category":"sans-serif","variants":["regular"]},"Didact Gothic":{"family":"Didact Gothic","category":"sans-serif","variants":["regular"]},"Diplomata":{"family":"Diplomata","category":"display","variants":["regular"]},"Diplomata SC":{"family":"Diplomata SC","category":"display","variants":["regular"]},"Do Hyeon":{"family":"Do Hyeon","category":"sans-serif","variants":["regular"]},"Dokdo":{"family":"Dokdo","category":"handwriting","variants":["regular"]},"Domine":{"family":"Domine","category":"serif","variants":["700","regular"]},"Donegal One":{"family":"Donegal One","category":"serif","variants":["regular"]},"Doppio One":{"family":"Doppio One","category":"sans-serif","variants":["regular"]},"Dorsa":{"family":"Dorsa","category":"sans-serif","variants":["regular"]},"Dosis":{"family":"Dosis","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Dr Sugiyama":{"family":"Dr Sugiyama","category":"handwriting","variants":["regular"]},"Duru Sans":{"family":"Duru Sans","category":"sans-serif","variants":["regular"]},"Dynalight":{"family":"Dynalight","category":"display","variants":["regular"]},"EB Garamond":{"family":"EB Garamond","category":"serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Eagle Lake":{"family":"Eagle Lake","category":"handwriting","variants":["regular"]},"East Sea Dokdo":{"family":"East Sea Dokdo","category":"handwriting","variants":["regular"]},"Eater":{"family":"Eater","category":"display","variants":["regular"]},"Economica":{"family":"Economica","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Eczar":{"family":"Eczar","category":"serif","variants":["500","600","700","800","regular"]},"El Messiri":{"family":"El Messiri","category":"sans-serif","variants":["500","600","700","regular"]},"Electrolize":{"family":"Electrolize","category":"sans-serif","variants":["regular"]},"Elsie":{"family":"Elsie","category":"display","variants":["900","regular"]},"Elsie Swash Caps":{"family":"Elsie Swash Caps","category":"display","variants":["900","regular"]},"Emblema One":{"family":"Emblema One","category":"display","variants":["regular"]},"Emilys Candy":{"family":"Emilys Candy","category":"display","variants":["regular"]},"Encode Sans":{"family":"Encode Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Condensed":{"family":"Encode Sans Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Expanded":{"family":"Encode Sans Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Condensed":{"family":"Encode Sans Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Expanded":{"family":"Encode Sans Semi Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Engagement":{"family":"Engagement","category":"handwriting","variants":["regular"]},"Englebert":{"family":"Englebert","category":"sans-serif","variants":["regular"]},"Enriqueta":{"family":"Enriqueta","category":"serif","variants":["700","regular"]},"Erica One":{"family":"Erica One","category":"display","variants":["regular"]},"Esteban":{"family":"Esteban","category":"serif","variants":["regular"]},"Euphoria Script":{"family":"Euphoria Script","category":"handwriting","variants":["regular"]},"Ewert":{"family":"Ewert","category":"display","variants":["regular"]},"Exo":{"family":"Exo","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Exo 2":{"family":"Exo 2","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Expletus Sans":{"family":"Expletus Sans","category":"display","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Fahkwang":{"family":"Fahkwang","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Fanwood Text":{"family":"Fanwood Text","category":"serif","variants":["italic","regular"]},"Farsan":{"family":"Farsan","category":"display","variants":["regular"]},"Fascinate":{"family":"Fascinate","category":"display","variants":["regular"]},"Fascinate Inline":{"family":"Fascinate Inline","category":"display","variants":["regular"]},"Faster One":{"family":"Faster One","category":"display","variants":["regular"]},"Fasthand":{"family":"Fasthand","category":"serif","variants":["regular"]},"Fauna One":{"family":"Fauna One","category":"serif","variants":["regular"]},"Faustina":{"family":"Faustina","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Federant":{"family":"Federant","category":"display","variants":["regular"]},"Federo":{"family":"Federo","category":"sans-serif","variants":["regular"]},"Felipa":{"family":"Felipa","category":"handwriting","variants":["regular"]},"Fenix":{"family":"Fenix","category":"serif","variants":["regular"]},"Finger Paint":{"family":"Finger Paint","category":"display","variants":["regular"]},"Fira Mono":{"family":"Fira Mono","category":"monospace","variants":["500","700","regular"]},"Fira Sans":{"family":"Fira Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Condensed":{"family":"Fira Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Extra Condensed":{"family":"Fira Sans Extra Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fjalla One":{"family":"Fjalla One","category":"sans-serif","variants":["regular"]},"Fjord One":{"family":"Fjord One","category":"serif","variants":["regular"]},"Flamenco":{"family":"Flamenco","category":"display","variants":["300","regular"]},"Flavors":{"family":"Flavors","category":"display","variants":["regular"]},"Fondamento":{"family":"Fondamento","category":"handwriting","variants":["italic","regular"]},"Fontdiner Swanky":{"family":"Fontdiner Swanky","category":"display","variants":["regular"]},"Forum":{"family":"Forum","category":"display","variants":["regular"]},"Francois One":{"family":"Francois One","category":"sans-serif","variants":["regular"]},"Frank Ruhl Libre":{"family":"Frank Ruhl Libre","category":"serif","variants":["300","500","700","900","regular"]},"Freckle Face":{"family":"Freckle Face","category":"display","variants":["regular"]},"Fredericka the Great":{"family":"Fredericka the Great","category":"display","variants":["regular"]},"Fredoka One":{"family":"Fredoka One","category":"display","variants":["regular"]},"Freehand":{"family":"Freehand","category":"display","variants":["regular"]},"Fresca":{"family":"Fresca","category":"sans-serif","variants":["regular"]},"Frijole":{"family":"Frijole","category":"display","variants":["regular"]},"Fruktur":{"family":"Fruktur","category":"display","variants":["regular"]},"Fugaz One":{"family":"Fugaz One","category":"display","variants":["regular"]},"GFS Didot":{"family":"GFS Didot","category":"serif","variants":["regular"]},"GFS Neohellenic":{"family":"GFS Neohellenic","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Gabriela":{"family":"Gabriela","category":"serif","variants":["regular"]},"Gaegu":{"family":"Gaegu","category":"handwriting","variants":["300","700","regular"]},"Gafata":{"family":"Gafata","category":"sans-serif","variants":["regular"]},"Galada":{"family":"Galada","category":"display","variants":["regular"]},"Galdeano":{"family":"Galdeano","category":"sans-serif","variants":["regular"]},"Galindo":{"family":"Galindo","category":"display","variants":["regular"]},"Gamja Flower":{"family":"Gamja Flower","category":"handwriting","variants":["regular"]},"Gentium Basic":{"family":"Gentium Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Gentium Book Basic":{"family":"Gentium Book Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Geo":{"family":"Geo","category":"sans-serif","variants":["italic","regular"]},"Geostar":{"family":"Geostar","category":"display","variants":["regular"]},"Geostar Fill":{"family":"Geostar Fill","category":"display","variants":["regular"]},"Germania One":{"family":"Germania One","category":"display","variants":["regular"]},"Gidugu":{"family":"Gidugu","category":"sans-serif","variants":["regular"]},"Gilda Display":{"family":"Gilda Display","category":"serif","variants":["regular"]},"Give You Glory":{"family":"Give You Glory","category":"handwriting","variants":["regular"]},"Glass Antiqua":{"family":"Glass Antiqua","category":"display","variants":["regular"]},"Glegoo":{"family":"Glegoo","category":"serif","variants":["700","regular"]},"Gloria Hallelujah":{"family":"Gloria Hallelujah","category":"handwriting","variants":["regular"]},"Goblin One":{"family":"Goblin One","category":"display","variants":["regular"]},"Gochi Hand":{"family":"Gochi Hand","category":"handwriting","variants":["regular"]},"Gorditas":{"family":"Gorditas","category":"display","variants":["700","regular"]},"Gothic A1":{"family":"Gothic A1","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Goudy Bookletter 1911":{"family":"Goudy Bookletter 1911","category":"serif","variants":["regular"]},"Graduate":{"family":"Graduate","category":"display","variants":["regular"]},"Grand Hotel":{"family":"Grand Hotel","category":"handwriting","variants":["regular"]},"Gravitas One":{"family":"Gravitas One","category":"display","variants":["regular"]},"Great Vibes":{"family":"Great Vibes","category":"handwriting","variants":["regular"]},"Griffy":{"family":"Griffy","category":"display","variants":["regular"]},"Gruppo":{"family":"Gruppo","category":"display","variants":["regular"]},"Gudea":{"family":"Gudea","category":"sans-serif","variants":["700","italic","regular"]},"Gugi":{"family":"Gugi","category":"display","variants":["regular"]},"Gurajada":{"family":"Gurajada","category":"serif","variants":["regular"]},"Habibi":{"family":"Habibi","category":"serif","variants":["regular"]},"Halant":{"family":"Halant","category":"serif","variants":["300","500","600","700","regular"]},"Hammersmith One":{"family":"Hammersmith One","category":"sans-serif","variants":["regular"]},"Hanalei":{"family":"Hanalei","category":"display","variants":["regular"]},"Hanalei Fill":{"family":"Hanalei Fill","category":"display","variants":["regular"]},"Handlee":{"family":"Handlee","category":"handwriting","variants":["regular"]},"Hanuman":{"family":"Hanuman","category":"serif","variants":["700","regular"]},"Happy Monkey":{"family":"Happy Monkey","category":"display","variants":["regular"]},"Harmattan":{"family":"Harmattan","category":"sans-serif","variants":["regular"]},"Headland One":{"family":"Headland One","category":"serif","variants":["regular"]},"Heebo":{"family":"Heebo","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Henny Penny":{"family":"Henny Penny","category":"display","variants":["regular"]},"Herr Von Muellerhoff":{"family":"Herr Von Muellerhoff","category":"handwriting","variants":["regular"]},"Hi Melody":{"family":"Hi Melody","category":"handwriting","variants":["regular"]},"Hind":{"family":"Hind","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Guntur":{"family":"Hind Guntur","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Madurai":{"family":"Hind Madurai","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Siliguri":{"family":"Hind Siliguri","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Vadodara":{"family":"Hind Vadodara","category":"sans-serif","variants":["300","500","600","700","regular"]},"Holtwood One SC":{"family":"Holtwood One SC","category":"serif","variants":["regular"]},"Homemade Apple":{"family":"Homemade Apple","category":"handwriting","variants":["regular"]},"Homenaje":{"family":"Homenaje","category":"sans-serif","variants":["regular"]},"IBM Plex Mono":{"family":"IBM Plex Mono","category":"monospace","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans":{"family":"IBM Plex Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans Condensed":{"family":"IBM Plex Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Serif":{"family":"IBM Plex Serif","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IM Fell DW Pica":{"family":"IM Fell DW Pica","category":"serif","variants":["italic","regular"]},"IM Fell DW Pica SC":{"family":"IM Fell DW Pica SC","category":"serif","variants":["regular"]},"IM Fell Double Pica":{"family":"IM Fell Double Pica","category":"serif","variants":["italic","regular"]},"IM Fell Double Pica SC":{"family":"IM Fell Double Pica SC","category":"serif","variants":["regular"]},"IM Fell English":{"family":"IM Fell English","category":"serif","variants":["italic","regular"]},"IM Fell English SC":{"family":"IM Fell English SC","category":"serif","variants":["regular"]},"IM Fell French Canon":{"family":"IM Fell French Canon","category":"serif","variants":["italic","regular"]},"IM Fell French Canon SC":{"family":"IM Fell French Canon SC","category":"serif","variants":["regular"]},"IM Fell Great Primer":{"family":"IM Fell Great Primer","category":"serif","variants":["italic","regular"]},"IM Fell Great Primer SC":{"family":"IM Fell Great Primer SC","category":"serif","variants":["regular"]},"Iceberg":{"family":"Iceberg","category":"display","variants":["regular"]},"Iceland":{"family":"Iceland","category":"display","variants":["regular"]},"Imprima":{"family":"Imprima","category":"sans-serif","variants":["regular"]},"Inconsolata":{"family":"Inconsolata","category":"monospace","variants":["700","regular"]},"Inder":{"family":"Inder","category":"sans-serif","variants":["regular"]},"Indie Flower":{"family":"Indie Flower","category":"handwriting","variants":["regular"]},"Inika":{"family":"Inika","category":"serif","variants":["700","regular"]},"Inknut Antiqua":{"family":"Inknut Antiqua","category":"serif","variants":["300","500","600","700","800","900","regular"]},"Irish Grover":{"family":"Irish Grover","category":"display","variants":["regular"]},"Istok Web":{"family":"Istok Web","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Italiana":{"family":"Italiana","category":"serif","variants":["regular"]},"Italianno":{"family":"Italianno","category":"handwriting","variants":["regular"]},"Itim":{"family":"Itim","category":"handwriting","variants":["regular"]},"Jacques Francois":{"family":"Jacques Francois","category":"serif","variants":["regular"]},"Jacques Francois Shadow":{"family":"Jacques Francois Shadow","category":"display","variants":["regular"]},"Jaldi":{"family":"Jaldi","category":"sans-serif","variants":["700","regular"]},"Jim Nightshade":{"family":"Jim Nightshade","category":"handwriting","variants":["regular"]},"Jockey One":{"family":"Jockey One","category":"sans-serif","variants":["regular"]},"Jolly Lodger":{"family":"Jolly Lodger","category":"display","variants":["regular"]},"Jomhuria":{"family":"Jomhuria","category":"display","variants":["regular"]},"Josefin Sans":{"family":"Josefin Sans","category":"sans-serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Josefin Slab":{"family":"Josefin Slab","category":"serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Joti One":{"family":"Joti One","category":"display","variants":["regular"]},"Jua":{"family":"Jua","category":"sans-serif","variants":["regular"]},"Judson":{"family":"Judson","category":"serif","variants":["700","italic","regular"]},"Julee":{"family":"Julee","category":"handwriting","variants":["regular"]},"Julius Sans One":{"family":"Julius Sans One","category":"sans-serif","variants":["regular"]},"Junge":{"family":"Junge","category":"serif","variants":["regular"]},"Jura":{"family":"Jura","category":"sans-serif","variants":["300","500","600","700","regular"]},"Just Another Hand":{"family":"Just Another Hand","category":"handwriting","variants":["regular"]},"Just Me Again Down Here":{"family":"Just Me Again Down Here","category":"handwriting","variants":["regular"]},"K2D":{"family":"K2D","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Kadwa":{"family":"Kadwa","category":"serif","variants":["700","regular"]},"Kalam":{"family":"Kalam","category":"handwriting","variants":["300","700","regular"]},"Kameron":{"family":"Kameron","category":"serif","variants":["700","regular"]},"Kanit":{"family":"Kanit","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Kantumruy":{"family":"Kantumruy","category":"sans-serif","variants":["300","700","regular"]},"Karla":{"family":"Karla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Karma":{"family":"Karma","category":"serif","variants":["300","500","600","700","regular"]},"Katibeh":{"family":"Katibeh","category":"display","variants":["regular"]},"Kaushan Script":{"family":"Kaushan Script","category":"handwriting","variants":["regular"]},"Kavivanar":{"family":"Kavivanar","category":"handwriting","variants":["regular"]},"Kavoon":{"family":"Kavoon","category":"display","variants":["regular"]},"Kdam Thmor":{"family":"Kdam Thmor","category":"display","variants":["regular"]},"Keania One":{"family":"Keania One","category":"display","variants":["regular"]},"Kelly Slab":{"family":"Kelly Slab","category":"display","variants":["regular"]},"Kenia":{"family":"Kenia","category":"display","variants":["regular"]},"Khand":{"family":"Khand","category":"sans-serif","variants":["300","500","600","700","regular"]},"Khmer":{"family":"Khmer","category":"display","variants":["regular"]},"Khula":{"family":"Khula","category":"sans-serif","variants":["300","600","700","800","regular"]},"Kirang Haerang":{"family":"Kirang Haerang","category":"display","variants":["regular"]},"Kite One":{"family":"Kite One","category":"sans-serif","variants":["regular"]},"Knewave":{"family":"Knewave","category":"display","variants":["regular"]},"KoHo":{"family":"KoHo","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kodchasan":{"family":"Kodchasan","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kosugi":{"family":"Kosugi","category":"sans-serif","variants":["regular"]},"Kosugi Maru":{"family":"Kosugi Maru","category":"sans-serif","variants":["regular"]},"Kotta One":{"family":"Kotta One","category":"serif","variants":["regular"]},"Koulen":{"family":"Koulen","category":"display","variants":["regular"]},"Kranky":{"family":"Kranky","category":"display","variants":["regular"]},"Kreon":{"family":"Kreon","category":"serif","variants":["300","700","regular"]},"Kristi":{"family":"Kristi","category":"handwriting","variants":["regular"]},"Krona One":{"family":"Krona One","category":"sans-serif","variants":["regular"]},"Krub":{"family":"Krub","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kumar One":{"family":"Kumar One","category":"display","variants":["regular"]},"Kumar One Outline":{"family":"Kumar One Outline","category":"display","variants":["regular"]},"Kurale":{"family":"Kurale","category":"serif","variants":["regular"]},"La Belle Aurore":{"family":"La Belle Aurore","category":"handwriting","variants":["regular"]},"Laila":{"family":"Laila","category":"serif","variants":["300","500","600","700","regular"]},"Lakki Reddy":{"family":"Lakki Reddy","category":"handwriting","variants":["regular"]},"Lalezar":{"family":"Lalezar","category":"display","variants":["regular"]},"Lancelot":{"family":"Lancelot","category":"display","variants":["regular"]},"Lateef":{"family":"Lateef","category":"handwriting","variants":["regular"]},"Lato":{"family":"Lato","category":"sans-serif","variants":["100","100italic","300","300italic","700","700italic","900","900italic","italic","regular"]},"League Script":{"family":"League Script","category":"handwriting","variants":["regular"]},"Leckerli One":{"family":"Leckerli One","category":"handwriting","variants":["regular"]},"Ledger":{"family":"Ledger","category":"serif","variants":["regular"]},"Lekton":{"family":"Lekton","category":"sans-serif","variants":["700","italic","regular"]},"Lemon":{"family":"Lemon","category":"display","variants":["regular"]},"Lemonada":{"family":"Lemonada","category":"display","variants":["300","600","700","regular"]},"Libre Barcode 128":{"family":"Libre Barcode 128","category":"display","variants":["regular"]},"Libre Barcode 128 Text":{"family":"Libre Barcode 128 Text","category":"display","variants":["regular"]},"Libre Barcode 39":{"family":"Libre Barcode 39","category":"display","variants":["regular"]},"Libre Barcode 39 Extended":{"family":"Libre Barcode 39 Extended","category":"display","variants":["regular"]},"Libre Barcode 39 Extended Text":{"family":"Libre Barcode 39 Extended Text","category":"display","variants":["regular"]},"Libre Barcode 39 Text":{"family":"Libre Barcode 39 Text","category":"display","variants":["regular"]},"Libre Baskerville":{"family":"Libre Baskerville","category":"serif","variants":["700","italic","regular"]},"Libre Franklin":{"family":"Libre Franklin","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Life Savers":{"family":"Life Savers","category":"display","variants":["700","regular"]},"Lilita One":{"family":"Lilita One","category":"display","variants":["regular"]},"Lily Script One":{"family":"Lily Script One","category":"display","variants":["regular"]},"Limelight":{"family":"Limelight","category":"display","variants":["regular"]},"Linden Hill":{"family":"Linden Hill","category":"serif","variants":["italic","regular"]},"Lobster":{"family":"Lobster","category":"display","variants":["regular"]},"Lobster Two":{"family":"Lobster Two","category":"display","variants":["700","700italic","italic","regular"]},"Londrina Outline":{"family":"Londrina Outline","category":"display","variants":["regular"]},"Londrina Shadow":{"family":"Londrina Shadow","category":"display","variants":["regular"]},"Londrina Sketch":{"family":"Londrina Sketch","category":"display","variants":["regular"]},"Londrina Solid":{"family":"Londrina Solid","category":"display","variants":["100","300","900","regular"]},"Lora":{"family":"Lora","category":"serif","variants":["700","700italic","italic","regular"]},"Love Ya Like A Sister":{"family":"Love Ya Like A Sister","category":"display","variants":["regular"]},"Loved by the King":{"family":"Loved by the King","category":"handwriting","variants":["regular"]},"Lovers Quarrel":{"family":"Lovers Quarrel","category":"handwriting","variants":["regular"]},"Luckiest Guy":{"family":"Luckiest Guy","category":"display","variants":["regular"]},"Lusitana":{"family":"Lusitana","category":"serif","variants":["700","regular"]},"Lustria":{"family":"Lustria","category":"serif","variants":["regular"]},"M PLUS 1p":{"family":"M PLUS 1p","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"M PLUS Rounded 1c":{"family":"M PLUS Rounded 1c","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Macondo":{"family":"Macondo","category":"display","variants":["regular"]},"Macondo Swash Caps":{"family":"Macondo Swash Caps","category":"display","variants":["regular"]},"Mada":{"family":"Mada","category":"sans-serif","variants":["200","300","500","600","700","900","regular"]},"Magra":{"family":"Magra","category":"sans-serif","variants":["700","regular"]},"Maiden Orange":{"family":"Maiden Orange","category":"display","variants":["regular"]},"Maitree":{"family":"Maitree","category":"serif","variants":["200","300","500","600","700","regular"]},"Major Mono Display":{"family":"Major Mono Display","category":"monospace","variants":["regular"]},"Mako":{"family":"Mako","category":"sans-serif","variants":["regular"]},"Mali":{"family":"Mali","category":"handwriting","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Mallanna":{"family":"Mallanna","category":"sans-serif","variants":["regular"]},"Mandali":{"family":"Mandali","category":"sans-serif","variants":["regular"]},"Manuale":{"family":"Manuale","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Marcellus":{"family":"Marcellus","category":"serif","variants":["regular"]},"Marcellus SC":{"family":"Marcellus SC","category":"serif","variants":["regular"]},"Marck Script":{"family":"Marck Script","category":"handwriting","variants":["regular"]},"Margarine":{"family":"Margarine","category":"display","variants":["regular"]},"Markazi Text":{"family":"Markazi Text","category":"serif","variants":["500","600","700","regular"]},"Marko One":{"family":"Marko One","category":"serif","variants":["regular"]},"Marmelad":{"family":"Marmelad","category":"sans-serif","variants":["regular"]},"Martel":{"family":"Martel","category":"serif","variants":["200","300","600","700","800","900","regular"]},"Martel Sans":{"family":"Martel Sans","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Marvel":{"family":"Marvel","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Mate":{"family":"Mate","category":"serif","variants":["italic","regular"]},"Mate SC":{"family":"Mate SC","category":"serif","variants":["regular"]},"Maven Pro":{"family":"Maven Pro","category":"sans-serif","variants":["500","700","900","regular"]},"McLaren":{"family":"McLaren","category":"display","variants":["regular"]},"Meddon":{"family":"Meddon","category":"handwriting","variants":["regular"]},"MedievalSharp":{"family":"MedievalSharp","category":"display","variants":["regular"]},"Medula One":{"family":"Medula One","category":"display","variants":["regular"]},"Meera Inimai":{"family":"Meera Inimai","category":"sans-serif","variants":["regular"]},"Megrim":{"family":"Megrim","category":"display","variants":["regular"]},"Meie Script":{"family":"Meie Script","category":"handwriting","variants":["regular"]},"Merienda":{"family":"Merienda","category":"handwriting","variants":["700","regular"]},"Merienda One":{"family":"Merienda One","category":"handwriting","variants":["regular"]},"Merriweather":{"family":"Merriweather","category":"serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Merriweather Sans":{"family":"Merriweather Sans","category":"sans-serif","variants":["300","300italic","700","700italic","800","800italic","italic","regular"]},"Metal":{"family":"Metal","category":"display","variants":["regular"]},"Metal Mania":{"family":"Metal Mania","category":"display","variants":["regular"]},"Metamorphous":{"family":"Metamorphous","category":"display","variants":["regular"]},"Metrophobic":{"family":"Metrophobic","category":"sans-serif","variants":["regular"]},"Michroma":{"family":"Michroma","category":"sans-serif","variants":["regular"]},"Milonga":{"family":"Milonga","category":"display","variants":["regular"]},"Miltonian":{"family":"Miltonian","category":"display","variants":["regular"]},"Miltonian Tattoo":{"family":"Miltonian Tattoo","category":"display","variants":["regular"]},"Mina":{"family":"Mina","category":"sans-serif","variants":["700","regular"]},"Miniver":{"family":"Miniver","category":"display","variants":["regular"]},"Miriam Libre":{"family":"Miriam Libre","category":"sans-serif","variants":["700","regular"]},"Mirza":{"family":"Mirza","category":"display","variants":["500","600","700","regular"]},"Miss Fajardose":{"family":"Miss Fajardose","category":"handwriting","variants":["regular"]},"Mitr":{"family":"Mitr","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Modak":{"family":"Modak","category":"display","variants":["regular"]},"Modern Antiqua":{"family":"Modern Antiqua","category":"display","variants":["regular"]},"Mogra":{"family":"Mogra","category":"display","variants":["regular"]},"Molengo":{"family":"Molengo","category":"sans-serif","variants":["regular"]},"Molle":{"family":"Molle","category":"handwriting","variants":["italic"]},"Monda":{"family":"Monda","category":"sans-serif","variants":["700","regular"]},"Monofett":{"family":"Monofett","category":"display","variants":["regular"]},"Monoton":{"family":"Monoton","category":"display","variants":["regular"]},"Monsieur La Doulaise":{"family":"Monsieur La Doulaise","category":"handwriting","variants":["regular"]},"Montaga":{"family":"Montaga","category":"serif","variants":["regular"]},"Montez":{"family":"Montez","category":"handwriting","variants":["regular"]},"Montserrat":{"family":"Montserrat","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Alternates":{"family":"Montserrat Alternates","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Subrayada":{"family":"Montserrat Subrayada","category":"sans-serif","variants":["700","regular"]},"Moul":{"family":"Moul","category":"display","variants":["regular"]},"Moulpali":{"family":"Moulpali","category":"display","variants":["regular"]},"Mountains of Christmas":{"family":"Mountains of Christmas","category":"display","variants":["700","regular"]},"Mouse Memoirs":{"family":"Mouse Memoirs","category":"sans-serif","variants":["regular"]},"Mr Bedfort":{"family":"Mr Bedfort","category":"handwriting","variants":["regular"]},"Mr Dafoe":{"family":"Mr Dafoe","category":"handwriting","variants":["regular"]},"Mr De Haviland":{"family":"Mr De Haviland","category":"handwriting","variants":["regular"]},"Mrs Saint Delafield":{"family":"Mrs Saint Delafield","category":"handwriting","variants":["regular"]},"Mrs Sheppards":{"family":"Mrs Sheppards","category":"handwriting","variants":["regular"]},"Mukta":{"family":"Mukta","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Mahee":{"family":"Mukta Mahee","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Malar":{"family":"Mukta Malar","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Vaani":{"family":"Mukta Vaani","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Muli":{"family":"Muli","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Mystery Quest":{"family":"Mystery Quest","category":"display","variants":["regular"]},"NTR":{"family":"NTR","category":"sans-serif","variants":["regular"]},"Nanum Brush Script":{"family":"Nanum Brush Script","category":"handwriting","variants":["regular"]},"Nanum Gothic":{"family":"Nanum Gothic","category":"sans-serif","variants":["700","800","regular"]},"Nanum Gothic Coding":{"family":"Nanum Gothic Coding","category":"monospace","variants":["700","regular"]},"Nanum Myeongjo":{"family":"Nanum Myeongjo","category":"serif","variants":["700","800","regular"]},"Nanum Pen Script":{"family":"Nanum Pen Script","category":"handwriting","variants":["regular"]},"Neucha":{"family":"Neucha","category":"handwriting","variants":["regular"]},"Neuton":{"family":"Neuton","category":"serif","variants":["200","300","700","800","italic","regular"]},"New Rocker":{"family":"New Rocker","category":"display","variants":["regular"]},"News Cycle":{"family":"News Cycle","category":"sans-serif","variants":["700","regular"]},"Niconne":{"family":"Niconne","category":"handwriting","variants":["regular"]},"Niramit":{"family":"Niramit","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Nixie One":{"family":"Nixie One","category":"display","variants":["regular"]},"Nobile":{"family":"Nobile","category":"sans-serif","variants":["500","500italic","700","700italic","italic","regular"]},"Nokora":{"family":"Nokora","category":"serif","variants":["700","regular"]},"Norican":{"family":"Norican","category":"handwriting","variants":["regular"]},"Nosifer":{"family":"Nosifer","category":"display","variants":["regular"]},"Notable":{"family":"Notable","category":"sans-serif","variants":["regular"]},"Nothing You Could Do":{"family":"Nothing You Could Do","category":"handwriting","variants":["regular"]},"Noticia Text":{"family":"Noticia Text","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Sans":{"family":"Noto Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Noto Sans JP":{"family":"Noto Sans JP","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans KR":{"family":"Noto Sans KR","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans SC":{"family":"Noto Sans SC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans TC":{"family":"Noto Sans TC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Serif":{"family":"Noto Serif","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Serif JP":{"family":"Noto Serif JP","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif KR":{"family":"Noto Serif KR","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif SC":{"family":"Noto Serif SC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif TC":{"family":"Noto Serif TC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Nova Cut":{"family":"Nova Cut","category":"display","variants":["regular"]},"Nova Flat":{"family":"Nova Flat","category":"display","variants":["regular"]},"Nova Mono":{"family":"Nova Mono","category":"monospace","variants":["regular"]},"Nova Oval":{"family":"Nova Oval","category":"display","variants":["regular"]},"Nova Round":{"family":"Nova Round","category":"display","variants":["regular"]},"Nova Script":{"family":"Nova Script","category":"display","variants":["regular"]},"Nova Slim":{"family":"Nova Slim","category":"display","variants":["regular"]},"Nova Square":{"family":"Nova Square","category":"display","variants":["regular"]},"Numans":{"family":"Numans","category":"sans-serif","variants":["regular"]},"Nunito":{"family":"Nunito","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Nunito Sans":{"family":"Nunito Sans","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Odor Mean Chey":{"family":"Odor Mean Chey","category":"display","variants":["regular"]},"Offside":{"family":"Offside","category":"display","variants":["regular"]},"Old Standard TT":{"family":"Old Standard TT","category":"serif","variants":["700","italic","regular"]},"Oldenburg":{"family":"Oldenburg","category":"display","variants":["regular"]},"Oleo Script":{"family":"Oleo Script","category":"display","variants":["700","regular"]},"Oleo Script Swash Caps":{"family":"Oleo Script Swash Caps","category":"display","variants":["700","regular"]},"Open Sans":{"family":"Open Sans","category":"sans-serif","variants":["300","300italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Open Sans Condensed":{"family":"Open Sans Condensed","category":"sans-serif","variants":["300","300italic","700"]},"Oranienbaum":{"family":"Oranienbaum","category":"serif","variants":["regular"]},"Orbitron":{"family":"Orbitron","category":"sans-serif","variants":["500","700","900","regular"]},"Oregano":{"family":"Oregano","category":"display","variants":["italic","regular"]},"Orienta":{"family":"Orienta","category":"sans-serif","variants":["regular"]},"Original Surfer":{"family":"Original Surfer","category":"display","variants":["regular"]},"Oswald":{"family":"Oswald","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Over the Rainbow":{"family":"Over the Rainbow","category":"handwriting","variants":["regular"]},"Overlock":{"family":"Overlock","category":"display","variants":["700","700italic","900","900italic","italic","regular"]},"Overlock SC":{"family":"Overlock SC","category":"display","variants":["regular"]},"Overpass":{"family":"Overpass","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Overpass Mono":{"family":"Overpass Mono","category":"monospace","variants":["300","600","700","regular"]},"Ovo":{"family":"Ovo","category":"serif","variants":["regular"]},"Oxygen":{"family":"Oxygen","category":"sans-serif","variants":["300","700","regular"]},"Oxygen Mono":{"family":"Oxygen Mono","category":"monospace","variants":["regular"]},"PT Mono":{"family":"PT Mono","category":"monospace","variants":["regular"]},"PT Sans":{"family":"PT Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"PT Sans Caption":{"family":"PT Sans Caption","category":"sans-serif","variants":["700","regular"]},"PT Sans Narrow":{"family":"PT Sans Narrow","category":"sans-serif","variants":["700","regular"]},"PT Serif":{"family":"PT Serif","category":"serif","variants":["700","700italic","italic","regular"]},"PT Serif Caption":{"family":"PT Serif Caption","category":"serif","variants":["italic","regular"]},"Pacifico":{"family":"Pacifico","category":"handwriting","variants":["regular"]},"Padauk":{"family":"Padauk","category":"sans-serif","variants":["700","regular"]},"Palanquin":{"family":"Palanquin","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Palanquin Dark":{"family":"Palanquin Dark","category":"sans-serif","variants":["500","600","700","regular"]},"Pangolin":{"family":"Pangolin","category":"handwriting","variants":["regular"]},"Paprika":{"family":"Paprika","category":"display","variants":["regular"]},"Parisienne":{"family":"Parisienne","category":"handwriting","variants":["regular"]},"Passero One":{"family":"Passero One","category":"display","variants":["regular"]},"Passion One":{"family":"Passion One","category":"display","variants":["700","900","regular"]},"Pathway Gothic One":{"family":"Pathway Gothic One","category":"sans-serif","variants":["regular"]},"Patrick Hand":{"family":"Patrick Hand","category":"handwriting","variants":["regular"]},"Patrick Hand SC":{"family":"Patrick Hand SC","category":"handwriting","variants":["regular"]},"Pattaya":{"family":"Pattaya","category":"sans-serif","variants":["regular"]},"Patua One":{"family":"Patua One","category":"display","variants":["regular"]},"Pavanam":{"family":"Pavanam","category":"sans-serif","variants":["regular"]},"Paytone One":{"family":"Paytone One","category":"sans-serif","variants":["regular"]},"Peddana":{"family":"Peddana","category":"serif","variants":["regular"]},"Peralta":{"family":"Peralta","category":"display","variants":["regular"]},"Permanent Marker":{"family":"Permanent Marker","category":"handwriting","variants":["regular"]},"Petit Formal Script":{"family":"Petit Formal Script","category":"handwriting","variants":["regular"]},"Petrona":{"family":"Petrona","category":"serif","variants":["regular"]},"Philosopher":{"family":"Philosopher","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Piedra":{"family":"Piedra","category":"display","variants":["regular"]},"Pinyon Script":{"family":"Pinyon Script","category":"handwriting","variants":["regular"]},"Pirata One":{"family":"Pirata One","category":"display","variants":["regular"]},"Plaster":{"family":"Plaster","category":"display","variants":["regular"]},"Play":{"family":"Play","category":"sans-serif","variants":["700","regular"]},"Playball":{"family":"Playball","category":"display","variants":["regular"]},"Playfair Display":{"family":"Playfair Display","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Playfair Display SC":{"family":"Playfair Display SC","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Podkova":{"family":"Podkova","category":"serif","variants":["500","600","700","800","regular"]},"Poiret One":{"family":"Poiret One","category":"display","variants":["regular"]},"Poller One":{"family":"Poller One","category":"display","variants":["regular"]},"Poly":{"family":"Poly","category":"serif","variants":["italic","regular"]},"Pompiere":{"family":"Pompiere","category":"display","variants":["regular"]},"Pontano Sans":{"family":"Pontano Sans","category":"sans-serif","variants":["regular"]},"Poor Story":{"family":"Poor Story","category":"display","variants":["regular"]},"Poppins":{"family":"Poppins","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Port Lligat Sans":{"family":"Port Lligat Sans","category":"sans-serif","variants":["regular"]},"Port Lligat Slab":{"family":"Port Lligat Slab","category":"serif","variants":["regular"]},"Pragati Narrow":{"family":"Pragati Narrow","category":"sans-serif","variants":["700","regular"]},"Prata":{"family":"Prata","category":"serif","variants":["regular"]},"Preahvihear":{"family":"Preahvihear","category":"display","variants":["regular"]},"Press Start 2P":{"family":"Press Start 2P","category":"display","variants":["regular"]},"Pridi":{"family":"Pridi","category":"serif","variants":["200","300","500","600","700","regular"]},"Princess Sofia":{"family":"Princess Sofia","category":"handwriting","variants":["regular"]},"Prociono":{"family":"Prociono","category":"serif","variants":["regular"]},"Prompt":{"family":"Prompt","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Prosto One":{"family":"Prosto One","category":"display","variants":["regular"]},"Proza Libre":{"family":"Proza Libre","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Puritan":{"family":"Puritan","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Purple Purse":{"family":"Purple Purse","category":"display","variants":["regular"]},"Quando":{"family":"Quando","category":"serif","variants":["regular"]},"Quantico":{"family":"Quantico","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Quattrocento":{"family":"Quattrocento","category":"serif","variants":["700","regular"]},"Quattrocento Sans":{"family":"Quattrocento Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Questrial":{"family":"Questrial","category":"sans-serif","variants":["regular"]},"Quicksand":{"family":"Quicksand","category":"sans-serif","variants":["300","500","700","regular"]},"Quintessential":{"family":"Quintessential","category":"handwriting","variants":["regular"]},"Qwigley":{"family":"Qwigley","category":"handwriting","variants":["regular"]},"Racing Sans One":{"family":"Racing Sans One","category":"display","variants":["regular"]},"Radley":{"family":"Radley","category":"serif","variants":["italic","regular"]},"Rajdhani":{"family":"Rajdhani","category":"sans-serif","variants":["300","500","600","700","regular"]},"Rakkas":{"family":"Rakkas","category":"display","variants":["regular"]},"Raleway":{"family":"Raleway","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Raleway Dots":{"family":"Raleway Dots","category":"display","variants":["regular"]},"Ramabhadra":{"family":"Ramabhadra","category":"sans-serif","variants":["regular"]},"Ramaraja":{"family":"Ramaraja","category":"serif","variants":["regular"]},"Rambla":{"family":"Rambla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rammetto One":{"family":"Rammetto One","category":"display","variants":["regular"]},"Ranchers":{"family":"Ranchers","category":"display","variants":["regular"]},"Rancho":{"family":"Rancho","category":"handwriting","variants":["regular"]},"Ranga":{"family":"Ranga","category":"display","variants":["700","regular"]},"Rasa":{"family":"Rasa","category":"serif","variants":["300","500","600","700","regular"]},"Rationale":{"family":"Rationale","category":"sans-serif","variants":["regular"]},"Ravi Prakash":{"family":"Ravi Prakash","category":"display","variants":["regular"]},"Redressed":{"family":"Redressed","category":"handwriting","variants":["regular"]},"Reem Kufi":{"family":"Reem Kufi","category":"sans-serif","variants":["regular"]},"Reenie Beanie":{"family":"Reenie Beanie","category":"handwriting","variants":["regular"]},"Revalia":{"family":"Revalia","category":"display","variants":["regular"]},"Rhodium Libre":{"family":"Rhodium Libre","category":"serif","variants":["regular"]},"Ribeye":{"family":"Ribeye","category":"display","variants":["regular"]},"Ribeye Marrow":{"family":"Ribeye Marrow","category":"display","variants":["regular"]},"Righteous":{"family":"Righteous","category":"display","variants":["regular"]},"Risque":{"family":"Risque","category":"display","variants":["regular"]},"Roboto":{"family":"Roboto","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Roboto Condensed":{"family":"Roboto Condensed","category":"sans-serif","variants":["300","300italic","700","700italic","italic","regular"]},"Roboto Mono":{"family":"Roboto Mono","category":"monospace","variants":["100","100italic","300","300italic","500","500italic","700","700italic","italic","regular"]},"Roboto Slab":{"family":"Roboto Slab","category":"serif","variants":["100","300","700","regular"]},"Rochester":{"family":"Rochester","category":"handwriting","variants":["regular"]},"Rock Salt":{"family":"Rock Salt","category":"handwriting","variants":["regular"]},"Rokkitt":{"family":"Rokkitt","category":"serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Romanesco":{"family":"Romanesco","category":"handwriting","variants":["regular"]},"Ropa Sans":{"family":"Ropa Sans","category":"sans-serif","variants":["italic","regular"]},"Rosario":{"family":"Rosario","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rosarivo":{"family":"Rosarivo","category":"serif","variants":["italic","regular"]},"Rouge Script":{"family":"Rouge Script","category":"handwriting","variants":["regular"]},"Rozha One":{"family":"Rozha One","category":"serif","variants":["regular"]},"Rubik":{"family":"Rubik","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Rubik Mono One":{"family":"Rubik Mono One","category":"sans-serif","variants":["regular"]},"Ruda":{"family":"Ruda","category":"sans-serif","variants":["700","900","regular"]},"Rufina":{"family":"Rufina","category":"serif","variants":["700","regular"]},"Ruge Boogie":{"family":"Ruge Boogie","category":"handwriting","variants":["regular"]},"Ruluko":{"family":"Ruluko","category":"sans-serif","variants":["regular"]},"Rum Raisin":{"family":"Rum Raisin","category":"sans-serif","variants":["regular"]},"Ruslan Display":{"family":"Ruslan Display","category":"display","variants":["regular"]},"Russo One":{"family":"Russo One","category":"sans-serif","variants":["regular"]},"Ruthie":{"family":"Ruthie","category":"handwriting","variants":["regular"]},"Rye":{"family":"Rye","category":"display","variants":["regular"]},"Sacramento":{"family":"Sacramento","category":"handwriting","variants":["regular"]},"Sahitya":{"family":"Sahitya","category":"serif","variants":["700","regular"]},"Sail":{"family":"Sail","category":"display","variants":["regular"]},"Saira":{"family":"Saira","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Condensed":{"family":"Saira Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Extra Condensed":{"family":"Saira Extra Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Semi Condensed":{"family":"Saira Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Salsa":{"family":"Salsa","category":"display","variants":["regular"]},"Sanchez":{"family":"Sanchez","category":"serif","variants":["italic","regular"]},"Sancreek":{"family":"Sancreek","category":"display","variants":["regular"]},"Sansita":{"family":"Sansita","category":"sans-serif","variants":["700","700italic","800","800italic","900","900italic","italic","regular"]},"Sarabun":{"family":"Sarabun","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Sarala":{"family":"Sarala","category":"sans-serif","variants":["700","regular"]},"Sarina":{"family":"Sarina","category":"display","variants":["regular"]},"Sarpanch":{"family":"Sarpanch","category":"sans-serif","variants":["500","600","700","800","900","regular"]},"Satisfy":{"family":"Satisfy","category":"handwriting","variants":["regular"]},"Sawarabi Gothic":{"family":"Sawarabi Gothic","category":"sans-serif","variants":["regular"]},"Sawarabi Mincho":{"family":"Sawarabi Mincho","category":"sans-serif","variants":["regular"]},"Scada":{"family":"Scada","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Scheherazade":{"family":"Scheherazade","category":"serif","variants":["700","regular"]},"Schoolbell":{"family":"Schoolbell","category":"handwriting","variants":["regular"]},"Scope One":{"family":"Scope One","category":"serif","variants":["regular"]},"Seaweed Script":{"family":"Seaweed Script","category":"display","variants":["regular"]},"Secular One":{"family":"Secular One","category":"sans-serif","variants":["regular"]},"Sedgwick Ave":{"family":"Sedgwick Ave","category":"handwriting","variants":["regular"]},"Sedgwick Ave Display":{"family":"Sedgwick Ave Display","category":"handwriting","variants":["regular"]},"Sevillana":{"family":"Sevillana","category":"display","variants":["regular"]},"Seymour One":{"family":"Seymour One","category":"sans-serif","variants":["regular"]},"Shadows Into Light":{"family":"Shadows Into Light","category":"handwriting","variants":["regular"]},"Shadows Into Light Two":{"family":"Shadows Into Light Two","category":"handwriting","variants":["regular"]},"Shanti":{"family":"Shanti","category":"sans-serif","variants":["regular"]},"Share":{"family":"Share","category":"display","variants":["700","700italic","italic","regular"]},"Share Tech":{"family":"Share Tech","category":"sans-serif","variants":["regular"]},"Share Tech Mono":{"family":"Share Tech Mono","category":"monospace","variants":["regular"]},"Shojumaru":{"family":"Shojumaru","category":"display","variants":["regular"]},"Short Stack":{"family":"Short Stack","category":"handwriting","variants":["regular"]},"Shrikhand":{"family":"Shrikhand","category":"display","variants":["regular"]},"Siemreap":{"family":"Siemreap","category":"display","variants":["regular"]},"Sigmar One":{"family":"Sigmar One","category":"display","variants":["regular"]},"Signika":{"family":"Signika","category":"sans-serif","variants":["300","600","700","regular"]},"Signika Negative":{"family":"Signika Negative","category":"sans-serif","variants":["300","600","700","regular"]},"Simonetta":{"family":"Simonetta","category":"display","variants":["900","900italic","italic","regular"]},"Sintony":{"family":"Sintony","category":"sans-serif","variants":["700","regular"]},"Sirin Stencil":{"family":"Sirin Stencil","category":"display","variants":["regular"]},"Six Caps":{"family":"Six Caps","category":"sans-serif","variants":["regular"]},"Skranji":{"family":"Skranji","category":"display","variants":["700","regular"]},"Slabo 13px":{"family":"Slabo 13px","category":"serif","variants":["regular"]},"Slabo 27px":{"family":"Slabo 27px","category":"serif","variants":["regular"]},"Slackey":{"family":"Slackey","category":"display","variants":["regular"]},"Smokum":{"family":"Smokum","category":"display","variants":["regular"]},"Smythe":{"family":"Smythe","category":"display","variants":["regular"]},"Sniglet":{"family":"Sniglet","category":"display","variants":["800","regular"]},"Snippet":{"family":"Snippet","category":"sans-serif","variants":["regular"]},"Snowburst One":{"family":"Snowburst One","category":"display","variants":["regular"]},"Sofadi One":{"family":"Sofadi One","category":"display","variants":["regular"]},"Sofia":{"family":"Sofia","category":"handwriting","variants":["regular"]},"Song Myung":{"family":"Song Myung","category":"serif","variants":["regular"]},"Sonsie One":{"family":"Sonsie One","category":"display","variants":["regular"]},"Sorts Mill Goudy":{"family":"Sorts Mill Goudy","category":"serif","variants":["italic","regular"]},"Source Code Pro":{"family":"Source Code Pro","category":"monospace","variants":["200","300","500","600","700","900","regular"]},"Source Sans Pro":{"family":"Source Sans Pro","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","900italic","italic","regular"]},"Source Serif Pro":{"family":"Source Serif Pro","category":"serif","variants":["600","700","regular"]},"Space Mono":{"family":"Space Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Special Elite":{"family":"Special Elite","category":"display","variants":["regular"]},"Spectral":{"family":"Spectral","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spectral SC":{"family":"Spectral SC","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spicy Rice":{"family":"Spicy Rice","category":"display","variants":["regular"]},"Spinnaker":{"family":"Spinnaker","category":"sans-serif","variants":["regular"]},"Spirax":{"family":"Spirax","category":"display","variants":["regular"]},"Squada One":{"family":"Squada One","category":"display","variants":["regular"]},"Sree Krushnadevaraya":{"family":"Sree Krushnadevaraya","category":"serif","variants":["regular"]},"Sriracha":{"family":"Sriracha","category":"handwriting","variants":["regular"]},"Srisakdi":{"family":"Srisakdi","category":"display","variants":["700","regular"]},"Staatliches":{"family":"Staatliches","category":"display","variants":["regular"]},"Stalemate":{"family":"Stalemate","category":"handwriting","variants":["regular"]},"Stalinist One":{"family":"Stalinist One","category":"display","variants":["regular"]},"Stardos Stencil":{"family":"Stardos Stencil","category":"display","variants":["700","regular"]},"Stint Ultra Condensed":{"family":"Stint Ultra Condensed","category":"display","variants":["regular"]},"Stint Ultra Expanded":{"family":"Stint Ultra Expanded","category":"display","variants":["regular"]},"Stoke":{"family":"Stoke","category":"serif","variants":["300","regular"]},"Strait":{"family":"Strait","category":"sans-serif","variants":["regular"]},"Stylish":{"family":"Stylish","category":"sans-serif","variants":["regular"]},"Sue Ellen Francisco":{"family":"Sue Ellen Francisco","category":"handwriting","variants":["regular"]},"Suez One":{"family":"Suez One","category":"serif","variants":["regular"]},"Sumana":{"family":"Sumana","category":"serif","variants":["700","regular"]},"Sunflower":{"family":"Sunflower","category":"sans-serif","variants":["300","500","700"]},"Sunshiney":{"family":"Sunshiney","category":"handwriting","variants":["regular"]},"Supermercado One":{"family":"Supermercado One","category":"display","variants":["regular"]},"Sura":{"family":"Sura","category":"serif","variants":["700","regular"]},"Suranna":{"family":"Suranna","category":"serif","variants":["regular"]},"Suravaram":{"family":"Suravaram","category":"serif","variants":["regular"]},"Suwannaphum":{"family":"Suwannaphum","category":"display","variants":["regular"]},"Swanky and Moo Moo":{"family":"Swanky and Moo Moo","category":"handwriting","variants":["regular"]},"Syncopate":{"family":"Syncopate","category":"sans-serif","variants":["700","regular"]},"Tajawal":{"family":"Tajawal","category":"sans-serif","variants":["200","300","500","700","800","900","regular"]},"Tangerine":{"family":"Tangerine","category":"handwriting","variants":["700","regular"]},"Taprom":{"family":"Taprom","category":"display","variants":["regular"]},"Tauri":{"family":"Tauri","category":"sans-serif","variants":["regular"]},"Taviraj":{"family":"Taviraj","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Teko":{"family":"Teko","category":"sans-serif","variants":["300","500","600","700","regular"]},"Telex":{"family":"Telex","category":"sans-serif","variants":["regular"]},"Tenali Ramakrishna":{"family":"Tenali Ramakrishna","category":"sans-serif","variants":["regular"]},"Tenor Sans":{"family":"Tenor Sans","category":"sans-serif","variants":["regular"]},"Text Me One":{"family":"Text Me One","category":"sans-serif","variants":["regular"]},"Thasadith":{"family":"Thasadith","category":"sans-serif","variants":["700","700italic","italic","regular"]},"The Girl Next Door":{"family":"The Girl Next Door","category":"handwriting","variants":["regular"]},"Tienne":{"family":"Tienne","category":"serif","variants":["700","900","regular"]},"Tillana":{"family":"Tillana","category":"handwriting","variants":["500","600","700","800","regular"]},"Timmana":{"family":"Timmana","category":"sans-serif","variants":["regular"]},"Tinos":{"family":"Tinos","category":"serif","variants":["700","700italic","italic","regular"]},"Titan One":{"family":"Titan One","category":"display","variants":["regular"]},"Titillium Web":{"family":"Titillium Web","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","italic","regular"]},"Trade Winds":{"family":"Trade Winds","category":"display","variants":["regular"]},"Trirong":{"family":"Trirong","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Trocchi":{"family":"Trocchi","category":"serif","variants":["regular"]},"Trochut":{"family":"Trochut","category":"display","variants":["700","italic","regular"]},"Trykker":{"family":"Trykker","category":"serif","variants":["regular"]},"Tulpen One":{"family":"Tulpen One","category":"display","variants":["regular"]},"Ubuntu":{"family":"Ubuntu","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","italic","regular"]},"Ubuntu Condensed":{"family":"Ubuntu Condensed","category":"sans-serif","variants":["regular"]},"Ubuntu Mono":{"family":"Ubuntu Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Ultra":{"family":"Ultra","category":"serif","variants":["regular"]},"Uncial Antiqua":{"family":"Uncial Antiqua","category":"display","variants":["regular"]},"Underdog":{"family":"Underdog","category":"display","variants":["regular"]},"Unica One":{"family":"Unica One","category":"display","variants":["regular"]},"UnifrakturCook":{"family":"UnifrakturCook","category":"display","variants":["700"]},"UnifrakturMaguntia":{"family":"UnifrakturMaguntia","category":"display","variants":["regular"]},"Unkempt":{"family":"Unkempt","category":"display","variants":["700","regular"]},"Unlock":{"family":"Unlock","category":"display","variants":["regular"]},"Unna":{"family":"Unna","category":"serif","variants":["700","700italic","italic","regular"]},"VT323":{"family":"VT323","category":"monospace","variants":["regular"]},"Vampiro One":{"family":"Vampiro One","category":"display","variants":["regular"]},"Varela":{"family":"Varela","category":"sans-serif","variants":["regular"]},"Varela Round":{"family":"Varela Round","category":"sans-serif","variants":["regular"]},"Vast Shadow":{"family":"Vast Shadow","category":"display","variants":["regular"]},"Vesper Libre":{"family":"Vesper Libre","category":"serif","variants":["500","700","900","regular"]},"Vibur":{"family":"Vibur","category":"handwriting","variants":["regular"]},"Vidaloka":{"family":"Vidaloka","category":"serif","variants":["regular"]},"Viga":{"family":"Viga","category":"sans-serif","variants":["regular"]},"Voces":{"family":"Voces","category":"display","variants":["regular"]},"Volkhov":{"family":"Volkhov","category":"serif","variants":["700","700italic","italic","regular"]},"Vollkorn":{"family":"Vollkorn","category":"serif","variants":["600","600italic","700","700italic","900","900italic","italic","regular"]},"Vollkorn SC":{"family":"Vollkorn SC","category":"serif","variants":["600","700","900","regular"]},"Voltaire":{"family":"Voltaire","category":"sans-serif","variants":["regular"]},"Waiting for the Sunrise":{"family":"Waiting for the Sunrise","category":"handwriting","variants":["regular"]},"Wallpoet":{"family":"Wallpoet","category":"display","variants":["regular"]},"Walter Turncoat":{"family":"Walter Turncoat","category":"handwriting","variants":["regular"]},"Warnes":{"family":"Warnes","category":"display","variants":["regular"]},"Wellfleet":{"family":"Wellfleet","category":"display","variants":["regular"]},"Wendy One":{"family":"Wendy One","category":"sans-serif","variants":["regular"]},"Wire One":{"family":"Wire One","category":"sans-serif","variants":["regular"]},"Work Sans":{"family":"Work Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Yanone Kaffeesatz":{"family":"Yanone Kaffeesatz","category":"sans-serif","variants":["200","300","700","regular"]},"Yantramanav":{"family":"Yantramanav","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Yatra One":{"family":"Yatra One","category":"display","variants":["regular"]},"Yellowtail":{"family":"Yellowtail","category":"handwriting","variants":["regular"]},"Yeon Sung":{"family":"Yeon Sung","category":"display","variants":["regular"]},"Yeseva One":{"family":"Yeseva One","category":"display","variants":["regular"]},"Yesteryear":{"family":"Yesteryear","category":"handwriting","variants":["regular"]},"Yrsa":{"family":"Yrsa","category":"serif","variants":["300","500","600","700","regular"]},"ZCOOL KuaiLe":{"family":"ZCOOL KuaiLe","category":"display","variants":["regular"]},"ZCOOL QingKe HuangYou":{"family":"ZCOOL QingKe HuangYou","category":"display","variants":["regular"]},"ZCOOL XiaoWei":{"family":"ZCOOL XiaoWei","category":"serif","variants":["regular"]},"Zeyada":{"family":"Zeyada","category":"handwriting","variants":["regular"]},"Zilla Slab":{"family":"Zilla Slab","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Zilla Slab Highlight":{"family":"Zilla Slab Highlight","category":"display","variants":["700","regular"]}},"order":{"popularity":["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Oswald","Source Sans Pro","Raleway","PT Sans","Merriweather","Slabo 27px","Roboto Slab","Noto Sans","Poppins","Ubuntu","Open Sans Condensed","Roboto Mono","Playfair Display","PT Serif","Lora","Muli","Mukta","PT Sans Narrow","Titillium Web","Arimo","Nunito","Fira Sans","Nanum Gothic","Noto Serif","Work Sans","Dosis","Rubik","Quicksand","Inconsolata","Noto Sans KR","Hind","Crimson Text","Oxygen","Lobster","Libre Baskerville","Bitter","Libre Franklin","Indie Flower","Josefin Sans","Anton","Cabin","Fjalla One","Exo 2","Nunito Sans","Arvo","Encode Sans Condensed","Noto Sans JP","Hind Siliguri","Varela Round","Karla","Pacifico","Abel","Shadows Into Light","Yanone Kaffeesatz","Righteous","Dancing Script","Merriweather Sans","Source Serif Pro","Kanit","Abril Fatface","Exo","Bree Serif","Acme","Comfortaa","Asap","Ubuntu Condensed","Cairo","Amatic SC","Catamaran","Signika","EB Garamond","Questrial","Teko","Heebo","Archivo Narrow","Permanent Marker","Play","Noto Sans TC","Source Code Pro","Crete Round","Maven Pro","Hind Madurai","Cuprum","Gloria Hallelujah","Francois One","Fira Sans Condensed","PT Sans Caption","Rokkitt","Assistant","Alegreya","Domine","Patua One","Courgette","Rajdhani","Prompt","Cinzel","Vollkorn","Satisfy","Istok Web","Ropa Sans","Alegreya Sans","Old Standard TT","Special Elite","ABeeZee","Cantarell","Concert One","Gochi Hand","Amiri","Cardo","Kaushan Script","Barlow","Orbitron","Caveat","Great Vibes","Viga","Quattrocento Sans","Cookie","Tinos","Noticia Text","News Cycle","Hammersmith One","Arapey","Signika Negative","Cormorant Garamond","Barlow Condensed","Merienda","Poiret One","Alfa Slab One","Lobster Two","Pathway Gothic One","Fredoka One","Monda","Nanum Myeongjo","Russo One","Hind Guntur","Kalam","Tangerine","Archivo Black","BenchNine","Tenor Sans","Passion One","Chivo","Volkhov","Ultra","Playfair Display SC","Pontano Sans","Marck Script","Cabin Condensed","Sigmar One","Fira Sans Extra Condensed","Philosopher","Sacramento","Handlee","M PLUS 1p","Overpass","Josefin Slab","Monoton","Boogaloo","Gudea","Luckiest Guy","Didact Gothic","Quattrocento","IBM Plex Sans","Yantramanav","Khand","Changa","Sorts Mill Goudy","Armata","Martel","Bangers","Tajawal","Sawarabi Mincho","Zilla Slab","Ruda","Hind Vadodara","Neucha","Lalezar","El Messiri","Patrick Hand","Unica One","Pragati Narrow","Vidaloka","Do Hyeon","Neuton","Prata","Economica","Taviraj","Press Start 2P","Yrsa","Sanchez","Carter One","Hanalei Fill","Audiowide","Adamina","Advent Pro","Barlow Semi Condensed","Shrikhand","Alice","Paytone One","Architects Daughter","Enriqueta","Frank Ruhl Libre","Bad Script","Yellowtail","PT Serif Caption","Montserrat Alternates","Amaranth","Gentium Basic","PT Mono","Gentium Book Basic","Khula","Antic Slab","Prosto One","Shadows Into Light Two","Arbutus Slab","Glegoo","Sarala","Jura","Grand Hotel","Julius Sans One","Kreon","Playball","Scada","Oleo Script","Rock Salt","Covered By Your Grace","Ubuntu Mono","Damion","Pridi","Actor","Fugaz One","Karma","Sintony","Average","Alegreya Sans SC","Electrolize","Homemade Apple","Saira Extra Condensed","Marmelad","Michroma","Lusitana","Baloo","Mitr","Jaldi","Bungee","Allura","Parisienne","Oranienbaum","Nothing You Could Do","Allerta Stencil","Varela","Anaheim","Unna","Chewy","Forum","Happy Monkey","Reenie Beanie","Molengo","Cormorant","Sawarabi Gothic","Cantata One","Hanuman","Black Ops One","Archivo","Bevan","Saira","Ovo","Alex Brush","Nanum Gothic Coding","Coustard","Rochester","VT323","Pangolin","Scheherazade","Niconne","Spinnaker","Nobile","Rambla","Allerta","Pinyon Script","Fredericka the Great","Leckerli One","Quantico","Saira Semi Condensed","Nanum Pen Script","Syncopate","Reem Kufi","Rancho","Space Mono","Lustria","Rasa","Italianno","Cabin Sketch","Marcellus","Arsenal","Aldrich","Noto Sans SC","Mr Dafoe","IBM Plex Serif","Lilita One","Magra","Kameron","Caveat Brush","Coda","Alef","Overlock","Fauna One","Gothic A1","Itim","Palanquin","Biryani","Basic","Antic","Days One","Carrois Gothic","Squada One","Coming Soon","Radley","Changa One","Share","Slabo 13px","Contrail One","Bowlby One SC","Carme","Berkshire Swash","Cousine","Sue Ellen Francisco","Just Another Hand","Titan One","Bungee Inline","Yeseva One","Mukta Vaani","Caudex","Candal","Aclonica","Lateef","Abhaya Libre","Buenard","Spectral","IM Fell Double Pica","Martel Sans","GFS Didot","Rufina","Six Caps","Lekton","Voltaire","Eczar","Anonymous Pro","Wendy One","Racing Sans One","Limelight","Mada","Petit Formal Script","Share Tech Mono","Yesteryear","Kurale","Noto Serif JP","Oxygen Mono","Secular One","M PLUS Rounded 1c","Marcellus SC","Nanum Brush Script","Cinzel Decorative","Marvel","Alegreya SC","Saira Condensed","Aladin","Rosario","Arima Madurai","Metrophobic","Norican","Annie Use Your Telescope","Nixie One","Jockey One","Ceviche One","Maitree","Londrina Solid","Pattaya","Copse","Baloo Bhaina","Freckle Face","Markazi Text","Gruppo","Telex","Skranji","Encode Sans","Shojumaru","Raleway Dots","Goudy Bookletter 1911","Andada","Belleza","Schoolbell","Average Sans","Doppio One","Corben","Tauri","Calligraffitti","Homenaje","Mountains of Christmas","Love Ya Like A Sister","Bubblegum Sans","Puritan","Kelly Slab","Judson","Cutive","Bentham","Sumana","Life Savers","Allan","Mukta Malar","Herr Von Muellerhoff","Carrois Gothic SC","Gilda Display","Averia Libre","Asap Condensed","Balthazar","Duru Sans","Emilys Candy","Graduate","Kristi","Trirong","Cutive Mono","Halant","Faster One","Fira Mono","Palanquin Dark","The Girl Next Door","Delius","Capriola","Arizonia","Inder","Averia Serif Libre","Amethysta","Aref Ruqaa","Chelsea Market","Baloo Bhaijaan","Vesper Libre","Cambo","Trocchi","Mr De Haviland","Lemonada","Padauk","Cormorant SC","Mouse Memoirs","Amiko","Merienda One","Andika","Mate","Federo","Poly","Rammetto One","Rozha One","Pompiere","Cambay","Cormorant Upright","Oregano","Knewave","Rouge Script","Gabriela","Kadwa","Proza Libre","Sedgwick Ave","Laila","Battambang","Artifika","Seaweed Script","Qwigley","Bai Jamjuree","Gravitas One","Montez","Rye","Metamorphous","Give You Glory","Alike","Athiti","Short Stack","Uncial Antiqua","Clicker Script","Bowlby One","Cormorant Infant","Holtwood One SC","Quando","Prociono","Expletus Sans","Chonburi","Strait","Convergence","Sniglet","K2D","Fanwood Text","Iceland","Fondamento","Vast Shadow","Sarpanch","Denk One","Suranna","Lily Script One","Ranga","Sunflower","IM Fell English","Podkova","Crafty Girls","Elsie","Cedarville Cursive","Baumans","Wire One","Mako","Sofia","NTR","Mirza","Spicy Rice","Brawler","Harmattan","Crushed","Sriracha","Faustina","Patrick Hand SC","Gurajada","UnifrakturMaguntia","Walter Turncoat","IM Fell DW Pica","Over the Rainbow","Fontdiner Swanky","Bilbo Swash Caps","Belgrano","Imprima","Della Respira","Euphoria Script","Loved by the King","Tulpen One","Oleo Script Swash Caps","Frijole","Zeyada","Waiting for the Sunrise","Pavanam","Meddon","Megrim","Port Lligat Slab","Aguafina Script","Salsa","Ledger","La Belle Aurore","Just Me Again Down Here","Medula One","Niramit","Rubik Mono One","Ramabhadra","Cherry Swash","McLaren","Amita","Tienne","Baloo Paaji","Shanti","Delius Swash Caps","Dekko","Lemon","Suez One","Ruslan Display","Sansita","Gafata","Nosifer","Spirax","Montserrat Subrayada","Katibeh","Averia Sans Libre","Wallpoet","Dawning of a New Day","Mallanna","Share Tech","Nova Round","Stardos Stencil","Vampiro One","Orienta","Nova Square","Codystar","Finger Paint","Bellefair","Alike Angular","Coda Caption","IBM Plex Mono","Galada","Quintessential","Miriam Libre","Noto Serif KR","Unkempt","Atma","Fjord One","Milonga","Spectral SC","Voces","Nova Mono","Germania One","Habibi","IM Fell English SC","Bungee Shade","Headland One","Sail","Arya","Scope One","Black Han Sans","Encode Sans Semi Condensed","Yatra One","Londrina Outline","BioRhyme","Rakkas","Cantora One","Iceberg","Kosugi Maru","Kranky","Chicle","Mandali","Overpass Mono","Krona One","David Libre","Geo","Vibur","Engagement","Baloo Tamma","Slackey","Pirata One","Cherry Cream Soda","Baloo Chettan","Encode Sans Semi Expanded","Dynalight","Mate SC","Peralta","Nova Slim","Fenix","Sura","Amarante","Creepster","Khmer","Koulen","Cagliostro","Kite One","Numans","Rationale","Mrs Saint Delafield","Kotta One","League Script","Timmana","Condiment","Chela One","Antic Didone","Mukta Mahee","Dorsa","Poller One","Mystery Quest","Risque","Paprika","Farsan","Nova Flat","Chau Philomene One","Stoke","Baloo Bhai","Charm","IM Fell French Canon","Rosarivo","Simonetta","Sarina","Baloo Thambi","Asul","Odor Mean Chey","Englebert","Mogra","IBM Plex Sans Condensed","Angkor","Delius Unicase","Buda","Stint Ultra Expanded","Stalemate","Ribeye","Bubbler One","Text Me One","Maiden Orange","Petrona","Flamenco","Underdog","Coiny","Joti One","Kosugi","Stint Ultra Condensed","Encode Sans Expanded","Junge","Ruluko","Mali","Esteban","Content","Sirin Stencil","UnifrakturCook","Port Lligat Sans","Siemreap","Princess Sofia","Autour One","Trade Winds","Wellfleet","IM Fell French Canon SC","Inknut Antiqua","Sancreek","Trykker","Ranchers","Plaster","Lovers Quarrel","Swanky and Moo Moo","Eater","Sonsie One","Meera Inimai","Almendra","Bokor","Henny Penny","Eagle Lake","New Rocker","Overlock SC","Fresca","Averia Gruesa Libre","Diplomata SC","Linden Hill","Donegal One","Purple Purse","Italiana","Croissant One","Inika","Nokora","Manuale","Glass Antiqua","Elsie Swash Caps","Revalia","Galindo","Ramaraja","Julee","Molle","Ruge Boogie","Chango","Marko One","Rhodium Libre","Redressed","Gugi","Oldenburg","Fascinate Inline","Flavors","Mina","IM Fell Great Primer","Ravi Prakash","Offside","Akronim","Jua","Bilbo","Cormorant Unicase","Poor Story","Barrio","Chakra Petch","Sree Krushnadevaraya","Combo","Monofett","Snippet","Kavoon","MedievalSharp","Miltonian Tattoo","Ruthie","Jim Nightshade","Diplomata","Griffy","Asset","IM Fell DW Pica SC","Keania One","Kumar One","Monsieur La Doulaise","Smythe","Dr Sugiyama","Baloo Tammudu","Tillana","Rum Raisin","Lancelot","Irish Grover","Krub","Modak","Sahitya","Montaga","Mrs Sheppards","Bigshot One","Dangrek","Margarine","Kantumruy","Modern Antiqua","Caesar Dressing","Devonshire","Metal Mania","Gaegu","Jacques Francois Shadow","Galdeano","Noto Serif TC","Suwannaphum","Jomhuria","Bayon","Chathura","Gamja Flower","Meie Script","IM Fell Great Primer SC","Baloo Da","Atomic Age","Kavivanar","Sunshiney","Bahiana","Seymour One","Kirang Haerang","Asar","Ribeye Marrow","Miniver","Noto Serif SC","Moul","Felipa","Macondo","Vollkorn SC","Snowburst One","Ewert","Original Surfer","Zilla Slab Highlight","Song Myung","IM Fell Double Pica SC","Charmonman","Trochut","Kdam Thmor","Astloch","KoHo","Goblin One","Moulpali","Kenia","Nova Script","Staatliches","Arbutus","Piedra","Warnes","Libre Barcode 128","Romanesco","Almendra Display","Unlock","Nova Cut","Miss Fajardose","Bigelow Rules","Almendra SC","Suravaram","Miltonian","Jolly Lodger","Nova Oval","Bonbon","Smokum","Taprom","Freehand","Londrina Shadow","Tenali Ramakrishna","Bungee Outline","Passero One","Sedgwick Ave Display","Metal","Jacques Francois","Butterfly Kids","Lakki Reddy","GFS Neohellenic","Geostar Fill","Gorditas","Fascinate","Bungee Hairline","Sofadi One","Chenla","Aleo","East Sea Dokdo","Gidugu","Supermercado One","Sevillana","Kodchasan","Preahvihear","Stalinist One","Aubrey","Libre Barcode 39 Text","ZCOOL XiaoWei","Macondo Swash Caps","Geostar","Major Mono Display","Erica One","Federant","Peddana","Fruktur","Libre Barcode 39 Extended Text","Londrina Sketch","Butcherman","Mr Bedfort","Emblema One","Thasadith","Fasthand","Dokdo","Fahkwang","Stylish","Hanalei","Dhurjati","Sarabun","Libre Barcode 39 Extended","Cute Font","Kumar One Outline","Black And White Picture","Libre Barcode 39","Hi Melody","BioRhyme Expanded","Yeon Sung","Notable","Srisakdi","Libre Barcode 128 Text","ZCOOL QingKe HuangYou","ZCOOL KuaiLe","B612 Mono","B612"],"trending":["Charm","ZCOOL XiaoWei","Thasadith","Aleo","Sarabun","Major Mono Display","Staatliches","ZCOOL QingKe HuangYou","B612","ZCOOL KuaiLe","B612 Mono","Noto Serif SC","Viga","Noto Serif TC","Gochi Hand","Do Hyeon","Special Elite","Iceberg","Averia Libre","Tenor Sans","Chakra Petch","Anaheim","K2D","Padauk","Sirin Stencil","El Messiri","Risque","Suravaram","Kosugi","Happy Monkey","Kdam Thmor","Bai Jamjuree","Hammersmith One","Hanalei Fill","Merienda","Average","Arya","Istok Web","Sue Ellen Francisco","Euphoria Script","Ruge Boogie","Moulpali","Battambang","Biryani","Mountains of Christmas","Meera Inimai","Combo","Bokor","Lilita One","M PLUS Rounded 1c","Mukta Malar","Bungee","Libre Barcode 128","IM Fell French Canon SC","Della Respira","Lalezar","Sumana","Petrona","Uncial Antiqua","Underdog","Kadwa","Reem Kufi","Dr Sugiyama","Over the Rainbow","Grand Hotel","Sree Krushnadevaraya","Angkor","Mukta Vaani","Noto Sans KR","BioRhyme","Gamja Flower","Allerta Stencil","Keania One","Pavanam","Wendy One","Baloo Da","Signika Negative","Galada","Niramit","Courgette","Peralta","Iceland","Jaldi","Kosugi Maru","Pridi","Metamorphous","Sarpanch","Purple Purse","Siemreap","Chicle","Molle","Sail","Content","Encode Sans Condensed","Mitr","PT Serif Caption","Dokdo","Concert One","Righteous","Overpass Mono","Tajawal","Suwannaphum","Kantumruy","Nova Slim","Ramaraja","IM Fell Double Pica","Satisfy","Antic","Wellfleet","Oldenburg","Diplomata SC","Jacques Francois Shadow","Arsenal","Vesper Libre","Hind Guntur","Encode Sans","Sniglet","Charmonman","Sawarabi Mincho","Mirza","Caudex","M PLUS 1p","Atma","Crushed","Convergence","Noto Sans JP","Buda","Warnes","Karma","Holtwood One SC","Sawarabi Gothic","Pangolin","Noto Serif KR","Oranienbaum","Henny Penny","Ruslan Display","Changa","Overpass","Chenla","Amethysta","Gothic A1","Luckiest Guy","Amiri","Itim","Prosto One","Clicker Script","Ravi Prakash","Libre Barcode 39","Shadows Into Light","Denk One","Signika","Oxygen Mono","Sedgwick Ave Display","Lobster","Prociono","Raleway Dots","Electrolize","Fugaz One","Milonga","Prompt","Noto Serif JP","Baloo Bhaina","New Rocker","Orbitron","Cormorant","Kite One","Rammetto One","Press Start 2P","Six Caps","Bonbon","Leckerli One","Inika","Khmer","Trykker","UnifrakturCook","The Girl Next Door","Lily Script One","Pirata One","Tulpen One","Dancing Script","Rouge Script","Yeseva One","Cormorant Unicase","Katibeh","Lemonada","Nova Round","Barrio","Lateef","Rubik Mono One","Diplomata","Chela One","Martel","Athiti","Forum","Nanum Pen Script","Jomhuria","Domine","Ruda","Baloo Bhai","Cormorant Infant","Saira Extra Condensed","Spirax","Spectral SC","Seymour One","Mada","Encode Sans Semi Condensed","Kanit","Chelsea Market","Sofia","Barlow Semi Condensed","Podkova","Carter One","Amita","Nosifer","Encode Sans Semi Expanded","Libre Franklin","Sahitya","Buenard","Racing Sans One","Expletus Sans","Barlow Condensed","Rasa","Roboto","PT Sans Caption","Play","Fasthand","Emilys Candy","Michroma","Playball","Laila","Roboto Condensed","Nanum Myeongjo","Baloo Paaji","Life Savers","Shanti","Caveat","Artifika","Mate SC","Bellefair","Petit Formal Script","Heebo","Playfair Display SC","Arapey","Bigelow Rules","Barlow","PT Sans","Frijole","Autour One","Monofett","Alef","IBM Plex Sans","Kirang Haerang","Average Sans","Adamina","Amarante","Lancelot","Cookie","Mina","Hind Siliguri","Trochut","Fredericka the Great","Alice","Odor Mean Chey","Suranna","Changa One","Averia Sans Libre","Work Sans","Mandali","Exo 2","Patua One","Alegreya Sans SC","Oxygen","Varela Round","Actor","Nunito Sans","Marmelad","Yrsa","Pragati Narrow","Glass Antiqua","Russo One","Sunshiney","Mystery Quest","Nanum Brush Script","Macondo","Rokkitt","Sarala","Mogra","Nanum Gothic","Butterfly Kids","Syncopate","Roboto Mono","Philosopher","Hanuman","Marck Script","Cabin Condensed","Arimo","Noto Sans","Cairo","Mr De Haviland","Seaweed Script","BenchNine","Palanquin Dark","Tangerine","Codystar","Joti One","Arizonia","Just Me Again Down Here","Khula","Share","Fira Sans","Alegreya Sans","Abril Fatface","Fauna One","Jura","Passero One","Dosis","Khand","Pacifico","Assistant","Space Mono","PT Serif","Mouse Memoirs","Fira Sans Extra Condensed","Neucha","Dorsa","Balthazar","Piedra","Niconne","Limelight","Source Serif Pro","Fahkwang","Scada","Rhodium Libre","Junge","Monda","Timmana","Quicksand","Medula One","Alfa Slab One","Contrail One","GFS Didot","Hind Vadodara","Radley","Italiana","Patrick Hand SC","Cagliostro","Josefin Sans","Caesar Dressing","Baloo Bhaijaan","Hind","Baloo","Yellowtail","Herr Von Muellerhoff","Coiny","Candal","Merriweather","Bree Serif","Rye","Miltonian","Lobster Two","Trocchi","Brawler","Damion","Lusitana","Ubuntu Mono","Libre Barcode 39 Text","Gruppo","Poiret One","Advent Pro","Bentham","Hind Madurai","Mukta","Berkshire Swash","Cinzel Decorative","Cuprum","Gugi","Poppins","Koulen","Devonshire","Redressed","Slabo 13px","Ubuntu Condensed","Marko One","League Script","Roboto Slab","Ruthie","Original Surfer","Bahiana","Mukta Mahee","Share Tech Mono","Kaushan Script","Yesteryear","Carrois Gothic SC","Oswald","Boogaloo","Kurale","Oleo Script Swash Caps","Carrois Gothic","Lovers Quarrel","Bayon","Maitree","Playfair Display","Voltaire","Gabriela","Margarine","Saira","Rosarivo","Germania One","Merriweather Sans","Kavivanar","Source Sans Pro","Princess Sofia","Trirong","Metrophobic","EB Garamond","Gilda Display","Nova Script","Unica One","Belleza","Moul","IM Fell Great Primer SC","Rakkas","Handlee","Nunito","Miss Fajardose","Paprika","Notable","Chango","Nova Flat","Yanone Kaffeesatz","Shojumaru","Abel","Black Ops One","Mallanna","Permanent Marker","Taviraj","Kranky","Open Sans","Francois One","Nova Cut","Quattrocento Sans","Quintessential","La Belle Aurore","Tinos","Merienda One","Vollkorn SC","Chonburi","Muli","Romanesco","Covered By Your Grace","Quando","Spinnaker","Anton","Great Vibes","Cutive Mono","IM Fell French Canon","Sevillana","Slackey","Quantico","Meie Script","Palanquin","Hanalei","Amaranth","Salsa","Kodchasan","Basic","Asul","Open Sans Condensed","Bad Script","Allura","Ribeye","Amatic SC","Tillana","Lato","Bilbo Swash Caps","Finger Paint","Teko","Noticia Text","Exo","Crete Round","Alike Angular","Linden Hill","Julius Sans One","Mrs Saint Delafield","IBM Plex Sans Condensed","Scheherazade","Waiting for the Sunrise","Annie Use Your Telescope","Calligraffitti","Oleo Script","Sarina","Arbutus","Cherry Cream Soda","Ultra","ABeeZee","Arbutus Slab","Federo","Old Standard TT","Schoolbell","Antic Slab","Vollkorn","Nova Oval","Overlock","Italianno","Rum Raisin","Metal","Catamaran","Fenix","Kenia","Sigmar One","Share Tech","Faustina","Jim Nightshade","Noto Serif","Alex Brush","Homenaje","Lekton","Monoton","Libre Baskerville","Imprima","Sacramento","Cardo","Aguafina Script","Scope One","Nothing You Could Do","Mr Dafoe","Ropa Sans","PT Sans Narrow","Delius Swash Caps","Prata","Noto Sans TC","Corben","Fira Sans Condensed","Montaga","Krub","Lora","Sorts Mill Goudy","IM Fell Double Pica SC","Wire One","Mako","Alegreya SC","Bubblegum Sans","Alegreya","Ubuntu","Preahvihear","Inder","Pontano Sans","Modern Antiqua","Miltonian Tattoo","Qwigley","Nova Square","Baloo Tammudu","Bangers","Montserrat Subrayada","Squada One","Love Ya Like A Sister","Martel Sans","Sancreek","Averia Serif Libre","Cantata One","Crafty Girls","Allerta","Puritan","Faster One","Cantarell","Nixie One","Trade Winds","Armata","Montserrat","Eagle Lake","Carme","Londrina Solid","Acme","Delius Unicase","Baloo Thambi","Fondamento","NTR","Zeyada","Mate","Kumar One","Bitter","Marvel","Croissant One","Alike","Engagement","Dawning of a New Day","Rancho","Harmattan","Comfortaa","Bigshot One","Antic Didone","Kristi","Ramabhadra","Indie Flower","Marcellus","Kalam","Poly","IM Fell English SC","Port Lligat Slab","Bevan","Baumans","Pathway Gothic One","Loved by the King","Pinyon Script","Swanky and Moo Moo","Enriqueta","Aref Ruqaa","Neuton","Reenie Beanie","Cherry Swash","Fira Mono","Saira Condensed","Archivo","Capriola","Sedgwick Ave","Kreon","Julee","Lustria","Dekko","Fjord One","Cinzel","Simonetta","Dynalight","Fjalla One","Walter Turncoat","Flamenco","Give You Glory","Rajdhani","Days One","Ribeye Marrow","Asap","Metal Mania","Akronim","Crimson Text","Rufina","Bungee Shade","Felipa","Tauri","Emblema One","Allan","Karla","Monsieur La Doulaise","Donegal One","Questrial","Magra","Duru Sans","Chewy","Revalia","Asar","Cormorant Upright","Elsie Swash Caps","Jockey One","Rosario","Bungee Hairline","Rationale","Fontdiner Swanky","Just Another Hand","Ledger","Orienta","Taprom","Zilla Slab","Cousine","Vast Shadow","Kelly Slab","Supermercado One","Skranji","IBM Plex Serif","Bungee Inline","Habibi","Kotta One","Griffy","Londrina Sketch","Farsan","Anonymous Pro","Stalemate","Passion One","Graduate","Montserrat Alternates","Vampiro One","Sansita","Audiowide","Fresca","Cabin","Song Myung","Titillium Web","Offside","Chivo","Maven Pro","Suez One","Stint Ultra Condensed","Raleway","PT Mono","Condiment","Galindo","Judson","Tienne","Paytone One","Esteban","Overlock SC","Fanwood Text","Nobile","Cormorant Garamond","Rozha One","Manuale","Andada","Baloo Chettan","IM Fell English","Didact Gothic","Proza Libre","Coda","McLaren","Zilla Slab Highlight","Srisakdi","Chathura","Sofadi One","Flavors","Nanum Gothic Coding","Astloch","Tenali Ramakrishna","News Cycle","Asset","Almendra","Homemade Apple","Kameron","Ruluko","Archivo Narrow","Cormorant SC","Architects Daughter","Quattrocento","Belgrano","Abhaya Libre","Snowburst One","VT323","Snippet","Cutive","Gentium Basic","Gudea","Geostar Fill","IM Fell DW Pica SC","Almendra SC","Inconsolata","Gentium Book Basic","Goblin One","Shadows Into Light Two","Ceviche One","Marcellus SC","Plaster","Bowlby One","UnifrakturMaguntia","Mr Bedfort","Spectral","Freckle Face","Dhurjati","Rubik","Meddon","Arvo","Ewert","Volkhov","Libre Barcode 39 Extended Text","Gorditas","Glegoo","Stylish","Goudy Bookletter 1911","Stint Ultra Expanded","Strait","Norican","Rochester","Bilbo","Sriracha","Archivo Black","Irish Grover","Fascinate","Vibur","Numans","Fredoka One","Almendra Display","Londrina Outline","Gidugu","Ranga","Aclonica","Rock Salt","Cantora One","Black Han Sans","Stoke","David Libre","Creepster","Headland One","Dangrek","Nokora","Unna","BioRhyme Expanded","Sura","Delius","Galdeano","Gurajada","Geostar","Oregano","Peddana","Smokum","Molengo","Noto Sans SC","Geo","Jacques Francois","Coming Soon","Gloria Hallelujah","Pompiere","Stardos Stencil","Megrim","Bungee Outline","Erica One","Sintony","Andika","Cambay","Encode Sans Expanded","Vidaloka","Coustard","Montez","Unkempt","Lakki Reddy","Rambla","Copse","Slabo 27px","Bowlby One SC","Wallpoet","GFS Neohellenic","Macondo Swash Caps","Nova Mono","Voces","Sanchez","Londrina Shadow","Lemon","Economica","MedievalSharp","Kavoon","Freehand","Ovo","Aubrey","Telex","Shrikhand","Eczar","Short Stack","Modak","Source Code Pro","Saira Semi Condensed","Parisienne","Doppio One","Averia Gruesa Libre","Atomic Age","Arima Madurai","Port Lligat Sans","Sonsie One","Mali","Varela","Pattaya","Stalinist One","Mrs Sheppards","Englebert","Aladin","Maiden Orange","Josefin Slab","Poller One","Yantramanav","Smythe","Frank Ruhl Libre","IM Fell Great Primer","Amiko","Ranchers","Bubbler One","Gravitas One","Fascinate Inline","Federant","Asap Condensed","Fruktur","Gafata","Titan One","Cute Font","Aldrich","Butcherman","Libre Barcode 128 Text","Gaegu","Chau Philomene One","Baloo Tamma","Libre Barcode 39 Extended","Cambo","Inknut Antiqua","Jolly Lodger","Krona One","Yeon Sung","IM Fell DW Pica","Caveat Brush","IBM Plex Mono","Markazi Text","Poor Story","KoHo","Cabin Sketch","Halant","Unlock","Eater","Spicy Rice","East Sea Dokdo","Cedarville Cursive","Elsie","Jua","Miriam Libre","Miniver","Yatra One","Sunflower","Hi Melody","Secular One","Patrick Hand","Knewave","Text Me One","Coda Caption","Kumar One Outline","Black And White Picture"]}}
|
1 |
+
{"items":{"ABeeZee":{"family":"ABeeZee","category":"sans-serif","variants":["italic","regular"]},"Abel":{"family":"Abel","category":"sans-serif","variants":["regular"]},"Abhaya Libre":{"family":"Abhaya Libre","category":"serif","variants":["500","600","700","800","regular"]},"Abril Fatface":{"family":"Abril Fatface","category":"display","variants":["regular"]},"Aclonica":{"family":"Aclonica","category":"sans-serif","variants":["regular"]},"Acme":{"family":"Acme","category":"sans-serif","variants":["regular"]},"Actor":{"family":"Actor","category":"sans-serif","variants":["regular"]},"Adamina":{"family":"Adamina","category":"serif","variants":["regular"]},"Advent Pro":{"family":"Advent Pro","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Aguafina Script":{"family":"Aguafina Script","category":"handwriting","variants":["regular"]},"Akronim":{"family":"Akronim","category":"display","variants":["regular"]},"Aladin":{"family":"Aladin","category":"handwriting","variants":["regular"]},"Aldrich":{"family":"Aldrich","category":"sans-serif","variants":["regular"]},"Alef":{"family":"Alef","category":"sans-serif","variants":["700","regular"]},"Alegreya":{"family":"Alegreya","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya SC":{"family":"Alegreya SC","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans":{"family":"Alegreya Sans","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans SC":{"family":"Alegreya Sans SC","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Aleo":{"family":"Aleo","category":"serif","variants":["300","300italic","700","700italic","italic","regular"]},"Alex Brush":{"family":"Alex Brush","category":"handwriting","variants":["regular"]},"Alfa Slab One":{"family":"Alfa Slab One","category":"display","variants":["regular"]},"Alice":{"family":"Alice","category":"serif","variants":["regular"]},"Alike":{"family":"Alike","category":"serif","variants":["regular"]},"Alike Angular":{"family":"Alike Angular","category":"serif","variants":["regular"]},"Allan":{"family":"Allan","category":"display","variants":["700","regular"]},"Allerta":{"family":"Allerta","category":"sans-serif","variants":["regular"]},"Allerta Stencil":{"family":"Allerta Stencil","category":"sans-serif","variants":["regular"]},"Allura":{"family":"Allura","category":"handwriting","variants":["regular"]},"Almendra":{"family":"Almendra","category":"serif","variants":["700","700italic","italic","regular"]},"Almendra Display":{"family":"Almendra Display","category":"display","variants":["regular"]},"Almendra SC":{"family":"Almendra SC","category":"serif","variants":["regular"]},"Amarante":{"family":"Amarante","category":"display","variants":["regular"]},"Amaranth":{"family":"Amaranth","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Amatic SC":{"family":"Amatic SC","category":"handwriting","variants":["700","regular"]},"Amethysta":{"family":"Amethysta","category":"serif","variants":["regular"]},"Amiko":{"family":"Amiko","category":"sans-serif","variants":["600","700","regular"]},"Amiri":{"family":"Amiri","category":"serif","variants":["700","700italic","italic","regular"]},"Amita":{"family":"Amita","category":"handwriting","variants":["700","regular"]},"Anaheim":{"family":"Anaheim","category":"sans-serif","variants":["regular"]},"Andada":{"family":"Andada","category":"serif","variants":["regular"]},"Andika":{"family":"Andika","category":"sans-serif","variants":["regular"]},"Angkor":{"family":"Angkor","category":"display","variants":["regular"]},"Annie Use Your Telescope":{"family":"Annie Use Your Telescope","category":"handwriting","variants":["regular"]},"Anonymous Pro":{"family":"Anonymous Pro","category":"monospace","variants":["700","700italic","italic","regular"]},"Antic":{"family":"Antic","category":"sans-serif","variants":["regular"]},"Antic Didone":{"family":"Antic Didone","category":"serif","variants":["regular"]},"Antic Slab":{"family":"Antic Slab","category":"serif","variants":["regular"]},"Anton":{"family":"Anton","category":"sans-serif","variants":["regular"]},"Arapey":{"family":"Arapey","category":"serif","variants":["italic","regular"]},"Arbutus":{"family":"Arbutus","category":"display","variants":["regular"]},"Arbutus Slab":{"family":"Arbutus Slab","category":"serif","variants":["regular"]},"Architects Daughter":{"family":"Architects Daughter","category":"handwriting","variants":["regular"]},"Archivo":{"family":"Archivo","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Archivo Black":{"family":"Archivo Black","category":"sans-serif","variants":["regular"]},"Archivo Narrow":{"family":"Archivo Narrow","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Aref Ruqaa":{"family":"Aref Ruqaa","category":"serif","variants":["700","regular"]},"Arima Madurai":{"family":"Arima Madurai","category":"display","variants":["100","200","300","500","700","800","900","regular"]},"Arimo":{"family":"Arimo","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Arizonia":{"family":"Arizonia","category":"handwriting","variants":["regular"]},"Armata":{"family":"Armata","category":"sans-serif","variants":["regular"]},"Arsenal":{"family":"Arsenal","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Artifika":{"family":"Artifika","category":"serif","variants":["regular"]},"Arvo":{"family":"Arvo","category":"serif","variants":["700","700italic","italic","regular"]},"Arya":{"family":"Arya","category":"sans-serif","variants":["700","regular"]},"Asap":{"family":"Asap","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asap Condensed":{"family":"Asap Condensed","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asar":{"family":"Asar","category":"serif","variants":["regular"]},"Asset":{"family":"Asset","category":"display","variants":["regular"]},"Assistant":{"family":"Assistant","category":"sans-serif","variants":["200","300","600","700","800","regular"]},"Astloch":{"family":"Astloch","category":"display","variants":["700","regular"]},"Asul":{"family":"Asul","category":"sans-serif","variants":["700","regular"]},"Athiti":{"family":"Athiti","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Atma":{"family":"Atma","category":"display","variants":["300","500","600","700","regular"]},"Atomic Age":{"family":"Atomic Age","category":"display","variants":["regular"]},"Aubrey":{"family":"Aubrey","category":"display","variants":["regular"]},"Audiowide":{"family":"Audiowide","category":"display","variants":["regular"]},"Autour One":{"family":"Autour One","category":"display","variants":["regular"]},"Average":{"family":"Average","category":"serif","variants":["regular"]},"Average Sans":{"family":"Average Sans","category":"sans-serif","variants":["regular"]},"Averia Gruesa Libre":{"family":"Averia Gruesa Libre","category":"display","variants":["regular"]},"Averia Libre":{"family":"Averia Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Sans Libre":{"family":"Averia Sans Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Serif Libre":{"family":"Averia Serif Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"B612":{"family":"B612","category":"sans-serif","variants":["700","700italic","italic","regular"]},"B612 Mono":{"family":"B612 Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Bad Script":{"family":"Bad Script","category":"handwriting","variants":["regular"]},"Bahiana":{"family":"Bahiana","category":"display","variants":["regular"]},"Bai Jamjuree":{"family":"Bai Jamjuree","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Baloo":{"family":"Baloo","category":"display","variants":["regular"]},"Baloo Bhai":{"family":"Baloo Bhai","category":"display","variants":["regular"]},"Baloo Bhaijaan":{"family":"Baloo Bhaijaan","category":"display","variants":["regular"]},"Baloo Bhaina":{"family":"Baloo Bhaina","category":"display","variants":["regular"]},"Baloo Chettan":{"family":"Baloo Chettan","category":"display","variants":["regular"]},"Baloo Da":{"family":"Baloo Da","category":"display","variants":["regular"]},"Baloo Paaji":{"family":"Baloo Paaji","category":"display","variants":["regular"]},"Baloo Tamma":{"family":"Baloo Tamma","category":"display","variants":["regular"]},"Baloo Tammudu":{"family":"Baloo Tammudu","category":"display","variants":["regular"]},"Baloo Thambi":{"family":"Baloo Thambi","category":"display","variants":["regular"]},"Balthazar":{"family":"Balthazar","category":"serif","variants":["regular"]},"Bangers":{"family":"Bangers","category":"display","variants":["regular"]},"Barlow":{"family":"Barlow","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Condensed":{"family":"Barlow Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Semi Condensed":{"family":"Barlow Semi Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barrio":{"family":"Barrio","category":"display","variants":["regular"]},"Basic":{"family":"Basic","category":"sans-serif","variants":["regular"]},"Battambang":{"family":"Battambang","category":"display","variants":["700","regular"]},"Baumans":{"family":"Baumans","category":"display","variants":["regular"]},"Bayon":{"family":"Bayon","category":"display","variants":["regular"]},"Belgrano":{"family":"Belgrano","category":"serif","variants":["regular"]},"Bellefair":{"family":"Bellefair","category":"serif","variants":["regular"]},"Belleza":{"family":"Belleza","category":"sans-serif","variants":["regular"]},"BenchNine":{"family":"BenchNine","category":"sans-serif","variants":["300","700","regular"]},"Bentham":{"family":"Bentham","category":"serif","variants":["regular"]},"Berkshire Swash":{"family":"Berkshire Swash","category":"handwriting","variants":["regular"]},"Bevan":{"family":"Bevan","category":"display","variants":["regular"]},"Bigelow Rules":{"family":"Bigelow Rules","category":"display","variants":["regular"]},"Bigshot One":{"family":"Bigshot One","category":"display","variants":["regular"]},"Bilbo":{"family":"Bilbo","category":"handwriting","variants":["regular"]},"Bilbo Swash Caps":{"family":"Bilbo Swash Caps","category":"handwriting","variants":["regular"]},"BioRhyme":{"family":"BioRhyme","category":"serif","variants":["200","300","700","800","regular"]},"BioRhyme Expanded":{"family":"BioRhyme Expanded","category":"serif","variants":["200","300","700","800","regular"]},"Biryani":{"family":"Biryani","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Bitter":{"family":"Bitter","category":"serif","variants":["700","italic","regular"]},"Black And White Picture":{"family":"Black And White Picture","category":"sans-serif","variants":["regular"]},"Black Han Sans":{"family":"Black Han Sans","category":"sans-serif","variants":["regular"]},"Black Ops One":{"family":"Black Ops One","category":"display","variants":["regular"]},"Bokor":{"family":"Bokor","category":"display","variants":["regular"]},"Bonbon":{"family":"Bonbon","category":"handwriting","variants":["regular"]},"Boogaloo":{"family":"Boogaloo","category":"display","variants":["regular"]},"Bowlby One":{"family":"Bowlby One","category":"display","variants":["regular"]},"Bowlby One SC":{"family":"Bowlby One SC","category":"display","variants":["regular"]},"Brawler":{"family":"Brawler","category":"serif","variants":["regular"]},"Bree Serif":{"family":"Bree Serif","category":"serif","variants":["regular"]},"Bubblegum Sans":{"family":"Bubblegum Sans","category":"display","variants":["regular"]},"Bubbler One":{"family":"Bubbler One","category":"sans-serif","variants":["regular"]},"Buda":{"family":"Buda","category":"display","variants":["300"]},"Buenard":{"family":"Buenard","category":"serif","variants":["700","regular"]},"Bungee":{"family":"Bungee","category":"display","variants":["regular"]},"Bungee Hairline":{"family":"Bungee Hairline","category":"display","variants":["regular"]},"Bungee Inline":{"family":"Bungee Inline","category":"display","variants":["regular"]},"Bungee Outline":{"family":"Bungee Outline","category":"display","variants":["regular"]},"Bungee Shade":{"family":"Bungee Shade","category":"display","variants":["regular"]},"Butcherman":{"family":"Butcherman","category":"display","variants":["regular"]},"Butterfly Kids":{"family":"Butterfly Kids","category":"handwriting","variants":["regular"]},"Cabin":{"family":"Cabin","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Cabin Condensed":{"family":"Cabin Condensed","category":"sans-serif","variants":["500","600","700","regular"]},"Cabin Sketch":{"family":"Cabin Sketch","category":"display","variants":["700","regular"]},"Caesar Dressing":{"family":"Caesar Dressing","category":"display","variants":["regular"]},"Cagliostro":{"family":"Cagliostro","category":"sans-serif","variants":["regular"]},"Cairo":{"family":"Cairo","category":"sans-serif","variants":["200","300","600","700","900","regular"]},"Calligraffitti":{"family":"Calligraffitti","category":"handwriting","variants":["regular"]},"Cambay":{"family":"Cambay","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cambo":{"family":"Cambo","category":"serif","variants":["regular"]},"Candal":{"family":"Candal","category":"sans-serif","variants":["regular"]},"Cantarell":{"family":"Cantarell","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cantata One":{"family":"Cantata One","category":"serif","variants":["regular"]},"Cantora One":{"family":"Cantora One","category":"sans-serif","variants":["regular"]},"Capriola":{"family":"Capriola","category":"sans-serif","variants":["regular"]},"Cardo":{"family":"Cardo","category":"serif","variants":["700","italic","regular"]},"Carme":{"family":"Carme","category":"sans-serif","variants":["regular"]},"Carrois Gothic":{"family":"Carrois Gothic","category":"sans-serif","variants":["regular"]},"Carrois Gothic SC":{"family":"Carrois Gothic SC","category":"sans-serif","variants":["regular"]},"Carter One":{"family":"Carter One","category":"display","variants":["regular"]},"Catamaran":{"family":"Catamaran","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Caudex":{"family":"Caudex","category":"serif","variants":["700","700italic","italic","regular"]},"Caveat":{"family":"Caveat","category":"handwriting","variants":["700","regular"]},"Caveat Brush":{"family":"Caveat Brush","category":"handwriting","variants":["regular"]},"Cedarville Cursive":{"family":"Cedarville Cursive","category":"handwriting","variants":["regular"]},"Ceviche One":{"family":"Ceviche One","category":"display","variants":["regular"]},"Chakra Petch":{"family":"Chakra Petch","category":"sans-serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Changa":{"family":"Changa","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Changa One":{"family":"Changa One","category":"display","variants":["italic","regular"]},"Chango":{"family":"Chango","category":"display","variants":["regular"]},"Charm":{"family":"Charm","category":"handwriting","variants":["700","regular"]},"Charmonman":{"family":"Charmonman","category":"handwriting","variants":["700","regular"]},"Chathura":{"family":"Chathura","category":"sans-serif","variants":["100","300","700","800","regular"]},"Chau Philomene One":{"family":"Chau Philomene One","category":"sans-serif","variants":["italic","regular"]},"Chela One":{"family":"Chela One","category":"display","variants":["regular"]},"Chelsea Market":{"family":"Chelsea Market","category":"display","variants":["regular"]},"Chenla":{"family":"Chenla","category":"display","variants":["regular"]},"Cherry Cream Soda":{"family":"Cherry Cream Soda","category":"display","variants":["regular"]},"Cherry Swash":{"family":"Cherry Swash","category":"display","variants":["700","regular"]},"Chewy":{"family":"Chewy","category":"display","variants":["regular"]},"Chicle":{"family":"Chicle","category":"display","variants":["regular"]},"Chivo":{"family":"Chivo","category":"sans-serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Chonburi":{"family":"Chonburi","category":"display","variants":["regular"]},"Cinzel":{"family":"Cinzel","category":"serif","variants":["700","900","regular"]},"Cinzel Decorative":{"family":"Cinzel Decorative","category":"display","variants":["700","900","regular"]},"Clicker Script":{"family":"Clicker Script","category":"handwriting","variants":["regular"]},"Coda":{"family":"Coda","category":"display","variants":["800","regular"]},"Coda Caption":{"family":"Coda Caption","category":"sans-serif","variants":["800"]},"Codystar":{"family":"Codystar","category":"display","variants":["300","regular"]},"Coiny":{"family":"Coiny","category":"display","variants":["regular"]},"Combo":{"family":"Combo","category":"display","variants":["regular"]},"Comfortaa":{"family":"Comfortaa","category":"display","variants":["300","700","regular"]},"Coming Soon":{"family":"Coming Soon","category":"handwriting","variants":["regular"]},"Concert One":{"family":"Concert One","category":"display","variants":["regular"]},"Condiment":{"family":"Condiment","category":"handwriting","variants":["regular"]},"Content":{"family":"Content","category":"display","variants":["700","regular"]},"Contrail One":{"family":"Contrail One","category":"display","variants":["regular"]},"Convergence":{"family":"Convergence","category":"sans-serif","variants":["regular"]},"Cookie":{"family":"Cookie","category":"handwriting","variants":["regular"]},"Copse":{"family":"Copse","category":"serif","variants":["regular"]},"Corben":{"family":"Corben","category":"display","variants":["700","regular"]},"Cormorant":{"family":"Cormorant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Garamond":{"family":"Cormorant Garamond","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Infant":{"family":"Cormorant Infant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant SC":{"family":"Cormorant SC","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Unicase":{"family":"Cormorant Unicase","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Upright":{"family":"Cormorant Upright","category":"serif","variants":["300","500","600","700","regular"]},"Courgette":{"family":"Courgette","category":"handwriting","variants":["regular"]},"Cousine":{"family":"Cousine","category":"monospace","variants":["700","700italic","italic","regular"]},"Coustard":{"family":"Coustard","category":"serif","variants":["900","regular"]},"Covered By Your Grace":{"family":"Covered By Your Grace","category":"handwriting","variants":["regular"]},"Crafty Girls":{"family":"Crafty Girls","category":"handwriting","variants":["regular"]},"Creepster":{"family":"Creepster","category":"display","variants":["regular"]},"Crete Round":{"family":"Crete Round","category":"serif","variants":["italic","regular"]},"Crimson Text":{"family":"Crimson Text","category":"serif","variants":["600","600italic","700","700italic","italic","regular"]},"Croissant One":{"family":"Croissant One","category":"display","variants":["regular"]},"Crushed":{"family":"Crushed","category":"display","variants":["regular"]},"Cuprum":{"family":"Cuprum","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cute Font":{"family":"Cute Font","category":"display","variants":["regular"]},"Cutive":{"family":"Cutive","category":"serif","variants":["regular"]},"Cutive Mono":{"family":"Cutive Mono","category":"monospace","variants":["regular"]},"Damion":{"family":"Damion","category":"handwriting","variants":["regular"]},"Dancing Script":{"family":"Dancing Script","category":"handwriting","variants":["700","regular"]},"Dangrek":{"family":"Dangrek","category":"display","variants":["regular"]},"David Libre":{"family":"David Libre","category":"serif","variants":["500","700","regular"]},"Dawning of a New Day":{"family":"Dawning of a New Day","category":"handwriting","variants":["regular"]},"Days One":{"family":"Days One","category":"sans-serif","variants":["regular"]},"Dekko":{"family":"Dekko","category":"handwriting","variants":["regular"]},"Delius":{"family":"Delius","category":"handwriting","variants":["regular"]},"Delius Swash Caps":{"family":"Delius Swash Caps","category":"handwriting","variants":["regular"]},"Delius Unicase":{"family":"Delius Unicase","category":"handwriting","variants":["700","regular"]},"Della Respira":{"family":"Della Respira","category":"serif","variants":["regular"]},"Denk One":{"family":"Denk One","category":"sans-serif","variants":["regular"]},"Devonshire":{"family":"Devonshire","category":"handwriting","variants":["regular"]},"Dhurjati":{"family":"Dhurjati","category":"sans-serif","variants":["regular"]},"Didact Gothic":{"family":"Didact Gothic","category":"sans-serif","variants":["regular"]},"Diplomata":{"family":"Diplomata","category":"display","variants":["regular"]},"Diplomata SC":{"family":"Diplomata SC","category":"display","variants":["regular"]},"Do Hyeon":{"family":"Do Hyeon","category":"sans-serif","variants":["regular"]},"Dokdo":{"family":"Dokdo","category":"handwriting","variants":["regular"]},"Domine":{"family":"Domine","category":"serif","variants":["700","regular"]},"Donegal One":{"family":"Donegal One","category":"serif","variants":["regular"]},"Doppio One":{"family":"Doppio One","category":"sans-serif","variants":["regular"]},"Dorsa":{"family":"Dorsa","category":"sans-serif","variants":["regular"]},"Dosis":{"family":"Dosis","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Dr Sugiyama":{"family":"Dr Sugiyama","category":"handwriting","variants":["regular"]},"Duru Sans":{"family":"Duru Sans","category":"sans-serif","variants":["regular"]},"Dynalight":{"family":"Dynalight","category":"display","variants":["regular"]},"EB Garamond":{"family":"EB Garamond","category":"serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Eagle Lake":{"family":"Eagle Lake","category":"handwriting","variants":["regular"]},"East Sea Dokdo":{"family":"East Sea Dokdo","category":"handwriting","variants":["regular"]},"Eater":{"family":"Eater","category":"display","variants":["regular"]},"Economica":{"family":"Economica","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Eczar":{"family":"Eczar","category":"serif","variants":["500","600","700","800","regular"]},"El Messiri":{"family":"El Messiri","category":"sans-serif","variants":["500","600","700","regular"]},"Electrolize":{"family":"Electrolize","category":"sans-serif","variants":["regular"]},"Elsie":{"family":"Elsie","category":"display","variants":["900","regular"]},"Elsie Swash Caps":{"family":"Elsie Swash Caps","category":"display","variants":["900","regular"]},"Emblema One":{"family":"Emblema One","category":"display","variants":["regular"]},"Emilys Candy":{"family":"Emilys Candy","category":"display","variants":["regular"]},"Encode Sans":{"family":"Encode Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Condensed":{"family":"Encode Sans Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Expanded":{"family":"Encode Sans Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Condensed":{"family":"Encode Sans Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Expanded":{"family":"Encode Sans Semi Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Engagement":{"family":"Engagement","category":"handwriting","variants":["regular"]},"Englebert":{"family":"Englebert","category":"sans-serif","variants":["regular"]},"Enriqueta":{"family":"Enriqueta","category":"serif","variants":["700","regular"]},"Erica One":{"family":"Erica One","category":"display","variants":["regular"]},"Esteban":{"family":"Esteban","category":"serif","variants":["regular"]},"Euphoria Script":{"family":"Euphoria Script","category":"handwriting","variants":["regular"]},"Ewert":{"family":"Ewert","category":"display","variants":["regular"]},"Exo":{"family":"Exo","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Exo 2":{"family":"Exo 2","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Expletus Sans":{"family":"Expletus Sans","category":"display","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Fahkwang":{"family":"Fahkwang","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Fanwood Text":{"family":"Fanwood Text","category":"serif","variants":["italic","regular"]},"Farsan":{"family":"Farsan","category":"display","variants":["regular"]},"Fascinate":{"family":"Fascinate","category":"display","variants":["regular"]},"Fascinate Inline":{"family":"Fascinate Inline","category":"display","variants":["regular"]},"Faster One":{"family":"Faster One","category":"display","variants":["regular"]},"Fasthand":{"family":"Fasthand","category":"serif","variants":["regular"]},"Fauna One":{"family":"Fauna One","category":"serif","variants":["regular"]},"Faustina":{"family":"Faustina","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Federant":{"family":"Federant","category":"display","variants":["regular"]},"Federo":{"family":"Federo","category":"sans-serif","variants":["regular"]},"Felipa":{"family":"Felipa","category":"handwriting","variants":["regular"]},"Fenix":{"family":"Fenix","category":"serif","variants":["regular"]},"Finger Paint":{"family":"Finger Paint","category":"display","variants":["regular"]},"Fira Mono":{"family":"Fira Mono","category":"monospace","variants":["500","700","regular"]},"Fira Sans":{"family":"Fira Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Condensed":{"family":"Fira Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Extra Condensed":{"family":"Fira Sans Extra Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fjalla One":{"family":"Fjalla One","category":"sans-serif","variants":["regular"]},"Fjord One":{"family":"Fjord One","category":"serif","variants":["regular"]},"Flamenco":{"family":"Flamenco","category":"display","variants":["300","regular"]},"Flavors":{"family":"Flavors","category":"display","variants":["regular"]},"Fondamento":{"family":"Fondamento","category":"handwriting","variants":["italic","regular"]},"Fontdiner Swanky":{"family":"Fontdiner Swanky","category":"display","variants":["regular"]},"Forum":{"family":"Forum","category":"display","variants":["regular"]},"Francois One":{"family":"Francois One","category":"sans-serif","variants":["regular"]},"Frank Ruhl Libre":{"family":"Frank Ruhl Libre","category":"serif","variants":["300","500","700","900","regular"]},"Freckle Face":{"family":"Freckle Face","category":"display","variants":["regular"]},"Fredericka the Great":{"family":"Fredericka the Great","category":"display","variants":["regular"]},"Fredoka One":{"family":"Fredoka One","category":"display","variants":["regular"]},"Freehand":{"family":"Freehand","category":"display","variants":["regular"]},"Fresca":{"family":"Fresca","category":"sans-serif","variants":["regular"]},"Frijole":{"family":"Frijole","category":"display","variants":["regular"]},"Fruktur":{"family":"Fruktur","category":"display","variants":["regular"]},"Fugaz One":{"family":"Fugaz One","category":"display","variants":["regular"]},"GFS Didot":{"family":"GFS Didot","category":"serif","variants":["regular"]},"GFS Neohellenic":{"family":"GFS Neohellenic","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Gabriela":{"family":"Gabriela","category":"serif","variants":["regular"]},"Gaegu":{"family":"Gaegu","category":"handwriting","variants":["300","700","regular"]},"Gafata":{"family":"Gafata","category":"sans-serif","variants":["regular"]},"Galada":{"family":"Galada","category":"display","variants":["regular"]},"Galdeano":{"family":"Galdeano","category":"sans-serif","variants":["regular"]},"Galindo":{"family":"Galindo","category":"display","variants":["regular"]},"Gamja Flower":{"family":"Gamja Flower","category":"handwriting","variants":["regular"]},"Gentium Basic":{"family":"Gentium Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Gentium Book Basic":{"family":"Gentium Book Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Geo":{"family":"Geo","category":"sans-serif","variants":["italic","regular"]},"Geostar":{"family":"Geostar","category":"display","variants":["regular"]},"Geostar Fill":{"family":"Geostar Fill","category":"display","variants":["regular"]},"Germania One":{"family":"Germania One","category":"display","variants":["regular"]},"Gidugu":{"family":"Gidugu","category":"sans-serif","variants":["regular"]},"Gilda Display":{"family":"Gilda Display","category":"serif","variants":["regular"]},"Give You Glory":{"family":"Give You Glory","category":"handwriting","variants":["regular"]},"Glass Antiqua":{"family":"Glass Antiqua","category":"display","variants":["regular"]},"Glegoo":{"family":"Glegoo","category":"serif","variants":["700","regular"]},"Gloria Hallelujah":{"family":"Gloria Hallelujah","category":"handwriting","variants":["regular"]},"Goblin One":{"family":"Goblin One","category":"display","variants":["regular"]},"Gochi Hand":{"family":"Gochi Hand","category":"handwriting","variants":["regular"]},"Gorditas":{"family":"Gorditas","category":"display","variants":["700","regular"]},"Gothic A1":{"family":"Gothic A1","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Goudy Bookletter 1911":{"family":"Goudy Bookletter 1911","category":"serif","variants":["regular"]},"Graduate":{"family":"Graduate","category":"display","variants":["regular"]},"Grand Hotel":{"family":"Grand Hotel","category":"handwriting","variants":["regular"]},"Gravitas One":{"family":"Gravitas One","category":"display","variants":["regular"]},"Great Vibes":{"family":"Great Vibes","category":"handwriting","variants":["regular"]},"Griffy":{"family":"Griffy","category":"display","variants":["regular"]},"Gruppo":{"family":"Gruppo","category":"display","variants":["regular"]},"Gudea":{"family":"Gudea","category":"sans-serif","variants":["700","italic","regular"]},"Gugi":{"family":"Gugi","category":"display","variants":["regular"]},"Gurajada":{"family":"Gurajada","category":"serif","variants":["regular"]},"Habibi":{"family":"Habibi","category":"serif","variants":["regular"]},"Halant":{"family":"Halant","category":"serif","variants":["300","500","600","700","regular"]},"Hammersmith One":{"family":"Hammersmith One","category":"sans-serif","variants":["regular"]},"Hanalei":{"family":"Hanalei","category":"display","variants":["regular"]},"Hanalei Fill":{"family":"Hanalei Fill","category":"display","variants":["regular"]},"Handlee":{"family":"Handlee","category":"handwriting","variants":["regular"]},"Hanuman":{"family":"Hanuman","category":"serif","variants":["700","regular"]},"Happy Monkey":{"family":"Happy Monkey","category":"display","variants":["regular"]},"Harmattan":{"family":"Harmattan","category":"sans-serif","variants":["regular"]},"Headland One":{"family":"Headland One","category":"serif","variants":["regular"]},"Heebo":{"family":"Heebo","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Henny Penny":{"family":"Henny Penny","category":"display","variants":["regular"]},"Herr Von Muellerhoff":{"family":"Herr Von Muellerhoff","category":"handwriting","variants":["regular"]},"Hi Melody":{"family":"Hi Melody","category":"handwriting","variants":["regular"]},"Hind":{"family":"Hind","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Guntur":{"family":"Hind Guntur","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Madurai":{"family":"Hind Madurai","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Siliguri":{"family":"Hind Siliguri","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Vadodara":{"family":"Hind Vadodara","category":"sans-serif","variants":["300","500","600","700","regular"]},"Holtwood One SC":{"family":"Holtwood One SC","category":"serif","variants":["regular"]},"Homemade Apple":{"family":"Homemade Apple","category":"handwriting","variants":["regular"]},"Homenaje":{"family":"Homenaje","category":"sans-serif","variants":["regular"]},"IBM Plex Mono":{"family":"IBM Plex Mono","category":"monospace","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans":{"family":"IBM Plex Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans Condensed":{"family":"IBM Plex Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Serif":{"family":"IBM Plex Serif","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IM Fell DW Pica":{"family":"IM Fell DW Pica","category":"serif","variants":["italic","regular"]},"IM Fell DW Pica SC":{"family":"IM Fell DW Pica SC","category":"serif","variants":["regular"]},"IM Fell Double Pica":{"family":"IM Fell Double Pica","category":"serif","variants":["italic","regular"]},"IM Fell Double Pica SC":{"family":"IM Fell Double Pica SC","category":"serif","variants":["regular"]},"IM Fell English":{"family":"IM Fell English","category":"serif","variants":["italic","regular"]},"IM Fell English SC":{"family":"IM Fell English SC","category":"serif","variants":["regular"]},"IM Fell French Canon":{"family":"IM Fell French Canon","category":"serif","variants":["italic","regular"]},"IM Fell French Canon SC":{"family":"IM Fell French Canon SC","category":"serif","variants":["regular"]},"IM Fell Great Primer":{"family":"IM Fell Great Primer","category":"serif","variants":["italic","regular"]},"IM Fell Great Primer SC":{"family":"IM Fell Great Primer SC","category":"serif","variants":["regular"]},"Iceberg":{"family":"Iceberg","category":"display","variants":["regular"]},"Iceland":{"family":"Iceland","category":"display","variants":["regular"]},"Imprima":{"family":"Imprima","category":"sans-serif","variants":["regular"]},"Inconsolata":{"family":"Inconsolata","category":"monospace","variants":["700","regular"]},"Inder":{"family":"Inder","category":"sans-serif","variants":["regular"]},"Indie Flower":{"family":"Indie Flower","category":"handwriting","variants":["regular"]},"Inika":{"family":"Inika","category":"serif","variants":["700","regular"]},"Inknut Antiqua":{"family":"Inknut Antiqua","category":"serif","variants":["300","500","600","700","800","900","regular"]},"Irish Grover":{"family":"Irish Grover","category":"display","variants":["regular"]},"Istok Web":{"family":"Istok Web","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Italiana":{"family":"Italiana","category":"serif","variants":["regular"]},"Italianno":{"family":"Italianno","category":"handwriting","variants":["regular"]},"Itim":{"family":"Itim","category":"handwriting","variants":["regular"]},"Jacques Francois":{"family":"Jacques Francois","category":"serif","variants":["regular"]},"Jacques Francois Shadow":{"family":"Jacques Francois Shadow","category":"display","variants":["regular"]},"Jaldi":{"family":"Jaldi","category":"sans-serif","variants":["700","regular"]},"Jim Nightshade":{"family":"Jim Nightshade","category":"handwriting","variants":["regular"]},"Jockey One":{"family":"Jockey One","category":"sans-serif","variants":["regular"]},"Jolly Lodger":{"family":"Jolly Lodger","category":"display","variants":["regular"]},"Jomhuria":{"family":"Jomhuria","category":"display","variants":["regular"]},"Josefin Sans":{"family":"Josefin Sans","category":"sans-serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Josefin Slab":{"family":"Josefin Slab","category":"serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Joti One":{"family":"Joti One","category":"display","variants":["regular"]},"Jua":{"family":"Jua","category":"sans-serif","variants":["regular"]},"Judson":{"family":"Judson","category":"serif","variants":["700","italic","regular"]},"Julee":{"family":"Julee","category":"handwriting","variants":["regular"]},"Julius Sans One":{"family":"Julius Sans One","category":"sans-serif","variants":["regular"]},"Junge":{"family":"Junge","category":"serif","variants":["regular"]},"Jura":{"family":"Jura","category":"sans-serif","variants":["300","500","600","700","regular"]},"Just Another Hand":{"family":"Just Another Hand","category":"handwriting","variants":["regular"]},"Just Me Again Down Here":{"family":"Just Me Again Down Here","category":"handwriting","variants":["regular"]},"K2D":{"family":"K2D","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Kadwa":{"family":"Kadwa","category":"serif","variants":["700","regular"]},"Kalam":{"family":"Kalam","category":"handwriting","variants":["300","700","regular"]},"Kameron":{"family":"Kameron","category":"serif","variants":["700","regular"]},"Kanit":{"family":"Kanit","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Kantumruy":{"family":"Kantumruy","category":"sans-serif","variants":["300","700","regular"]},"Karla":{"family":"Karla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Karma":{"family":"Karma","category":"serif","variants":["300","500","600","700","regular"]},"Katibeh":{"family":"Katibeh","category":"display","variants":["regular"]},"Kaushan Script":{"family":"Kaushan Script","category":"handwriting","variants":["regular"]},"Kavivanar":{"family":"Kavivanar","category":"handwriting","variants":["regular"]},"Kavoon":{"family":"Kavoon","category":"display","variants":["regular"]},"Kdam Thmor":{"family":"Kdam Thmor","category":"display","variants":["regular"]},"Keania One":{"family":"Keania One","category":"display","variants":["regular"]},"Kelly Slab":{"family":"Kelly Slab","category":"display","variants":["regular"]},"Kenia":{"family":"Kenia","category":"display","variants":["regular"]},"Khand":{"family":"Khand","category":"sans-serif","variants":["300","500","600","700","regular"]},"Khmer":{"family":"Khmer","category":"display","variants":["regular"]},"Khula":{"family":"Khula","category":"sans-serif","variants":["300","600","700","800","regular"]},"Kirang Haerang":{"family":"Kirang Haerang","category":"display","variants":["regular"]},"Kite One":{"family":"Kite One","category":"sans-serif","variants":["regular"]},"Knewave":{"family":"Knewave","category":"display","variants":["regular"]},"KoHo":{"family":"KoHo","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kodchasan":{"family":"Kodchasan","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kosugi":{"family":"Kosugi","category":"sans-serif","variants":["regular"]},"Kosugi Maru":{"family":"Kosugi Maru","category":"sans-serif","variants":["regular"]},"Kotta One":{"family":"Kotta One","category":"serif","variants":["regular"]},"Koulen":{"family":"Koulen","category":"display","variants":["regular"]},"Kranky":{"family":"Kranky","category":"display","variants":["regular"]},"Kreon":{"family":"Kreon","category":"serif","variants":["300","700","regular"]},"Kristi":{"family":"Kristi","category":"handwriting","variants":["regular"]},"Krona One":{"family":"Krona One","category":"sans-serif","variants":["regular"]},"Krub":{"family":"Krub","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kumar One":{"family":"Kumar One","category":"display","variants":["regular"]},"Kumar One Outline":{"family":"Kumar One Outline","category":"display","variants":["regular"]},"Kurale":{"family":"Kurale","category":"serif","variants":["regular"]},"La Belle Aurore":{"family":"La Belle Aurore","category":"handwriting","variants":["regular"]},"Laila":{"family":"Laila","category":"serif","variants":["300","500","600","700","regular"]},"Lakki Reddy":{"family":"Lakki Reddy","category":"handwriting","variants":["regular"]},"Lalezar":{"family":"Lalezar","category":"display","variants":["regular"]},"Lancelot":{"family":"Lancelot","category":"display","variants":["regular"]},"Lateef":{"family":"Lateef","category":"handwriting","variants":["regular"]},"Lato":{"family":"Lato","category":"sans-serif","variants":["100","100italic","300","300italic","700","700italic","900","900italic","italic","regular"]},"League Script":{"family":"League Script","category":"handwriting","variants":["regular"]},"Leckerli One":{"family":"Leckerli One","category":"handwriting","variants":["regular"]},"Ledger":{"family":"Ledger","category":"serif","variants":["regular"]},"Lekton":{"family":"Lekton","category":"sans-serif","variants":["700","italic","regular"]},"Lemon":{"family":"Lemon","category":"display","variants":["regular"]},"Lemonada":{"family":"Lemonada","category":"display","variants":["300","600","700","regular"]},"Libre Barcode 128":{"family":"Libre Barcode 128","category":"display","variants":["regular"]},"Libre Barcode 128 Text":{"family":"Libre Barcode 128 Text","category":"display","variants":["regular"]},"Libre Barcode 39":{"family":"Libre Barcode 39","category":"display","variants":["regular"]},"Libre Barcode 39 Extended":{"family":"Libre Barcode 39 Extended","category":"display","variants":["regular"]},"Libre Barcode 39 Extended Text":{"family":"Libre Barcode 39 Extended Text","category":"display","variants":["regular"]},"Libre Barcode 39 Text":{"family":"Libre Barcode 39 Text","category":"display","variants":["regular"]},"Libre Baskerville":{"family":"Libre Baskerville","category":"serif","variants":["700","italic","regular"]},"Libre Franklin":{"family":"Libre Franklin","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Life Savers":{"family":"Life Savers","category":"display","variants":["700","regular"]},"Lilita One":{"family":"Lilita One","category":"display","variants":["regular"]},"Lily Script One":{"family":"Lily Script One","category":"display","variants":["regular"]},"Limelight":{"family":"Limelight","category":"display","variants":["regular"]},"Linden Hill":{"family":"Linden Hill","category":"serif","variants":["italic","regular"]},"Lobster":{"family":"Lobster","category":"display","variants":["regular"]},"Lobster Two":{"family":"Lobster Two","category":"display","variants":["700","700italic","italic","regular"]},"Londrina Outline":{"family":"Londrina Outline","category":"display","variants":["regular"]},"Londrina Shadow":{"family":"Londrina Shadow","category":"display","variants":["regular"]},"Londrina Sketch":{"family":"Londrina Sketch","category":"display","variants":["regular"]},"Londrina Solid":{"family":"Londrina Solid","category":"display","variants":["100","300","900","regular"]},"Lora":{"family":"Lora","category":"serif","variants":["700","700italic","italic","regular"]},"Love Ya Like A Sister":{"family":"Love Ya Like A Sister","category":"display","variants":["regular"]},"Loved by the King":{"family":"Loved by the King","category":"handwriting","variants":["regular"]},"Lovers Quarrel":{"family":"Lovers Quarrel","category":"handwriting","variants":["regular"]},"Luckiest Guy":{"family":"Luckiest Guy","category":"display","variants":["regular"]},"Lusitana":{"family":"Lusitana","category":"serif","variants":["700","regular"]},"Lustria":{"family":"Lustria","category":"serif","variants":["regular"]},"M PLUS 1p":{"family":"M PLUS 1p","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"M PLUS Rounded 1c":{"family":"M PLUS Rounded 1c","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Macondo":{"family":"Macondo","category":"display","variants":["regular"]},"Macondo Swash Caps":{"family":"Macondo Swash Caps","category":"display","variants":["regular"]},"Mada":{"family":"Mada","category":"sans-serif","variants":["200","300","500","600","700","900","regular"]},"Magra":{"family":"Magra","category":"sans-serif","variants":["700","regular"]},"Maiden Orange":{"family":"Maiden Orange","category":"display","variants":["regular"]},"Maitree":{"family":"Maitree","category":"serif","variants":["200","300","500","600","700","regular"]},"Major Mono Display":{"family":"Major Mono Display","category":"monospace","variants":["regular"]},"Mako":{"family":"Mako","category":"sans-serif","variants":["regular"]},"Mali":{"family":"Mali","category":"handwriting","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Mallanna":{"family":"Mallanna","category":"sans-serif","variants":["regular"]},"Mandali":{"family":"Mandali","category":"sans-serif","variants":["regular"]},"Manuale":{"family":"Manuale","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Marcellus":{"family":"Marcellus","category":"serif","variants":["regular"]},"Marcellus SC":{"family":"Marcellus SC","category":"serif","variants":["regular"]},"Marck Script":{"family":"Marck Script","category":"handwriting","variants":["regular"]},"Margarine":{"family":"Margarine","category":"display","variants":["regular"]},"Markazi Text":{"family":"Markazi Text","category":"serif","variants":["500","600","700","regular"]},"Marko One":{"family":"Marko One","category":"serif","variants":["regular"]},"Marmelad":{"family":"Marmelad","category":"sans-serif","variants":["regular"]},"Martel":{"family":"Martel","category":"serif","variants":["200","300","600","700","800","900","regular"]},"Martel Sans":{"family":"Martel Sans","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Marvel":{"family":"Marvel","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Mate":{"family":"Mate","category":"serif","variants":["italic","regular"]},"Mate SC":{"family":"Mate SC","category":"serif","variants":["regular"]},"Maven Pro":{"family":"Maven Pro","category":"sans-serif","variants":["500","700","900","regular"]},"McLaren":{"family":"McLaren","category":"display","variants":["regular"]},"Meddon":{"family":"Meddon","category":"handwriting","variants":["regular"]},"MedievalSharp":{"family":"MedievalSharp","category":"display","variants":["regular"]},"Medula One":{"family":"Medula One","category":"display","variants":["regular"]},"Meera Inimai":{"family":"Meera Inimai","category":"sans-serif","variants":["regular"]},"Megrim":{"family":"Megrim","category":"display","variants":["regular"]},"Meie Script":{"family":"Meie Script","category":"handwriting","variants":["regular"]},"Merienda":{"family":"Merienda","category":"handwriting","variants":["700","regular"]},"Merienda One":{"family":"Merienda One","category":"handwriting","variants":["regular"]},"Merriweather":{"family":"Merriweather","category":"serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Merriweather Sans":{"family":"Merriweather Sans","category":"sans-serif","variants":["300","300italic","700","700italic","800","800italic","italic","regular"]},"Metal":{"family":"Metal","category":"display","variants":["regular"]},"Metal Mania":{"family":"Metal Mania","category":"display","variants":["regular"]},"Metamorphous":{"family":"Metamorphous","category":"display","variants":["regular"]},"Metrophobic":{"family":"Metrophobic","category":"sans-serif","variants":["regular"]},"Michroma":{"family":"Michroma","category":"sans-serif","variants":["regular"]},"Milonga":{"family":"Milonga","category":"display","variants":["regular"]},"Miltonian":{"family":"Miltonian","category":"display","variants":["regular"]},"Miltonian Tattoo":{"family":"Miltonian Tattoo","category":"display","variants":["regular"]},"Mina":{"family":"Mina","category":"sans-serif","variants":["700","regular"]},"Miniver":{"family":"Miniver","category":"display","variants":["regular"]},"Miriam Libre":{"family":"Miriam Libre","category":"sans-serif","variants":["700","regular"]},"Mirza":{"family":"Mirza","category":"display","variants":["500","600","700","regular"]},"Miss Fajardose":{"family":"Miss Fajardose","category":"handwriting","variants":["regular"]},"Mitr":{"family":"Mitr","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Modak":{"family":"Modak","category":"display","variants":["regular"]},"Modern Antiqua":{"family":"Modern Antiqua","category":"display","variants":["regular"]},"Mogra":{"family":"Mogra","category":"display","variants":["regular"]},"Molengo":{"family":"Molengo","category":"sans-serif","variants":["regular"]},"Molle":{"family":"Molle","category":"handwriting","variants":["italic"]},"Monda":{"family":"Monda","category":"sans-serif","variants":["700","regular"]},"Monofett":{"family":"Monofett","category":"display","variants":["regular"]},"Monoton":{"family":"Monoton","category":"display","variants":["regular"]},"Monsieur La Doulaise":{"family":"Monsieur La Doulaise","category":"handwriting","variants":["regular"]},"Montaga":{"family":"Montaga","category":"serif","variants":["regular"]},"Montez":{"family":"Montez","category":"handwriting","variants":["regular"]},"Montserrat":{"family":"Montserrat","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Alternates":{"family":"Montserrat Alternates","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Subrayada":{"family":"Montserrat Subrayada","category":"sans-serif","variants":["700","regular"]},"Moul":{"family":"Moul","category":"display","variants":["regular"]},"Moulpali":{"family":"Moulpali","category":"display","variants":["regular"]},"Mountains of Christmas":{"family":"Mountains of Christmas","category":"display","variants":["700","regular"]},"Mouse Memoirs":{"family":"Mouse Memoirs","category":"sans-serif","variants":["regular"]},"Mr Bedfort":{"family":"Mr Bedfort","category":"handwriting","variants":["regular"]},"Mr Dafoe":{"family":"Mr Dafoe","category":"handwriting","variants":["regular"]},"Mr De Haviland":{"family":"Mr De Haviland","category":"handwriting","variants":["regular"]},"Mrs Saint Delafield":{"family":"Mrs Saint Delafield","category":"handwriting","variants":["regular"]},"Mrs Sheppards":{"family":"Mrs Sheppards","category":"handwriting","variants":["regular"]},"Mukta":{"family":"Mukta","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Mahee":{"family":"Mukta Mahee","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Malar":{"family":"Mukta Malar","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Vaani":{"family":"Mukta Vaani","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Muli":{"family":"Muli","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Mystery Quest":{"family":"Mystery Quest","category":"display","variants":["regular"]},"NTR":{"family":"NTR","category":"sans-serif","variants":["regular"]},"Nanum Brush Script":{"family":"Nanum Brush Script","category":"handwriting","variants":["regular"]},"Nanum Gothic":{"family":"Nanum Gothic","category":"sans-serif","variants":["700","800","regular"]},"Nanum Gothic Coding":{"family":"Nanum Gothic Coding","category":"monospace","variants":["700","regular"]},"Nanum Myeongjo":{"family":"Nanum Myeongjo","category":"serif","variants":["700","800","regular"]},"Nanum Pen Script":{"family":"Nanum Pen Script","category":"handwriting","variants":["regular"]},"Neucha":{"family":"Neucha","category":"handwriting","variants":["regular"]},"Neuton":{"family":"Neuton","category":"serif","variants":["200","300","700","800","italic","regular"]},"New Rocker":{"family":"New Rocker","category":"display","variants":["regular"]},"News Cycle":{"family":"News Cycle","category":"sans-serif","variants":["700","regular"]},"Niconne":{"family":"Niconne","category":"handwriting","variants":["regular"]},"Niramit":{"family":"Niramit","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Nixie One":{"family":"Nixie One","category":"display","variants":["regular"]},"Nobile":{"family":"Nobile","category":"sans-serif","variants":["500","500italic","700","700italic","italic","regular"]},"Nokora":{"family":"Nokora","category":"serif","variants":["700","regular"]},"Norican":{"family":"Norican","category":"handwriting","variants":["regular"]},"Nosifer":{"family":"Nosifer","category":"display","variants":["regular"]},"Notable":{"family":"Notable","category":"sans-serif","variants":["regular"]},"Nothing You Could Do":{"family":"Nothing You Could Do","category":"handwriting","variants":["regular"]},"Noticia Text":{"family":"Noticia Text","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Sans":{"family":"Noto Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Noto Sans JP":{"family":"Noto Sans JP","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans KR":{"family":"Noto Sans KR","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans SC":{"family":"Noto Sans SC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans TC":{"family":"Noto Sans TC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Serif":{"family":"Noto Serif","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Serif JP":{"family":"Noto Serif JP","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif KR":{"family":"Noto Serif KR","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif SC":{"family":"Noto Serif SC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif TC":{"family":"Noto Serif TC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Nova Cut":{"family":"Nova Cut","category":"display","variants":["regular"]},"Nova Flat":{"family":"Nova Flat","category":"display","variants":["regular"]},"Nova Mono":{"family":"Nova Mono","category":"monospace","variants":["regular"]},"Nova Oval":{"family":"Nova Oval","category":"display","variants":["regular"]},"Nova Round":{"family":"Nova Round","category":"display","variants":["regular"]},"Nova Script":{"family":"Nova Script","category":"display","variants":["regular"]},"Nova Slim":{"family":"Nova Slim","category":"display","variants":["regular"]},"Nova Square":{"family":"Nova Square","category":"display","variants":["regular"]},"Numans":{"family":"Numans","category":"sans-serif","variants":["regular"]},"Nunito":{"family":"Nunito","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Nunito Sans":{"family":"Nunito Sans","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Odor Mean Chey":{"family":"Odor Mean Chey","category":"display","variants":["regular"]},"Offside":{"family":"Offside","category":"display","variants":["regular"]},"Old Standard TT":{"family":"Old Standard TT","category":"serif","variants":["700","italic","regular"]},"Oldenburg":{"family":"Oldenburg","category":"display","variants":["regular"]},"Oleo Script":{"family":"Oleo Script","category":"display","variants":["700","regular"]},"Oleo Script Swash Caps":{"family":"Oleo Script Swash Caps","category":"display","variants":["700","regular"]},"Open Sans":{"family":"Open Sans","category":"sans-serif","variants":["300","300italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Open Sans Condensed":{"family":"Open Sans Condensed","category":"sans-serif","variants":["300","300italic","700"]},"Oranienbaum":{"family":"Oranienbaum","category":"serif","variants":["regular"]},"Orbitron":{"family":"Orbitron","category":"sans-serif","variants":["500","700","900","regular"]},"Oregano":{"family":"Oregano","category":"display","variants":["italic","regular"]},"Orienta":{"family":"Orienta","category":"sans-serif","variants":["regular"]},"Original Surfer":{"family":"Original Surfer","category":"display","variants":["regular"]},"Oswald":{"family":"Oswald","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Over the Rainbow":{"family":"Over the Rainbow","category":"handwriting","variants":["regular"]},"Overlock":{"family":"Overlock","category":"display","variants":["700","700italic","900","900italic","italic","regular"]},"Overlock SC":{"family":"Overlock SC","category":"display","variants":["regular"]},"Overpass":{"family":"Overpass","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Overpass Mono":{"family":"Overpass Mono","category":"monospace","variants":["300","600","700","regular"]},"Ovo":{"family":"Ovo","category":"serif","variants":["regular"]},"Oxygen":{"family":"Oxygen","category":"sans-serif","variants":["300","700","regular"]},"Oxygen Mono":{"family":"Oxygen Mono","category":"monospace","variants":["regular"]},"PT Mono":{"family":"PT Mono","category":"monospace","variants":["regular"]},"PT Sans":{"family":"PT Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"PT Sans Caption":{"family":"PT Sans Caption","category":"sans-serif","variants":["700","regular"]},"PT Sans Narrow":{"family":"PT Sans Narrow","category":"sans-serif","variants":["700","regular"]},"PT Serif":{"family":"PT Serif","category":"serif","variants":["700","700italic","italic","regular"]},"PT Serif Caption":{"family":"PT Serif Caption","category":"serif","variants":["italic","regular"]},"Pacifico":{"family":"Pacifico","category":"handwriting","variants":["regular"]},"Padauk":{"family":"Padauk","category":"sans-serif","variants":["700","regular"]},"Palanquin":{"family":"Palanquin","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Palanquin Dark":{"family":"Palanquin Dark","category":"sans-serif","variants":["500","600","700","regular"]},"Pangolin":{"family":"Pangolin","category":"handwriting","variants":["regular"]},"Paprika":{"family":"Paprika","category":"display","variants":["regular"]},"Parisienne":{"family":"Parisienne","category":"handwriting","variants":["regular"]},"Passero One":{"family":"Passero One","category":"display","variants":["regular"]},"Passion One":{"family":"Passion One","category":"display","variants":["700","900","regular"]},"Pathway Gothic One":{"family":"Pathway Gothic One","category":"sans-serif","variants":["regular"]},"Patrick Hand":{"family":"Patrick Hand","category":"handwriting","variants":["regular"]},"Patrick Hand SC":{"family":"Patrick Hand SC","category":"handwriting","variants":["regular"]},"Pattaya":{"family":"Pattaya","category":"sans-serif","variants":["regular"]},"Patua One":{"family":"Patua One","category":"display","variants":["regular"]},"Pavanam":{"family":"Pavanam","category":"sans-serif","variants":["regular"]},"Paytone One":{"family":"Paytone One","category":"sans-serif","variants":["regular"]},"Peddana":{"family":"Peddana","category":"serif","variants":["regular"]},"Peralta":{"family":"Peralta","category":"display","variants":["regular"]},"Permanent Marker":{"family":"Permanent Marker","category":"handwriting","variants":["regular"]},"Petit Formal Script":{"family":"Petit Formal Script","category":"handwriting","variants":["regular"]},"Petrona":{"family":"Petrona","category":"serif","variants":["regular"]},"Philosopher":{"family":"Philosopher","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Piedra":{"family":"Piedra","category":"display","variants":["regular"]},"Pinyon Script":{"family":"Pinyon Script","category":"handwriting","variants":["regular"]},"Pirata One":{"family":"Pirata One","category":"display","variants":["regular"]},"Plaster":{"family":"Plaster","category":"display","variants":["regular"]},"Play":{"family":"Play","category":"sans-serif","variants":["700","regular"]},"Playball":{"family":"Playball","category":"display","variants":["regular"]},"Playfair Display":{"family":"Playfair Display","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Playfair Display SC":{"family":"Playfair Display SC","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Podkova":{"family":"Podkova","category":"serif","variants":["500","600","700","800","regular"]},"Poiret One":{"family":"Poiret One","category":"display","variants":["regular"]},"Poller One":{"family":"Poller One","category":"display","variants":["regular"]},"Poly":{"family":"Poly","category":"serif","variants":["italic","regular"]},"Pompiere":{"family":"Pompiere","category":"display","variants":["regular"]},"Pontano Sans":{"family":"Pontano Sans","category":"sans-serif","variants":["regular"]},"Poor Story":{"family":"Poor Story","category":"display","variants":["regular"]},"Poppins":{"family":"Poppins","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Port Lligat Sans":{"family":"Port Lligat Sans","category":"sans-serif","variants":["regular"]},"Port Lligat Slab":{"family":"Port Lligat Slab","category":"serif","variants":["regular"]},"Pragati Narrow":{"family":"Pragati Narrow","category":"sans-serif","variants":["700","regular"]},"Prata":{"family":"Prata","category":"serif","variants":["regular"]},"Preahvihear":{"family":"Preahvihear","category":"display","variants":["regular"]},"Press Start 2P":{"family":"Press Start 2P","category":"display","variants":["regular"]},"Pridi":{"family":"Pridi","category":"serif","variants":["200","300","500","600","700","regular"]},"Princess Sofia":{"family":"Princess Sofia","category":"handwriting","variants":["regular"]},"Prociono":{"family":"Prociono","category":"serif","variants":["regular"]},"Prompt":{"family":"Prompt","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Prosto One":{"family":"Prosto One","category":"display","variants":["regular"]},"Proza Libre":{"family":"Proza Libre","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Puritan":{"family":"Puritan","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Purple Purse":{"family":"Purple Purse","category":"display","variants":["regular"]},"Quando":{"family":"Quando","category":"serif","variants":["regular"]},"Quantico":{"family":"Quantico","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Quattrocento":{"family":"Quattrocento","category":"serif","variants":["700","regular"]},"Quattrocento Sans":{"family":"Quattrocento Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Questrial":{"family":"Questrial","category":"sans-serif","variants":["regular"]},"Quicksand":{"family":"Quicksand","category":"sans-serif","variants":["300","500","700","regular"]},"Quintessential":{"family":"Quintessential","category":"handwriting","variants":["regular"]},"Qwigley":{"family":"Qwigley","category":"handwriting","variants":["regular"]},"Racing Sans One":{"family":"Racing Sans One","category":"display","variants":["regular"]},"Radley":{"family":"Radley","category":"serif","variants":["italic","regular"]},"Rajdhani":{"family":"Rajdhani","category":"sans-serif","variants":["300","500","600","700","regular"]},"Rakkas":{"family":"Rakkas","category":"display","variants":["regular"]},"Raleway":{"family":"Raleway","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Raleway Dots":{"family":"Raleway Dots","category":"display","variants":["regular"]},"Ramabhadra":{"family":"Ramabhadra","category":"sans-serif","variants":["regular"]},"Ramaraja":{"family":"Ramaraja","category":"serif","variants":["regular"]},"Rambla":{"family":"Rambla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rammetto One":{"family":"Rammetto One","category":"display","variants":["regular"]},"Ranchers":{"family":"Ranchers","category":"display","variants":["regular"]},"Rancho":{"family":"Rancho","category":"handwriting","variants":["regular"]},"Ranga":{"family":"Ranga","category":"display","variants":["700","regular"]},"Rasa":{"family":"Rasa","category":"serif","variants":["300","500","600","700","regular"]},"Rationale":{"family":"Rationale","category":"sans-serif","variants":["regular"]},"Ravi Prakash":{"family":"Ravi Prakash","category":"display","variants":["regular"]},"Redressed":{"family":"Redressed","category":"handwriting","variants":["regular"]},"Reem Kufi":{"family":"Reem Kufi","category":"sans-serif","variants":["regular"]},"Reenie Beanie":{"family":"Reenie Beanie","category":"handwriting","variants":["regular"]},"Revalia":{"family":"Revalia","category":"display","variants":["regular"]},"Rhodium Libre":{"family":"Rhodium Libre","category":"serif","variants":["regular"]},"Ribeye":{"family":"Ribeye","category":"display","variants":["regular"]},"Ribeye Marrow":{"family":"Ribeye Marrow","category":"display","variants":["regular"]},"Righteous":{"family":"Righteous","category":"display","variants":["regular"]},"Risque":{"family":"Risque","category":"display","variants":["regular"]},"Roboto":{"family":"Roboto","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Roboto Condensed":{"family":"Roboto Condensed","category":"sans-serif","variants":["300","300italic","700","700italic","italic","regular"]},"Roboto Mono":{"family":"Roboto Mono","category":"monospace","variants":["100","100italic","300","300italic","500","500italic","700","700italic","italic","regular"]},"Roboto Slab":{"family":"Roboto Slab","category":"serif","variants":["100","300","700","regular"]},"Rochester":{"family":"Rochester","category":"handwriting","variants":["regular"]},"Rock Salt":{"family":"Rock Salt","category":"handwriting","variants":["regular"]},"Rokkitt":{"family":"Rokkitt","category":"serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Romanesco":{"family":"Romanesco","category":"handwriting","variants":["regular"]},"Ropa Sans":{"family":"Ropa Sans","category":"sans-serif","variants":["italic","regular"]},"Rosario":{"family":"Rosario","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rosarivo":{"family":"Rosarivo","category":"serif","variants":["italic","regular"]},"Rouge Script":{"family":"Rouge Script","category":"handwriting","variants":["regular"]},"Rozha One":{"family":"Rozha One","category":"serif","variants":["regular"]},"Rubik":{"family":"Rubik","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Rubik Mono One":{"family":"Rubik Mono One","category":"sans-serif","variants":["regular"]},"Ruda":{"family":"Ruda","category":"sans-serif","variants":["700","900","regular"]},"Rufina":{"family":"Rufina","category":"serif","variants":["700","regular"]},"Ruge Boogie":{"family":"Ruge Boogie","category":"handwriting","variants":["regular"]},"Ruluko":{"family":"Ruluko","category":"sans-serif","variants":["regular"]},"Rum Raisin":{"family":"Rum Raisin","category":"sans-serif","variants":["regular"]},"Ruslan Display":{"family":"Ruslan Display","category":"display","variants":["regular"]},"Russo One":{"family":"Russo One","category":"sans-serif","variants":["regular"]},"Ruthie":{"family":"Ruthie","category":"handwriting","variants":["regular"]},"Rye":{"family":"Rye","category":"display","variants":["regular"]},"Sacramento":{"family":"Sacramento","category":"handwriting","variants":["regular"]},"Sahitya":{"family":"Sahitya","category":"serif","variants":["700","regular"]},"Sail":{"family":"Sail","category":"display","variants":["regular"]},"Saira":{"family":"Saira","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Condensed":{"family":"Saira Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Extra Condensed":{"family":"Saira Extra Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Semi Condensed":{"family":"Saira Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Salsa":{"family":"Salsa","category":"display","variants":["regular"]},"Sanchez":{"family":"Sanchez","category":"serif","variants":["italic","regular"]},"Sancreek":{"family":"Sancreek","category":"display","variants":["regular"]},"Sansita":{"family":"Sansita","category":"sans-serif","variants":["700","700italic","800","800italic","900","900italic","italic","regular"]},"Sarabun":{"family":"Sarabun","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Sarala":{"family":"Sarala","category":"sans-serif","variants":["700","regular"]},"Sarina":{"family":"Sarina","category":"display","variants":["regular"]},"Sarpanch":{"family":"Sarpanch","category":"sans-serif","variants":["500","600","700","800","900","regular"]},"Satisfy":{"family":"Satisfy","category":"handwriting","variants":["regular"]},"Sawarabi Gothic":{"family":"Sawarabi Gothic","category":"sans-serif","variants":["regular"]},"Sawarabi Mincho":{"family":"Sawarabi Mincho","category":"sans-serif","variants":["regular"]},"Scada":{"family":"Scada","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Scheherazade":{"family":"Scheherazade","category":"serif","variants":["700","regular"]},"Schoolbell":{"family":"Schoolbell","category":"handwriting","variants":["regular"]},"Scope One":{"family":"Scope One","category":"serif","variants":["regular"]},"Seaweed Script":{"family":"Seaweed Script","category":"display","variants":["regular"]},"Secular One":{"family":"Secular One","category":"sans-serif","variants":["regular"]},"Sedgwick Ave":{"family":"Sedgwick Ave","category":"handwriting","variants":["regular"]},"Sedgwick Ave Display":{"family":"Sedgwick Ave Display","category":"handwriting","variants":["regular"]},"Sevillana":{"family":"Sevillana","category":"display","variants":["regular"]},"Seymour One":{"family":"Seymour One","category":"sans-serif","variants":["regular"]},"Shadows Into Light":{"family":"Shadows Into Light","category":"handwriting","variants":["regular"]},"Shadows Into Light Two":{"family":"Shadows Into Light Two","category":"handwriting","variants":["regular"]},"Shanti":{"family":"Shanti","category":"sans-serif","variants":["regular"]},"Share":{"family":"Share","category":"display","variants":["700","700italic","italic","regular"]},"Share Tech":{"family":"Share Tech","category":"sans-serif","variants":["regular"]},"Share Tech Mono":{"family":"Share Tech Mono","category":"monospace","variants":["regular"]},"Shojumaru":{"family":"Shojumaru","category":"display","variants":["regular"]},"Short Stack":{"family":"Short Stack","category":"handwriting","variants":["regular"]},"Shrikhand":{"family":"Shrikhand","category":"display","variants":["regular"]},"Siemreap":{"family":"Siemreap","category":"display","variants":["regular"]},"Sigmar One":{"family":"Sigmar One","category":"display","variants":["regular"]},"Signika":{"family":"Signika","category":"sans-serif","variants":["300","600","700","regular"]},"Signika Negative":{"family":"Signika Negative","category":"sans-serif","variants":["300","600","700","regular"]},"Simonetta":{"family":"Simonetta","category":"display","variants":["900","900italic","italic","regular"]},"Sintony":{"family":"Sintony","category":"sans-serif","variants":["700","regular"]},"Sirin Stencil":{"family":"Sirin Stencil","category":"display","variants":["regular"]},"Six Caps":{"family":"Six Caps","category":"sans-serif","variants":["regular"]},"Skranji":{"family":"Skranji","category":"display","variants":["700","regular"]},"Slabo 13px":{"family":"Slabo 13px","category":"serif","variants":["regular"]},"Slabo 27px":{"family":"Slabo 27px","category":"serif","variants":["regular"]},"Slackey":{"family":"Slackey","category":"display","variants":["regular"]},"Smokum":{"family":"Smokum","category":"display","variants":["regular"]},"Smythe":{"family":"Smythe","category":"display","variants":["regular"]},"Sniglet":{"family":"Sniglet","category":"display","variants":["800","regular"]},"Snippet":{"family":"Snippet","category":"sans-serif","variants":["regular"]},"Snowburst One":{"family":"Snowburst One","category":"display","variants":["regular"]},"Sofadi One":{"family":"Sofadi One","category":"display","variants":["regular"]},"Sofia":{"family":"Sofia","category":"handwriting","variants":["regular"]},"Song Myung":{"family":"Song Myung","category":"serif","variants":["regular"]},"Sonsie One":{"family":"Sonsie One","category":"display","variants":["regular"]},"Sorts Mill Goudy":{"family":"Sorts Mill Goudy","category":"serif","variants":["italic","regular"]},"Source Code Pro":{"family":"Source Code Pro","category":"monospace","variants":["200","300","500","600","700","900","regular"]},"Source Sans Pro":{"family":"Source Sans Pro","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","900italic","italic","regular"]},"Source Serif Pro":{"family":"Source Serif Pro","category":"serif","variants":["600","700","regular"]},"Space Mono":{"family":"Space Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Special Elite":{"family":"Special Elite","category":"display","variants":["regular"]},"Spectral":{"family":"Spectral","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spectral SC":{"family":"Spectral SC","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spicy Rice":{"family":"Spicy Rice","category":"display","variants":["regular"]},"Spinnaker":{"family":"Spinnaker","category":"sans-serif","variants":["regular"]},"Spirax":{"family":"Spirax","category":"display","variants":["regular"]},"Squada One":{"family":"Squada One","category":"display","variants":["regular"]},"Sree Krushnadevaraya":{"family":"Sree Krushnadevaraya","category":"serif","variants":["regular"]},"Sriracha":{"family":"Sriracha","category":"handwriting","variants":["regular"]},"Srisakdi":{"family":"Srisakdi","category":"display","variants":["700","regular"]},"Staatliches":{"family":"Staatliches","category":"display","variants":["regular"]},"Stalemate":{"family":"Stalemate","category":"handwriting","variants":["regular"]},"Stalinist One":{"family":"Stalinist One","category":"display","variants":["regular"]},"Stardos Stencil":{"family":"Stardos Stencil","category":"display","variants":["700","regular"]},"Stint Ultra Condensed":{"family":"Stint Ultra Condensed","category":"display","variants":["regular"]},"Stint Ultra Expanded":{"family":"Stint Ultra Expanded","category":"display","variants":["regular"]},"Stoke":{"family":"Stoke","category":"serif","variants":["300","regular"]},"Strait":{"family":"Strait","category":"sans-serif","variants":["regular"]},"Stylish":{"family":"Stylish","category":"sans-serif","variants":["regular"]},"Sue Ellen Francisco":{"family":"Sue Ellen Francisco","category":"handwriting","variants":["regular"]},"Suez One":{"family":"Suez One","category":"serif","variants":["regular"]},"Sumana":{"family":"Sumana","category":"serif","variants":["700","regular"]},"Sunflower":{"family":"Sunflower","category":"sans-serif","variants":["300","500","700"]},"Sunshiney":{"family":"Sunshiney","category":"handwriting","variants":["regular"]},"Supermercado One":{"family":"Supermercado One","category":"display","variants":["regular"]},"Sura":{"family":"Sura","category":"serif","variants":["700","regular"]},"Suranna":{"family":"Suranna","category":"serif","variants":["regular"]},"Suravaram":{"family":"Suravaram","category":"serif","variants":["regular"]},"Suwannaphum":{"family":"Suwannaphum","category":"display","variants":["regular"]},"Swanky and Moo Moo":{"family":"Swanky and Moo Moo","category":"handwriting","variants":["regular"]},"Syncopate":{"family":"Syncopate","category":"sans-serif","variants":["700","regular"]},"Tajawal":{"family":"Tajawal","category":"sans-serif","variants":["200","300","500","700","800","900","regular"]},"Tangerine":{"family":"Tangerine","category":"handwriting","variants":["700","regular"]},"Taprom":{"family":"Taprom","category":"display","variants":["regular"]},"Tauri":{"family":"Tauri","category":"sans-serif","variants":["regular"]},"Taviraj":{"family":"Taviraj","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Teko":{"family":"Teko","category":"sans-serif","variants":["300","500","600","700","regular"]},"Telex":{"family":"Telex","category":"sans-serif","variants":["regular"]},"Tenali Ramakrishna":{"family":"Tenali Ramakrishna","category":"sans-serif","variants":["regular"]},"Tenor Sans":{"family":"Tenor Sans","category":"sans-serif","variants":["regular"]},"Text Me One":{"family":"Text Me One","category":"sans-serif","variants":["regular"]},"Thasadith":{"family":"Thasadith","category":"sans-serif","variants":["700","700italic","italic","regular"]},"The Girl Next Door":{"family":"The Girl Next Door","category":"handwriting","variants":["regular"]},"Tienne":{"family":"Tienne","category":"serif","variants":["700","900","regular"]},"Tillana":{"family":"Tillana","category":"handwriting","variants":["500","600","700","800","regular"]},"Timmana":{"family":"Timmana","category":"sans-serif","variants":["regular"]},"Tinos":{"family":"Tinos","category":"serif","variants":["700","700italic","italic","regular"]},"Titan One":{"family":"Titan One","category":"display","variants":["regular"]},"Titillium Web":{"family":"Titillium Web","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","italic","regular"]},"Trade Winds":{"family":"Trade Winds","category":"display","variants":["regular"]},"Trirong":{"family":"Trirong","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Trocchi":{"family":"Trocchi","category":"serif","variants":["regular"]},"Trochut":{"family":"Trochut","category":"display","variants":["700","italic","regular"]},"Trykker":{"family":"Trykker","category":"serif","variants":["regular"]},"Tulpen One":{"family":"Tulpen One","category":"display","variants":["regular"]},"Ubuntu":{"family":"Ubuntu","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","italic","regular"]},"Ubuntu Condensed":{"family":"Ubuntu Condensed","category":"sans-serif","variants":["regular"]},"Ubuntu Mono":{"family":"Ubuntu Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Ultra":{"family":"Ultra","category":"serif","variants":["regular"]},"Uncial Antiqua":{"family":"Uncial Antiqua","category":"display","variants":["regular"]},"Underdog":{"family":"Underdog","category":"display","variants":["regular"]},"Unica One":{"family":"Unica One","category":"display","variants":["regular"]},"UnifrakturCook":{"family":"UnifrakturCook","category":"display","variants":["700"]},"UnifrakturMaguntia":{"family":"UnifrakturMaguntia","category":"display","variants":["regular"]},"Unkempt":{"family":"Unkempt","category":"display","variants":["700","regular"]},"Unlock":{"family":"Unlock","category":"display","variants":["regular"]},"Unna":{"family":"Unna","category":"serif","variants":["700","700italic","italic","regular"]},"VT323":{"family":"VT323","category":"monospace","variants":["regular"]},"Vampiro One":{"family":"Vampiro One","category":"display","variants":["regular"]},"Varela":{"family":"Varela","category":"sans-serif","variants":["regular"]},"Varela Round":{"family":"Varela Round","category":"sans-serif","variants":["regular"]},"Vast Shadow":{"family":"Vast Shadow","category":"display","variants":["regular"]},"Vesper Libre":{"family":"Vesper Libre","category":"serif","variants":["500","700","900","regular"]},"Vibur":{"family":"Vibur","category":"handwriting","variants":["regular"]},"Vidaloka":{"family":"Vidaloka","category":"serif","variants":["regular"]},"Viga":{"family":"Viga","category":"sans-serif","variants":["regular"]},"Voces":{"family":"Voces","category":"display","variants":["regular"]},"Volkhov":{"family":"Volkhov","category":"serif","variants":["700","700italic","italic","regular"]},"Vollkorn":{"family":"Vollkorn","category":"serif","variants":["600","600italic","700","700italic","900","900italic","italic","regular"]},"Vollkorn SC":{"family":"Vollkorn SC","category":"serif","variants":["600","700","900","regular"]},"Voltaire":{"family":"Voltaire","category":"sans-serif","variants":["regular"]},"Waiting for the Sunrise":{"family":"Waiting for the Sunrise","category":"handwriting","variants":["regular"]},"Wallpoet":{"family":"Wallpoet","category":"display","variants":["regular"]},"Walter Turncoat":{"family":"Walter Turncoat","category":"handwriting","variants":["regular"]},"Warnes":{"family":"Warnes","category":"display","variants":["regular"]},"Wellfleet":{"family":"Wellfleet","category":"display","variants":["regular"]},"Wendy One":{"family":"Wendy One","category":"sans-serif","variants":["regular"]},"Wire One":{"family":"Wire One","category":"sans-serif","variants":["regular"]},"Work Sans":{"family":"Work Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Yanone Kaffeesatz":{"family":"Yanone Kaffeesatz","category":"sans-serif","variants":["200","300","700","regular"]},"Yantramanav":{"family":"Yantramanav","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Yatra One":{"family":"Yatra One","category":"display","variants":["regular"]},"Yellowtail":{"family":"Yellowtail","category":"handwriting","variants":["regular"]},"Yeon Sung":{"family":"Yeon Sung","category":"display","variants":["regular"]},"Yeseva One":{"family":"Yeseva One","category":"display","variants":["regular"]},"Yesteryear":{"family":"Yesteryear","category":"handwriting","variants":["regular"]},"Yrsa":{"family":"Yrsa","category":"serif","variants":["300","500","600","700","regular"]},"ZCOOL KuaiLe":{"family":"ZCOOL KuaiLe","category":"display","variants":["regular"]},"ZCOOL QingKe HuangYou":{"family":"ZCOOL QingKe HuangYou","category":"display","variants":["regular"]},"ZCOOL XiaoWei":{"family":"ZCOOL XiaoWei","category":"serif","variants":["regular"]},"Zeyada":{"family":"Zeyada","category":"handwriting","variants":["regular"]},"Zilla Slab":{"family":"Zilla Slab","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Zilla Slab Highlight":{"family":"Zilla Slab Highlight","category":"display","variants":["700","regular"]}},"order":{"popularity":["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Source Sans Pro","Oswald","Raleway","Merriweather","PT Sans","Roboto Slab","Slabo 27px","Poppins","Noto Sans","Ubuntu","Open Sans Condensed","Playfair Display","Roboto Mono","Lora","PT Serif","Muli","Titillium Web","Mukta","PT Sans Narrow","Nunito","Arimo","Fira Sans","Noto Serif","Work Sans","Rubik","Nanum Gothic","Quicksand","Hind","Dosis","Inconsolata","Crimson Text","Oxygen","Anton","Libre Baskerville","Bitter","Noto Sans KR","Indie Flower","Cabin","Fjalla One","Josefin Sans","Nunito Sans","Libre Franklin","Arvo","Karla","Lobster","Pacifico","Exo 2","Abel","Varela Round","Encode Sans Condensed","Noto Sans JP","Dancing Script","Abril Fatface","Merriweather Sans","Shadows Into Light","Kanit","Yanone Kaffeesatz","Acme","Bree Serif","Righteous","Source Serif Pro","Hind Madurai","Exo","EB Garamond","Heebo","Asap","Archivo Narrow","Questrial","Source Code Pro","Ubuntu Condensed","Play","Teko","Comfortaa","Amatic SC","Signika","Hind Siliguri","Cairo","Maven Pro","Catamaran","Gloria Hallelujah","Crete Round","Francois One","Barlow","Cinzel","Vollkorn","Permanent Marker","Domine","Rokkitt","Assistant","Fira Sans Condensed","Noto Sans TC","Rajdhani","Satisfy","PT Sans Caption","Alegreya","Cuprum","Orbitron","Alegreya Sans","Patua One","Prompt","Cantarell","ABeeZee","Old Standard TT","Ropa Sans","Courgette","Cardo","Amiri","Istok Web","Noticia Text","Arapey","News Cycle","Concert One","Luckiest Guy","Cookie","Kaushan Script","Caveat","Kalam","Pathway Gothic One","Lalezar","Quattrocento Sans","Cormorant Garamond","Alfa Slab One","Great Vibes","Tinos","Hind Guntur","Fira Sans Extra Condensed","Fredoka One","Lobster Two","Russo One","Martel","Archivo Black","Passion One","Gothic A1","BenchNine","Hind Vadodara","Tangerine","Barlow Condensed","Poiret One","Sacramento","Quattrocento","Merienda","Volkhov","Monda","Barlow Semi Condensed","Josefin Slab","Handlee","IBM Plex Sans","Didact Gothic","Pontano Sans","Special Elite","Khand","Frank Ruhl Libre","Bangers","Chivo","Nanum Myeongjo","Playfair Display SC","Pragati Narrow","Cabin Condensed","Zilla Slab","Gudea","Signika Negative","Viga","Marck Script","Neucha","Overpass","Sawarabi Mincho","Boogaloo","Yantramanav","Philosopher","Playball","Gochi Hand","M PLUS 1p","Aldrich","Patrick Hand","Sigmar One","Neuton","Ultra","Yrsa","Economica","Sanchez","Ruda","Hammersmith One","Advent Pro","Saira Extra Condensed","Gentium Basic","Armata","Unica One","Changa","Monoton","Vidaloka","Tajawal","Audiowide","Prata","Bad Script","Sorts Mill Goudy","Adamina","Amaranth","Varela","Alice","Jura","Shadows Into Light Two","Yellowtail","Press Start 2P","Noto Sans SC","Paytone One","Architects Daughter","Carter One","Glegoo","Bevan","Enriqueta","Montserrat Alternates","Taviraj","Molengo","PT Mono","Arbutus Slab","Kreon","Antic Slab","Actor","Gentium Book Basic","Ubuntu Mono","Coda","Covered By Your Grace","Allerta Stencil","Cormorant","Julius Sans One","Rock Salt","Sintony","Cousine","Sarala","Lusitana","Fugaz One","Damion","Caveat Brush","Alegreya Sans SC","Homemade Apple","Karma","Pridi","El Messiri","Parisienne","Allura","Khula","PT Serif Caption","Oleo Script","Nothing You Could Do","Chewy","Prosto One","Lilita One","Cantata One","Archivo","Rambla","Lustria","Allerta","IBM Plex Serif","Baloo","Rochester","Bowlby One SC","Black Ops One","Unna","Quantico","Saira","Michroma","Alex Brush","Fredericka the Great","Niconne","Sawarabi Gothic","Rasa","Nobile","Mr Dafoe","Kameron","Syncopate","Reenie Beanie","Scada","Mitr","Spinnaker","Rancho","M PLUS Rounded 1c","Itim","Italianno","Average","Forum","Shrikhand","Leckerli One","Electrolize","Just Another Hand","Palanquin","Pangolin","Marmelad","Slabo 13px","Biryani","Pinyon Script","Basic","Overlock","Hanuman","Nanum Gothic Coding","Scheherazade","Bungee Inline","Staatliches","Grand Hotel","Marcellus","Tenor Sans","Noto Serif JP","Oranienbaum","Magra","Share","Fauna One","Radley","Days One","Jaldi","Squada One","Aclonica","VT323","Saira Semi Condensed","Alef","Cabin Sketch","Contrail One","Ovo","Spectral","Marcellus SC","Space Mono","Titan One","Coming Soon","Yesteryear","Voltaire","Amethysta","Abhaya Libre","Nanum Pen Script","Marvel","Carme","Buenard","Lateef","Berkshire Swash","Cinzel Decorative","Laila","Reem Kufi","Antic","Candal","Petit Formal Script","Changa One","Annie Use Your Telescope","Coustard","Carrois Gothic","Racing Sans One","Shojumaru","Gruppo","Belleza","Rufina","Anonymous Pro","Jockey One","Puritan","Arsenal","Raleway Dots","Love Ya Like A Sister","Limelight","Martel Sans","Cambo","Copse","Telex","Anaheim","Encode Sans","Nixie One","GFS Didot","Asap Condensed","Alegreya SC","Share Tech Mono","Metrophobic","Arima Madurai","Lekton","Yeseva One","Wendy One","Saira Condensed","Caudex","Padauk","Cutive Mono","Coiny","Freckle Face","Ceviche One","Tauri","Norican","Baloo Bhaijaan","Herr Von Muellerhoff","Duru Sans","Fira Mono","Oxygen Mono","Londrina Solid","Delius","IBM Plex Mono","Aladin","Baloo Bhaina","Pattaya","Calligraffitti","Palanquin Dark","Bungee","Kelly Slab","Bubblegum Sans","Nanum Brush Script","Goudy Bookletter 1911","Hanalei Fill","Judson","Eczar","Rosario","Do Hyeon","Kristi","Capriola","Corben","Homenaje","Mr De Haviland","David Libre","Doppio One","Knewave","Allan","Cutive","Mukta Malar","IM Fell Double Pica","Niramit","Gilda Display","Maitree","Gabriela","Skranji","Mukta Vaani","Poller One","Balthazar","K2D","Merienda One","Faster One","Arizonia","Halant","Averia Serif Libre","Average Sans","Bentham","Convergence","Graduate","Andada","Six Caps","Trocchi","Schoolbell","Mada","Coda Caption","Inder","Markazi Text","Pompiere","Trirong","Emilys Candy","Clicker Script","Happy Monkey","Sue Ellen Francisco","Lemonada","Proza Libre","Mate","Poly","Give You Glory","Miriam Libre","Aref Ruqaa","Carrois Gothic SC","Federo","Chelsea Market","Gravitas One","Cambay","Rammetto One","Vesper Libre","Sedgwick Ave","Podkova","Medula One","Montez","Andika","IM Fell English","Athiti","Rozha One","Alike","Short Stack","Gafata","Averia Libre","Kosugi Maru","Seaweed Script","Qwigley","The Girl Next Door","Cormorant Upright","Sriracha","Oregano","Cedarville Cursive","Sarabun","Crafty Girls","Belgrano","Baumans","Faustina","Fondamento","Rye","Noto Serif SC","Strait","Euphoria Script","Fanwood Text","Chonburi","Secular One","Mouse Memoirs","NTR","Patrick Hand SC","Bilbo Swash Caps","Gurajada","Cormorant Infant","Expletus Sans","Mogra","Mako","Mirza","IM Fell English SC","Prociono","Quando","Meddon","Ruslan Display","Suranna","Vast Shadow","UnifrakturMaguntia","Artifika","Bowlby One","Rouge Script","IM Fell DW Pica","Walter Turncoat","Aguafina Script","La Belle Aurore","Spicy Rice","Lemon","Denk One","Delius Swash Caps","Kadwa","Sunflower","Harmattan","Zeyada","Suez One","Bai Jamjuree","Ranga","Oleo Script Swash Caps","Megrim","Waiting for the Sunrise","Stardos Stencil","Lily Script One","Amiko","Brawler","Baloo Paaji","Cherry Swash","Cantora One","Wire One","Tienne","Cormorant SC","Noto Serif KR","Sofia","Salsa","Sarpanch","Just Me Again Down Here","Iceland","Kurale","Sumana","Encode Sans Semi Condensed","Loved by the King","Unkempt","Sansita","Battambang","Fjord One","Holtwood One SC","Codystar","Fontdiner Swanky","Vibur","Chicle","Amita","Sniglet","Imprima","Dawning of a New Day","Krona One","Bellefair","Orienta","Ramabhadra","Frijole","Rubik Mono One","Vampiro One","Mallanna","Wallpoet","Overpass Mono","Spirax","Atma","Scope One","Elsie","McLaren","Nova Square","Ledger","Share Tech","Timmana","Quintessential","Katibeh","Tulpen One","Nova Flat","Port Lligat Slab","Finger Paint","Nova Mono","Black Han Sans","Khmer","Life Savers","Engagement","Galada","Metamorphous","Nova Round","Eater","Voces","Bungee Shade","Milonga","Shanti","Averia Sans Libre","Kranky","Germania One","Over the Rainbow","Baloo Tamma","Rationale","Chau Philomene One","Kotta One","Crushed","IBM Plex Sans Condensed","Alike Angular","Rakkas","Habibi","Uncial Antiqua","Mrs Saint Delafield","Headland One","Fenix","Mountains of Christmas","Spectral SC","Delius Unicase","Cherry Cream Soda","Arya","Slackey","Londrina Outline","Baloo Bhai","Baloo Thambi","Amarante","Creepster","Montserrat Subrayada","Peralta","Charm","Lovers Quarrel","Stalemate","Mystery Quest","Sail","Dekko","Paprika","Condiment","Dynalight","Antic Didone","Pirata One","Rosarivo","Stint Ultra Expanded","BioRhyme","Geo","Mate SC","Taprom","Sarina","Encode Sans Semi Expanded","Cagliostro","Koulen","Farsan","Nova Slim","Stint Ultra Condensed","Kite One","League Script","Mandali","Esteban","Yatra One","Princess Sofia","Ribeye","Simonetta","Encode Sans Expanded","Englebert","Mukta Mahee","Stoke","Numans","Almendra","Kosugi","Nosifer","Asul","Plaster","Sancreek","Bubbler One","Flamenco","Junge","Ranchers","Ramaraja","Joti One","Glass Antiqua","Italiana","Trade Winds","Inknut Antiqua","Dorsa","Port Lligat Sans","IM Fell French Canon","Baloo Chettan","Chela One","Meera Inimai","Ruluko","Donegal One","Pavanam","Maiden Orange","Galindo","Revalia","Sura","Croissant One","Linden Hill","Mali","Buda","Baloo Tammudu","Aleo","Siemreap","Ruge Boogie","New Rocker","Fresca","Miss Fajardose","Text Me One","Angkor","Bilbo","Overlock SC","Julee","Petrona","Sree Krushnadevaraya","Averia Gruesa Libre","Redressed","Autour One","Wellfleet","Swanky and Moo Moo","Gugi","Krub","Sonsie One","Griffy","Kavoon","Manuale","Marko One","Bokor","Fascinate Inline","Miniver","Eagle Lake","Jim Nightshade","IM Fell Great Primer","Rhodium Libre","Akronim","Ravi Prakash","Della Respira","Jacques Francois","Offside","Henny Penny","Trykker","Chakra Petch","Noto Serif TC","Chango","Purple Purse","Felipa","Ruthie","Cormorant Unicase","Song Myung","Molle","Inika","Bahiana","Barrio","IM Fell DW Pica SC","MedievalSharp","Monsieur La Doulaise","Underdog","UnifrakturCook","Mina","Kdam Thmor","Jua","Elsie Swash Caps","Tillana","Diplomata SC","Rum Raisin","Gaegu","Monofett","Oldenburg","Dangrek","Kumar One","Chathura","Miltonian Tattoo","Content","Irish Grover","Nokora","Montaga","Smythe","Asset","Galdeano","Margarine","Ewert","Modak","Iceberg","Sahitya","Modern Antiqua","Nova Script","Diplomata","Bigshot One","Lancelot","Astloch","Snippet","Bayon","Moul","IM Fell Great Primer SC","Odor Mean Chey","Smokum","Metal Mania","Devonshire","Jacques Francois Shadow","Kavivanar","Arbutus","KoHo","Sirin Stencil","Poor Story","Original Surfer","Caesar Dressing","IM Fell French Canon SC","Asar","Dr Sugiyama","Zilla Slab Highlight","Piedra","Keania One","Snowburst One","Kantumruy","ZCOOL QingKe HuangYou","Meie Script","Flavors","Mrs Sheppards","Ribeye Marrow","Baloo Da","Atomic Age","Goblin One","Unlock","IM Fell Double Pica SC","Supermercado One","Macondo","Freehand","Seymour One","Sunshiney","Kirang Haerang","Charmonman","Combo","Trochut","Kenia","Jomhuria","Almendra SC","Suwannaphum","GFS Neohellenic","Metal","Londrina Shadow","Romanesco","Bungee Outline","Libre Barcode 128","Lakki Reddy","Vollkorn SC","Almendra Display","Major Mono Display","Nova Cut","Jolly Lodger","Libre Barcode 39 Text","Fahkwang","ZCOOL KuaiLe","Nova Oval","Bigelow Rules","Gorditas","Butterfly Kids","Risque","Thasadith","Passero One","Tenali Ramakrishna","Sedgwick Ave Display","Fascinate","Bungee Hairline","Miltonian","Kodchasan","Sofadi One","Bonbon","Libre Barcode 39 Extended Text","Emblema One","Geostar Fill","Fruktur","Londrina Sketch","Macondo Swash Caps","Butcherman","Mr Bedfort","Preahvihear","Chenla","Stalinist One","Aubrey","Sevillana","Erica One","Libre Barcode 39 Extended","Geostar","Gidugu","Fasthand","East Sea Dokdo","Gamja Flower","Peddana","Federant","Suravaram","Dhurjati","ZCOOL XiaoWei","Moulpali","Libre Barcode 39","Kumar One Outline","Stylish","Hanalei","Hi Melody","Libre Barcode 128 Text","Black And White Picture","Cute Font","Notable","BioRhyme Expanded","Dokdo","Srisakdi","Warnes","B612","Yeon Sung","B612 Mono"],"trending":["Taprom","Libre Barcode 39 Text","Felipa","Coiny","ZCOOL QingKe HuangYou","Miss Fajardose","B612","Nova Flat","Staatliches","Laila","Hanalei Fill","Supermercado One","M PLUS Rounded 1c","Kdam Thmor","Ramaraja","Padauk","Medula One","Sarabun","Luckiest Guy","Lovers Quarrel","K2D","IBM Plex Mono","Encode Sans Semi Condensed","Niramit","Charm","Mogra","Aldrich","Moul","Ruge Boogie","Srisakdi","Gothic A1","Encode Sans","Frank Ruhl Libre","Bahiana","Fira Sans Extra Condensed","Coda Caption","Sumana","Hi Melody","Montserrat Subrayada","Astloch","Noto Sans SC","Bokor","Iceland","Shojumaru","Codystar","Sree Krushnadevaraya","Arapey","Lalezar","Bungee Hairline","Kotta One","Arya","Fascinate Inline","Norican","Barlow","Eater","Coda","Griffy","Marcellus SC","Saira Extra Condensed","Emblema One","Playball","Rhodium Libre","Siemreap","Meera Inimai","Archivo","Knewave","IM Fell Great Primer SC","Chonburi","Gabriela","Lilita One","Noto Serif SC","Jacques Francois","Secular One","Gaegu","Gorditas","Esteban","Fahkwang","Jura","Gafata","B612 Mono","VT323","Voltaire","Warnes","Noto Serif JP","Belgrano","Mrs Saint Delafield","Love Ya Like A Sister","IBM Plex Sans Condensed","Atomic Age","Charmonman","Molle","Euphoria Script","Itim","Roboto Mono","New Rocker","Miriam Libre","Palanquin Dark","Markazi Text","Engagement","Alike Angular","Sunflower","Trochut","Dangrek","Rationale","Libre Barcode 39 Extended Text","BioRhyme Expanded","Yantramanav","Convergence","Peddana","Chicle","Bellefair","Syncopate","David Libre","Baloo Bhaijaan","Cute Font","Oregano","Notable","Fira Sans Condensed","Vampiro One","Sirin Stencil","Spectral","Bowlby One SC","Cambo","Spectral SC","Stalemate","Exo","Allerta Stencil","Ranchers","Duru Sans","Kosugi Maru","Miltonian","Holtwood One SC","Kumar One","Bungee Shade","Arbutus Slab","Bevan","Donegal One","Waiting for the Sunrise","Faustina","Clicker Script","Miniver","Hind Guntur","Pavanam","Gruppo","Hind Vadodara","Halant","Satisfy","Jockey One","Fira Mono","Kristi","Salsa","Tauri","Zeyada","Sriracha","Kosugi","Sura","Sigmar One","Oxygen Mono","Sawarabi Mincho","Average","Wendy One","Yellowtail","Butcherman","Fredoka One","Atma","Rouge Script","Freehand","Chau Philomene One","Actor","Yesteryear","Miltonian Tattoo","Milonga","Kurale","Puritan","Sarpanch","Belleza","Dokdo","Cormorant Unicase","Inder","Eagle Lake","Cormorant","Adamina","Kranky","Pacifico","Croissant One","Mr De Haviland","Homenaje","Lemon","Cambay","Didact Gothic","Sarala","Advent Pro","Bad Script","Athiti","Tienne","Herr Von Muellerhoff","Faster One","Mr Dafoe","Arima Madurai","Copse","Stardos Stencil","Do Hyeon","Baumans","Linden Hill","Stint Ultra Expanded","Ultra","Black Han Sans","Slabo 13px","Libre Barcode 39 Extended","Bilbo Swash Caps","Cinzel","Purple Purse","Heebo","Paprika","Rum Raisin","IM Fell Double Pica SC","Fauna One","Amita","Poller One","Nunito","Varela","Port Lligat Sans","Asset","Leckerli One","Ravi Prakash","Mali","Yatra One","Oleo Script","Trirong","Oleo Script Swash Caps","Permanent Marker","Cormorant Garamond","Sintony","Lusitana","Jua","Maitree","Combo","Nunito Sans","Bubblegum Sans","Forum","Chathura","Snowburst One","Bungee","Creepster","Nokora","Suwannaphum","Fugaz One","Fenix","Italianno","Podkova","Passion One","Tillana","Kavivanar","Cutive Mono","Orbitron","Orienta","Cousine","Nova Cut","Tajawal","Averia Sans Libre","Bungee Inline","Preahvihear","Glass Antiqua","Black And White Picture","Montaga","Just Another Hand","Bigelow Rules","Barlow Condensed","Devonshire","Cormorant Infant","Khand","Noticia Text","News Cycle","MedievalSharp","Englebert","Tangerine","Rubik","Amaranth","Aleo","Macondo","Tenor Sans","Pridi","Volkhov","IM Fell French Canon","Merriweather Sans","Cantora One","Merriweather","Suranna","IM Fell English SC","Istok Web","Margarine","Baloo Bhaina","Gloria Hallelujah","Karma","Monsieur La Doulaise","Kalam","Sunshiney","Chewy","Work Sans","IM Fell Great Primer","Racing Sans One","Fjord One","Paytone One","Sahitya","Karla","Alfa Slab One","Arbutus","Aladin","Press Start 2P","Unkempt","Asar","Pangolin","Inconsolata","Nanum Gothic Coding","Righteous","Yrsa","Bowlby One","Libre Barcode 39","Ubuntu Mono","Neucha","Merienda One","Poppins","Mystery Quest","ABeeZee","Kelly Slab","Arizonia","Boogaloo","Jacques Francois Shadow","Manuale","Sacramento","Oxygen","Yeon Sung","Abel","Cantarell","Dancing Script","Noto Sans KR","Mate SC","Anonymous Pro","Walter Turncoat","Source Code Pro","Amiri","Ruda","Scope One","Noto Serif","La Belle Aurore","Acme","Share Tech Mono","Timmana","Jolly Lodger","Slackey","Rancho","Abhaya Libre","Amatic SC","Kenia","Jim Nightshade","Meddon","Fresca","Harmattan","Gudea","Sedgwick Ave","Lobster Two","Condiment","Play","Dr Sugiyama","Parisienne","Sawarabi Gothic","Patrick Hand SC","Zilla Slab Highlight","Rammetto One","Numans","Mandali","Bangers","Poor Story","Stint Ultra Condensed","Handlee","Lekton","Fredericka the Great","Sansita","Geo","Montserrat","Roboto Condensed","Londrina Shadow","Nothing You Could Do","Questrial","Lato","Bigshot One","Concert One","IM Fell DW Pica SC","Aclonica","Cookie","Neuton","Bungee Outline","Spirax","Unica One","Doppio One","Sanchez","Maiden Orange","Balthazar","Crimson Text","Abril Fatface","Londrina Sketch","Rye","PT Serif","Caesar Dressing","Schoolbell","Lobster","Mr Bedfort","Kaushan Script","Finger Paint","Prompt","Vast Shadow","Asap Condensed","Bonbon","Chivo","Baloo Bhai","Mukta","Expletus Sans","Tinos","Nosifer","Elsie Swash Caps","Share","Pragati Narrow","Lora","Cinzel Decorative","Josefin Sans","Dhurjati","Bubbler One","Caveat","Yanone Kaffeesatz","Mukta Mahee","Kumar One Outline","Quicksand","Cabin","Hanuman","Ewert","Signika","Marcellus","Frijole","Archivo Narrow","UnifrakturCook","Julius Sans One","Muli","Amarante","Asul","Carrois Gothic SC","GFS Neohellenic","Biryani","Philosopher","Meie Script","Sail","Nova Round","Gravitas One","Gurajada","Days One","Kameron","Rokkitt","Coming Soon","Nobile","Libre Baskerville","Pinyon Script","Signika Negative","Mako","Poly","Irish Grover","Allan","McLaren","Shadows Into Light","Quattrocento","Rambla","Noto Serif KR","Crafty Girls","Baloo Chettan","Ranga","Cairo","Smythe","Fjalla One","Monofett","Glegoo","Roboto","Sonsie One","Berkshire Swash","Delius Unicase","Slabo 27px","Barrio","Montserrat Alternates","Proza Libre","Sedgwick Ave Display","BioRhyme","Chango","Dawning of a New Day","Port Lligat Slab","Ruluko","Amethysta","PT Mono","Annie Use Your Telescope","Playfair Display","Overpass","Bree Serif","Petit Formal Script","Source Serif Pro","Encode Sans Expanded","Baloo Da","Lily Script One","Nanum Pen Script","Life Savers","Rasa","Alex Brush","Autour One","Sofia","Courgette","Kreon","Quattrocento Sans","Khula","Lateef","Libre Barcode 128","Lustria","Mountains of Christmas","Great Vibes","Rochester","Noto Sans JP","Rozha One","Yeseva One","Source Sans Pro","Magra","Nanum Gothic","Alice","Freckle Face","Lancelot","Grand Hotel","Oswald","Ubuntu","Marko One","Fascinate","Asap","Italiana","Nova Square","Niconne","Marmelad","PT Sans Caption","IM Fell English","Marvel","UnifrakturMaguntia","Josefin Slab","Allerta","Cardo","Palanquin","Francois One","Sniglet","Graduate","Goudy Bookletter 1911","Skranji","Antic Slab","Capriola","Alegreya Sans SC","Give You Glory","Alike","Open Sans","Crete Round","Audiowide","Vollkorn","Caveat Brush","PT Serif Caption","Cherry Cream Soda","Sevillana","Fira Sans","Shadows Into Light Two","Rubik Mono One","Ubuntu Condensed","Damion","Architects Daughter","Cabin Condensed","Indie Flower","Revalia","Geostar Fill","Trocchi","Londrina Solid","Aubrey","Habibi","Alegreya","Metrophobic","Share Tech","Over the Rainbow","Molengo","Cantata One","Open Sans Condensed","Chenla","Lemonada","Peralta","Quantico","Galada","Wire One","Mate","Brawler","Ceviche One","Kirang Haerang","Comfortaa","Romanesco","Fasthand","Antic Didone","Raleway","Changa","Hanalei","Andada","Titillium Web","Nixie One","Varela Round","Black Ops One","Gidugu","Nova Oval","Ledger","Average Sans","Calligraffitti","Denk One","Roboto Slab","The Girl Next Door","Ribeye","Voces","Hind","Trykker","Joti One","Baloo","Junge","Dosis","Cuprum","Mukta Vaani","Judson","Contrail One","Catamaran","Fondamento","Galindo","Germania One","Carrois Gothic","Bitter","Ruthie","Julee","Sofadi One","PT Sans Narrow","Economica","Wellfleet","Londrina Outline","Just Me Again Down Here","Mrs Sheppards","Caudex","Radley","PT Sans","Montez","Cedarville Cursive","Mirza","Gilda Display","Princess Sofia","Metal Mania","Pontano Sans","Allura","Monda","Katibeh","Mitr","Almendra","Baloo Tammudu","Chela One","Stoke","Hind Madurai","Carter One","Fontdiner Swanky","Qwigley","Cagliostro","Megrim","Patrick Hand","Mada","Titan One","Armata","Cutive","Covered By Your Grace","Risque","Delius Swash Caps","Changa One","Space Mono","Emilys Candy","Henny Penny","Pompiere","Homemade Apple","IM Fell DW Pica","Prata","Sarina","Aguafina Script","Swanky and Moo Moo","Nanum Brush Script","GFS Didot","Dorsa","Pathway Gothic One","Passero One","Rosarivo","Old Standard TT","Spinnaker","IBM Plex Serif","Corben","Almendra SC","Noto Sans","Bilbo","Jomhuria","Prociono","Hind Siliguri","Alegreya Sans","Libre Franklin","Baloo Tamma","Telex","Nova Mono","Russo One","Modern Antiqua","Kanit","League Script","Chelsea Market","IM Fell Double Pica","Petrona","BenchNine","Alef","Macondo Swash Caps","Marck Script","Kavoon","Seaweed Script","Cabin Sketch","Erica One","Anton","Alegreya SC","Exo 2","Antic","Text Me One","Rock Salt","Pattaya","Scheherazade","Mallanna","Ropa Sans","Flamenco","Seymour One","Sue Ellen Francisco","Elsie","Reem Kufi","Rufina","Kantumruy","Archivo Black","Redressed","Nova Slim","Overlock","Gentium Basic","Lakki Reddy","Oldenburg","Oranienbaum","Federant","Andika","Nanum Myeongjo","IBM Plex Sans","Piedra","Scada","Arvo","Geostar","Original Surfer","Loved by the King","Suravaram","Federo","Almendra Display","Rakkas","Martel","Barlow Semi Condensed","Wallpoet","Michroma","Delius","Bayon","Metal","Playfair Display SC","Arimo","Ramabhadra","Modak","NTR","Anaheim","Headland One","El Messiri","Electrolize","Vidaloka","Unna","Saira","Gentium Book Basic","Fruktur","Domine","Odor Mean Chey","Happy Monkey","Vollkorn SC","ZCOOL KuaiLe","Buda","Zilla Slab","Keania One","Moulpali","Simonetta","Aref Ruqaa","Poiret One","Assistant","Bentham","Pirata One","Maven Pro","Della Respira","M PLUS 1p","Offside","Angkor","Underdog","Imprima","Koulen","Kodchasan","Iceberg","Dynalight","Akronim","Stalinist One","Averia Libre","Plaster","Averia Serif Libre","Gugi","Prosto One","Mouse Memoirs","Carme","Enriqueta","Basic","Smokum","Shanti","Vesper Libre","Squada One","Bai Jamjuree","Taviraj","Fanwood Text","Vibur","Galdeano","Sorts Mill Goudy","Strait","Averia Gruesa Libre","Farsan","Butterfly Kids","Suez One","Tenali Ramakrishna","Cherry Swash","Goblin One","Encode Sans Condensed","Eczar","Patua One","Mina","Battambang","IM Fell French Canon SC","Baloo Paaji","Ribeye Marrow","Nova Script","Libre Barcode 128 Text","EB Garamond","Limelight","Dekko","Stylish","Diplomata SC","Quando","Rajdhani","Arsenal","Six Caps","Cormorant SC","Diplomata","Sancreek","Cormorant Upright","Content","Quintessential","Song Myung","Amiko","Teko","Kadwa","Crushed","Viga","Candal","Monoton","Ruslan Display","Tulpen One","Noto Sans TC","Metamorphous","Short Stack","Inika","Raleway Dots","Krona One","Thasadith","Buenard","Rosario","Overlock SC","Hammersmith One","Saira Semi Condensed","Reenie Beanie","Kite One","Martel Sans","Overpass Mono","Ovo","Baloo Thambi","Coustard","Trade Winds","Merienda","Artifika","Uncial Antiqua","Saira Condensed","Encode Sans Semi Expanded","Special Elite","Unlock","Khmer","ZCOOL XiaoWei","Shrikhand","Spicy Rice","Jaldi","Chakra Petch","Gochi Hand","Mukta Malar","Flavors","East Sea Dokdo","Gamja Flower","Inknut Antiqua","Noto Serif TC","Snippet","Major Mono Display","Krub","KoHo"]}}
|
readme.txt
CHANGED
@@ -1,1229 +1,1263 @@
|
|
1 |
-
=== Kirki ===
|
2 |
-
Contributors: aristath, fovoc, igmoweb
|
3 |
-
Tags: customizer,options framework, theme, mods, toolkit, gutenberg
|
4 |
-
Donate link: https://aristath.github.io/donate
|
5 |
-
Requires at least: 4.9
|
6 |
-
Tested up to: 5.0
|
7 |
-
Stable tag: 3.0.35.3
|
8 |
-
License: MIT
|
9 |
-
License URI: https://opensource.org/licenses/MIT
|
10 |
-
|
11 |
-
The ultimate framework for theme developers using the WordPress Customizer
|
12 |
-
|
13 |
-
|
14 |
-
== Description ==
|
15 |
-
|
16 |
-
[![Build Status](https://travis-ci.org/aristath/kirki.svg?branch=develop)](https://travis-ci.org/aristath/kirki) [![Code Climate](https://codeclimate.com/github/aristath/kirki/badges/gpa.svg)](https://codeclimate.com/github/aristath/kirki) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/66d6d8b6a4654cd18686ed1cd9f1bfb3)](https://www.codacy.com/app/aristath/kirki?utm_source=github.com&utm_medium=referral&utm_content=aristath/kirki&utm_campaign=Badge_Grade) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/aristath/kirki/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/aristath/kirki/?branch=develop)
|
17 |
-
|
18 |
-
Using Kirki theme developers can create rich experiences for the WordPress Customizer using best coding practices.
|
19 |
-
|
20 |
-
Included are more than 30 custom control types ranging from simple sliders to complex typography controls with Google-Fonts integration, automatic CSS generation, `postMessage` scripts automatically generated, tooltips and a lot of extras that make developing themes a lot faster for developers and meaningful for users.
|
21 |
-
|
22 |
-
We advise you to familiarise yourself with the Customizer API before you start writing your theme using Kirki. An excellent handbook for the WordPress Customizer can be found on the [developer.wordpress.org](https://developer.wordpress.org/themes/customize-api/) website.
|
23 |
-
|
24 |
-
You can find detailed documentation on how to use Kirki on [https://aristath.github.io/kirki/](https://aristath.github.io/kirki/)
|
25 |
-
|
26 |
-
[Development and issues on github](https://github.com/aristath/kirki).
|
27 |
-
|
28 |
-
== Installation ==
|
29 |
-
|
30 |
-
Simply install as a normal WordPress plugin and activate.
|
31 |
-
|
32 |
-
If you want to integrate Kirki in your theme or plugin, please read the instructions on [our documentation site](https://aristath.github.io/kirki/docs/integration).
|
33 |
-
|
34 |
-
== Changelog ==
|
35 |
-
|
36 |
-
= 3.0.35.3 =
|
37 |
-
|
38 |
-
Dec. 26, 2018, dev time: 1h
|
39 |
-
|
40 |
-
* Fix: Update CSS-Vars when the preview pane refreshes.
|
41 |
-
* Fix: Tweaked the CSS Values JS-validation function.
|
42 |
-
* Fix: Update Google Fonts.
|
43 |
-
|
44 |
-
= 3.0.35.2 =
|
45 |
-
|
46 |
-
Dec. 8, 2018, dev time: 20m
|
47 |
-
|
48 |
-
* Fix: Correctly output css-vars on the top pf admin pages for use in Gutenberg styles.
|
49 |
-
* Fix: Update Google Fonts.
|
50 |
-
|
51 |
-
= 3.0.35.1 =
|
52 |
-
|
53 |
-
Dec. 6, 2018, dev time: 5m
|
54 |
-
|
55 |
-
* Fix: PHP 5.2 conflict.
|
56 |
-
|
57 |
-
= 3.0.35 =
|
58 |
-
|
59 |
-
Dec. 6, 2018, dev time: 15h
|
60 |
-
|
61 |
-
* New: Add Gutenberg support [#2009](https://github.com/aristath/kirki/issues/2009) props @timelsass
|
62 |
-
* Fix: Add additional check for variants in the typography control - fixes JS issue if no variants were found.
|
63 |
-
* Fix: Reviews all sanitization, validation & escaping calls and adjusted them where necessary. This is one step closer to full WPTRT compliance. Props @poena for bringing this to my attention.
|
64 |
-
* Fix: Improved implementation for the `sortable` control.
|
65 |
-
* Fix: `kirki_modules` filter was not working. [#2023](https://github.com/aristath/kirki/issues/2023)
|
66 |
-
* Fix: Issue with google-fonts loading when in the customizer and the typography field uses `postMessage`. [#1988](https://github.com/aristath/kirki/issues/1988)
|
67 |
-
* Fix: Changed the priority for css-vars.
|
68 |
-
* Fix: Dependencies for the code control. [#2020](https://github.com/aristath/kirki/issues/2020)
|
69 |
-
* Fix: PHP 5.2 error `T_PAAMAYIM_NEKUDOTAYIM` [#2032](https://github.com/aristath/kirki/issues/2032)
|
70 |
-
* Fix: Code cleanup in the repeater control, props @joyously [ticket](https://wordpress.org/support/topic/repeater-setting-value-function/)
|
71 |
-
* Tweak: Removed deprecated code & code cleanups.
|
72 |
-
|
73 |
-
= 3.0.34 =
|
74 |
-
|
75 |
-
Sept. 14 2018, dev time: 21h.
|
76 |
-
|
77 |
-
* Fix: Error when `typography` fields don't have a font-family. [#1916](https://github.com/aristath/kirki/issues/1916), [#1797](https://github.com/aristath/kirki/issues/1797), [#1935](https://github.com/aristath/kirki/issues/1935). props @mintbird
|
78 |
-
* Fix: Allow using "Default Browser Font-Family" in default value (`typography` fields) [#1907](https://github.com/aristath/kirki/pull/1907). props @mintbird
|
79 |
-
* Fix: Envato theme-check error [#1914](https://github.com/aristath/kirki/issues/1914), [#1926](https://github.com/aristath/kirki/pull/1926). props @timelsass
|
80 |
-
* Fix: HTTPS webfont load error [#1925](https://github.com/aristath/kirki/issues/1925)
|
81 |
-
* Fix: Undefined index PHP notice for background-color. [95ca010](https://github.com/aristath/kirki/pull/1930/commits/95ca010588878363a7d2042f09428bae260cb602)
|
82 |
-
* Fix: Minor Fixes for css-variables added in v3.0.28.
|
83 |
-
* New: Allow unitless values in dimension controls.
|
84 |
-
* New: (Refactor) Migrated `image` controls to new structure in preparation of v3.1
|
85 |
-
* Update: Updated Google-fonts.
|
86 |
-
|
87 |
-
= 3.0.33 =
|
88 |
-
|
89 |
-
May 17 2018
|
90 |
-
|
91 |
-
* Fix: Google-Fonts folder permissions improperly set in v3.0.28.
|
92 |
-
* Fix: Select issues in repeater controls [#1892](https://github.com/aristath/kirki/issues/1892), [#1888](https://github.com/aristath/kirki/issues/1888) props @asilcetin.
|
93 |
-
* Fix: Updated Google Fonts to include latest font-family additions.
|
94 |
-
|
95 |
-
= 3.0.32 =
|
96 |
-
|
97 |
-
May 16 2018
|
98 |
-
|
99 |
-
* Fix: Reverted some google-fonts changes. Fixes loading issues on some environments.
|
100 |
-
* New: Added option per-typography-control to allow users to host Google Fonts on their own servers (GDPR compliance).
|
101 |
-
|
102 |
-
= 3.0.31 =
|
103 |
-
|
104 |
-
May 16 2018
|
105 |
-
|
106 |
-
* Fix: Added fallback to google-CDN if locally-hosted google-fonts can't be found.
|
107 |
-
* Fix: Updated google-fonts list.
|
108 |
-
|
109 |
-
= 3.0.30 =
|
110 |
-
|
111 |
-
May 15 2018
|
112 |
-
|
113 |
-
* Fix: Fixed caching for locally-downloaded google-fonts (GDPR compliance helper).
|
114 |
-
|
115 |
-
= 3.0.29 =
|
116 |
-
|
117 |
-
May 15 2018
|
118 |
-
|
119 |
-
* Fix: PHP error in some PHP versions because of the "do" method-name.
|
120 |
-
|
121 |
-
= 3.0.28 =
|
122 |
-
|
123 |
-
May 15 2018, dev time: 12 hours.
|
124 |
-
|
125 |
-
* Fix: Repeater control JS issue if saved value is malformatted [#1879](https://github.com/aristath/kirki/issues/1879) - props @asilcetin.
|
126 |
-
* Fix: Preset control bug [#1882](http
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|