summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/ajax/share.php36
-rw-r--r--core/css/share.css14
-rw-r--r--core/css/styles.css96
-rw-r--r--core/img/actions/password.pngbin0 -> 197 bytes
-rw-r--r--core/img/actions/password.svg2148
-rw-r--r--core/img/actions/user.pngbin0 -> 374 bytes
-rw-r--r--core/img/actions/user.svg1698
-rw-r--r--core/js/share.js42
-rw-r--r--core/l10n/ca.php8
-rw-r--r--core/l10n/cs_CZ.php8
-rw-r--r--core/l10n/de.php4
-rw-r--r--core/l10n/de_DE.php8
-rw-r--r--core/l10n/es.php8
-rw-r--r--core/l10n/eu.php8
-rw-r--r--core/l10n/fi_FI.php4
-rw-r--r--core/l10n/it.php8
-rw-r--r--core/l10n/ja_JP.php8
-rw-r--r--core/l10n/pl.php4
-rw-r--r--core/l10n/ru.php8
-rw-r--r--core/l10n/uk.php12
-rw-r--r--core/l10n/zh_HK.php3
-rw-r--r--core/templates/installation.php6
-rw-r--r--core/templates/login.php6
-rw-r--r--core/templates/logout.php2
24 files changed, 4110 insertions, 29 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php
index 41832a3c659..12206e0fd79 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -69,6 +69,42 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
($return) ? OC_JSON::success() : OC_JSON::error();
}
break;
+ case 'email':
+ // read post variables
+ $user = OCP\USER::getUser();
+ $type = $_POST['itemType'];
+ $link = $_POST['link'];
+ $file = $_POST['file'];
+ $to_address = $_POST['toaddress'];
+
+ // enable l10n support
+ $l = OC_L10N::get('core');
+
+ // setup the email
+ $subject = (string)$l->t('User %s shared a file with you', $user);
+ if ($type === 'dir')
+ $subject = (string)$l->t('User %s shared a folder with you', $user);
+
+ $text = (string)$l->t('User %s shared the file "%s" with you. It is available for download here: %s', array($user, $file, $link));
+ if ($type === 'dir')
+ $text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s', array($user, $file, $link));
+
+ // handle localhost installations
+ $server_host = OCP\Util::getServerHost();
+ if ($server_host === 'localhost')
+ $server_host = "example.com";
+
+ $default_from = 'sharing-noreply@' . $server_host;
+ $from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from );
+
+ // send it out now
+ try {
+ OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $user);
+ OCP\JSON::success();
+ } catch (Exception $exception) {
+ OCP\JSON::error(array('data' => array('message' => $exception->getMessage())));
+ }
+ break;
}
} else if (isset($_GET['fetch'])) {
switch ($_GET['fetch']) {
diff --git a/core/css/share.css b/core/css/share.css
index 5aca731356a..e806d25982e 100644
--- a/core/css/share.css
+++ b/core/css/share.css
@@ -50,11 +50,17 @@
padding-top:.5em;
}
- #dropdown input[type="text"],#dropdown input[type="password"] {
- width:90%;
- }
+#dropdown input[type="text"],#dropdown input[type="password"] {
+ width:90%;
+}
+
+#dropdown form {
+ font-size: 100%;
+ margin-left: 0;
+ margin-right: 0;
+}
- #linkText,#linkPass,#expiration {
+#linkText,#linkPass,#expiration {
display:none;
}
diff --git a/core/css/styles.css b/core/css/styles.css
index b61f26caf64..0730eeac9fa 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -48,20 +48,40 @@ input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active,
.searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
textarea:hover, textarea:focus, textarea:active { background-color:#fff; color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
+input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; }
+input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; }
+#quota { cursor:default; }
+
+/* BUTTONS */
input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a {
width:auto; padding:.4em;
- background:#f8f8f8; font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #ddd; cursor:pointer;
+ background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid rgba(180,180,180,.5); cursor:pointer;
-moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
}
-input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover { background:#fff; color:#333; }
+input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover {
+ background:rgba(255,255,255,.5); color:#333;
+}
input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; }
-input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; }
-input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; }
-#quota { cursor:default; }
-
+/* Primary action button, use sparingly */
+.primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
+ border:1px solid #1d2d44;
+ background:#35537a; color:#ddd; text-shadow:#000 0 -1px 0;
+ -moz-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset;
+}
+ .primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,
+ .primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {
+ border:1px solid #1d2d44;
+ background:#2d3d54; color:#fff; text-shadow:#000 0 -1px 0;
+ -moz-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset;
+ }
+ .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
+ border:1px solid #1d2d44;
+ background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0;
+ -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset;
+ }
#body-login input { font-size:1.5em; }
@@ -92,23 +112,67 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
#login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; }
#login form { width:22em; margin:2em auto 2em; padding:0; }
-#login form fieldset { background:0; border:0; margin-bottom:2em; padding:0; }
-#login form fieldset legend { font-weight:bold; }
+#login form fieldset { margin-bottom:20px; }
+#login form #adminaccount { margin-bottom:5px; }
+#login form fieldset legend, #datadirContent label {
+ width:100%; text-align:center;
+ font-weight:bold; color:#999; text-shadow:0 1px 0 white;
+}
+#login form fieldset legend a { color:#999; }
+#login #datadirContent label { display:block; margin:0; color:#999; }
+#login form #datadirField legend { margin-bottom:15px; }
-#login form label { margin:.95em 0 0 .85em; color:#666; }
+
+/* Icons for username and password fields to better recognize them */
+#adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; }
+#adminlogin+label, #adminpass+label, #user+label, #password+label { left:2.2em; }
+#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img {
+ position:absolute; left:1.25em; top:1.65em;
+ opacity:.3;
+}
+#adminpass+label+img, #password+label+img { top:1.1em; }
+
+
+/* Nicely grouping input field sets */
+.grouptop input {
+ margin-bottom:0;
+ border-bottom:0; border-bottom-left-radius:0; border-bottom-right-radius:0;
+}
+.groupmiddle input {
+ margin-top:0; margin-bottom:0;
+ border-top:0; border-radius:0;
+ box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
+}
+.groupbottom input {
+ margin-top:0;
+ border-top:0; border-top-right-radius:0; border-top-left-radius:0;
+ box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
+}
+
+#login form label { color:#666; }
+#login .groupmiddle label, #login .groupbottom label { top:.65em; }
/* NEEDED FOR INFIELD LABELS */
p.infield { position:relative; }
-label.infield { cursor:text !important; }
-#login form label.infield { position:absolute; font-size:1.5em; color:#AAA; }
-#login #dbhostlabel, #login #directorylabel { display:block; margin:.95em 0 .8em -8em; }
+label.infield { cursor:text !important; top:1.05em; left:.85em; }
+#login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; }
#login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; }
#login form #selectDbType { text-align:center; }
-#login form #selectDbType label { position:static; font-size:1em; margin:0 -.3em 1em; cursor:pointer; padding:.4em; border:1px solid #ddd; font-weight:bold; background:#f8f8f8; color:#555; text-shadow:#eee 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; }
-#login form #selectDbType label span { cursor:pointer; font-size:0.9em; }
-#login form #selectDbType label.ui-state-hover span, #login form #selectDbType label.ui-state-active span { color:#000; }
-#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#333; background-color:#ccc; }
+#login form #selectDbType label {
+ position:static; margin:0 -3px 5px; padding:.4em;
+ font-size:12px; font-weight:bold; background:#f8f8f8; color:#888; cursor:pointer;
+ border:1px solid #ddd; text-shadow:#eee 0 1px 0;
+ -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
+}
+#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; }
+
+fieldset.warning {
+ padding:8px;
+ color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7;
+ border-radius:5px;
+}
+fieldset.warning legend { color:#b94a48 !important; }
/* NAVIGATION ------------------------------------------------------------- */
diff --git a/core/img/actions/password.png b/core/img/actions/password.png
new file mode 100644
index 00000000000..5167161dfa9
--- /dev/null
+++ b/core/img/actions/password.png
Binary files differ
diff --git a/core/img/actions/password.svg b/core/img/actions/password.svg
new file mode 100644
index 00000000000..ee6a9fe0182
--- /dev/null
+++ b/core/img/actions/password.svg
@@ -0,0 +1,2148 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="16"
+ height="16"
+ id="svg11300"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="password.svg"
+ inkscape:export-filename="password.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata26">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#cccccc"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="745"
+ id="namedview24"
+ showgrid="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="16.000001"
+ inkscape:cx="-1.1375545"
+ inkscape:cy="5.0070539"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g4146">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4330"
+ empspacing="5"
+ dotted="true"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient4136">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;"
+ id="stop4138" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4140" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4303">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop4305" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4307" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4297">
+ <stop
+ id="stop4299"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4301"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4115">
+ <stop
+ id="stop4117"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4119"
+ style="stop-color:#363636;stop-opacity:0.698"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3785">
+ <stop
+ id="stop3787"
+ style="stop-color:#b8b8b8;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3789"
+ style="stop-color:#878787;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6954">
+ <stop
+ id="stop6960"
+ style="stop-color:#f5f5f5;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop6962"
+ style="stop-color:#d2d2d2;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3341">
+ <stop
+ id="stop3343"
+ style="stop-color:white;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3345"
+ style="stop-color:white;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="24.999998"
+ cy="28.659998"
+ r="16"
+ fx="24.999998"
+ fy="28.659998"
+ id="radialGradient2856"
+ xlink:href="#linearGradient6954"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.56186795,0,0,0.15787922,-6.1682604,5.3385209)" />
+ <linearGradient
+ x1="30"
+ y1="25.084745"
+ x2="30"
+ y2="45"
+ id="linearGradient2858"
+ xlink:href="#linearGradient3785"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.42808986,0,0,0.42296591,-2.823809,-3.2486024)" />
+ <radialGradient
+ cx="26.375898"
+ cy="12.31301"
+ r="8"
+ fx="26.375898"
+ fy="12.31301"
+ id="radialGradient2860"
+ xlink:href="#linearGradient6954"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55250164,-0.0426402,0.04315608,0.50971914,-6.3026675,-1.9765067)" />
+ <linearGradient
+ x1="30"
+ y1="5"
+ x2="30"
+ y2="44.678879"
+ id="linearGradient2862"
+ xlink:href="#linearGradient3785"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.33685737,0,0,0.32161283,-0.10572085,-0.29529973)" />
+ <linearGradient
+ x1="30"
+ y1="0.91818392"
+ x2="30"
+ y2="25.792814"
+ id="linearGradient2864"
+ xlink:href="#linearGradient3341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.33685737,0,0,0.32161283,-0.10572085,-0.29529973)" />
+ <linearGradient
+ x1="29.955881"
+ y1="21.86607"
+ x2="29.955881"
+ y2="43.144382"
+ id="linearGradient2866"
+ xlink:href="#linearGradient3341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.42808986,0,0,0.42296591,-2.823809,-3.2486024)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient7308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.54681372,0,0,0.39376081,3.7325729,-0.29182867)"
+ x1="34.992828"
+ y1="0.94087797"
+ x2="34.992828"
+ y2="33.955856" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3796"
+ x1="8.3635759"
+ y1="15.028702"
+ x2="15.937561"
+ y2="11.00073"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3798"
+ x1="6.9951797"
+ y1="4.7478018"
+ x2="13.00482"
+ y2="4.7478018"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3815"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-5"
+ id="linearGradient3815-3"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-5">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-9" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-0" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-5"
+ id="linearGradient3831"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3833">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3835" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3837" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3874"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2"
+ id="linearGradient3892-2"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.96967712,0,0,0.96967712,0.26437941,-0.96950812)"
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3909"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3984"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.78786264,0,0,0.78786264,-1.5726929,-0.7389112)"
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3909-3"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-2"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-2">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-7" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-5" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4115-9"
+ id="linearGradient4113-3"
+ x1="0.86849999"
+ y1="13.895414"
+ x2="0.44923753"
+ y2="28.776533"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient4115-9">
+ <stop
+ id="stop4117-5"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4119-6"
+ style="stop-color:#363636;stop-opacity:0.698"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3104"
+ id="linearGradient3815-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23426255,0,0,0.2859159,18.734419,0.35950872)"
+ x1="-51.786404"
+ y1="50.786446"
+ x2="-51.786404"
+ y2="2.9062471" />
+ <linearGradient
+ id="linearGradient3104">
+ <stop
+ id="stop3106"
+ style="stop-color:#aaaaaa;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3108"
+ style="stop-color:#c8c8c8;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="13.138569"
+ cy="25.625349"
+ r="13.931416"
+ fx="13.138569"
+ fy="25.625349"
+ id="radialGradient2965"
+ xlink:href="#linearGradient3690-451"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,0.92614711,-1.0546317,0,32.402583,-9.3345932)" />
+ <linearGradient
+ id="linearGradient3690-451">
+ <stop
+ id="stop2857"
+ style="stop-color:#e8e8e8;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2859"
+ style="stop-color:#d8d8d8;stop-opacity:1"
+ offset="0.26238" />
+ <stop
+ id="stop2861"
+ style="stop-color:#c2c2c2;stop-opacity:1"
+ offset="0.66093999" />
+ <stop
+ id="stop2863"
+ style="stop-color:#a5a5a5;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="21.483376"
+ y1="36.255058"
+ x2="21.483376"
+ y2="9.5799999"
+ id="linearGradient2967"
+ xlink:href="#linearGradient3603-84"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762279)" />
+ <linearGradient
+ id="linearGradient3603-84">
+ <stop
+ id="stop2867"
+ style="stop-color:#707070;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2869"
+ style="stop-color:#9e9e9e;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11.566265"
+ y1="22.292103"
+ x2="15.214532"
+ y2="33.95525"
+ id="linearGradient3674-262"
+ xlink:href="#linearGradient8265-821-176-38-919-66-249-529"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4893617,0,0,0.4893617,1.7131795,22.728095)" />
+ <linearGradient
+ id="linearGradient8265-821-176-38-919-66-249-529">
+ <stop
+ id="stop2873"
+ style="stop-color:#ffffff;stop-opacity:0.27450982"
+ offset="0" />
+ <stop
+ id="stop2875"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="24.046366"
+ y1="11.673002"
+ x2="24.046366"
+ y2="34.713669"
+ id="linearGradient3677-116"
+ xlink:href="#linearGradient3642-81"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762276)" />
+ <linearGradient
+ id="linearGradient3642-81">
+ <stop
+ id="stop2879"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2881"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="34.713669"
+ x2="24.046366"
+ y1="11.673002"
+ x1="24.046366"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762276)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3037"
+ xlink:href="#linearGradient3642-81"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3155-40"
+ id="linearGradient8639"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.415777,-0.4174938,0.518983,0.5146192,-15.747227,2.6503673)"
+ spreadMethod="pad"
+ x1="23.575972"
+ y1="25.356892"
+ x2="23.575972"
+ y2="31.210939" />
+ <linearGradient
+ id="linearGradient3155-40">
+ <stop
+ id="stop2541"
+ offset="0"
+ style="stop-color:#181818;stop-opacity:1;" />
+ <stop
+ style="stop-color:#dbdbdb;stop-opacity:1;"
+ offset="0.13482948"
+ id="stop2543" />
+ <stop
+ id="stop2545"
+ offset="0.20224422"
+ style="stop-color:#a4a4a4;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.26965895"
+ id="stop2547" />
+ <stop
+ id="stop2549"
+ offset="0.44650277"
+ style="stop-color:#8d8d8d;stop-opacity:1;" />
+ <stop
+ style="stop-color:#959595;stop-opacity:1;"
+ offset="0.57114136"
+ id="stop2551" />
+ <stop
+ id="stop2553"
+ offset="0.72038066"
+ style="stop-color:#cecece;stop-opacity:1;" />
+ <stop
+ id="stop2555"
+ offset="1"
+ style="stop-color:#181818;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-279"
+ id="linearGradient8641"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.867764,0.6930272)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-279">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2559" />
+ <stop
+ id="stop2561"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2563" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-789"
+ id="linearGradient8643"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.983472,0.8092126)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-789">
+ <stop
+ id="stop2567"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2569" />
+ <stop
+ id="stop2571"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-686"
+ id="linearGradient8645"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.465684,0.2892868)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-686">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2575" />
+ <stop
+ id="stop2577"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2579" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-768"
+ id="linearGradient8647"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.581392,0.4054707)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-768">
+ <stop
+ id="stop2583"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2585" />
+ <stop
+ id="stop2587"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-907"
+ id="linearGradient8649"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.061661,-0.1164056)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-907">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2591" />
+ <stop
+ id="stop2593"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2595" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-699"
+ id="linearGradient8651"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.177369,-2.1969969e-4)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-699">
+ <stop
+ id="stop2599"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2601" />
+ <stop
+ id="stop2603"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3290-678"
+ id="linearGradient8653"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.602268,-17.636692,0.462492)"
+ x1="9"
+ y1="29.056757"
+ x2="9"
+ y2="26.02973" />
+ <linearGradient
+ id="linearGradient3290-678">
+ <stop
+ id="stop2607"
+ offset="0"
+ style="stop-color:#ece5a5;stop-opacity:1;" />
+ <stop
+ id="stop2609"
+ offset="1"
+ style="stop-color:#fcfbf2;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3191-577"
+ id="linearGradient8655"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.3763801,0.03615261,0.03669995,0.374874,-2.2182805,-1.1331002)"
+ x1="5.5178981"
+ y1="37.371799"
+ x2="9.5220556"
+ y2="41.391716" />
+ <linearGradient
+ id="linearGradient3191-577">
+ <stop
+ id="stop2613"
+ offset="0"
+ style="stop-color:#dbce48;stop-opacity:1;" />
+ <stop
+ id="stop2615"
+ offset="1"
+ style="stop-color:#c5b625;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-1-0"
+ id="linearGradient3934-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0" />
+ </linearGradient>
+ <linearGradient
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4154-8"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-8" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-4" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9-0">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-8-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-4-8" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-3">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-6" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4326"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,-5.3691237,-18.974705)"
+ x1="14.501121"
+ y1="-1.4095211"
+ x2="14.152531"
+ y2="20.074369" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4328"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ x1="-2.4040222"
+ y1="4.4573336"
+ x2="-2.4040222"
+ y2="18.967093"
+ id="linearGradient3878"
+ xlink:href="#linearGradient3587-6-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(13.927091,-3.4266134)" />
+ <linearGradient
+ id="linearGradient3587-6-5">
+ <stop
+ id="stop3589-9-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0344828,0,0,1.0344828,8.0707628,-14.513825)"
+ x1="0.86849999"
+ y1="13.895414"
+ x2="0.44923753"
+ y2="28.776533" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient4405"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4413-7"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-55">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-95" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-6" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2"
+ id="linearGradient4411-3"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-2">
+ <stop
+ id="stop3589-9-2-8"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4"
+ id="linearGradient4466-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23426255,0,0,0.2859159,18.734419,60.359508)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4">
+ <stop
+ id="stop3589-9-2-8-7"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="54.703121"
+ x2="-41.553459"
+ y1="2.2401412"
+ x1="-41.553459"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,17.618755,60.402242)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4483-3"
+ xlink:href="#linearGradient3587-6-5-2-4-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-9">
+ <stop
+ id="stop3589-9-2-8-7-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-8"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4564"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4566"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(13.927091,16.573387)"
+ x1="-2.4040222"
+ y1="4.4573336"
+ x2="-2.4040222"
+ y2="18.967093" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2"
+ id="linearGradient4578"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4580"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3"
+ id="linearGradient4359-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,29.038238,-21.358617)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-3">
+ <stop
+ id="stop3589-9-2-6"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3"
+ id="linearGradient4361-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,25.66524,-19.333318)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient4597">
+ <stop
+ id="stop4599"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4601"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,25.66524,-19.333318)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4610"
+ xlink:href="#linearGradient3587-6-5-3"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="1.3333321"
+ y1="6.6666665"
+ x2="1.3333321"
+ y2="33.333332"
+ id="linearGradient2422"
+ xlink:href="#linearGradient3587-6-5-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4090909,0,0,0.375,7.4545459,0.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-5">
+ <stop
+ id="stop3589-9-2-4"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3189"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-8">
+ <stop
+ id="stop3589-9-2-67"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3203"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)" />
+ <linearGradient
+ id="linearGradient3120">
+ <stop
+ id="stop3122"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3124"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3207"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)" />
+ <linearGradient
+ id="linearGradient3127">
+ <stop
+ id="stop3129"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3131"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3211"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)" />
+ <linearGradient
+ id="linearGradient3134">
+ <stop
+ id="stop3136"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3138"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2409"
+ xlink:href="#linearGradient3587-6-5-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2403101,0,0,0.8988764,10.387597,0.2247191)" />
+ <linearGradient
+ id="linearGradient3587-6-5-1">
+ <stop
+ id="stop3589-9-2-0"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-21"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="40.805084"
+ y1="5.6271191"
+ x2="40.805084"
+ y2="17.627119"
+ id="linearGradient3206"
+ xlink:href="#linearGradient3587-8-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-32.805085,-3.6271193)" />
+ <linearGradient
+ id="linearGradient3587-8-5">
+ <stop
+ id="stop3589-2-7"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-3-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="17.627119"
+ x2="40.805084"
+ y1="5.6271191"
+ x1="40.805084"
+ gradientTransform="translate(-32.805085,-3.6271193)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3180"
+ xlink:href="#linearGradient3587-8-5"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="1.3333321"
+ y1="6.6666665"
+ x2="1.3333321"
+ y2="33.333332"
+ id="linearGradient2422-1"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2727273,0,0,0.375,9.636365,1.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-86">
+ <stop
+ id="stop3589-9-2-65"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-9"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2427"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,1.5842703)" />
+ <linearGradient
+ id="linearGradient3207-3">
+ <stop
+ id="stop3209"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3211"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2436"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,9.58427)" />
+ <linearGradient
+ id="linearGradient3214">
+ <stop
+ id="stop3216"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3218"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2442"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,5.5842706)" />
+ <linearGradient
+ id="linearGradient3221">
+ <stop
+ id="stop3223"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3225"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="1.3333321"
+ y1="4.9755898"
+ x2="1.3333321"
+ y2="37.373981"
+ id="linearGradient2422-1-0"
+ xlink:href="#linearGradient3587-6-5-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39871888,0,0,0.3091132,71.812715,15.470662)" />
+ <linearGradient
+ id="linearGradient3587-6-5-0">
+ <stop
+ id="stop3589-9-2-5"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-1"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="46.395508"
+ y1="12.707516"
+ x2="46.395508"
+ y2="38.409042"
+ id="linearGradient3795-2"
+ xlink:href="#linearGradient3587-6-5-3-5-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.4100229,0,0,0.5447147,28.02322,-5.9219706)" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-5-7">
+ <stop
+ id="stop3589-9-2-2-6-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-73-5-1"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-5">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-6" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-5" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-5"
+ id="linearGradient4872"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.4100229,0,0,0.5447147,19.329265,-26.729116)"
+ x1="100.77747"
+ y1="17.859186"
+ x2="100.77747"
+ y2="38.055252" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4894"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4900"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4912"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3587-6-5-8-6">
+ <stop
+ id="stop3589-9-2-67-3"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4935">
+ <stop
+ id="stop4937"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4939"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4942">
+ <stop
+ id="stop4944"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4946"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-6"
+ id="linearGradient4912-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient4949">
+ <stop
+ id="stop4951"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4953"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5012"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5018"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5021"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4"
+ id="linearGradient3335"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,18.618755,-19.597758)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136"
+ id="linearGradient4134"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136"
+ id="linearGradient4150"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6"
+ id="linearGradient3335-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,76.619476,1.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.755585"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6">
+ <stop
+ id="stop3589-9-2-8-7-8"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-0"
+ id="linearGradient3335-7-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,0.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-0">
+ <stop
+ id="stop3589-9-2-8-7-8-7"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-7"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-4"
+ id="linearGradient3335-7-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,0.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-4">
+ <stop
+ id="stop3589-9-2-8-7-8-2"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-2"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-7"
+ id="linearGradient3335-7-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,1.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.755585"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-7">
+ <stop
+ id="stop3589-9-2-8-7-8-4"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-2"
+ id="linearGradient3335-7-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,56.619476,1.4022422)"
+ x1="-39.421574"
+ y1="-5.2547116"
+ x2="-39.421574"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-2">
+ <stop
+ id="stop3589-9-2-8-7-8-77"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-9"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136-9"
+ id="linearGradient4150-0"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15" />
+ <linearGradient
+ id="linearGradient4136-9">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;"
+ id="stop4138-6" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4140-3" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-2-6"
+ id="linearGradient3335-7-1-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,56.619476,1.4022422)"
+ x1="-39.421574"
+ y1="-5.2547116"
+ x2="-39.421574"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-2-6">
+ <stop
+ id="stop3589-9-2-8-7-8-77-4"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-9-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-10"
+ id="linearGradient4328-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-10">
+ <stop
+ id="stop3589-9-2-3"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-19"
+ id="linearGradient4326-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,-5.3691237,-18.974705)"
+ x1="14.501121"
+ y1="-1.4095211"
+ x2="14.152531"
+ y2="20.074369" />
+ <linearGradient
+ id="linearGradient3587-6-5-19">
+ <stop
+ id="stop3589-9-2-62"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-54"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-4"
+ id="linearGradient4357-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0344828,0,0,1.0344828,8.0707628,-14.513825)"
+ x1="0.86849999"
+ y1="13.895414"
+ x2="0.44923753"
+ y2="28.776533" />
+ <linearGradient
+ id="linearGradient3587-6-5-4">
+ <stop
+ id="stop3589-9-2-1"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-04"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-26"
+ id="linearGradient4566-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(13.927091,16.573387)"
+ x1="-2.4040222"
+ y1="4.4573336"
+ x2="-2.4040222"
+ y2="18.967093" />
+ <linearGradient
+ id="linearGradient3587-6-5-26">
+ <stop
+ id="stop3589-9-2-45"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-20"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55-2"
+ id="linearGradient4580-3"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-55-2">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-95-4" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-6-3" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-2-1">
+ <stop
+ id="stop3589-9-2-8-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-2"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="1013.451"
+ x2="209.34245"
+ y1="998.45801"
+ x1="209.34245"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3528"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55-2"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-4"
+ id="linearGradient3335-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,18.618755,-19.597758)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-4">
+ <stop
+ id="stop3589-9-2-8-7-7"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-6"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="54.703121"
+ x2="-41.553459"
+ y1="2.2401412"
+ x1="-41.553459"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,18.618755,-19.597758)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3567"
+ xlink:href="#linearGradient3587-6-5-2-4-4"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient5021-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3587-6-5-8-3">
+ <stop
+ id="stop3589-9-2-67-4"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2-9"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient5018-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3584">
+ <stop
+ id="stop3586"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3588"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient5015-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3591">
+ <stop
+ id="stop3593"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3595"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient5012-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3598">
+ <stop
+ id="stop3600"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3602"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4638"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4640"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4642"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4644"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4656"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,6.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4659"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4661"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4663"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,6.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4665"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3587-6-5-8-3-9">
+ <stop
+ id="stop3589-9-2-67-4-8"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2-9-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3-9"
+ id="linearGradient4661-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient4682">
+ <stop
+ id="stop4684"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4686"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4689">
+ <stop
+ id="stop4691"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4693"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3-9"
+ id="linearGradient4665-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient4696">
+ <stop
+ id="stop4698"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4700"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="19.490837"
+ x2="26.045763"
+ y1="9.6223383"
+ x1="26.045763"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4707"
+ xlink:href="#linearGradient3587-6-5-8-3-9"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4823"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4825"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4827"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,6.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient4829"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient3717"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient3719"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient3721"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,6.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-3"
+ id="linearGradient3723"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ </defs>
+ <g
+ transform="matrix(0.78786264,0,0,0.78786264,-3.1483699,0.44173984)"
+ id="g3743-3"
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
+ <rect
+ style="color:#000000;fill:#ccc000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="rect3136"
+ width="163.31035"
+ height="97.986206"
+ x="-62.896553"
+ y="-32.993103" />
+ <g
+ transform="matrix(0.99998873,0,0,0.99998873,-3.996044,-20.001608)"
+ id="g3743-9-4"
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
+ <g
+ id="g4146">
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:1"
+ d="M 3 6 C 1.8954305 6 1 6.8954305 1 8 C 1 9.1045695 1.8954305 10 3 10 C 4.1045695 10 5 9.1045695 5 8 C 5 6.8954305 4.1045695 6 3 6 z M 8 6 C 6.8954305 6 6 6.8954305 6 8 C 6 9.1045695 6.8954305 10 8 10 C 9.1045695 10 10 9.1045695 10 8 C 10 6.8954305 9.1045695 6 8 6 z M 13 6 C 11.895431 6 11 6.8954305 11 8 C 11 9.1045695 11.895431 10 13 10 C 14.104569 10 15 9.1045695 15 8 C 15 6.8954305 14.104569 6 13 6 z "
+ id="path3750" />
+ </g>
+</svg>
diff --git a/core/img/actions/user.png b/core/img/actions/user.png
new file mode 100644
index 00000000000..2221ac679d1
--- /dev/null
+++ b/core/img/actions/user.png
Binary files differ
diff --git a/core/img/actions/user.svg b/core/img/actions/user.svg
new file mode 100644
index 00000000000..6d0dc714ce4
--- /dev/null
+++ b/core/img/actions/user.svg
@@ -0,0 +1,1698 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.0"
+ width="16"
+ height="16"
+ id="svg11300"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="user.svg"
+ inkscape:export-filename="user.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata26">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#cccccc"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="745"
+ id="namedview24"
+ showgrid="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="16"
+ inkscape:cx="6.2464037"
+ inkscape:cy="5.7411894"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g4146">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4330"
+ empspacing="5"
+ dotted="true"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient4136">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;"
+ id="stop4138" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4140" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4303">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop4305" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4307" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4297">
+ <stop
+ id="stop4299"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4301"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4115">
+ <stop
+ id="stop4117"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4119"
+ style="stop-color:#363636;stop-opacity:0.698"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3785">
+ <stop
+ id="stop3787"
+ style="stop-color:#b8b8b8;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3789"
+ style="stop-color:#878787;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6954">
+ <stop
+ id="stop6960"
+ style="stop-color:#f5f5f5;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop6962"
+ style="stop-color:#d2d2d2;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3341">
+ <stop
+ id="stop3343"
+ style="stop-color:white;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3345"
+ style="stop-color:white;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="24.999998"
+ cy="28.659998"
+ r="16"
+ fx="24.999998"
+ fy="28.659998"
+ id="radialGradient2856"
+ xlink:href="#linearGradient6954"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.56186795,0,0,0.15787922,-6.1682604,5.3385209)" />
+ <linearGradient
+ x1="30"
+ y1="25.084745"
+ x2="30"
+ y2="45"
+ id="linearGradient2858"
+ xlink:href="#linearGradient3785"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.42808986,0,0,0.42296591,-2.823809,-3.2486024)" />
+ <radialGradient
+ cx="26.375898"
+ cy="12.31301"
+ r="8"
+ fx="26.375898"
+ fy="12.31301"
+ id="radialGradient2860"
+ xlink:href="#linearGradient6954"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55250164,-0.0426402,0.04315608,0.50971914,-6.3026675,-1.9765067)" />
+ <linearGradient
+ x1="30"
+ y1="5"
+ x2="30"
+ y2="44.678879"
+ id="linearGradient2862"
+ xlink:href="#linearGradient3785"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.33685737,0,0,0.32161283,-0.10572085,-0.29529973)" />
+ <linearGradient
+ x1="30"
+ y1="0.91818392"
+ x2="30"
+ y2="25.792814"
+ id="linearGradient2864"
+ xlink:href="#linearGradient3341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.33685737,0,0,0.32161283,-0.10572085,-0.29529973)" />
+ <linearGradient
+ x1="29.955881"
+ y1="21.86607"
+ x2="29.955881"
+ y2="43.144382"
+ id="linearGradient2866"
+ xlink:href="#linearGradient3341"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.42808986,0,0,0.42296591,-2.823809,-3.2486024)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient7308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.54681372,0,0,0.39376081,3.7325729,-0.29182867)"
+ x1="34.992828"
+ y1="0.94087797"
+ x2="34.992828"
+ y2="33.955856" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3796"
+ x1="8.3635759"
+ y1="15.028702"
+ x2="15.937561"
+ y2="11.00073"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3798"
+ x1="6.9951797"
+ y1="4.7478018"
+ x2="13.00482"
+ y2="4.7478018"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3815"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-5"
+ id="linearGradient3815-3"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-5">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-9" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-0" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-5"
+ id="linearGradient3831"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3833">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3835" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3837" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3874"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2"
+ id="linearGradient3892-2"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.96967712,0,0,0.96967712,0.26437941,-0.96950812)"
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3909"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient3984"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.78786264,0,0,0.78786264,-1.5726929,-0.7389112)"
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3909-3"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-2"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-2">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-7" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-5" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4115-9"
+ id="linearGradient4113-3"
+ x1="0.86849999"
+ y1="13.895414"
+ x2="0.44923753"
+ y2="28.776533"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient4115-9">
+ <stop
+ id="stop4117-5"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4119-6"
+ style="stop-color:#363636;stop-opacity:0.698"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3104"
+ id="linearGradient3815-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23426255,0,0,0.2859159,18.734419,0.35950872)"
+ x1="-51.786404"
+ y1="50.786446"
+ x2="-51.786404"
+ y2="2.9062471" />
+ <linearGradient
+ id="linearGradient3104">
+ <stop
+ id="stop3106"
+ style="stop-color:#aaaaaa;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3108"
+ style="stop-color:#c8c8c8;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="13.138569"
+ cy="25.625349"
+ r="13.931416"
+ fx="13.138569"
+ fy="25.625349"
+ id="radialGradient2965"
+ xlink:href="#linearGradient3690-451"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,0.92614711,-1.0546317,0,32.402583,-9.3345932)" />
+ <linearGradient
+ id="linearGradient3690-451">
+ <stop
+ id="stop2857"
+ style="stop-color:#e8e8e8;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2859"
+ style="stop-color:#d8d8d8;stop-opacity:1"
+ offset="0.26238" />
+ <stop
+ id="stop2861"
+ style="stop-color:#c2c2c2;stop-opacity:1"
+ offset="0.66093999" />
+ <stop
+ id="stop2863"
+ style="stop-color:#a5a5a5;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="21.483376"
+ y1="36.255058"
+ x2="21.483376"
+ y2="9.5799999"
+ id="linearGradient2967"
+ xlink:href="#linearGradient3603-84"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762279)" />
+ <linearGradient
+ id="linearGradient3603-84">
+ <stop
+ id="stop2867"
+ style="stop-color:#707070;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2869"
+ style="stop-color:#9e9e9e;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11.566265"
+ y1="22.292103"
+ x2="15.214532"
+ y2="33.95525"
+ id="linearGradient3674-262"
+ xlink:href="#linearGradient8265-821-176-38-919-66-249-529"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4893617,0,0,0.4893617,1.7131795,22.728095)" />
+ <linearGradient
+ id="linearGradient8265-821-176-38-919-66-249-529">
+ <stop
+ id="stop2873"
+ style="stop-color:#ffffff;stop-opacity:0.27450982"
+ offset="0" />
+ <stop
+ id="stop2875"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="24.046366"
+ y1="11.673002"
+ x2="24.046366"
+ y2="34.713669"
+ id="linearGradient3677-116"
+ xlink:href="#linearGradient3642-81"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762276)" />
+ <linearGradient
+ id="linearGradient3642-81">
+ <stop
+ id="stop2879"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop2881"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="34.713669"
+ x2="24.046366"
+ y1="11.673002"
+ x1="24.046366"
+ gradientTransform="matrix(0.55048262,0,0,0.57815823,-3.8262247,-5.2762276)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3037"
+ xlink:href="#linearGradient3642-81"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3155-40"
+ id="linearGradient8639"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.415777,-0.4174938,0.518983,0.5146192,-15.747227,2.6503673)"
+ spreadMethod="pad"
+ x1="23.575972"
+ y1="25.356892"
+ x2="23.575972"
+ y2="31.210939" />
+ <linearGradient
+ id="linearGradient3155-40">
+ <stop
+ id="stop2541"
+ offset="0"
+ style="stop-color:#181818;stop-opacity:1;" />
+ <stop
+ style="stop-color:#dbdbdb;stop-opacity:1;"
+ offset="0.13482948"
+ id="stop2543" />
+ <stop
+ id="stop2545"
+ offset="0.20224422"
+ style="stop-color:#a4a4a4;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.26965895"
+ id="stop2547" />
+ <stop
+ id="stop2549"
+ offset="0.44650277"
+ style="stop-color:#8d8d8d;stop-opacity:1;" />
+ <stop
+ style="stop-color:#959595;stop-opacity:1;"
+ offset="0.57114136"
+ id="stop2551" />
+ <stop
+ id="stop2553"
+ offset="0.72038066"
+ style="stop-color:#cecece;stop-opacity:1;" />
+ <stop
+ id="stop2555"
+ offset="1"
+ style="stop-color:#181818;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-279"
+ id="linearGradient8641"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.867764,0.6930272)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-279">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2559" />
+ <stop
+ id="stop2561"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2563" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-789"
+ id="linearGradient8643"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.983472,0.8092126)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-789">
+ <stop
+ id="stop2567"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2569" />
+ <stop
+ id="stop2571"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-686"
+ id="linearGradient8645"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.465684,0.2892868)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-686">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2575" />
+ <stop
+ id="stop2577"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2579" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-768"
+ id="linearGradient8647"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.581392,0.4054707)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-768">
+ <stop
+ id="stop2583"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2585" />
+ <stop
+ id="stop2587"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3240-907"
+ id="linearGradient8649"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.061661,-0.1164056)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3240-907">
+ <stop
+ style="stop-color:#565656;stop-opacity:1;"
+ offset="0"
+ id="stop2591" />
+ <stop
+ id="stop2593"
+ offset="0.5"
+ style="stop-color:#9a9a9a;stop-opacity:1;" />
+ <stop
+ style="stop-color:#545454;stop-opacity:1;"
+ offset="1"
+ id="stop2595" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3223-699"
+ id="linearGradient8651"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.6022679,-17.177369,-2.1969969e-4)"
+ x1="30.037716"
+ y1="24.989594"
+ x2="30.037716"
+ y2="30.000141" />
+ <linearGradient
+ id="linearGradient3223-699">
+ <stop
+ id="stop2599"
+ offset="0"
+ style="stop-color:#b1b1b1;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.5"
+ id="stop2601" />
+ <stop
+ id="stop2603"
+ offset="1"
+ style="stop-color:#8f8f8f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3290-678"
+ id="linearGradient8653"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4040235,-0.4056919,0.6073752,0.602268,-17.636692,0.462492)"
+ x1="9"
+ y1="29.056757"
+ x2="9"
+ y2="26.02973" />
+ <linearGradient
+ id="linearGradient3290-678">
+ <stop
+ id="stop2607"
+ offset="0"
+ style="stop-color:#ece5a5;stop-opacity:1;" />
+ <stop
+ id="stop2609"
+ offset="1"
+ style="stop-color:#fcfbf2;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3191-577"
+ id="linearGradient8655"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.3763801,0.03615261,0.03669995,0.374874,-2.2182805,-1.1331002)"
+ x1="5.5178981"
+ y1="37.371799"
+ x2="9.5220556"
+ y2="41.391716" />
+ <linearGradient
+ id="linearGradient3191-577">
+ <stop
+ id="stop2613"
+ offset="0"
+ style="stop-color:#dbce48;stop-opacity:1;" />
+ <stop
+ id="stop2615"
+ offset="1"
+ style="stop-color:#c5b625;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-1-0"
+ id="linearGradient3934-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0" />
+ </linearGradient>
+ <linearGradient
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4154-8"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-8" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-4" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-9-0">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-8-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-4-8" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-2-1-0-3">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-1-4-9-3" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-4-6-0-6" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4326"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,-5.3691237,-18.974705)"
+ x1="14.501121"
+ y1="-1.4095211"
+ x2="14.152531"
+ y2="20.074369" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4328"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ x1="-2.4040222"
+ y1="4.4573336"
+ x2="-2.4040222"
+ y2="18.967093"
+ id="linearGradient3878"
+ xlink:href="#linearGradient3587-6-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(13.927091,-3.4266134)" />
+ <linearGradient
+ id="linearGradient3587-6-5">
+ <stop
+ id="stop3589-9-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0344828,0,0,1.0344828,8.0707628,-14.513825)"
+ x1="0.86849999"
+ y1="13.895414"
+ x2="0.44923753"
+ y2="28.776533" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1"
+ id="linearGradient4405"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4413-7"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-4-5-4-0-1-55">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-3-2-53-4-3-95" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-7-9-86-9-3-6" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2"
+ id="linearGradient4411-3"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ id="linearGradient3587-6-5-2">
+ <stop
+ id="stop3589-9-2-8"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4"
+ id="linearGradient4466-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23426255,0,0,0.2859159,18.734419,60.359508)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4">
+ <stop
+ id="stop3589-9-2-8-7"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="54.703121"
+ x2="-41.553459"
+ y1="2.2401412"
+ x1="-41.553459"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,17.618755,60.402242)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4483-3"
+ xlink:href="#linearGradient3587-6-5-2-4-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-9">
+ <stop
+ id="stop3589-9-2-8-7-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-8"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4564"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5"
+ id="linearGradient4566"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(13.927091,16.573387)"
+ x1="-2.4040222"
+ y1="4.4573336"
+ x2="-2.4040222"
+ y2="18.967093" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2"
+ id="linearGradient4578"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-4-5-4-0-1-55"
+ id="linearGradient4580"
+ gradientUnits="userSpaceOnUse"
+ x1="209.34245"
+ y1="998.45801"
+ x2="209.34245"
+ y2="1013.451" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3"
+ id="linearGradient4359-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,29.038238,-21.358617)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-3">
+ <stop
+ id="stop3589-9-2-6"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3"
+ id="linearGradient4361-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,25.66524,-19.333318)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient4597">
+ <stop
+ id="stop4599"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4601"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="16.052532"
+ x2="8.6826077"
+ y1="1.0035814"
+ x1="8.7094374"
+ gradientTransform="matrix(0.6858824,0,0,0.68591053,25.66524,-19.333318)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4610"
+ xlink:href="#linearGradient3587-6-5-3"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="1.3333321"
+ y1="6.6666665"
+ x2="1.3333321"
+ y2="33.333332"
+ id="linearGradient2422"
+ xlink:href="#linearGradient3587-6-5-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4090909,0,0,0.375,7.4545459,0.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-5">
+ <stop
+ id="stop3589-9-2-4"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3189"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-8">
+ <stop
+ id="stop3589-9-2-67"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3203"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)" />
+ <linearGradient
+ id="linearGradient3120">
+ <stop
+ id="stop3122"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3124"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3207"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)" />
+ <linearGradient
+ id="linearGradient3127">
+ <stop
+ id="stop3129"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3131"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837"
+ id="linearGradient3211"
+ xlink:href="#linearGradient3587-6-5-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)" />
+ <linearGradient
+ id="linearGradient3134">
+ <stop
+ id="stop3136"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3138"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2409"
+ xlink:href="#linearGradient3587-6-5-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2403101,0,0,0.8988764,10.387597,0.2247191)" />
+ <linearGradient
+ id="linearGradient3587-6-5-1">
+ <stop
+ id="stop3589-9-2-0"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-21"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="40.805084"
+ y1="5.6271191"
+ x2="40.805084"
+ y2="17.627119"
+ id="linearGradient3206"
+ xlink:href="#linearGradient3587-8-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-32.805085,-3.6271193)" />
+ <linearGradient
+ id="linearGradient3587-8-5">
+ <stop
+ id="stop3589-2-7"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-3-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="17.627119"
+ x2="40.805084"
+ y1="5.6271191"
+ x1="40.805084"
+ gradientTransform="translate(-32.805085,-3.6271193)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3180"
+ xlink:href="#linearGradient3587-8-5"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="1.3333321"
+ y1="6.6666665"
+ x2="1.3333321"
+ y2="33.333332"
+ id="linearGradient2422-1"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2727273,0,0,0.375,9.636365,1.5)" />
+ <linearGradient
+ id="linearGradient3587-6-5-86">
+ <stop
+ id="stop3589-9-2-65"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-9"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2427"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,1.5842703)" />
+ <linearGradient
+ id="linearGradient3207-3">
+ <stop
+ id="stop3209"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3211"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2436"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,9.58427)" />
+ <linearGradient
+ id="linearGradient3214">
+ <stop
+ id="stop3216"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3218"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="11"
+ y1="6"
+ x2="11"
+ y2="17"
+ id="linearGradient2442"
+ xlink:href="#linearGradient3587-6-5-86"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4651163,0,0,0.3370786,4.3953488,5.5842706)" />
+ <linearGradient
+ id="linearGradient3221">
+ <stop
+ id="stop3223"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3225"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="1.3333321"
+ y1="4.9755898"
+ x2="1.3333321"
+ y2="37.373981"
+ id="linearGradient2422-1-0"
+ xlink:href="#linearGradient3587-6-5-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39871888,0,0,0.3091132,71.812715,15.470662)" />
+ <linearGradient
+ id="linearGradient3587-6-5-0">
+ <stop
+ id="stop3589-9-2-5"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-1"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ x1="46.395508"
+ y1="12.707516"
+ x2="46.395508"
+ y2="38.409042"
+ id="linearGradient3795-2"
+ xlink:href="#linearGradient3587-6-5-3-5-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.4100229,0,0,0.5447147,28.02322,-5.9219706)" />
+ <linearGradient
+ id="linearGradient3587-6-5-3-5-7">
+ <stop
+ id="stop3589-9-2-2-6-2"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-73-5-1"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3587-6-5-3-5">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1"
+ id="stop3589-9-2-2-6" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop3591-7-4-73-5" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-3-5"
+ id="linearGradient4872"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.4100229,0,0,0.5447147,19.329265,-26.729116)"
+ x1="100.77747"
+ y1="17.859186"
+ x2="100.77747"
+ y2="38.055252" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4894"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4900"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4906"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient4912"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient3587-6-5-8-6">
+ <stop
+ id="stop3589-9-2-67-3"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-2-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4935">
+ <stop
+ id="stop4937"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4939"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4942">
+ <stop
+ id="stop4944"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4946"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8-6"
+ id="linearGradient4912-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ id="linearGradient4949">
+ <stop
+ id="stop4951"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4953"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5012"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5,7.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,7.499999)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5018"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,-0.5000001,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-8"
+ id="linearGradient5021"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.375,0,0,0.375,7.5,0.5)"
+ x1="26.045763"
+ y1="9.6223383"
+ x2="26.045763"
+ y2="19.490837" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4"
+ id="linearGradient3335"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21864454,0,0,0.26685422,18.618755,-19.597758)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136"
+ id="linearGradient4134"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136"
+ id="linearGradient4150"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6"
+ id="linearGradient3335-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,76.619476,1.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.755585"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6">
+ <stop
+ id="stop3589-9-2-8-7-8"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-0"
+ id="linearGradient3335-7-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,0.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-0">
+ <stop
+ id="stop3589-9-2-8-7-8-7"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-7"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-4"
+ id="linearGradient3335-7-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,0.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.553459"
+ y2="54.703121" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-4">
+ <stop
+ id="stop3589-9-2-8-7-8-2"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-2"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-7"
+ id="linearGradient3335-7-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,16.619476,1.402242)"
+ x1="-41.553459"
+ y1="2.2401412"
+ x2="-41.755585"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-7">
+ <stop
+ id="stop3589-9-2-8-7-8-4"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-5"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-2"
+ id="linearGradient3335-7-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,56.619476,1.4022422)"
+ x1="-39.421574"
+ y1="-5.2547116"
+ x2="-39.421574"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-2">
+ <stop
+ id="stop3589-9-2-8-7-8-77"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-9"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4136-9"
+ id="linearGradient4150-0"
+ gradientUnits="userSpaceOnUse"
+ spreadMethod="pad"
+ x1="9"
+ y1="0"
+ x2="9"
+ y2="15" />
+ <linearGradient
+ id="linearGradient4136-9">
+ <stop
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;"
+ id="stop4138-6" />
+ <stop
+ offset="1"
+ style="stop-color:#363636;stop-opacity:1"
+ id="stop4140-3" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-2-4-6-2-6"
+ id="linearGradient3335-7-1-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,56.619476,1.4022422)"
+ x1="-39.421574"
+ y1="-5.2547116"
+ x2="-39.421574"
+ y2="47.208389" />
+ <linearGradient
+ id="linearGradient3587-6-5-2-4-6-2-6">
+ <stop
+ id="stop3589-9-2-8-7-8-77-4"
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-0-3-4-9-3"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ y2="47.208389"
+ x2="-39.421574"
+ y1="-5.2547116"
+ x1="-39.421574"
+ gradientTransform="matrix(0.2186487,0,0,0.26685422,56.619476,1.4022422)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3397"
+ xlink:href="#linearGradient3587-6-5-2-4-6-2-6"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3587-6-5-10"
+ id="linearGradient4328-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99998838,0,0,0.99998838,-1.9961264,-41.000004)"
+ x1="8.7094374"
+ y1="1.0035814"
+ x2="8.6826077"
+ y2="16.052532" />
+ <linearGradient
+ id="linearGradient3587-6-5-10">
+ <stop
+ id="stop3589-9-2-3"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop3591-7-4-4"
+ style="stop-color:#363636;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="matrix(0.78786264,0,0,0.78786264,-3.1483699,0.44173984)"
+ id="g3743-3"
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
+ <rect
+ style="color:#000000;fill:#ccc000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="rect3136"
+ width="163.31035"
+ height="97.986206"
+ x="-62.896553"
+ y="-32.993103" />
+ <g
+ transform="matrix(0.99998873,0,0,0.99998873,-3.996044,-20.001608)"
+ id="g3743-9-4"
+ style="opacity:0.6;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:1" />
+ <g
+ id="g4146">
+ <path
+ id="path2880-5-3"
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00012147000000007;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans;opacity:1"
+ d="m 8.4036095,0.99999982 c -1.7311503,0 -3.199751,1.26607188 -3.199751,2.89996308 0.012287,0.516426 0.058473,1.1532486 0.3666387,2.4999667 l 0,0.033333 0.033328,0.033333 c 0.098928,0.2833818 0.2428905,0.4454861 0.4332995,0.6666581 0.190409,0.2211719 0.4174151,0.4814874 0.6332844,0.6999905 0.025397,0.025708 0.041676,0.041633 0.066656,0.066677 0.04281,0.1863059 0.094672,0.386808 0.1333222,0.5666595 0.1028444,0.4785093 0.092296,0.817368 0.066668,0.93332 -0.7438941,0.26121 -1.6693756,0.572285 -2.4998049,0.9333223 -0.4662227,0.202697 -0.8881034,0.383698 -1.2332384,0.599993 -0.3451339,0.216295 -0.6883746,0.379709 -0.7999369,0.866656 -0.1600387,0.632932 -0.19866,0.753904 -0.399969,1.533302 -0.027212,0.209143 0.083011,0.429614 0.2666456,0.533326 1.507807,0.814508 3.8239751,1.142327 6.1328564,1.13332 2.3088796,-0.009 4.6066016,-0.356087 6.0661936,-1.13332 0.117388,-0.07353 0.143041,-0.108689 0.133323,-0.233305 -0.04365,-0.68908 -0.08154,-1.366916 -0.133319,-1.766644 -0.01807,-0.09908 -0.06492,-0.192753 -0.133324,-0.266663 -0.46366,-0.553698 -1.156389,-0.89218 -1.966513,-1.23332 -0.739597,-0.31144 -1.606657,-0.6348603 -2.4664743,-0.9999873 -0.048123,-0.107207 -0.095926,-0.4191236 0,-0.8999881 0.025759,-0.1291209 0.066096,-0.2674152 0.099994,-0.3999952 0.0808,-0.090507 0.143781,-0.164467 0.233316,-0.2666632 0.190958,-0.2179623 0.396144,-0.4466106 0.56662,-0.6666572 0.170482,-0.2200478 0.309958,-0.4088229 0.399971,-0.6666594 l 0.03333,-0.033333 c 0.34839,-1.4061623 0.348571,-1.9929284 0.366639,-2.4999678 l 0,-0.033333 c 0,-1.6338901 -1.468599,-2.899962 -3.199751,-2.899962 z"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccsscscssccccccccscscsscccssc" />
+ </g>
+</svg>
diff --git a/core/js/share.js b/core/js/share.js
index 475abb58bff..df5ebf008b4 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -168,6 +168,10 @@ OC.Share={
html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />';
html += '</div>';
html += '</div>';
+ html += '<form id="emailPrivateLink" >';
+ html += '<input id="email" style="display:none; width:65%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />';
+ html += '<input id="emailButton" style="display:none; float:right;" type="submit" value="'+t('core', 'Send')+'" />';
+ html += '</form>';
}
html += '<div id="expiration">';
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
@@ -349,13 +353,17 @@ OC.Share={
$('#linkPassText').attr('placeholder', t('core', 'Password protected'));
}
$('#expiration').show();
+ $('#emailPrivateLink #email').show();
+ $('#emailPrivateLink #emailButton').show();
},
hideLink:function() {
$('#linkText').hide('blind');
$('#showPassword').hide();
$('#linkPass').hide();
- },
- dirname:function(path) {
+ $('#emailPrivateLink #email').hide();
+ $('#emailPrivateLink #emailButton').hide();
+ },
+ dirname:function(path) {
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
},
showExpirationDate:function(date) {
@@ -547,4 +555,34 @@ $(document).ready(function() {
});
});
+
+ $('#emailPrivateLink').live('submit', function(event) {
+ event.preventDefault();
+ var link = $('#linkText').val();
+ var itemType = $('#dropdown').data('item-type');
+ var itemSource = $('#dropdown').data('item-source');
+ var file = $('tr').filterAttr('data-id', String(itemSource)).data('file');
+ var email = $('#email').val();
+ if (email != '') {
+ $('#email').attr('disabled', "disabled");
+ $('#email').val(t('core', 'Sending ...'));
+ $('#emailButton').attr('disabled', "disabled");
+
+ $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file},
+ function(result) {
+ $('#email').attr('disabled', "false");
+ $('#emailButton').attr('disabled', "false");
+ if (result && result.status == 'success') {
+ $('#email').css('font-weight', 'bold');
+ $('#email').animate({ fontWeight: 'normal' }, 2000, function() {
+ $(this).val('');
+ }).val(t('core','Email sent'));
+ } else {
+ OC.dialogs.alert(result.data.message, t('core', 'Error while sharing'));
+ }
+ });
+ }
+ });
+
+
});
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index 5e5605aa5b1..cf7cdfb7c94 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "L'usuari %s ha compartit un fitxer amb vós",
+"User %s shared a folder with you" => "L'usuari %s ha compartit una carpeta amb vós",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
"Category type not provided." => "No s'ha especificat el tipus de categoria.",
"No category to add?" => "No voleu afegir cap categoria?",
"This category already exists: " => "Aquesta categoria ja existeix:",
@@ -39,6 +43,8 @@
"Share with link" => "Comparteix amb enllaç",
"Password protect" => "Protegir amb contrasenya",
"Password" => "Contrasenya",
+"Email link to person" => "Enllaç per correu electrónic amb la persona",
+"Send" => "Envia",
"Set expiration date" => "Estableix la data d'expiració",
"Expiration date" => "Data d'expiració",
"Share via email:" => "Comparteix per correu electrònic",
@@ -55,6 +61,8 @@
"Password protected" => "Protegeix amb contrasenya",
"Error unsetting expiration date" => "Error en eliminar la data d'expiració",
"Error setting expiration date" => "Error en establir la data d'expiració",
+"Sending ..." => "Enviant...",
+"Email sent" => "El correu electrónic s'ha enviat",
"ownCloud password reset" => "estableix de nou la contrasenya Owncloud",
"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}",
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",
diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php
index f0977f060d6..96252ea8bba 100644
--- a/core/l10n/cs_CZ.php
+++ b/core/l10n/cs_CZ.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "Uživatel %s s vámi sdílí soubor",
+"User %s shared a folder with you" => "Uživatel %s s vámi sdílí složku",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s",
"Category type not provided." => "Nezadán typ kategorie.",
"No category to add?" => "Žádná kategorie k přidání?",
"This category already exists: " => "Tato kategorie již existuje: ",
@@ -39,6 +43,8 @@
"Share with link" => "Sdílet s odkazem",
"Password protect" => "Chránit heslem",
"Password" => "Heslo",
+"Email link to person" => "Odeslat osobě odkaz e-mailem",
+"Send" => "Odeslat",
"Set expiration date" => "Nastavit datum vypršení platnosti",
"Expiration date" => "Datum vypršení platnosti",
"Share via email:" => "Sdílet e-mailem:",
@@ -55,6 +61,8 @@
"Password protected" => "Chráněno heslem",
"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti",
"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti",
+"Sending ..." => "Odesílám...",
+"Email sent" => "E-mail odeslán",
"ownCloud password reset" => "Obnovení hesla pro ownCloud",
"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}",
"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 50c17ed46ae..5ad16273fb9 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -39,6 +39,8 @@
"Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
+"Email link to person" => "Link per E-Mail verschicken",
+"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum",
"Share via email:" => "Über eine E-Mail freigeben:",
@@ -55,6 +57,8 @@
"Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
+"Sending ..." => "Sende ...",
+"Email sent" => "E-Mail wurde verschickt",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index 51c0eaaf0f9..e32068f6db2 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "Der Nutzer %s teilt eine Datei mit dir",
+"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: " => "Kategorie existiert bereits:",
@@ -39,6 +43,8 @@
"Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
+"Email link to person" => "Link per Mail an Person schicken",
+"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum",
"Share via email:" => "Mittels einer E-Mail freigeben:",
@@ -55,6 +61,8 @@
"Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
+"Sending ..." => "Sende ...",
+"Email sent" => "Email gesendet",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.",
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 58693eda8bd..2a9f5682dfb 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "El usuario %s ha compartido un archivo contigo",
+"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s",
"Category type not provided." => "Tipo de categoria no proporcionado.",
"No category to add?" => "¿Ninguna categoría para añadir?",
"This category already exists: " => "Esta categoría ya existe: ",
@@ -39,6 +43,8 @@
"Share with link" => "Compartir con enlace",
"Password protect" => "Protegido por contraseña",
"Password" => "Contraseña",
+"Email link to person" => "Enviar un enlace por correo electrónico a una persona",
+"Send" => "Enviar",
"Set expiration date" => "Establecer fecha de caducidad",
"Expiration date" => "Fecha de caducidad",
"Share via email:" => "compartido via e-mail:",
@@ -55,6 +61,8 @@
"Password protected" => "Protegido por contraseña",
"Error unsetting expiration date" => "Error al eliminar la fecha de caducidad",
"Error setting expiration date" => "Error estableciendo fecha de caducidad",
+"Sending ..." => "Enviando...",
+"Email sent" => "Correo electrónico enviado",
"ownCloud password reset" => "Reiniciar contraseña de ownCloud",
"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}",
"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña",
diff --git a/core/l10n/eu.php b/core/l10n/eu.php
index 0dbf3d41692..1a21ca34705 100644
--- a/core/l10n/eu.php
+++ b/core/l10n/eu.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "%s erabiltzaileak zurekin fitxategi bat partekatu du ",
+"User %s shared a folder with you" => "%s erabiltzaileak zurekin karpeta bat partekatu du ",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" fitxategia zurekin partekatu du. Hemen duzu eskuragarri: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s",
"Category type not provided." => "Kategoria mota ez da zehaztu.",
"No category to add?" => "Ez dago gehitzeko kategoriarik?",
"This category already exists: " => "Kategoria hau dagoeneko existitzen da:",
@@ -39,6 +43,8 @@
"Share with link" => "Elkarbanatu lotura batekin",
"Password protect" => "Babestu pasahitzarekin",
"Password" => "Pasahitza",
+"Email link to person" => "Postaz bidali lotura ",
+"Send" => "Bidali",
"Set expiration date" => "Ezarri muga data",
"Expiration date" => "Muga data",
"Share via email:" => "Elkarbanatu eposta bidez:",
@@ -55,6 +61,8 @@
"Password protected" => "Pasahitzarekin babestuta",
"Error unsetting expiration date" => "Errorea izan da muga data kentzean",
"Error setting expiration date" => "Errore bat egon da muga data ezartzean",
+"Sending ..." => "Bidaltzen ...",
+"Email sent" => "Eposta bidalia",
"ownCloud password reset" => "ownCloud-en pasahitza berrezarri",
"Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
"You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.",
diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php
index 252b0369e55..4b4a23b8c70 100644
--- a/core/l10n/fi_FI.php
+++ b/core/l10n/fi_FI.php
@@ -30,6 +30,8 @@
"Share with link" => "Jaa linkillä",
"Password protect" => "Suojaa salasanalla",
"Password" => "Salasana",
+"Email link to person" => "Lähetä linkki sähköpostitse",
+"Send" => "Lähetä",
"Set expiration date" => "Aseta päättymispäivä",
"Expiration date" => "Päättymispäivä",
"Share via email:" => "Jaa sähköpostilla:",
@@ -45,6 +47,8 @@
"Password protected" => "Salasanasuojattu",
"Error unsetting expiration date" => "Virhe purettaessa eräpäivää",
"Error setting expiration date" => "Virhe päättymispäivää asettaessa",
+"Sending ..." => "Lähetetään...",
+"Email sent" => "Sähköposti lähetetty",
"ownCloud password reset" => "ownCloud-salasanan nollaus",
"Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}",
"You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.",
diff --git a/core/l10n/it.php b/core/l10n/it.php
index 7d82915ed94..e97deb9fb5f 100644
--- a/core/l10n/it.php
+++ b/core/l10n/it.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "L'utente %s ha condiviso un file con te",
+"User %s shared a folder with you" => "L'utente %s ha condiviso una cartella con te",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s",
"Category type not provided." => "Tipo di categoria non fornito.",
"No category to add?" => "Nessuna categoria da aggiungere?",
"This category already exists: " => "Questa categoria esiste già: ",
@@ -39,6 +43,8 @@
"Share with link" => "Condividi con collegamento",
"Password protect" => "Proteggi con password",
"Password" => "Password",
+"Email link to person" => "Invia collegamento via email",
+"Send" => "Invia",
"Set expiration date" => "Imposta data di scadenza",
"Expiration date" => "Data di scadenza",
"Share via email:" => "Condividi tramite email:",
@@ -55,6 +61,8 @@
"Password protected" => "Protetta da password",
"Error unsetting expiration date" => "Errore durante la rimozione della data di scadenza",
"Error setting expiration date" => "Errore durante l'impostazione della data di scadenza",
+"Sending ..." => "Invio in corso...",
+"Email sent" => "Messaggio inviato",
"ownCloud password reset" => "Ripristino password di ownCloud",
"Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}",
"You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email",
diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php
index 72b5915701b..72615d36f62 100644
--- a/core/l10n/ja_JP.php
+++ b/core/l10n/ja_JP.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "ユーザ %s はあなたとファイルを共有しています",
+"User %s shared a folder with you" => "ユーザ %s はあなたとフォルダを共有しています",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s",
"Category type not provided." => "カテゴリタイプは提供されていません。",
"No category to add?" => "追加するカテゴリはありませんか?",
"This category already exists: " => "このカテゴリはすでに存在します: ",
@@ -39,6 +43,8 @@
"Share with link" => "URLリンクで共有",
"Password protect" => "パスワード保護",
"Password" => "パスワード",
+"Email link to person" => "メールリンク",
+"Send" => "送信",
"Set expiration date" => "有効期限を設定",
"Expiration date" => "有効期限",
"Share via email:" => "メール経由で共有:",
@@ -55,6 +61,8 @@
"Password protected" => "パスワード保護",
"Error unsetting expiration date" => "有効期限の未設定エラー",
"Error setting expiration date" => "有効期限の設定でエラー発生",
+"Sending ..." => "送信中...",
+"Email sent" => "メールを送信しました",
"ownCloud password reset" => "ownCloudのパスワードをリセットします",
"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}",
"You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。",
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index 4b8b7fc844a..b780e546194 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -39,6 +39,8 @@
"Share with link" => "Współdziel z link",
"Password protect" => "Zabezpieczone hasłem",
"Password" => "Hasło",
+"Email link to person" => "Email do osoby",
+"Send" => "Wyślij",
"Set expiration date" => "Ustaw datę wygaśnięcia",
"Expiration date" => "Data wygaśnięcia",
"Share via email:" => "Współdziel poprzez maila",
@@ -55,6 +57,8 @@
"Password protected" => "Zabezpieczone hasłem",
"Error unsetting expiration date" => "Błąd niszczenie daty wygaśnięcia",
"Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia",
+"Sending ..." => "Wysyłanie...",
+"Email sent" => "Wyślij Email",
"ownCloud password reset" => "restart hasła",
"Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}",
"You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.",
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 4e11ffd5c14..4db2a2f06fd 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "Пользователь %s поделился с вами файлом",
+"User %s shared a folder with you" => "Пользователь %s открыл вам доступ к папке",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s",
"Category type not provided." => "Тип категории не предоставлен",
"No category to add?" => "Нет категорий для добавления?",
"This category already exists: " => "Эта категория уже существует: ",
@@ -39,6 +43,8 @@
"Share with link" => "Поделиться с ссылкой",
"Password protect" => "Защитить паролем",
"Password" => "Пароль",
+"Email link to person" => "Почтовая ссылка на персону",
+"Send" => "Отправить",
"Set expiration date" => "Установить срок доступа",
"Expiration date" => "Дата окончания",
"Share via email:" => "Поделится через электронную почту:",
@@ -55,6 +61,8 @@
"Password protected" => "Защищено паролем",
"Error unsetting expiration date" => "Ошибка при отмене срока доступа",
"Error setting expiration date" => "Ошибка при установке срока доступа",
+"Sending ..." => "Отправляется ...",
+"Email sent" => "Письмо отправлено",
"ownCloud password reset" => "Сброс пароля ",
"Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}",
"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.",
diff --git a/core/l10n/uk.php b/core/l10n/uk.php
index 904ab03bf82..180d2a5c6bd 100644
--- a/core/l10n/uk.php
+++ b/core/l10n/uk.php
@@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
+"User %s shared a file with you" => "Користувач %s поділився файлом з вами",
+"User %s shared a folder with you" => "Користувач %s поділився текою з вами",
+"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s",
+"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s",
"Category type not provided." => "Не вказано тип категорії.",
"No category to add?" => "Відсутні категорії для додавання?",
"This category already exists: " => "Ця категорія вже існує: ",
@@ -39,9 +43,11 @@
"Share with link" => "Опублікувати через посилання",
"Password protect" => "Захистити паролем",
"Password" => "Пароль",
+"Email link to person" => "Ел. пошта належить Пану",
+"Send" => "Надіслати",
"Set expiration date" => "Встановити термін дії",
"Expiration date" => "Термін дії",
-"Share via email:" => "Опублікувати через електронну пошту:",
+"Share via email:" => "Опублікувати через Ел. пошту:",
"No people found" => "Жодної людини не знайдено",
"Resharing is not allowed" => "Пере-публікація не дозволяється",
"Shared in {item} with {user}" => "Опубліковано {item} для {user}",
@@ -55,9 +61,11 @@
"Password protected" => "Захищено паролем",
"Error unsetting expiration date" => "Помилка при відміні терміна дії",
"Error setting expiration date" => "Помилка при встановленні терміна дії",
+"Sending ..." => "Надсилання...",
+"Email sent" => "Ел. пошта надіслана",
"ownCloud password reset" => "скидання пароля ownCloud",
"Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}",
-"You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на e-mail.",
+"You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.",
"Reset email send." => "Лист скидання відправлено.",
"Request failed!" => "Невдалий запит!",
"Username" => "Ім'я користувача",
diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php
new file mode 100644
index 00000000000..f55da4d3ef9
--- /dev/null
+++ b/core/l10n/zh_HK.php
@@ -0,0 +1,3 @@
+<?php $TRANSLATIONS = array(
+"You are logged out." => "你已登出。"
+);
diff --git a/core/templates/installation.php b/core/templates/installation.php
index f7a8a028c4f..28fbf29b540 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -35,12 +35,14 @@
<fieldset id="adminaccount">
<legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend>
<p class="infield grouptop">
- <label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required />
+ <label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label>
+ <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" />
</p>
<p class="infield groupbottom">
- <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required />
+ <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label>
+ <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" />
</p>
</fieldset>
diff --git a/core/templates/login.php b/core/templates/login.php
index 5e4e2eb07e6..153d1b50a30 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -17,12 +17,14 @@
<?php endif; ?>
</ul>
<p class="infield grouptop">
- <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required />
+ <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
+ <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" />
</p>
<p class="infield groupbottom">
- <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<input type="password" name="password" id="password" value="" required<?php echo $_['user_autofocus']?'':' autofocus'; ?> />
+ <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
+ <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" />
</p>
<input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
<input type="submit" id="submit" class="login primary" value="<?php echo $l->t( 'Log in' ); ?>" />
diff --git a/core/templates/logout.php b/core/templates/logout.php
index 8cbbdd9cc8d..2247ed8e70f 100644
--- a/core/templates/logout.php
+++ b/core/templates/logout.php
@@ -1 +1 @@
-<?php echo $l->t( 'You are logged out.' ); ?> \ No newline at end of file
+<?php echo $l->t( 'You are logged out.' );