summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2019-05-14 03:11:33 +0200
committerBenjamin Otte <otte@redhat.com>2019-05-21 06:43:59 +0200
commitc8fc40e793bc51bd2098c94ec05241c42dfb6d85 (patch)
treec5d35a9a160f0ca209eaea7b82649f6bcdc817f9
parent6c473d5ff71bd6b74476b7bf0fa20687a3af160b (diff)
downloadgtk+-c8fc40e793bc51bd2098c94ec05241c42dfb6d85.tar.gz
rendernodeparser: Print properties alphabetically
Because now we have a rule. Also update some tests to the new order.
-rw-r--r--gsk/gskrendernodeparser.c69
-rw-r--r--testsuite/gsk/serializedeserialize/testswitch.node178
-rw-r--r--testsuite/gsk/serializedeserialize/widgetfactory.node1220
3 files changed, 734 insertions, 733 deletions
diff --git a/gsk/gskrendernodeparser.c b/gsk/gskrendernodeparser.c
index e0b881310d..ec122e594d 100644
--- a/gsk/gskrendernodeparser.c
+++ b/gsk/gskrendernodeparser.c
@@ -1536,9 +1536,9 @@ render_node_print (Printer *p,
{
start_node (p, "cross-fade");
+ append_node_param (p, "end", gsk_cross_fade_node_get_end_child (node));
append_float_param (p, "progress", gsk_cross_fade_node_get_progress (node));
append_node_param (p, "start", gsk_cross_fade_node_get_start_child (node));
- append_node_param (p, "end", gsk_cross_fade_node_get_end_child (node));
end_node (p);
}
@@ -1553,8 +1553,8 @@ render_node_print (Printer *p,
start_node (p, "linear-gradient");
append_rect_param (p, "bounds", &node->bounds);
- append_point_param (p, "start", gsk_linear_gradient_node_peek_start (node));
append_point_param (p, "end", gsk_linear_gradient_node_peek_end (node));
+ append_point_param (p, "start", gsk_linear_gradient_node_peek_start (node));
_indent (p);
g_string_append (p->str, "stops:");
@@ -1584,8 +1584,8 @@ render_node_print (Printer *p,
{
start_node (p, "opacity");
- append_float_param (p, "opacity", gsk_opacity_node_get_opacity (node));
append_node_param (p, "child", gsk_opacity_node_get_child (node));
+ append_float_param (p, "opacity", gsk_opacity_node_get_opacity (node));
end_node (p);
}
@@ -1595,12 +1595,12 @@ render_node_print (Printer *p,
{
start_node (p, "outset-shadow");
- append_rounded_rect_param (p, "outline", gsk_outset_shadow_node_peek_outline (node));
+ append_float_param (p, "blur", gsk_outset_shadow_node_get_blur_radius (node));
append_rgba_param (p, "color", gsk_outset_shadow_node_peek_color (node));
append_float_param (p, "dx", gsk_outset_shadow_node_get_dx (node));
append_float_param (p, "dy", gsk_outset_shadow_node_get_dy (node));
+ append_rounded_rect_param (p, "outline", gsk_outset_shadow_node_peek_outline (node));
append_float_param (p, "spread", gsk_outset_shadow_node_get_spread (node));
- append_float_param (p, "blur", gsk_outset_shadow_node_get_blur_radius (node));
end_node (p);
}
@@ -1610,8 +1610,8 @@ render_node_print (Printer *p,
{
start_node (p, "clip");
- append_rect_param (p, "clip", gsk_clip_node_peek_clip (node));
append_node_param (p, "child", gsk_clip_node_get_child (node));
+ append_rect_param (p, "clip", gsk_clip_node_peek_clip (node));
end_node (p);
}
@@ -1621,8 +1621,8 @@ render_node_print (Printer *p,
{
start_node (p, "rounded-clip");
- append_rounded_rect_param (p, "clip", gsk_rounded_clip_node_peek_clip (node));
append_node_param (p, "child", gsk_rounded_clip_node_get_child (node));
+ append_rounded_rect_param (p, "clip", gsk_rounded_clip_node_peek_clip (node));
end_node (p);
@@ -1633,8 +1633,8 @@ render_node_print (Printer *p,
{
start_node (p, "transform");
- append_transform_param (p, "transform", gsk_transform_node_get_transform (node));
append_node_param (p, "child", gsk_transform_node_get_child (node));
+ append_transform_param (p, "transform", gsk_transform_node_get_transform (node));
end_node (p);
}
@@ -1644,9 +1644,9 @@ render_node_print (Printer *p,
{
start_node (p, "color-matrix");
+ append_node_param (p, "child", gsk_color_matrix_node_get_child (node));
append_matrix_param (p, "matrix", gsk_color_matrix_node_peek_color_matrix (node));
append_vec4_param (p, "offset", gsk_color_matrix_node_peek_color_offset (node));
- append_node_param (p, "child", gsk_color_matrix_node_get_child (node));
end_node (p);
}
@@ -1656,6 +1656,17 @@ render_node_print (Printer *p,
{
start_node (p, "border");
+ _indent (p);
+ g_string_append (p->str, "colors: ");
+ append_rgba (p->str, &gsk_border_node_peek_colors (node)[0]);
+ g_string_append_c (p->str, ' ');
+ append_rgba (p->str, &gsk_border_node_peek_colors (node)[1]);
+ g_string_append_c (p->str, ' ');
+ append_rgba (p->str, &gsk_border_node_peek_colors (node)[2]);
+ g_string_append_c (p->str, ' ');
+ append_rgba (p->str, &gsk_border_node_peek_colors (node)[3]);
+ g_string_append (p->str, ";\n");
+
append_rounded_rect_param (p, "outline", gsk_border_node_peek_outline (node));
_indent (p);
@@ -1669,17 +1680,6 @@ render_node_print (Printer *p,
string_append_double (p->str, gsk_border_node_peek_widths (node)[3]);
g_string_append (p->str, ";\n");
- _indent (p);
- g_string_append (p->str, "colors: ");
- append_rgba (p->str, &gsk_border_node_peek_colors (node)[0]);
- g_string_append_c (p->str, ' ');
- append_rgba (p->str, &gsk_border_node_peek_colors (node)[1]);
- g_string_append_c (p->str, ' ');
- append_rgba (p->str, &gsk_border_node_peek_colors (node)[2]);
- g_string_append_c (p->str, ' ');
- append_rgba (p->str, &gsk_border_node_peek_colors (node)[3]);
- g_string_append (p->str, ";\n");
-
end_node (p);
}
break;
@@ -1692,6 +1692,8 @@ render_node_print (Printer *p,
start_node (p, "shadow");
_indent (p);
+ append_node_param (p, "child", gsk_shadow_node_get_child (node));
+
g_string_append (p->str, "shadows: ");
for (i = 0; i < n_shadows; i ++)
{
@@ -1716,8 +1718,6 @@ render_node_print (Printer *p,
g_string_append_c (p->str, ';');
g_string_append_c (p->str, '\n');
- append_node_param (p, "child", gsk_shadow_node_get_child (node));
-
end_node (p);
}
break;
@@ -1726,12 +1726,12 @@ render_node_print (Printer *p,
{
start_node (p, "inset-shadow");
- append_rounded_rect_param (p, "outline", gsk_inset_shadow_node_peek_outline (node));
+ append_float_param (p, "blur", gsk_inset_shadow_node_get_blur_radius (node));
append_rgba_param (p, "color", gsk_inset_shadow_node_peek_color (node));
append_float_param (p, "dx", gsk_inset_shadow_node_get_dx (node));
append_float_param (p, "dy", gsk_inset_shadow_node_get_dy (node));
+ append_rounded_rect_param (p, "outline", gsk_inset_shadow_node_peek_outline (node));
append_float_param (p, "spread", gsk_inset_shadow_node_get_spread (node));
- append_float_param (p, "blur", gsk_inset_shadow_node_get_blur_radius (node));
end_node (p);
}
@@ -1771,6 +1771,8 @@ render_node_print (Printer *p,
guint i;
start_node (p, "text");
+ append_rgba_param (p, "color", gsk_text_node_peek_color (node));
+
_indent (p);
desc = pango_font_describe ((PangoFont *)gsk_text_node_peek_font (node));;
font_name = pango_font_description_to_string (desc);
@@ -1778,10 +1780,6 @@ render_node_print (Printer *p,
g_free (font_name);
pango_font_description_free (desc);
- append_float_param (p, "x", gsk_text_node_get_x (node));
- append_float_param (p, "y", gsk_text_node_get_y (node));
- append_rgba_param (p, "color", gsk_text_node_peek_color (node));
-
_indent (p);
g_string_append (p->str, "glyphs: ");
glyph = gsk_text_node_peek_glyphs (node);
@@ -1789,7 +1787,6 @@ render_node_print (Printer *p,
glyph->glyph, glyph->geometry.width,
glyph->geometry.x_offset, glyph->geometry.y_offset,
glyph->attr.is_cluster_start);
-
for (i = 1; i < n_glyphs; i ++)
{
glyph = gsk_text_node_peek_glyphs (node) + i;
@@ -1798,10 +1795,13 @@ render_node_print (Printer *p,
glyph->geometry.x_offset, glyph->geometry.y_offset,
glyph->attr.is_cluster_start);
}
-
g_string_append_c (p->str, ';');
g_string_append_c (p->str, '\n');
+ append_float_param (p, "x", gsk_text_node_get_x (node));
+ append_float_param (p, "y", gsk_text_node_get_y (node));
+
+
end_node (p);
}
break;
@@ -1811,10 +1811,10 @@ render_node_print (Printer *p,
start_node (p, "debug");
_indent (p);
+ append_node_param (p, "child", gsk_debug_node_get_child (node));
/* TODO: We potentially need to escape certain characters in the message */
g_string_append_printf (p->str, "message: \"%s\";\n", gsk_debug_node_get_message (node));
- append_node_param (p, "child", gsk_debug_node_get_child (node));
end_node (p);
}
break;
@@ -1833,10 +1833,10 @@ render_node_print (Printer *p,
case GSK_REPEAT_NODE:
{
start_node (p, "repeat");
- append_rect_param (p, "bounds", &node->bounds);
- append_rect_param (p, "child-bounds", gsk_repeat_node_peek_child_bounds (node));
+ append_rect_param (p, "bounds", &node->bounds);
append_node_param (p, "child", gsk_repeat_node_get_child (node));
+ append_rect_param (p, "child-bounds", gsk_repeat_node_peek_child_bounds (node));
end_node (p);
}
@@ -1849,6 +1849,8 @@ render_node_print (Printer *p,
start_node (p, "blend");
+ append_node_param (p, "bottom", gsk_blend_node_get_bottom_child (node));
+
_indent (p);
for (i = 0; i < G_N_ELEMENTS (blend_modes); i++)
{
@@ -1859,7 +1861,6 @@ render_node_print (Printer *p,
}
}
append_node_param (p, "top", gsk_blend_node_get_top_child (node));
- append_node_param (p, "bottom", gsk_blend_node_get_bottom_child (node));
end_node (p);
}
diff --git a/testsuite/gsk/serializedeserialize/testswitch.node b/testsuite/gsk/serializedeserialize/testswitch.node
index 940d821e00..7c3c7f2728 100644
--- a/testsuite/gsk/serializedeserialize/testswitch.node
+++ b/testsuite/gsk/serializedeserialize/testswitch.node
@@ -1,5 +1,4 @@
transform {
- transform: translate(0, 0);
child: container {
color {
bounds: 0 0 404 204;
@@ -8,382 +7,383 @@ transform {
container {
container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(225,222,219);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
container {
container {
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 0;
color: rgba(0,0,0,0.1);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 0;
}
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 2;
color: rgba(0,0,0,0.07);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 2;
}
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: linear-gradient {
bounds: 0 0 24 24;
- start: 12 0;
end: 12 24;
+ start: 12 0;
stops: 0.2 rgb(255,255,255),0.9 rgb(246,245,244);
}
+ clip: -1 -1 26 26 / 13;
}
inset-shadow {
- outline: 0 0 24 24 / 12;
+ blur: 0;
color: rgb(255,255,255);
dx: 0;
dy: 1;
+ outline: 0 0 24 24 / 12;
spread: 0;
- blur: 0;
}
}
border {
+ colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
}
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(56, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
x: 145;
y: 18;
- color: rgb(46,52,54);
- glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
}
+ transform: translate(56, 0);
}
}
transform {
- transform: translate(0, 38);
child: container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(53,132,228);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(24,95,180) rgb(24,95,180) rgb(24,95,180) rgb(24,95,180);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(24,95,180) rgb(24,95,180) rgb(24,95,180) rgb(24,95,180);
}
transform {
- transform: translate(24, 0);
child: container {
container {
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 0;
color: rgba(0,0,0,0.1);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 0;
}
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 2;
color: rgba(0,0,0,0.07);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 2;
}
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: cross-fade {
+ end: linear-gradient {
+ bounds: 0 0 24 24;
+ end: 12 24;
+ start: 12 0;
+ stops: 0.1 rgb(255,255,255),0.9 rgb(255,255,255);
+ }
progress: 0.756154;
start: cross-fade {
- progress: 0.788575;
- start: color {
- bounds: 0 0 24 24;
- color: rgb(246,245,244);
- }
end: linear-gradient {
bounds: 0 0 24 24;
- start: 12 0;
end: 12 24;
+ start: 12 0;
stops: 0.2 rgb(255,255,255),0.9 rgb(246,245,244);
}
- }
- end: linear-gradient {
- bounds: 0 0 24 24;
- start: 12 0;
- end: 12 24;
- stops: 0.1 rgb(255,255,255),0.9 rgb(255,255,255);
+ progress: 0.788575;
+ start: color {
+ bounds: 0 0 24 24;
+ color: rgb(246,245,244);
+ }
}
}
+ clip: -1 -1 26 26 / 13;
}
inset-shadow {
- outline: 0 0 24 24 / 12;
+ blur: 0;
color: rgb(255,255,255);
dx: 0;
dy: 1;
+ outline: 0 0 24 24 / 12;
spread: 0;
- blur: 0;
}
}
border {
+ colors: rgb(24,95,180) rgb(24,95,180) rgb(24,95,180) rgb(24,95,180);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(24,95,180) rgb(24,95,180) rgb(24,95,180) rgb(24,95,180);
}
}
+ transform: translate(24, 0);
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(56, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 45 9216 0 0 1, 360 8192 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
x: 147;
y: 18;
- color: rgb(46,52,54);
- glyphs: 45 9216 0 0 1, 360 8192 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
}
+ transform: translate(56, 0);
}
}
+ transform: translate(0, 38);
}
transform {
- transform: translate(0, 76);
child: container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(250,249,248);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
container {
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: color {
bounds: 0 0 24 24;
color: rgb(250,249,248);
}
+ clip: -1 -1 26 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(56, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
x: 145;
y: 18;
- color: rgb(46,52,54);
- glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
}
+ transform: translate(56, 0);
}
}
+ transform: translate(0, 76);
}
transform {
- transform: translate(0, 114);
child: container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(250,249,248);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
transform {
- transform: translate(24, 0);
child: container {
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: color {
bounds: 0 0 24 24;
color: rgb(250,249,248);
}
+ clip: -1 -1 26 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
}
+ transform: translate(24, 0);
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(56, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 45 9216 0 0 1, 360 8192 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
x: 147;
y: 18;
- color: rgb(46,52,54);
- glyphs: 45 9216 0 0 1, 360 8192 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
}
+ transform: translate(56, 0);
}
}
+ transform: translate(0, 114);
}
transform {
- transform: translate(0, 152);
child: container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(225,222,219);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(205,199,194) rgb(205,199,194) rgb(205,199,194) rgb(205,199,194);
}
container {
container {
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 0;
color: rgba(0,0,0,0.1);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 0;
}
outset-shadow {
- outline: -1 -1 26 26 / 13;
+ blur: 2;
color: rgba(0,0,0,0.07);
dx: 0;
dy: 1;
+ outline: -1 -1 26 26 / 13;
spread: 0;
- blur: 2;
}
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: linear-gradient {
bounds: 0 0 24 24;
- start: 12 0;
end: 12 24;
+ start: 12 0;
stops: 0.2 rgb(255,255,255),0.9 rgb(246,245,244);
}
+ clip: -1 -1 26 26 / 13;
}
inset-shadow {
- outline: 0 0 24 24 / 12;
+ blur: 0;
color: rgb(255,255,255);
dx: 0;
dy: 1;
+ outline: 0 0 24 24 / 12;
spread: 0;
- blur: 0;
}
}
border {
+ colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
}
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(78, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
x: 123;
y: 18;
- color: rgb(46,52,54);
- glyphs: 37 11264 0 0 1, 324 4096 0 0 1, 417 7168 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1;
}
+ transform: translate(78, 0);
}
transform {
- transform: translate(388, 0);
child: transform {
- transform: translate(1, 6);
child: container {
container {
outset-shadow {
- outline: -1 -1 16 16 / 3;
+ blur: 0;
color: rgba(0,0,0,0.1);
dx: 0;
dy: 1;
+ outline: -1 -1 16 16 / 3;
spread: 0;
- blur: 0;
}
outset-shadow {
- outline: -1 -1 16 16 / 3;
+ blur: 2;
color: rgba(0,0,0,0.07);
dx: 0;
dy: 1;
+ outline: -1 -1 16 16 / 3;
spread: 0;
- blur: 2;
}
linear-gradient {
bounds: 0 0 14 14;
- start: 7 0;
end: 7 14;
+ start: 7 0;
stops: 0.2 rgb(255,255,255),0.9 rgb(246,245,244);
}
inset-shadow {
- outline: 0 0 14 14 / 2;
+ blur: 0;
color: rgb(255,255,255);
dx: 0;
dy: 1;
+ outline: 0 0 14 14 / 2;
spread: 0;
- blur: 0;
}
}
border {
+ colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(191,184,177) rgb(191,184,177) rgb(191,184,177) rgb(191,184,177);
}
}
+ transform: translate(1, 6);
}
+ transform: translate(388, 0);
}
}
+ transform: translate(0, 152);
}
}
}
+ transform: translate(0, 0);
}
diff --git a/testsuite/gsk/serializedeserialize/widgetfactory.node b/testsuite/gsk/serializedeserialize/widgetfactory.node
index 780a847bd4..95dd44a686 100644
--- a/testsuite/gsk/serializedeserialize/widgetfactory.node
+++ b/testsuite/gsk/serializedeserialize/widgetfactory.node
@@ -1,22 +1,21 @@
transform {
- transform: translate(0, 0);
child: container {
container {
outset-shadow {
- outline: 26 23 1464 788 / 8 8 0 0;
+ blur: 6;
color: rgba(0,0,0,0.2);
dx: 0;
dy: 2;
+ outline: 26 23 1464 788 / 8 8 0 0;
spread: 2;
- blur: 6;
}
outset-shadow {
- outline: 26 23 1464 788 / 8 8 0 0;
+ blur: 0;
color: rgba(0,0,0,0.18);
dx: 0;
dy: 0;
+ outline: 26 23 1464 788 / 8 8 0 0;
spread: 1;
- blur: 0;
}
}
color {
@@ -24,1411 +23,1407 @@ transform {
color: rgb(246,245,244);
}
transform {
- transform: translate(26, 23) translate(6, 0);
child: container {
container {
rounded-clip {
- clip: -6 0 1464 47 / 7 7 0 0;
child: linear-gradient {
bounds: -6 0 1464 46;
- start: 1458 23;
end: -6 23;
+ start: 1458 23;
stops: 0.08 rgb(227,234,242),0.25 rgb(246,245,244);
}
+ clip: -6 0 1464 47 / 7 7 0 0;
}
rounded-clip {
- clip: -6 0 1464 47 / 7 7 0 0;
child: color-matrix {
- matrix: matrix3d(0.0196078, 0.615686, 0.266667, 0, 0.780392, 0.270588, -0.211765, 0, 0.619608, -0.203922, -0.211765, 0, 0, 0, 0, 0.1);
- offset: 0.180392 0.203922 0.211765 0;
child: texture {
bounds: 1081.2 0 256 256;
texture: url("data:image/png;base64,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");
}
+ matrix: matrix3d(0.0196078, 0.615686, 0.266667, 0, 0.780392, 0.270588, -0.211765, 0, 0.619608, -0.203922, -0.211765, 0, 0, 0, 0, 0.1);
+ offset: 0.180392 0.203922 0.211765 0;
}
+ clip: -6 0 1464 47 / 7 7 0 0;
}
inset-shadow {
- outline: -6 0 1464 46 / 7 7 0 0;
+ blur: 0;
color: rgba(255,255,255,0.8);
dx: 0;
dy: 1;
+ outline: -6 0 1464 46 / 7 7 0 0;
spread: 0;
- blur: 0;
}
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -6 0 1464 47 / 7 7 0 0;
widths: 0 0 1 0;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(526, 0);
child: container {
transform {
- transform: translate(17, 11);
child: container {
rounded-clip {
- clip: -17 -5 133 34 / 5 0 0 5;
child: color {
bounds: -16 -4 132 32;
color: rgb(228,228,224);
}
+ clip: -17 -5 133 34 / 5 0 0 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 133 34 / 5 0 0 5;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(28, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
x: 0;
y: 17;
- color: rgb(46,52,54);
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
}
+ transform: translate(28, 0);
}
}
+ transform: translate(17, 11);
}
transform {
- transform: translate(133, 0) translate(17, 11);
child: container {
color {
bounds: -16 -4 132 32;
color: rgb(246,245,244);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 133 34;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(28, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(46,52,54);
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(28, 0);
}
}
+ transform: translate(133, 0) translate(17, 11);
}
transform {
- transform: translate(266, 0) translate(17, 11);
child: container {
rounded-clip {
- clip: -17 -5 134 34 / 0 5 5 0;
child: color {
bounds: -16 -4 132 32;
color: rgb(246,245,244);
}
+ clip: -17 -5 134 34 / 0 5 5 0;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 134 34 / 0 5 5 0;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(28, 0);
child: text {
+ color: rgb(46,52,54);
font: "Cantarell 11";
+ glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(46,52,54);
- glyphs: 162 9216 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
}
+ transform: translate(28, 0);
}
}
+ transform: translate(266, 0) translate(17, 11);
}
}
+ transform: translate(526, 0);
}
transform {
- transform: translate(1367, 0) translate(6, 11);
child: container {
rounded-clip {
- clip: -6 -5 36 34 / 5;
child: color {
bounds: -5 -4 34 32;
color: rgb(246,245,244);
}
+ clip: -6 -5 36 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -6 -5 36 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 4 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAH0lEQVQ4jWNgGPKAEY3/n1R9TNRzy0CB0TAYDQOqAADB/QMKPEUKLAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(1367, 0) translate(6, 11);
}
transform {
- transform: translate(1409, 0);
child: transform {
- transform: translate(7, 0) translate(10, 11);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAfUlEQVQ4je3RMQoCMRBG4Q+voEIKC/H+d7Cwd1GULSzEUyg2azOyQ1gxB9gHgcnknxdCmJliwAHr1FtiH2d/uUTwHJIVuuj1LYINbklyivqObYuglgx4YDcVXPwQvPFM+1esJgquxjf3qS4tgmM1UJKkaxF8g/m2YvyJmYoPk2IlW2Wofj0AAAAASUVORK5CYII=");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(7, 0) translate(10, 11);
}
+ transform: translate(1409, 0);
}
}
+ transform: translate(26, 23) translate(6, 0);
}
transform {
- transform: translate(26, 70) translate(10, 10);
child: container {
container {
container {
container {
transform {
- transform: translate(9, 1);
child: container {
rounded-clip {
- clip: -9 -1 374 34 / 5 0 0 5;
child: color {
bounds: -9 -1 374 34;
color: rgb(252,252,252);
}
+ clip: -9 -1 374 34 / 5 0 0 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -9 -1 374 34 / 5 0 0 5;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
clip {
- clip: 0 0 357 32;
child: container {
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
x: 0;
y: 21;
- color: rgb(50,50,50);
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
}
clip {
- clip: 0 6 101 19;
child: container {
color {
bounds: 0 0 357 32;
color: rgb(53,132,228);
}
text {
+ color: rgb(252,252,252);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
x: 0;
y: 21;
- color: rgb(252,252,252);
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
}
}
+ clip: 0 6 101 19;
}
}
+ clip: 0 0 357 32;
}
}
+ transform: translate(9, 1);
}
transform {
- transform: translate(374, 0) translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 36 34 / 0 5 5 0;
child: color {
bounds: -9 -4 34 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 36 34 / 0 5 5 0;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(53,132,228);
outline: -10 -5 36 34 / 0 5 5 0;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(53,132,228);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(374, 0) translate(10, 5);
}
}
transform {
- transform: translate(0, 44);
child: container {
transform {
- transform: translate(9, 1);
child: container {
rounded-clip {
- clip: -9 -1 374 34 / 5 0 0 5;
child: color {
bounds: -9 -1 374 34;
color: rgb(250,249,248);
}
+ clip: -9 -1 374 34 / 5 0 0 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -9 -1 374 34 / 5 0 0 5;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
clip {
- clip: 0 0 357 32;
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
x: 0;
y: 21;
- color: rgb(212,207,202);
- glyphs: 273 7168 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 370 8192 0 0 1, 472 7168 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
}
+ clip: 0 0 357 32;
}
}
+ transform: translate(9, 1);
}
transform {
- transform: translate(374, 0) translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 36 34 / 0 5 5 0;
child: color {
bounds: -9 -4 34 32;
color: rgb(250,249,248);
}
+ clip: -10 -5 36 34 / 0 5 5 0;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 36 34 / 0 5 5 0;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
}
+ transform: translate(374, 0) translate(10, 5);
}
}
+ transform: translate(0, 44);
}
transform {
- transform: translate(0, 88) translate(9, 1);
child: container {
rounded-clip {
- clip: -9 -1 410 34 / 5;
child: color {
bounds: -9 -1 410 34;
color: rgb(252,252,252);
}
+ clip: -9 -1 410 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -9 -1 410 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
clip {
- clip: 0 0 370 32;
child: opacity {
- opacity: 0.54902;
child: text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 30 10240 0 0 1, 349 4096 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 862 3072 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 862 3072 0 0 1, 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 358 13312 0 0 1, 370 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1;
x: 0;
y: 21;
- color: rgb(50,50,50);
- glyphs: 30 10240 0 0 1, 349 4096 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 862 3072 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 862 3072 0 0 1, 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 358 13312 0 0 1, 370 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1;
}
+ opacity: 0.54902;
}
+ clip: 0 0 370 32;
}
transform {
- transform: translate(370, 0) translate(6, 0);
child: color-matrix {
- matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
- offset: 0.654902 0.666667 0.666667 0;
child: texture {
bounds: 0 8 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAyklEQVQ4jc3S3UpCURAF4K8w8ypQA1EfpkcI8SmEEh9STYzQQNCE3sELiQiiLhy1I/ucbl0wDHt+Fmv2DOeGCh4xxic2eIrYVdSM8JNqbmMeyZS9oPnnnUEZr5FY4h63aKCDdeSe8wgGEXxDNaGujvcTRRnsmTuJ5v3Mp5bBRwQbCYK8PwGl8N/hvxIEF4nYAZfhF+HvioqL8BCyVqgl8jVM5ewfrjGLgjW6uAnrOq5xWqSi5XgLeYfU+m+UMvqYYGt3ykP0QuUZ4hei9keg1mtPrwAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
+ offset: 0.654902 0.666667 0.666667 0;
}
+ transform: translate(370, 0) translate(6, 0);
}
}
+ transform: translate(0, 88) translate(9, 1);
}
transform {
- transform: translate(0, 132) translate(9, 1);
child: container {
rounded-clip {
- clip: -9 -1 410 34 / 5;
child: color {
bounds: -9 -1 410 34;
color: rgb(250,249,248);
}
+ clip: -9 -1 410 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -9 -1 410 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
clip {
- clip: 0 0 392 32;
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
x: 0;
y: 21;
- color: rgb(212,207,202);
- glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
}
+ clip: 0 0 392 32;
}
}
+ transform: translate(0, 132) translate(9, 1);
}
transform {
- transform: translate(0, 176);
child: container {
transform {
- transform: translate(9, 1);
child: container {
rounded-clip {
- clip: -9 -1 374 35 / 5 0 0 5;
child: color {
bounds: -9 -1 374 35;
color: rgb(252,252,252);
}
+ clip: -9 -1 374 35 / 5 0 0 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -9 -1 374 35 / 5 0 0 5;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
clip {
- clip: 0 0 357 33;
child: text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
x: 0;
y: 22;
- color: rgb(50,50,50);
- glyphs: 287 8192 0 0 1, 360 8192 0 0 1, 430 5120 0 0 1, 409 6144 0 0 1, 473 7168 0 0 1;
}
+ clip: 0 0 357 33;
}
}
+ transform: translate(9, 1);
}
transform {
- transform: translate(374, 0) translate(6, 5);
child: container {
rounded-clip {
- clip: -6 -5 36 35 / 0 5 5 0;
child: color {
bounds: -5 -4 34 33;
color: rgb(246,245,244);
}
+ clip: -6 -5 36 35 / 0 5 5 0;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -6 -5 36 35 / 0 5 5 0;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 4 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAfUlEQVQ4je3RMQoCMRBG4Q+voEIKC/H+d7Cwd1GULSzEUyg2azOyQ1gxB9gHgcnknxdCmJliwAHr1FtiH2d/uUTwHJIVuuj1LYINbklyivqObYuglgx4YDcVXPwQvPFM+1esJgquxjf3qS4tgmM1UJKkaxF8g/m2YvyJmYoPk2IlW2Wofj0AAAAASUVORK5CYII=");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(374, 0) translate(6, 5);
}
}
+ transform: translate(0, 176);
}
transform {
- transform: translate(0, 221);
child: container {
transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 137 34 / 5 0 0 5;
child: color {
bounds: -9 -4 136 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 137 34 / 5 0 0 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 137 34 / 5 0 0 5;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 103 8192 0 0 1, 287 8192 0 0 1, 311 5120 0 0 1, 430 5120 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 103 8192 0 0 1, 287 8192 0 0 1, 311 5120 0 0 1, 430 5120 0 0 1;
}
transform {
- transform: translate(102, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(102, 0);
}
}
}
+ transform: translate(10, 5);
}
transform {
- transform: translate(137, 0);
child: transform {
- transform: translate(10, 5);
child: container {
color {
bounds: -9 -4 135 32;
color: rgb(246,245,244);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 136 34;
widths: 1 0 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 113 13312 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 280 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 113 13312 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 280 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
}
transform {
- transform: translate(101, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(101, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(137, 0);
}
transform {
- transform: translate(273, 0);
child: transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 137 34 / 0 5 5 0;
child: color {
bounds: -9 -4 135 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 137 34 / 0 5 5 0;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 137 34 / 0 5 5 0;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 165 9216 0 0 1, 324 4096 0 0 1, 312 8192 0 0 1, 319 8192 0 0 1, 430 5120 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 165 9216 0 0 1, 324 4096 0 0 1, 312 8192 0 0 1, 319 8192 0 0 1, 430 5120 0 0 1;
}
transform {
- transform: translate(101, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(101, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(273, 0);
}
}
+ transform: translate(0, 221);
}
transform {
- transform: translate(0, 265);
child: container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
x: 0;
y: 22;
- color: rgb(146,149,149);
- glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
}
transform {
- transform: translate(52, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
x: 0;
y: 22;
- color: rgb(212,207,202);
- glyphs: 349 4096 0 0 1, 244 8192 0 0 1, 272 8192 0 0 1, 287 8192 0 0 1, 349 4096 0 0 1;
}
+ transform: translate(52, 0);
}
transform {
- transform: translate(104, 0) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 112 34 / 5;
child: color {
bounds: -1 -1 112 34;
color: rgb(252,252,252);
}
+ clip: -1 -1 112 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 112 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
transform {
- transform: translate(6, 6);
child: text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 682 8192 0 0 1, 677 9216 0 0 1;
x: 0;
y: 15;
- color: rgb(50,50,50);
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1;
}
+ transform: translate(6, 6);
}
transform {
- transform: translate(40, 0) translate(6, 0);
child: container {
border {
+ colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
outline: -6 0 35 32;
widths: 0 0 0 1;
- colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
}
color-matrix {
- matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
- offset: 0.654902 0.666667 0.666667 0;
child: texture {
bounds: 4 8 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAHElEQVQ4jWNgGAXDADCi8f+Tqo+Jem4ZBUMYAABDXwEEvj+CVwAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
+ offset: 0.654902 0.666667 0.666667 0;
}
}
+ transform: translate(40, 0) translate(6, 0);
}
transform {
- transform: translate(75, 0) translate(6, 0);
child: container {
border {
+ colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
outline: -6 0 35 32 / 0 5 5 0;
widths: 0 0 0 1;
- colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
}
color-matrix {
- matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
- offset: 0.654902 0.666667 0.666667 0;
child: texture {
bounds: 4 8 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAKElEQVQ4jWNgGPbgPxTjBEyU2jDwBjCi8fH6F5s+il1ACIyEWBgGAADypgUMy1PhdwAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 1);
+ offset: 0.654902 0.666667 0.666667 0;
}
}
+ transform: translate(75, 0) translate(6, 0);
}
}
}
+ transform: translate(104, 0) translate(1, 1);
}
transform {
- transform: translate(236, 0) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 112 34 / 5;
child: color {
bounds: -1 -1 112 34;
color: rgb(250,249,248);
}
+ clip: -1 -1 112 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 112 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
transform {
- transform: translate(6, 6);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 677 9216 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 677 9216 0 0 1;
}
+ transform: translate(6, 6);
}
transform {
- transform: translate(40, 0) translate(6, 0);
child: container {
color {
bounds: -5 0 34 32;
color: rgb(250,249,248);
}
border {
+ colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
outline: -6 0 35 32;
widths: 0 0 0 1;
- colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
}
color-matrix {
- matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 0.5);
- offset: 0.654902 0.666667 0.666667 0;
child: texture {
bounds: 4 8 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAHElEQVQ4jWNgGAXDADCi8f+Tqo+Jem4ZBUMYAABDXwEEvj+CVwAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 0.5);
+ offset: 0.654902 0.666667 0.666667 0;
}
}
+ transform: translate(40, 0) translate(6, 0);
}
transform {
- transform: translate(75, 0) translate(6, 0);
child: container {
rounded-clip {
- clip: -6 0 35 32 / 0 5 5 0;
child: color {
bounds: -5 0 34 32;
color: rgb(250,249,248);
}
+ clip: -6 0 35 32 / 0 5 5 0;
}
border {
+ colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
outline: -6 0 35 32 / 0 5 5 0;
widths: 0 0 0 1;
- colors: rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3) rgba(213,208,204,0.3);
}
color-matrix {
- matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 0.5);
- offset: 0.654902 0.666667 0.666667 0;
child: texture {
bounds: 4 8 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAKElEQVQ4jWNgGPbgPxTjBEyU2jDwBjCi8fH6F5s+il1ACIyEWBgGAADypgUMy1PhdwAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.454902, 0.152941, -0.188235, 0, 0.305882, -0.192157, -0.666667, 0, 0.145098, -0.666667, -0.666667, 0, 0, 0, 0, 0.5);
+ offset: 0.654902 0.666667 0.666667 0;
}
}
+ transform: translate(75, 0) translate(6, 0);
}
}
}
+ transform: translate(236, 0) translate(1, 1);
}
}
+ transform: translate(0, 265);
}
transform {
- transform: translate(0, 309);
child: container {
transform {
- transform: translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAeElEQVQokb3QXwpAQBDH8e9uzscRXEXyJFE8KFoXcxheVm1j0Cp+tQ87M5/2D/yc8g2qgC0GGKDzSIUpYBXUB+gEC19cAmyAQaAmRJloOiABJlGv5WnWD4dDq9i32tuOa41i+FiT719Gw/MT0rDj/Mu3sUAei77LDp72K7jAZx9tAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 2);
}
transform {
- transform: translate(0, 29) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 29) translate(0, 2);
}
transform {
- transform: translate(0, 58) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAOUlEQVQokWNgGAVEAW8GBoYnDAwM/3HgxwwMDF7YND7GowmGH8EUM1HDqV4EbH3EwMDgSQ2Lhj0AABu4GmjkhFgCAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 58) translate(0, 2);
}
transform {
- transform: translate(0, 87) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAeElEQVQokb3QXwpAQBDH8e9uzscRXEXyJFE8KFoXcxheVm1j0Cp+tQ87M5/2D/yc8g2qgC0GGKDzSIUpYBXUB+gEC19cAmyAQaAmRJloOiABJlGv5WnWD4dDq9i32tuOa41i+FiT719Gw/MT0rDj/Mu3sUAei77LDp72K7jAZx9tAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 87) translate(0, 2);
}
transform {
- transform: translate(0, 116) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 116) translate(0, 2);
}
transform {
- transform: translate(0, 145) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAOUlEQVQokWNgGAVEAW8GBoYnDAwM/3HgxwwMDF7YND7GowmGH8EUM1HDqV4EbH3EwMDgSQ2Lhj0AABu4GmjkhFgCAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 287 8192 0 0 1, 273 7168 0 0 1, 345 7168 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(0, 145) translate(0, 2);
}
transform {
- transform: translate(125, 0) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 0) translate(0, 2);
}
transform {
- transform: translate(125, 29) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 29) translate(0, 2);
}
transform {
- transform: translate(125, 58) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(246,245,244);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAOUlEQVQokWNgGAVEAW8GBoYnDAwM/3HgxwwMDF7YND7GowmGH8EUM1HDqV4EbH3EwMDgSQ2Lhj0AABu4GmjkhFgCAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 58) translate(0, 2);
}
transform {
- transform: translate(125, 87) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAASklEQVQokWNgGJmAjYGBoZWBgeERFLcwMDCwEqOxlYGB4T8abiZG42MsGh+iK2LCovE/MWLYNC4iUgwDsDJA/PQQihsZiAyc4QYASeYTs7b/ALUAAAAASUVORK5CYII=");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 87) translate(0, 2);
}
transform {
- transform: translate(125, 116) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 116) translate(0, 2);
}
transform {
- transform: translate(125, 145) translate(0, 2);
child: container {
transform {
- transform: translate(5, 2);
child: container {
rounded-clip {
- clip: -1 -1 16 16 / 8;
child: color {
bounds: 0 0 14 14;
color: rgb(250,249,248);
}
+ clip: -1 -1 16 16 / 8;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 0 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAOUlEQVQokWNgGAVEAW8GBoYnDAwM/3HgxwwMDF7YND7GowmGH8EUM1HDqV4EbH3EwMDgSQ2Lhj0AABu4GmjkhFgCAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
}
+ transform: translate(5, 2);
}
transform {
- transform: translate(24, 0);
child: text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(212,207,202);
- glyphs: 409 6144 0 0 1, 244 8192 0 0 1, 280 8192 0 0 1, 324 4096 0 0 1, 370 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
+ transform: translate(24, 0);
}
}
+ transform: translate(125, 145) translate(0, 2);
}
transform {
- transform: translate(247, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: transform {
- transform: translate(8, 11.5) rotate(323.944) translate(-8, -11.5);
child: texture {
bounds: 0 3.5 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAABE0lEQVQ4jbXSPy9DURjH8U9bSqhEmog/A6PFJGGRCInRZrQZTN6B1XsysJgMRklJDRYGtVBtWkRr6HObG2muRuJJbnJynvP9nt9zc/iHKuEIZ3jEFeaHhbfwgO6P73AYeAftAfANFn+Dp1FLQffYx8yw0Y9T8B3mMs6OoYh8evMSnRDsZcCFkJf1fraRaCygFevzDEE3JBMYRSMR1CPaVwYsYk/Fup1swC2e0MBGhqAcgtlI0hecxjgNHKRuSVcRKyHJi5EL0axiNxodrEWiFsaxhE1MBvOOCjq51A3rOMFrSNp4RhMv+AhhHRfR6yeg9+4rWE0J8sjhLQTNgGsJlE6QVAnbWI65mzFOFdf4HMD8vb4BZVRHF0lPimAAAAAASUVORK5CYII=");
}
+ transform: translate(8, 11.5) rotate(323.944) translate(-8, -11.5);
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(247, 0);
}
transform {
- transform: translate(247, 87);
child: opacity {
- opacity: 0.501961;
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 0.5);
- offset: 0.572549 0.584314 0.584314 0;
child: transform {
- transform: translate(8, 11.5) rotate(323.944) translate(-8, -11.5);
child: texture {
bounds: 0 3.5 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAABE0lEQVQ4jbXSPy9DURjH8U9bSqhEmog/A6PFJGGRCInRZrQZTN6B1XsysJgMRklJDRYGtVBtWkRr6HObG2muRuJJbnJynvP9nt9zc/iHKuEIZ3jEFeaHhbfwgO6P73AYeAftAfANFn+Dp1FLQffYx8yw0Y9T8B3mMs6OoYh8evMSnRDsZcCFkJf1fraRaCygFevzDEE3JBMYRSMR1CPaVwYsYk/Fup1swC2e0MBGhqAcgtlI0hecxjgNHKRuSVcRKyHJi5EL0axiNxodrEWiFsaxhE1MBvOOCjq51A3rOMFrSNp4RhMv+AhhHRfR6yeg9+4rWE0J8sjhLQTNgGsJlE6QVAnbWI65mzFOFdf4HMD8vb4BZVRHF0lPimAAAAAASUVORK5CYII=");
}
+ transform: translate(8, 11.5) rotate(323.944) translate(-8, -11.5);
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 0.5);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ opacity: 0.501961;
}
+ transform: translate(247, 87);
}
}
+ transform: translate(0, 309);
}
}
transform {
- transform: translate(420, 0);
child: color {
bounds: 0 0 1 558;
color: rgba(0,0,0,0.1);
}
+ transform: translate(420, 0);
}
transform {
- transform: translate(431, 0);
child: container {
transform {
- transform: translate(17, 5);
child: container {
rounded-clip {
- clip: -17 -5 122 34 / 5;
child: color {
bounds: -16 -4 120 32;
color: rgb(246,245,244);
}
+ clip: -17 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
}
+ transform: translate(17, 5);
}
transform {
- transform: translate(0, 44) translate(17, 5);
child: container {
rounded-clip {
- clip: -17 -5 122 34 / 5;
child: color {
bounds: -16 -4 120 32;
color: rgb(250,249,248);
}
+ clip: -17 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(212,207,202);
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
}
+ transform: translate(0, 44) translate(17, 5);
}
transform {
- transform: translate(0, 88) translate(17, 5);
child: container {
rounded-clip {
- clip: -17 -5 122 34 / 5;
child: color {
bounds: -16 -4 120 32;
color: rgb(228,228,224);
}
+ clip: -17 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
}
+ transform: translate(0, 88) translate(17, 5);
}
transform {
- transform: translate(0, 132) translate(17, 5);
child: container {
rounded-clip {
- clip: -17 -5 122 34 / 5;
child: color {
bounds: -16 -4 120 32;
color: rgb(228,228,224);
}
+ clip: -17 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -17 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(212,207,202);
- glyphs: 430 5120 0 0 1, 370 8192 0 0 1, 312 8192 0 0 1, 312 8192 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
}
+ transform: translate(0, 132) translate(17, 5);
}
transform {
- transform: translate(0, 176);
child: transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 122 34 / 5;
child: color {
bounds: -9 -4 120 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(146,149,149);
- glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
}
transform {
- transform: translate(86, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(86, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(0, 176);
}
transform {
- transform: translate(0, 220);
child: transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 122 34 / 5;
child: color {
bounds: -9 -4 120 32;
color: rgb(250,249,248);
}
+ clip: -10 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(212,207,202);
font: "Cantarell 11";
+ glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
x: 2;
y: 17;
- color: rgb(212,207,202);
- glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
}
transform {
- transform: translate(86, 0);
child: color-matrix {
- matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
- offset: 0.831373 0.811765 0.792157 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAOklEQVQ4jWNgGAWDD5QzMDD8J4DrKTGEoGZ8hhCtGZshODUz4zHgKAMDAyMDA8NBBgaGRlJtHwUkAACHZRnQomjWaAAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.631373, 0.00784314, -0.313726, 0, 0.129412, -0.337255, -0.792157, 0, -0.0313726, -0.811765, -0.792157, 0, 0, 0, 0, 0.5);
+ offset: 0.831373 0.811765 0.792157 0;
}
+ transform: translate(86, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(0, 220);
}
transform {
- transform: translate(0, 264);
child: transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 122 34 / 5;
child: color {
bounds: -9 -4 120 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 173 9216 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 862 3072 0 0 1, 165 9216 0 0 1, 287 8192 0 0 1, 312 8192 0 0 1, 438 8192 0 0 1, 349 4096 0 0 1, 244 8192 0 0 1, 409 6144 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 173 9216 0 0 1, 244 8192 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 862 3072 0 0 1, 165 9216 0 0 1, 287 8192 0 0 1, 312 8192 0 0 1, 438 8192 0 0 1, 349 4096 0 0 1, 244 8192 0 0 1, 409 6144 0 0 1;
}
transform {
- transform: translate(86, 0);
child: transform {
- transform: translate(1, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 678 7168 0 0 1, 679 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 678 7168 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(1, 0);
}
+ transform: translate(86, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(0, 264);
}
transform {
- transform: translate(0, 308);
child: transform {
- transform: translate(5, 5);
child: container {
rounded-clip {
- clip: -5 -5 122 34 / 5;
child: color {
bounds: -4 -4 120 32;
color: rgb(246,245,244);
}
+ clip: -5 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -5 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
color {
@@ -1436,872 +1431,873 @@ transform {
color: rgb(49,104,160);
}
transform {
- transform: translate(1, 1);
child: border {
+ colors: rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3);
outline: -1 -1 112 24;
widths: 1 1 1 1;
- colors: rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3);
}
+ transform: translate(1, 1);
}
}
}
+ transform: translate(5, 5);
}
+ transform: translate(0, 308);
}
transform {
- transform: translate(0, 352);
child: transform {
- transform: translate(10, 5);
child: container {
rounded-clip {
- clip: -10 -5 122 34 / 5;
child: color {
bounds: -9 -4 120 32;
color: rgb(246,245,244);
}
+ clip: -10 -5 122 34 / 5;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -10 -5 122 34 / 5;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
transform {
- transform: translate(16, 0);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell 11";
+ glyphs: 822 4096 0 0 1, 115 11264 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 287 8192 0 0 1, 823 4096 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 822 4096 0 0 1, 115 11264 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1, 287 8192 0 0 1, 823 4096 0 0 1;
}
+ transform: translate(16, 0);
}
transform {
- transform: translate(86, 0);
child: color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 0 4 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAeUlEQVQ4jcWTQQqAIBBFn9HV6i4uOmaL7hF1hVbZRkF0tMmCPnwYdeahH4RcM+AEH4AV+jNJw8EnMGkBpf0MsiRDd4AAsdKBFhAywSTN8doIkBgGYLpKk0qvAVB+s0q9AHuk/zP4BLD7uiXIFWD0Re0TSd6Aof3uXhd1yT8mvMGiQgAAAABJRU5ErkJggg==");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
+ transform: translate(86, 0);
}
}
}
+ transform: translate(10, 5);
}
+ transform: translate(0, 352);
}
transform {
- transform: translate(0, 396) translate(17, 5);
child: container {
text {
+ color: rgb(53,132,228);
font: "Cantarell 11";
+ glyphs: 349 4096 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 10;
y: 17;
- color: rgb(53,132,228);
- glyphs: 349 4096 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1, 345 7168 0 0 1, 862 3072 0 0 1, 272 8192 0 0 1, 438 8192 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
color {
bounds: 10 19 68 1;
color: rgb(53,132,228);
}
}
+ transform: translate(0, 396) translate(17, 5);
}
transform {
- transform: translate(0, 440) translate(37, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(234,232,230);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: color {
bounds: 0 0 24 24;
color: rgb(246,245,244);
}
+ clip: -1 -1 26 26 / 13;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
}
+ transform: translate(0, 440) translate(37, 1);
}
transform {
- transform: translate(0, 476) translate(37, 1);
child: container {
rounded-clip {
- clip: -1 -1 50 26 / 13;
child: color {
bounds: -1 -1 50 26;
color: rgb(250,249,248);
}
+ clip: -1 -1 50 26 / 13;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 50 26 / 13;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
rounded-clip {
- clip: -1 -1 26 26 / 13;
child: color {
bounds: 0 0 24 24;
color: rgb(250,249,248);
}
+ clip: -1 -1 26 26 / 13;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 26 26 / 13;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
}
+ transform: translate(0, 476) translate(37, 1);
}
}
+ transform: translate(431, 0);
}
transform {
- transform: translate(563, 0);
child: color {
bounds: 0 0 1 558;
color: rgba(0,0,0,0.1);
}
+ transform: translate(563, 0);
}
transform {
- transform: translate(574, 0);
child: container {
container {
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 502 4 / 2;
child: color {
bounds: -1 -1 502 4;
color: rgb(234,232,230);
}
+ clip: -1 -1 502 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 502 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(0, -1) translate(0, 1);
child: container {
rounded-clip {
- clip: -1 -1 252 4 / 2 1.5 1.5 2;
child: color {
bounds: -1 -1 252 4;
color: rgb(53,132,228);
}
+ clip: -1 -1 252 4 / 2 1.5 1.5 2;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 252 4 / 2 1.5 1.5 2;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(0, -1) translate(0, 1);
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(0, 10);
child: transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 502 4 / 2;
child: color {
bounds: -1 -1 502 4;
color: rgb(234,232,230);
}
+ clip: -1 -1 502 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 502 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(250, -1) translate(0, 1);
child: container {
rounded-clip {
- clip: -1 -1 252 4 / 1.5 2 2 1.5;
child: color {
bounds: -1 -1 252 4;
color: rgb(53,132,228);
}
+ clip: -1 -1 252 4 / 1.5 2 2 1.5;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 252 4 / 1.5 2 2 1.5;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(250, -1) translate(0, 1);
}
}
+ transform: translate(1, 1);
}
+ transform: translate(0, 10);
}
transform {
- transform: translate(0, 20);
child: container {
transform {
- transform: translate(237, 0);
child: text {
+ color: rgba(46,52,54,0.4);
font: "Cantarell 9.1669921875";
+ glyphs: 682 7168 0 0 1, 677 8192 0 0 1, 859 1024 0 0 1, 919 12288 0 0 1;
x: 0;
y: 13;
- color: rgba(46,52,54,0.4);
- glyphs: 682 7168 0 0 1, 677 8192 0 0 1, 859 1024 0 0 1, 919 12288 0 0 1;
}
+ transform: translate(237, 0);
}
transform {
- transform: translate(0, 16) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 502 4 / 2;
child: color {
bounds: -1 -1 502 4;
color: rgb(234,232,230);
}
+ clip: -1 -1 502 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 502 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(43, -1) translate(0, 1);
child: container {
rounded-clip {
- clip: -1 -1 102 4 / 1.5;
child: color {
bounds: -1 -1 102 4;
color: rgb(53,132,228);
}
+ clip: -1 -1 102 4 / 1.5;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 102 4 / 1.5;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(43, -1) translate(0, 1);
}
}
+ transform: translate(0, 16) translate(1, 1);
}
}
+ transform: translate(0, 20);
}
transform {
- transform: translate(0, 46);
child: transform {
- transform: translate(3, 3);
child: container {
rounded-clip {
- clip: -3 -3 502 9 / 3;
child: color {
bounds: -3 -3 502 9;
color: rgb(252,252,252);
}
+ clip: -3 -3 502 9 / 3;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -3 -3 502 9 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(1, 1);
child: border {
+ colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
outline: -1 -1 496 3 / 1;
widths: 1 1 1 1;
- colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 297 3 / 1;
child: color {
bounds: -1 -1 297 3;
color: rgb(53,132,228);
}
+ clip: -1 -1 297 3 / 1;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 297 3 / 1;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(1, 1);
}
}
+ transform: translate(3, 3);
}
+ transform: translate(0, 46);
}
transform {
- transform: translate(0, 61);
child: transform {
- transform: translate(3, 3);
child: container {
rounded-clip {
- clip: -3 -3 502 9 / 3;
child: color {
bounds: -3 -3 502 9;
color: rgb(252,252,252);
}
+ clip: -3 -3 502 9 / 3;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -3 -3 502 9 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(2, 1);
child: container {
rounded-clip {
- clip: -1 -1 97 3 / 1;
child: color {
bounds: -1 -1 97 3;
color: rgb(53,132,228);
}
+ clip: -1 -1 97 3 / 1;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 97 3 / 1;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(2, 1);
}
transform {
- transform: translate(99, 0) translate(2, 1);
child: container {
rounded-clip {
- clip: -1 -1 97 3 / 1;
child: color {
bounds: -1 -1 97 3;
color: rgb(53,132,228);
}
+ clip: -1 -1 97 3 / 1;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 97 3 / 1;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(99, 0) translate(2, 1);
}
transform {
- transform: translate(198, 0) translate(2, 1);
child: border {
+ colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
widths: 1 1 1 1;
- colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
}
+ transform: translate(198, 0) translate(2, 1);
}
transform {
- transform: translate(297, 0) translate(2, 1);
child: border {
+ colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
widths: 1 1 1 1;
- colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
}
+ transform: translate(297, 0) translate(2, 1);
}
transform {
- transform: translate(396, 0) translate(2, 1);
child: border {
+ colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
outline: -1 -1 97 3 / 1;
widths: 1 1 1 1;
- colors: rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15) rgba(146,149,149,0.15);
}
+ transform: translate(396, 0) translate(2, 1);
}
}
+ transform: translate(3, 3);
}
+ transform: translate(0, 61);
}
}
transform {
- transform: translate(0, 76);
child: container {
transform {
- transform: translate(12, 12);
child: transform {
- transform: translate(0, 3) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 478 4 / 2;
child: color {
bounds: -1 -1 478 4;
color: rgb(234,232,230);
}
+ clip: -1 -1 478 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 478 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
rounded-clip {
- clip: -1 -1 237 4 / 2;
child: color {
bounds: -1 -1 237 4;
color: rgb(53,132,228);
}
+ clip: -1 -1 237 4 / 2;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 237 4 / 2;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
transform {
- transform: translate(234, 0) translate(-8, -8);
child: container {
rounded-clip {
- clip: -1 -1 20 20 / 10;
child: color {
bounds: 0 0 18 18;
color: rgb(246,245,244);
}
+ clip: -1 -1 20 20 / 10;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 20 20 / 10;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(234, 0) translate(-8, -8);
}
}
+ transform: translate(0, 3) translate(1, 1);
}
+ transform: translate(12, 12);
}
transform {
- transform: translate(0, 34) translate(12, 12);
child: transform {
- transform: translate(0, 3) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 478 4 / 2;
child: color {
bounds: -1 -1 478 4;
color: rgb(250,249,248);
}
+ clip: -1 -1 478 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 478 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(234, 0) translate(-8, -8);
child: container {
rounded-clip {
- clip: -1 -1 20 20 / 10;
child: color {
bounds: 0 0 18 18;
color: rgb(250,249,248);
}
+ clip: -1 -1 20 20 / 10;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 20 20 / 10;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(234, 0) translate(-8, -8);
}
}
+ transform: translate(0, 3) translate(1, 1);
}
+ transform: translate(0, 34) translate(12, 12);
}
}
+ transform: translate(0, 76);
}
transform {
- transform: translate(0, 150) translate(12, 12);
child: container {
transform {
- transform: translate(0, 4) translate(0, 6);
child: container {
transform {
- transform: translate(2, 0);
child: color {
bounds: 0 0 1 6;
color: rgba(146,149,149,0.55);
}
+ transform: translate(2, 0);
}
transform {
- transform: translate(120, 0);
child: color {
bounds: 0 0 1 6;
color: rgba(146,149,149,0.55);
}
+ transform: translate(120, 0);
}
transform {
- transform: translate(239, 0);
child: color {
bounds: 0 0 1 6;
color: rgba(146,149,149,0.55);
}
+ transform: translate(239, 0);
}
transform {
- transform: translate(357, 0);
child: color {
bounds: 0 0 1 6;
color: rgba(146,149,149,0.55);
}
+ transform: translate(357, 0);
}
transform {
- transform: translate(476, 0);
child: color {
bounds: 0 0 1 6;
color: rgba(146,149,149,0.55);
}
+ transform: translate(476, 0);
}
}
+ transform: translate(0, 4) translate(0, 6);
}
transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 478 4 / 2;
child: color {
bounds: -1 -1 478 4;
color: rgb(234,232,230);
}
+ clip: -1 -1 478 4 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 478 4 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(237, 0) translate(-10, -10);
child: texture {
bounds: 1 1 20 25;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAZCAYAAAAxFw7TAAAABmJLR0QA/wD/AP+gvaeTAAAC6ElEQVQ4jaXVy2sTQRwH8O/sI81mUrfd3ZYYUBGiZJu2eLCiiDQSUEFUTPWkR1MQjXgwei0UFGkRBf8EH4i09GTQdOOjqJv0oKKllcYoPTSXShrjbkqTGA+akEZTa/M9LfP48JuZ3R2Cv4f3+nx9Bw8cOOV2u3dRSlsB4LtppqenpmKR8fG7zzRtFEC+diKpbfB6vScuXLx4WxRF20ans5kKAjieBwDk83mYpolUKpVdzGSMm7dunZ94+nSkej5b9cwEg8EbZ/r7B1W3u9XpdDYJVitYlgUhBIQQcCwLwWpFW1tbkyzL9s7OzsOiKLZNxuMRAKUV4Llg8MZxvz+gqiptsljq7ETVnvA8FEWxtLe3dzVv2KBMxuOPK+C+/fv7AoHAoKqqlGWYf2KVJRECSZIskix3fUkmp+fm5mYIAH5kbGxuR3e3w2azrRmrjmGaePP27fxJv38L4/X5/KIo0vViAEBtNrS2tDT39vYeZwP9/Vd39fR0C1brukEA4DmuaWl5mWNUj2d3I9VVqqQUno6O3Yyd0hae4xoGOY4DtdslBqUSAfnj/V5XCCFgDMNIF/J/fEH/nUKhAMMwFpmPMzOTZi7XMGiaJqY/fNCZiKbdT6VS2UbB+VQqq2naA0Z78uRhJpPJNVJlzjTxLZtdikajoyyA4teFhfkOj+eQoigW5j8PqFgsYmZ21hgeHj775fPndywAJJPJ9w6HY6uiKG5Zlvm1kiUAs4mE+Sgcvnf/zp1rQNXf5tXLl2FVVfcIguCUZdnyL/Q3lovp+vPBgYHTAH6sAAH8GI9EHrhcrh5qt2+WJYkndZZfrkx//frFlVDoGIBCuY+tHRuNRh+6XK6d9dAyFtf1icuh0FHUXAO1YAXdtn17D6V0UzVaApBIJHJxXZ8IXbp0pBarB/5CNe0XardvkiWJB4DEp0+5mK6/qIetBpbREY/Hs1ew2Tam0+liLBZbFVtr+OtDQ+HrQ0NhAHwj0LryE/8bFCfO1plnAAAAAElFTkSuQmCC");
}
+ transform: translate(237, 0) translate(-10, -10);
}
}
+ transform: translate(1, 1);
}
}
+ transform: translate(0, 150) translate(12, 12);
}
transform {
- transform: translate(0, 196);
child: container {
container {
transform {
- transform: translate(119, 0);
child: transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 4 362 / 2;
child: color {
bounds: -1 -1 4 362;
color: rgb(234,232,230);
}
+ clip: -1 -1 4 362 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 4 362 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(-1, 0) translate(1, 0);
child: container {
rounded-clip {
- clip: -1 -1 4 182 / 2 2 1.5 1.5;
child: color {
bounds: -1 -1 4 182;
color: rgb(53,132,228);
}
+ clip: -1 -1 4 182 / 2 2 1.5 1.5;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 4 182 / 2 2 1.5 1.5;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(-1, 0) translate(1, 0);
}
}
+ transform: translate(1, 1);
}
+ transform: translate(119, 0);
}
transform {
- transform: translate(129, 0);
child: transform {
- transform: translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 4 362 / 2;
child: color {
bounds: -1 -1 4 362;
color: rgb(234,232,230);
}
+ clip: -1 -1 4 362 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 4 362 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(-1, 180) translate(1, 0);
child: container {
rounded-clip {
- clip: -1 -1 4 182 / 1.5 1.5 2 2;
child: color {
bounds: -1 -1 4 182;
color: rgb(53,132,228);
}
+ clip: -1 -1 4 182 / 1.5 1.5 2 2;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 4 182 / 1.5 1.5 2 2;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
+ transform: translate(-1, 180) translate(1, 0);
}
}
+ transform: translate(1, 1);
}
+ transform: translate(129, 0);
}
}
transform {
- transform: translate(251, 0);
child: container {
transform {
- transform: translate(28, 12);
child: container {
text {
+ color: rgba(146,149,149,0.55);
font: "Cantarell 11";
+ glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
x: 26;
y: 15;
- color: rgba(146,149,149,0.55);
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
}
transform {
- transform: translate(39, 28) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 4 310 / 2;
child: color {
bounds: -1 -1 4 310;
color: rgb(234,232,230);
}
+ clip: -1 -1 4 310 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 4 310 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
rounded-clip {
- clip: -1 -1 4 154 / 2;
child: color {
bounds: -1 -1 4 154;
color: rgb(53,132,228);
}
+ clip: -1 -1 4 154 / 2;
}
border {
+ colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
outline: -1 -1 4 154 / 2;
widths: 1 1 1 1;
- colors: rgb(53,132,228) rgb(53,132,228) rgb(53,132,228) rgb(53,132,228);
}
}
transform {
- transform: translate(0, 151) translate(-8, -8);
child: container {
rounded-clip {
- clip: -1 -1 20 20 / 10;
child: color {
bounds: 0 0 18 18;
color: rgb(246,245,244);
}
+ clip: -1 -1 20 20 / 10;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 20 20 / 10;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(0, 151) translate(-8, -8);
}
}
+ transform: translate(39, 28) translate(1, 1);
}
}
+ transform: translate(28, 12);
}
transform {
- transform: translate(129, 0) translate(12, 12);
child: container {
text {
+ color: rgba(146,149,149,0.55);
font: "Cantarell 11";
+ glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
x: 26;
y: 15;
- color: rgba(146,149,149,0.55);
- glyphs: 682 8192 0 0 1, 677 9216 0 0 1, 805 4096 0 0 1, 677 9216 0 0 1;
}
transform {
- transform: translate(39, 28) translate(1, 1);
child: container {
rounded-clip {
- clip: -1 -1 4 310 / 2;
child: color {
bounds: -1 -1 4 310;
color: rgb(250,249,248);
}
+ clip: -1 -1 4 310 / 2;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 4 310 / 2;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(0, 151) translate(-8, -8);
child: container {
rounded-clip {
- clip: -1 -1 20 20 / 10;
child: color {
bounds: 0 0 18 18;
color: rgb(250,249,248);
}
+ clip: -1 -1 20 20 / 10;
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 20 20 / 10;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
+ transform: translate(0, 151) translate(-8, -8);
}
}
+ transform: translate(39, 28) translate(1, 1);
}
}
+ transform: translate(129, 0) translate(12, 12);
}
}
+ transform: translate(251, 0);
}
}
+ transform: translate(0, 196);
}
}
+ transform: translate(574, 0);
}
transform {
- transform: translate(1086, 0);
child: color {
bounds: 0 0 1 558;
color: rgba(0,0,0,0.1);
}
+ transform: translate(1086, 0);
}
transform {
- transform: translate(1097, 0);
child: container {
transform {
- transform: translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -1 -1 114 135;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 81 4096 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 81 4096 0 0 1, 360 8192 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(0, 141) translate(1, 1);
child: container {
border {
+ colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -1 -1 114 135;
widths: 1 1 1 1;
- colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 126 11264 0 0 1, 438 8192 0 0 1, 430 6144 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 126 11264 0 0 1, 438 8192 0 0 1, 430 6144 0 0 1, 417 7168 0 0 1, 287 8192 0 0 1, 430 6144 0 0 1;
}
}
+ transform: translate(0, 141) translate(1, 1);
}
transform {
- transform: translate(0, 282) translate(2, 2);
child: container {
container {
border {
+ colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -2 -2 114 135;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
}
border {
+ colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -1 -1 112 133;
widths: 1 1 1 1;
- colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
}
border {
+ colors: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
outline: -2 -2 114 135;
widths: 2 2 2 2;
- colors: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
}
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 69 11264 0 0 1, 409 6144 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 466 7168 0 0 1, 287 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 69 11264 0 0 1, 409 6144 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 466 7168 0 0 1, 287 8192 0 0 1;
}
}
+ transform: translate(0, 282) translate(2, 2);
}
transform {
- transform: translate(0, 423) translate(2, 2);
child: container {
container {
border {
+ colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
outline: -2 -2 114 135;
widths: 1 1 1 1;
- colors: rgb(255,255,255) rgb(213,208,204) rgb(213,208,204) rgb(255,255,255);
}
border {
+ colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
outline: -1 -1 112 133;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(255,255,255) rgb(255,255,255) rgb(213,208,204);
}
border {
+ colors: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
outline: -2 -2 114 135;
widths: 2 2 2 2;
- colors: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
}
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 165 10240 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1;
x: 0;
y: 15;
- color: rgb(146,149,149);
- glyphs: 165 10240 0 0 1, 324 4096 0 0 1, 280 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1;
}
}
+ transform: translate(0, 423) translate(2, 2);
}
}
+ transform: translate(1097, 0);
}
transform {
- transform: translate(1221, 0);
child: color {
bounds: 0 0 1 558;
color: rgba(0,0,0,0.1);
}
+ transform: translate(1221, 0);
}
transform {
- transform: translate(1232, 0);
child: container {
transform {
- transform: translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 212 289;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color {
bounds: 204 281 6 6;
@@ -2314,7 +2310,6 @@ transform {
}
container {
clip {
- clip: 0 25 210 262;
child: container {
color {
bounds: 0 117 210 195;
@@ -2327,11 +2322,11 @@ transform {
container {
container {
rounded-clip {
- clip: 13 28 16 16 / 3;
child: color {
bounds: 13 28 16 16;
color: rgb(252,252,252);
}
+ clip: 13 28 16 16 / 3;
}
color {
bounds: 14 29 14 14;
@@ -2339,17 +2334,17 @@ transform {
}
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: 13 28 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 14 29 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAeElEQVQokb3QXwpAQBDH8e9uzscRXEXyJFE8KFoXcxheVm1j0Cp+tQ87M5/2D/yc8g2qgC0GGKDzSIUpYBXUB+gEC19cAmyAQaAmRJloOiABJlGv5WnWD4dDq9i32tuOa41i+FiT719Gw/MT0rDj/Mu3sUAei77LDp72K7jAZx9tAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
color {
@@ -2357,34 +2352,34 @@ transform {
color: rgb(252,252,252);
}
color-matrix {
- matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
- offset: 0.196078 0.196078 0.196078 0;
child: texture {
bounds: 54 28 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAA8klEQVQ4jbXSwSrEURTH8Y/YsZiUhfIGnkFJUrKSlIeQJ5AaUlPWdrKUJ9DMwhMQyZKVhSxEg7Lwz1i4f925c/9jSk7dbuee8/3dczqHf7BxbOEcL3jFFeqY/A1exBM6FecZq1XwPD76wOUpMJvCY3gYAO7gCCOpwMaA8CGGc+W3Msmnib+PoYjpErpNkhvhfTf4ewlcw0kscBPBx0l1S4k/hWvf4/2xZiRQYC3XJ6ZxF/Iu48B60kJOZEb3jmzHwVHc9xFZxnsUa2MiLW9O7yIVOAh3+faJlYoWLeBR70jjnyvh0mrYxFkA3nCBnVzZf7Yvt2xyJ4TFGjYAAAAASUVORK5CYII=");
}
+ matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
+ offset: 0.196078 0.196078 0.196078 0;
}
color {
bounds: 82 25 71 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
x: 86;
y: 42;
- color: rgb(50,50,50);
- glyphs: 1 10240 0 0 1, 360 8192 0 0 1, 280 8192 0 0 1, 409 6144 0 0 1, 287 8192 0 0 1, 244 8192 0 0 1;
}
color {
bounds: 153 25 60 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 30 10240 0 0 1, 324 4096 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1;
x: 157;
y: 42;
- color: rgb(50,50,50);
- glyphs: 30 10240 0 0 1, 324 4096 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1;
}
color {
bounds: 0 48 42 23;
@@ -2393,11 +2388,11 @@ transform {
container {
container {
rounded-clip {
- clip: 13 51 16 16 / 3;
child: color {
bounds: 13 51 16 16;
color: rgb(252,252,252);
}
+ clip: 13 51 16 16 / 3;
}
color {
bounds: 14 52 14 14;
@@ -2405,9 +2400,9 @@ transform {
}
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: 13 51 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
}
color {
@@ -2415,34 +2410,34 @@ transform {
color: rgb(252,252,252);
}
color-matrix {
- matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
- offset: 0.196078 0.196078 0.196078 0;
child: texture {
bounds: 54 51 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAz0lEQVQ4jbXSTU4CQRAF4A/iFlbKOVywMoRDGLyAe70D4o3kBqz9uQAXICxwcM2wmAY6Y3djjL6kku7qqtevfvgHDPCMd3wFe8MsvBVxhwp1xipMSsm7VsIYw5ZvlyIZZH4+oO3/xBV0Q8Ajeufqi9DHQ+z4SPxSUlBrGnvE9hcEVVxCHPxT1HARLktcJ4JG6GQIljHBPEOwKCh4iS+5Md4EFW3/BpecerDCve+96CZKqEPsOiVrolmS3CpvcFsoC82GPeFVM95tOE8Psv8Ue0ISW4s5Tmr/AAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
+ offset: 0.196078 0.196078 0.196078 0;
}
color {
bounds: 82 48 71 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
x: 86;
y: 65;
- color: rgb(50,50,50);
- glyphs: 126 11264 0 0 1, 430 5120 0 0 1, 430 5120 0 0 1, 370 8192 0 0 1;
}
color {
bounds: 153 48 60 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 370 8192 0 0 1, 430 5120 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1;
x: 157;
y: 65;
- color: rgb(50,50,50);
- glyphs: 273 7168 0 0 1, 319 8192 0 0 1, 244 8192 0 0 1, 370 8192 0 0 1, 430 5120 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1;
}
color {
bounds: 0 71 42 23;
@@ -2451,11 +2446,11 @@ transform {
container {
container {
rounded-clip {
- clip: 13 74 16 16 / 3;
child: color {
bounds: 13 74 16 16;
color: rgb(252,252,252);
}
+ clip: 13 74 16 16 / 3;
}
color {
bounds: 14 75 14 14;
@@ -2463,17 +2458,17 @@ transform {
}
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: 13 74 16 16 / 3;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 14 75 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAeElEQVQokb3QXwpAQBDH8e9uzscRXEXyJFE8KFoXcxheVm1j0Cp+tQ87M5/2D/yc8g2qgC0GGKDzSIUpYBXUB+gEC19cAmyAQaAmRJloOiABJlGv5WnWD4dDq9i32tuOa41i+FiT719Gw/MT0rDj/Mu3sUAei77LDp72K7jAZx9tAAAAAElFTkSuQmCC");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
color {
@@ -2481,23 +2476,23 @@ transform {
color: rgb(252,252,252);
}
color-matrix {
- matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
- offset: 0.196078 0.196078 0.196078 0;
child: texture {
bounds: 54 74 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAA/klEQVQ4jaXTzypFURTH8Q9CN2FyXYmRjqmpiZkykoF0n+J6Bxl4CQ/gASTlAZjwApIRMhDiSkd0Dc6W3bHPPcmv1mCv/Vvf/W9t/qmBRG4aHYzhNORecIML5LF5qFTcxjFWcYQnDKKBFjI8hyBMxsX7mAzju8TuhrGMuTJgBnsl4FsCQHHsJYzGgC1MJIxVGsFCDFhLmMrAsmZjQJYwzNcAxmPAZ8KwXgPoxYCrhCHDYh9ANwYcVJg6aFbMXfNz0y1cCucq6QG7uI1yOQ6Rf3fiq6JNN/1+vgZW8BFWfccJHlPb2lC0b68i7hVN1FdN7OBc8Ym6OMM2puqK/6wvIccweWvwsr0AAAAASUVORK5CYII=");
}
+ matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
+ offset: 0.196078 0.196078 0.196078 0;
}
color {
bounds: 82 71 71 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 126 11264 0 0 1, 409 6144 0 0 1, 466 7168 0 0 1, 324 4096 0 0 1, 349 4096 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
x: 86;
y: 88;
- color: rgb(50,50,50);
- glyphs: 126 11264 0 0 1, 409 6144 0 0 1, 466 7168 0 0 1, 324 4096 0 0 1, 349 4096 0 0 1, 349 4096 0 0 1, 287 8192 0 0 1;
}
color {
bounds: 153 71 60 23;
@@ -2505,18 +2500,18 @@ transform {
}
container {
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 165 9216 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1;
x: 157;
y: 88;
- color: rgb(50,50,50);
- glyphs: 165 9216 0 0 1, 287 8192 0 0 1, 280 8192 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1;
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 809 10240 0 0 1;
x: 198;
y: 88;
- color: rgb(50,50,50);
- glyphs: 809 10240 0 0 1;
}
}
color {
@@ -2526,32 +2521,32 @@ transform {
container {
container {
rounded-clip {
- clip: 13 97 16 16 / 8;
child: color {
bounds: 13 97 16 16;
color: rgb(252,252,252);
}
+ clip: 13 97 16 16 / 8;
}
rounded-clip {
- clip: 13 97 16 16 / 8;
child: color {
bounds: 14 98 14 14;
color: rgb(246,245,244);
}
+ clip: 13 97 16 16 / 8;
}
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: 13 97 16 16 / 8;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
color-matrix {
- matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
- offset: 0.572549 0.584314 0.584314 0;
child: texture {
bounds: 14 98 14 14;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAASklEQVQokWNgGJmAjYGBoZWBgeERFLcwMDCwEqOxlYGB4T8abiZG42MsGh+iK2LCovE/MWLYNC4iUgwDsDJA/PQQihsZiAyc4QYASeYTs7b/ALUAAAAASUVORK5CYII=");
}
+ matrix: matrix3d(-0.372549, 0.235294, -0.105882, 0, 0.388235, -0.109804, -0.584314, 0, 0.227451, -0.584314, -0.584314, 0, 0, 0, 0, 1);
+ offset: 0.572549 0.584314 0.584314 0;
}
}
color {
@@ -2559,23 +2554,23 @@ transform {
color: rgb(252,252,252);
}
color-matrix {
- matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
- offset: 0.196078 0.196078 0.196078 0;
child: texture {
bounds: 54 97 16 16;
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAABT0lEQVQ4jZXTv0vXcRDH8cdXzQQTEZFCUVAU1xZ/LCIYrrVkoTi6NLTpX+DoGrTnkoMgqOjk8hXBhqbAMALTSB1EpDQp/DF874Nvv4hfPTg4uHu+7n13n0+52+01/mAYu/hdov6atWIBS+i4D1iHSXzBRfgnvMWDUnAnfiZgsa+h+iawEhX4fAuc+TuUBwNe4BgHSdEpevG/KL7ACX4E8xw20Y+xRGAzxL8XxVn+FbqwAUeowkBS8Bft+FcUZ/mnMcZuDrPIxUzdmMMytvAL52hAE/owGq86REUOtZjAXixxCD1oxuMQ2MdOXOFj7KQRU9ki67F4hwtkPoMaia1EYv0O8CrOYnRlCl9Xfwh9xXgInSYNjpHHG3wLbjB9wXzSIY8RtMVodWhR+LHySd2HVOARpmNhpUY4w3s8pHC+1JrxEs+i65MQ3cO2qytsZcAlA5qEWoLbkBcAAAAASUVORK5CYII=");
}
+ matrix: matrix3d(0.00392157, 0.623529, 0.282353, 0, 0.764706, 0.278431, -0.196078, 0, 0.603922, -0.196078, -0.196078, 0, 0, 0, 0, 1);
+ offset: 0.196078 0.196078 0.196078 0;
}
color {
bounds: 82 94 71 23;
color: rgb(252,252,252);
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 29 10240 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 341 4096 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1;
x: 86;
y: 111;
- color: rgb(50,50,50);
- glyphs: 29 10240 0 0 1, 287 8192 0 0 1, 360 8192 0 0 1, 341 4096 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 324 4096 0 0 1, 360 8192 0 0 1;
}
color {
bounds: 153 94 60 23;
@@ -2583,122 +2578,123 @@ transform {
}
container {
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 30 10240 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 406 8192 0 0 1;
x: 157;
y: 111;
- color: rgb(50,50,50);
- glyphs: 30 10240 0 0 1, 370 8192 0 0 1, 358 13312 0 0 1, 406 8192 0 0 1;
}
text {
+ color: rgb(50,50,50);
font: "Cantarell 11";
+ glyphs: 809 10240 0 0 1;
x: 196;
y: 111;
- color: rgb(50,50,50);
- glyphs: 809 10240 0 0 1;
}
}
}
+ clip: 0 25 210 262;
}
clip {
- clip: 0 0 210 25;
child: container {
transform {
- transform: translate(6, 0);
child: container {
color {
bounds: -6 0 42 25;
color: rgb(252,252,252);
}
border {
+ colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
outline: -6 0 42 25;
widths: 0 1 1 0;
- colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 30 9216 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 349 4096 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 30 9216 0 0 1, 370 8192 0 0 1, 370 8192 0 0 1, 349 4096 0 0 1;
}
}
+ transform: translate(6, 0);
}
transform {
- transform: translate(42, 0) translate(6, 0);
child: container {
color {
bounds: -6 0 40 25;
color: rgb(252,252,252);
}
border {
+ colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
outline: -6 0 40 25;
widths: 0 1 1 0;
- colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 81 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 81 4096 0 0 1, 273 7168 0 0 1, 370 8192 0 0 1, 360 8192 0 0 1;
}
}
+ transform: translate(42, 0) translate(6, 0);
}
transform {
- transform: translate(82, 0) translate(6, 0);
child: container {
color {
bounds: -6 0 71 25;
color: rgb(252,252,252);
}
border {
+ colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
outline: -6 0 71 25;
widths: 0 1 1 0;
- colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 115 11264 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 287 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 115 11264 0 0 1, 244 8192 0 0 1, 358 13312 0 0 1, 287 8192 0 0 1;
}
}
+ transform: translate(82, 0) translate(6, 0);
}
transform {
- transform: translate(153, 0) translate(6, 0);
child: container {
color {
bounds: -6 0 60 25;
color: rgb(252,252,252);
}
border {
+ colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
outline: -6 0 60 25;
widths: 0 0 1 0;
- colors: rgb(246,245,244) rgb(246,245,244) rgb(246,245,244) rgb(246,245,244);
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 115 11264 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 8192 0 0 1;
x: 0;
y: 17;
- color: rgb(146,149,149);
- glyphs: 115 11264 0 0 1, 324 4096 0 0 1, 273 7168 0 0 1, 345 8192 0 0 1;
}
}
+ transform: translate(153, 0) translate(6, 0);
}
}
+ clip: 0 0 210 25;
}
}
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(0, 295) translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 212 263;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
color {
@@ -2706,115 +2702,115 @@ transform {
color: rgb(252,252,252);
}
clip {
- clip: 0 0 210 261;
child: container {
color {
bounds: 0 0 210 893;
color: rgb(252,252,252);
}
}
+ clip: 0 0 210 261;
}
}
}
+ transform: translate(0, 295) translate(1, 1);
}
}
+ transform: translate(1232, 0);
}
}
transform {
- transform: translate(0, 568);
child: color {
bounds: 0 0 1444 1;
color: rgba(0,0,0,0.1);
}
+ transform: translate(0, 568);
}
transform {
- transform: translate(0, 579);
child: container {
transform {
- transform: translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 354 142;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
transform {
- transform: translate(1, 1);
child: container {
color {
bounds: -1 -1 352 37;
color: rgb(234,232,230);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 352 37;
widths: 0 0 1 0;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(3, -1);
child: container {
transform {
- transform: translate(149, 0) translate(16, 3);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
}
+ transform: translate(149, 0) translate(16, 3);
}
transform {
- transform: translate(74, 0) translate(16, 3);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(74, 0) translate(16, 3);
}
transform {
- transform: translate(16, 3);
child: container {
inset-shadow {
- outline: -12 -3 66 37;
+ blur: 0;
color: rgb(53,132,228);
dx: 0;
dy: -3;
+ outline: -12 -3 66 37;
spread: 0;
- blur: 0;
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
}
}
+ transform: translate(16, 3);
}
}
+ transform: translate(3, -1);
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(0, 37);
child: color {
bounds: 0 0 352 103;
color: rgb(252,252,252);
}
+ transform: translate(0, 37);
}
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(364, 0) translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 354 142;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
color {
@@ -2822,74 +2818,74 @@ transform {
color: rgb(252,252,252);
}
transform {
- transform: translate(285, 0) translate(2, 1);
child: container {
color {
bounds: -2 -1 67 140;
color: rgb(234,232,230);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -2 -1 67 140;
widths: 0 0 0 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(-2, 3);
child: container {
transform {
- transform: translate(0, 88) translate(12, 7);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
}
+ transform: translate(0, 88) translate(12, 7);
}
transform {
- transform: translate(0, 44) translate(12, 7);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(0, 44) translate(12, 7);
}
transform {
- transform: translate(12, 7);
child: container {
inset-shadow {
- outline: -12 -3 67 36;
+ blur: 0;
color: rgb(53,132,228);
dx: 3;
dy: 0;
+ outline: -12 -3 67 36;
spread: 0;
- blur: 0;
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
}
}
+ transform: translate(12, 7);
}
}
+ transform: translate(-2, 3);
}
}
+ transform: translate(285, 0) translate(2, 1);
}
}
}
+ transform: translate(364, 0) translate(1, 1);
}
transform {
- transform: translate(728, 0) translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 353 142;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
color {
@@ -2897,148 +2893,152 @@ transform {
color: rgb(252,252,252);
}
transform {
- transform: translate(0, 103) translate(1, 2);
child: container {
color {
bounds: -1 -2 351 37;
color: rgb(234,232,230);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -2 351 37;
widths: 1 0 0 0;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(3, -2);
child: container {
transform {
- transform: translate(149, 0) translate(16, 4);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
}
+ transform: translate(149, 0) translate(16, 4);
}
transform {
- transform: translate(74, 0) translate(16, 4);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(74, 0) translate(16, 4);
}
transform {
- transform: translate(16, 4);
child: container {
inset-shadow {
- outline: -12 -4 66 37;
+ blur: 0;
color: rgb(53,132,228);
dx: 0;
dy: 3;
+ outline: -12 -4 66 37;
spread: 0;
- blur: 0;
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
}
}
+ transform: translate(16, 4);
}
}
+ transform: translate(3, -2);
}
}
+ transform: translate(0, 103) translate(1, 2);
}
}
}
+ transform: translate(728, 0) translate(1, 1);
}
transform {
- transform: translate(1091, 0) translate(1, 1);
child: container {
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 353 142;
widths: 1 1 1 1;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
container {
transform {
- transform: translate(1, 1);
child: container {
color {
bounds: -1 -1 67 140;
color: rgb(234,232,230);
}
border {
+ colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
outline: -1 -1 67 140;
widths: 0 1 0 0;
- colors: rgb(213,208,204) rgb(213,208,204) rgb(213,208,204) rgb(213,208,204);
}
transform {
- transform: translate(-1, 3);
child: container {
transform {
- transform: translate(0, 88) translate(12, 7);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 680 8192 0 0 1;
}
+ transform: translate(0, 88) translate(12, 7);
}
transform {
- transform: translate(0, 44) translate(12, 7);
child: text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 679 8192 0 0 1;
}
+ transform: translate(0, 44) translate(12, 7);
}
transform {
- transform: translate(12, 7);
child: container {
inset-shadow {
- outline: -12 -3 67 36;
+ blur: 0;
color: rgb(53,132,228);
dx: -3;
dy: 0;
+ outline: -12 -3 67 36;
spread: 0;
- blur: 0;
}
text {
+ color: rgb(146,149,149);
font: "Cantarell Bold 11";
+ glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
x: 0;
y: 20;
- color: rgb(146,149,149);
- glyphs: 406 8192 0 0 1, 244 8192 0 0 1, 312 8192 0 0 1, 287 8192 0 0 1, 862 3072 0 0 1, 678 7168 0 0 1;
}
}
+ transform: translate(12, 7);
}
}
+ transform: translate(-1, 3);
}
}
+ transform: translate(1, 1);
}
transform {
- transform: translate(67, 0);
child: color {
bounds: 0 0 284 140;
color: rgb(252,252,252);
}
+ transform: translate(67, 0);
}
}
}
+ transform: translate(1091, 0) translate(1, 1);
}
}
+ transform: translate(0, 579);
}
}
+ transform: translate(26, 70) translate(10, 10);
}
}
+ transform: translate(0, 0);
}